]> sjero.net Git - wget/blob - TODO
[svn] * TODO: Removed done item: we now have an option (-G) that makes it easy to
[wget] / TODO
1                                  Hey Emacs, this is -*- outline -*- mode
2
3 This is the todo list for Wget.  I don't have any time-table of when I
4 plan to implement these features; this is just a list of things I'd
5 like to see in Wget.  I'll work on some of them myself, and I will
6 accept patches in their direction.  The items are not listed in any
7 particular order.  Not all of them are user-visible changes.
8
9 * Make `-k' convert <base href=...> too.
10
11 * Add option to clobber existing file names (no `.N' suffixes).
12
13 * Introduce a concept of "boolean" options.  For instance, every
14   boolean option `--foo' would have a `--no-foo' equivalent for
15   turning it off.  Get rid of `--foo=no' stuff.  Short options would
16   be handled as `-x' vs. `-nx'.
17
18 * Implement "thermometer" display (not all that hard; use an
19   alternative show_progress() if the output goes to a terminal.)
20
21 * Add option to only list wildcard matches without doing the download.
22
23 * Add case-insensitivity as an option.
24
25 * Handle MIME types correctly.  There should be an option to (not)
26   retrieve files based on MIME types, e.g. `--accept-types=image/*'.
27
28 * Implement "persistent" retrieving.  In "persistent" mode Wget should
29   treat most of the errors as transient.
30
31 * Allow time-stamping by arbitrary date.
32
33 * Fix Unix directory parser to allow for spaces in file names.
34
35 * Allow size limit to files.
36
37 * -k should convert convert relative references to absolute if not
38   downloaded.
39
40 * Recognize HTML comments correctly.  Add more options for handling
41   bogus HTML found all over the 'net.
42
43 * Implement breadth-first retrieval.
44
45 * Download to .in* when mirroring.
46
47 * Add an option to delete or move no-longer-existent files when
48   mirroring.
49
50 * Implement a switch to avoid downloading multiple files (e.g. x and
51   x.gz).
52
53 * Implement uploading (--upload URL?) in FTP and HTTP.
54
55 * Rewrite FTP code to allow for easy addition of new commands.  It
56   should probably be coded as a simple DFA engine.
57
58 * Recognize more FTP servers (VMS).
59
60 * Make HTTP timestamping use If-Modified-Since facility.
61
62 * Implement better spider options.
63
64 * Add more protocols (e.g. gopher and news), implementing them in a
65   modular fashion.
66
67 * Implement a concept of "packages" a la mirror.
68
69 * Implement correct RFC1808 URL parsing.
70
71 * Implement HTTP cookies.
72
73 * Implement more HTTP/1.1 bells and whistles (ETag, Content-MD5 etc.)
74
75 * Support SSL encryption through SSLeay or OpenSSL.