aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2001-05-02Use .png for images (removing all .gifs) and make them all 90x36Eric Andersen
-Erik
2001-04-26Ignore some generated filesEric Andersen
2001-04-26These days busybox.pod is autogenerated, so it should be removedEric Andersen
from CVS.
2001-04-17- updated busybox_header.pod by adding adjtimex to the list.John Beppu
- a new busybox.pod that reflects my fixes, and todays patches to usage.h
2001-04-17- usage.hJohn Beppu
o echo_example_usage needed to escape some backslashes in an inner quote o find_full_usage missing a \n at the end of the -name line ? getopt_full_usage the -o line has tab issues, but I didn't fix them. o length_example_usage removed some double-quotes that were within an inner quotes o printf_example_usage needed to escape a backslash in an inner quote o sort_example_usage needed to escape some backslashes and double quotes in an inner quote o tftp_full_usage s/nameing/naming/; o umount_full_usage remove colons after options for consistency w/ other full_usage messages o uniq_example_usage needed to escape some backslashes and double quotes in an inner quote - TODO xargs -l ? - docs/autodocifier.pl POD && comment updates - docs/busybox_footer.pod added Larry Doolittle and Sterling Huxley
2001-04-10Put in a paragraph breakEric Andersen
2001-04-10Added a chart of busybox's growth by Larry Doolittle and put a newsMark Whitley
announcement for it on the main page.
2001-04-10Doc update for the 0.51 release.Eric Andersen
-Erik
2001-04-10This patch from Laurence Anderson <laurence@zxmail.com> fixesEric Andersen
wget HTTP 1.1 support and addes chunked encoding so bb wget is now fully RFC compliant.
2001-04-10Fix double quote handling.Matt Kraai
2001-04-09Fix warning generated by pod2html about unterminated list.Matt Kraai
2001-04-09Apply Vladimir's latest cleanup patch.Eric Andersen
-Erik
2001-04-05A patch from Dmitry Zakharov <dmit@crp.bank.gov.ua> which addsEric Andersen
- support for ftp downloads - HTTP basic authentication support (as an optional feature) - handling of http redirections - protocol version changed to 1.0 (to stop servers from requesting chunked encoding) - bugfix: in the case when content-length not given, wget didn't download anything - when attempting to continue an aborted download but server doesn't support restarts, reopen output file in write mode - changed assumption that existing file should restart an aborted download. Now the user must explicitly specify this with -c
2001-04-05- autodocifier.pl :: continuation() was modified such that '#'John Beppu
is handled correctly.
2001-04-05- split busybox.pod into a header and footer.John Beppu
the body will be generated by docs/autodocifier.pl
2001-04-05- documentation updates and a minor tweak to POD generationJohn Beppu
2001-04-03A patch from Matt Kraai that adds a new 'shutdown' action to busybox init. NowEric Andersen
you can specify an arbitrary behavior for 'ctrlaltdel' without that behavior needing to be a reboot.
2001-04-01Formatting changeEric Andersen
2001-03-27Some more words on sending patches to the bug-tracker.Mark Whitley
2001-03-22Some minor wordsmithing, an extra item in the list of "things Busybox doesn'tMark Whitley
need", example of a testcase, more janitorial items, and a whole new section with guidelines on committing changes to CVS.
2001-03-20Added a section on the available Busybox boot-floppy image. Also provided someMark Whitley
linkes to a Wired article on Midori Linux.
2001-03-16A few minor touchups.Eric Andersen
2001-03-16Update webpage noting 0.50 release.Eric Andersen
2001-03-15One tiny little missing newline that confused pod.Mark Whitley
2001-03-15- generated middle section of busybox.pod w/ autodocifier.plJohn Beppu
- updated autodocifier.pl to use tab to indent example section
2001-03-15- properly indent Examples section in pod generatorJohn Beppu
2001-03-15Update the documentation so examples are autoincluded in the output text.Eric Andersen
Fix up docs/busybox.pod with the latest autogenerated output. -Erik
2001-03-14Added a section to describe how to convert variables to K&R style using theMark Whitley
mk2knr.pl script. Also some minor cleanups.
2001-03-13Added Midori Linux to the list of known projects that use Busybox.Mark Whitley
2001-03-13Applied patch from Christophe Boyanique to add -i support to rm.Mark Whitley
2001-03-06Thought of another janitorial item for the list.Mark Whitley
2001-03-06minor cleanupJohn Beppu
2001-03-05Fix up the freshmeat appindex record.Eric Andersen
2001-03-03Added some words on use of getopt in applets.Mark Whitley
2001-03-02Removed section on testing that is now in contributing.txt.Mark Whitley
2001-03-02Added 'How to contribute to Busybox' doc.Mark Whitley
2001-02-26- changed the way POD is generated such that the dashedJohn Beppu
line appears at the bottom instead of the top. The indentation semantics of POD make the first item in the (=over,=back) block look weird the other way. - implemented a way to encode example usage into usage.h One would define a macro called "${applet}_example_usage" which would expand to the example text. - The example usage is considered optional, but trivial and full usage are not. Here's an example using chown. ---- before #define chown_trivial_usage \ "[OPTION]... OWNER[<.|:>[GROUP] FILE..." #define chown_full_usage \ "Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" \ "\nOptions:\n" \ "\t-R\tChanges files and directories recursively." #define chown_example_usage \ "\t$ ls -l /tmp/foo\n" \ "\t-r--r--r-- 1 andersen andersen 0 Apr 12 18:25 /tmp/foo\n" \ "\t$ chown root /tmp/foo\n" \ "\t$ ls -l /tmp/foo\n" \ "\t-r--r--r-- 1 root andersen 0 Apr 12 18:25 /tmp/foo\n" \ "\t$ chown root.root /tmp/foo\n" \ "\tls -l /tmp/foo\n" \ "\t-r--r--r-- 1 root root 0 Apr 12 18:25 /tmp/foo\n" ---- after =item I<chown> chown [OPTION]... OWNER[<.|:>[GROUP] FILE... Change the owner and/or group of each FILE to OWNER and/or GROUP. Options: -R Changes files and directories recursively. Example: $ ls -l /tmp/foo -r--r--r-- 1 andersen andersen 0 Apr 12 18:25 /tmp/foo $ chown root /tmp/foo $ ls -l /tmp/foo -r--r--r-- 1 root andersen 0 Apr 12 18:25 /tmp/foo $ chown root.root /tmp/foo ls -l /tmp/foo -r--r--r-- 1 root root 0 Apr 12 18:25 /tmp/foo -------------------------------
2001-02-24...John Beppu
2001-02-24refinementJohn Beppu
2001-02-23formatting ...John Beppu
2001-02-23Added some documentation and made --sgml use sgml_from_usage().John Beppu
pod_from_usage() is the default generator.
2001-02-23During POD generation, it inserts a blank line before linesJohn Beppu
that were intended to be indented.
2001-02-23forgot to remove some debugging noiseJohn Beppu
2001-02-23This one should be able to deal with the USAGE macros a littleJohn Beppu
more robustly. I also blow away any USAGE_NOT_\w+ macros.
2001-02-23forgot a comma.John Beppu
2001-02-23I can't leave it alone.John Beppu
2001-02-23minor cleanup... all that's left to do isJohn Beppu
* make headers and footers for both the POD and SGML content * make an SGML generator * finish the command-line handling Also, some of the documentation in usage.h will have to be adjusted. expr needs some lines to be indented, and ls has a stray comma. I may have missed some things... but it looks OK for the most part.
2001-02-23This is the remixed autodocufier.pl.John Beppu
2001-02-22First pass at making up an automagical usage message extractor, whichEric Andersen
will be used (when it works) to autogenerate documentation. Based on code written by Mark Whitley.
2001-02-09Fix typo.Matt Kraai