]> sjero.net Git - wget/blob - TODO
[svn] New item.
[wget] / TODO
1                                  Hey Emacs, this is -*- outline -*- mode
2
3 This is the to-do list for Wget.  There is no timetable of when we
4 plan to implement these features -- this is just a list of features
5 we'd like to see in Wget, as well as a list of problems that need
6 fixing.  Patches to implement these items are likely to be accepted.
7 The items are not listed in any particular order (except that
8 recently-added items may tend towards the top).  Not all of these
9 represent user-visible changes.
10
11 * Wget shouldn't delete rejected files that were not downloaded, but
12   just found on disk because of `-nc'.  For example, `wget -r -nc
13   -A.gif URL' should allow the user to get all the GIFs without
14   removing any of the existing HTML files.
15
16 * Be careful not to lose username/password information given for the
17   URL on the command line.
18
19 * Support FWTK firewalls.  It should work like this: if ftp_proxy is
20   set to an ftp URL, Wget should assume the use of an FWTK firewall.
21   It should connect to the proxy URL, log in as username@target-site,
22   and continue as usual.
23
24 * Add a --range parameter allowing you to explicitly specify a range of bytes to
25   get from a file over HTTP (FTP only supports ranges ending at the end of the
26   file, though forcibly disconnecting from the server at the desired endpoint
27   might be workable).
28
29 * If multiple FTP URLs are specified that are on the same host, Wget should
30   re-use the connection rather than opening a new one for each file.
31
32 * Try to devise a scheme so that, when password is unknown, Wget asks
33   the user for one.
34
35 * If -c used with -N, check to make sure a file hasn't changed on the server
36   before "continuing" to download it (preventing a bogus hybrid file).
37
38 * Generalize --html-extension to something like --mime-extensions and have it
39   look at mime.types/mimecap file for preferred extension.  Non-HTML files with
40   filenames changed this way would be re-downloaded each time despite -N unless
41   .orig files were saved for them.  Since .orig would contain the same data as
42   non-.orig, the latter could be just a link to the former.  Another possibility
43   would be to implement a per-directory database called something like
44   .wget_url_mapping containing URLs and their corresponding filenames.
45
46 * When spanning hosts, there's no way to say that you are only interested in
47   files in a certain directory on _one_ of the hosts (-I and -X apply to all).
48   Perhaps -I and -X should take an optional hostname before the directory?
49
50 * Add an option to not encode special characters like ' ' and '~' when saving
51   local files.  Would be good to have a mode that encodes all special characters
52   (as now), one that encodes none (as above), and one that only encodes a
53   character if it was encoded in the original URL (e.g. %20 but not %7E).
54
55 * --retr-symlinks should cause wget to traverse links to directories too.
56
57 * Make wget return non-zero status in more situations, like incorrect HTTP auth.
58
59 * Make -K compare X.orig to X and move the former on top of the latter if 
60   they're the same, rather than leaving identical .orig files laying around.
61
62 * Make `-k' check for files that were downloaded in the past and convert links 
63   to them in newly-downloaded documents.
64
65 * Add option to clobber existing file names (no `.N' suffixes).
66
67 * Introduce a concept of "boolean" options.  For instance, every
68   boolean option `--foo' would have a `--no-foo' equivalent for
69   turning it off.  Get rid of `--foo=no' stuff.  Short options would
70   be handled as `-x' vs. `-nx'.
71
72 * Add option to only list wildcard matches without doing the download.
73
74 * Add case-insensitivity as an option.
75
76 * Handle MIME types correctly.  There should be an option to (not)
77   retrieve files based on MIME types, e.g. `--accept-types=image/*'.
78
79 * Implement "persistent" retrieving.  In "persistent" mode Wget should
80   treat most of the errors as transient.
81
82 * Allow time-stamping by arbitrary date.
83
84 * Allow size limit to files (perhaps with an option to download oversize files 
85   up through the limit or not at all, to get more functionality than [u]limit.
86
87 * Download to .in* when mirroring.
88
89 * Add an option to delete or move no-longer-existent files when mirroring.
90
91 * Implement uploading (--upload URL?) in FTP and HTTP.
92
93 * Rewrite FTP code to allow for easy addition of new commands.  It
94   should probably be coded as a simple DFA engine.
95
96 * Make HTTP timestamping use If-Modified-Since facility.
97
98 * Implement better spider options.
99
100 * Add more protocols (e.g. gopher and news), implementing them in a
101   modular fashion.
102
103 * Implement a concept of "packages" a la mirror.
104
105 * Add a "rollback" option to have continued retrieval throw away a
106   configurable number of bytes at the end of a file before resuming
107   download.  Apparently, some stupid proxies insert a "transfer
108   interrupted" string we need to get rid of.
109
110 * When using --accept and --reject, you can end up with empty directories.  Have
111   Wget any such at the end.