mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
encoding: documentation
This commit is contained in:
parent
a03698d695
commit
79b69e0bf9
2
NEWS
2
NEWS
@ -64,7 +64,7 @@ Miscellaneous:
|
||||
when downloading
|
||||
* tabs opened by -remote now go behind existing dialogs
|
||||
* major bug 534, enhancement 517: fix HTTP gzip and bzip2
|
||||
decompression, and add deflate and LZMA
|
||||
decompression, and add deflate and LZMA (requires LZMA Utils)
|
||||
* major bug 503: various fixes in parsing and updating of elinks.conf
|
||||
* Debian bug 257762: turn terminal transparency off by default
|
||||
* bug 724: better parsing of escape sequences and control
|
||||
|
@ -42,9 +42,11 @@ ifndef::installation-webpage[]
|
||||
See <<lua-scripting,the Elinks - Lua interface>> \
|
||||
endif::installation-webpage[]
|
||||
for more info.
|
||||
zlib 1.2.0.2 or later For handling compressed documents both locally and \
|
||||
sent from server.
|
||||
bzip2 For handling local compressed documents.
|
||||
zlib 1.2.0.2 or later For handling gzip or deflate compressed documents \
|
||||
both locally and sent from server.
|
||||
bzip2 Likewise, for bzip2 compressed documents.
|
||||
LZMA Utils Likewise, for LZMA compressed documents. \
|
||||
Version 4.32.5 should work.
|
||||
OpenSSL or GNU TLS For handling secure HTTP browsing.
|
||||
GPM 'General Purpose Mouse' for mouse support.
|
||||
expat 'XML Parser Toolkit' needed for XBEL support.
|
||||
|
@ -175,6 +175,49 @@ CONFIG_MAILCAP=yes
|
||||
CONFIG_MIMETYPES=yes
|
||||
|
||||
|
||||
### Gzip and Deflate Decompression
|
||||
#
|
||||
# This makes ELinks send "Accept-Encoding: deflate, gzip" in HTTP
|
||||
# requests and decompress any documents received in those formats.
|
||||
# It works with local *.gz files as well.
|
||||
#
|
||||
# Default: enabled if zlib is installed and new enough
|
||||
|
||||
CONFIG_GZIP=yes
|
||||
|
||||
|
||||
### Bzip2 Decompression
|
||||
#
|
||||
# This makes ELinks decompress local *.bz2 files.
|
||||
# Also, ELinks sends "Accept-Encoding: bzip2" in HTTP requests
|
||||
# and decompresses any documents received in that format,
|
||||
# but this encoding has not been registered at
|
||||
# http://www.iana.org/assignments/http-parameters[],
|
||||
# so most servers probably won't use it.
|
||||
#
|
||||
# Default: enabled if the library is installed
|
||||
|
||||
CONFIG_BZIP2=yes
|
||||
|
||||
|
||||
### LZMA Decompression
|
||||
#
|
||||
# This makes ELinks decompress local *.lzma files.
|
||||
# Also, ELinks sends "Accept-Encoding: lzma" in HTTP requests
|
||||
# and decompresses any documents received in that format,
|
||||
# but this encoding has not been registered at
|
||||
# http://www.iana.org/assignments/http-parameters[],
|
||||
# so most servers probably won't use it.
|
||||
#
|
||||
# To use this, first install http://tukaani.org/lzma/[LZMA Utils].
|
||||
# Version 4.32.5 works; 4.42.2alpha also works and understands a
|
||||
# newer LZMA file format. ELinks cannot use LZMA SDK from 7-Zip.
|
||||
#
|
||||
# Default: enabled if the library is installed
|
||||
|
||||
CONFIG_LZMA=yes
|
||||
|
||||
|
||||
### IPv6 Protocol Support
|
||||
#
|
||||
# You know this thing that was designed to obsolete IPv4 but only pasky,
|
||||
|
Loading…
Reference in New Issue
Block a user