summaryrefslogtreecommitdiff
path: root/docs (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* - generated middle section of busybox.pod w/ autodocifier.plJohn Beppu2001-03-152-418/+357
| | | | - updated autodocifier.pl to use tab to indent example section
* - properly indent Examples section in pod generatorJohn Beppu2001-03-151-2/+7
|
* Update the documentation so examples are autoincluded in the output text.Eric Andersen2001-03-152-932/+1143
| | | | | Fix up docs/busybox.pod with the latest autogenerated output. -Erik
* Added a section to describe how to convert variables to K&R style using theMark Whitley2001-03-141-30/+57
| | | | mk2knr.pl script. Also some minor cleanups.
* Added Midori Linux to the list of known projects that use Busybox.Mark Whitley2001-03-131-0/+2
|
* Applied patch from Christophe Boyanique to add -i support to rm.Mark Whitley2001-03-131-0/+1
|
* Thought of another janitorial item for the list.Mark Whitley2001-03-061-0/+3
|
* minor cleanupJohn Beppu2001-03-061-2/+2
|
* Fix up the freshmeat appindex record.Eric Andersen2001-03-051-1/+1
|
* Added some words on use of getopt in applets.Mark Whitley2001-03-032-1/+50
|
* Removed section on testing that is now in contributing.txt.Mark Whitley2001-03-021-20/+0
|
* Added 'How to contribute to Busybox' doc.Mark Whitley2001-03-021-0/+390
|
* - changed the way POD is generated such that the dashedJohn Beppu2001-02-261-10/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 -------------------------------
* ...John Beppu2001-02-241-3/+1
|
* refinementJohn Beppu2001-02-241-12/+16
|
* formatting ...John Beppu2001-02-231-2/+2
|
* Added some documentation and made --sgml use sgml_from_usage().John Beppu2001-02-231-9/+24
| | | | pod_from_usage() is the default generator.
* During POD generation, it inserts a blank line before linesJohn Beppu2001-02-231-5/+17
| | | | that were intended to be indented.
* forgot to remove some debugging noiseJohn Beppu2001-02-231-3/+1
|
* This one should be able to deal with the USAGE macros a littleJohn Beppu2001-02-231-3/+6
| | | | more robustly. I also blow away any USAGE_NOT_\w+ macros.
* forgot a comma.John Beppu2001-02-231-2/+2
|
* I can't leave it alone.John Beppu2001-02-231-8/+7
|
* minor cleanup... all that's left to do isJohn Beppu2001-02-231-5/+5
| | | | | | | | | | | * 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.
* This is the remixed autodocufier.pl.John Beppu2001-02-231-80/+175
|
* First pass at making up an automagical usage message extractor, whichEric Andersen2001-02-221-0/+88
| | | | | will be used (when it works) to autogenerate documentation. Based on code written by Mark Whitley.
* Fix typo.Matt Kraai2001-02-091-1/+1
|
* Minor cleanups and clarifications.Mark Whitley2001-02-091-8/+16
|
* Add listening support.Matt Kraai2001-02-071-1/+6
|
* Added documentation for new find options.Matt Kraai2001-02-071-1/+3
|
* Added some more on paren spacing and a section on testing guidelines.Mark Whitley2001-02-031-2/+38
|
* Added floppyfw to list of known projects using BusyBox.Mark Whitley2001-01-311-0/+1
|
* Wrap a table (bg set to black, width=80%) around the screenshotEric Andersen2001-01-311-1/+5
| | | | | | so it doesn't look like crap in Netscape. Should look fine in Mozilla either way. I think. -Erik
* Make it validate.Matt Kraai2001-01-311-12/+11
|
* Close IMG tag.Matt Kraai2001-01-311-1/+1
|
* Added a new screenshot of Busybox. :-)Mark Whitley2001-01-302-0/+56
|
* Fix up copyright msgs. Bump version to 0.49 in preparation for0_49Eric Andersen2001-01-272-21/+45
| | | | | a release. Update the website with release details. -Erik
* Commit Larry Doolittle's buffers-on-stack/buffers-via-malloc patch.Eric Andersen2001-01-251-9/+9
| | | | -Erik
* Add in spoon's watchdog timer app.Eric Andersen2001-01-252-5/+25
| | | | -Erik
* Because you demanded it, source tree snapshots are made available daily.Mark Whitley2001-01-251-2/+8
|
* Added Linux on nanoEngine to the list of known users.Mark Whitley2001-01-251-1/+1
|
* Update contact info.Eric Andersen2001-01-251-1/+1
|
* Apply a patch from Brent Priddy <brent.priddy@adtran.com> to addEric Andersen2001-01-252-1/+3
| | | | | 'id -n' support. -Erik
* Fix up insmod usage info to mention -LEric Andersen2001-01-242-1/+3
|
* - Added a section on avoiding static buffers, per mailing list discussionsMark Whitley2001-01-241-4/+88
| | | | | | | - Added a section on avoiding dangerous, overrun-prone string functions, per mailing list comment by David Douthitt - Added comment on how to search-and-replace in multiple files per (very old) mailing list comment by Larry Doolittle.
* Add dpkg-deb documentationGlenn L McGrath2001-01-032-13/+77
|
* Update logger usage information.Matt Kraai2001-01-022-3/+3
|
* Some corrections, some additions, some embellishments.Mark Whitley2000-12-201-14/+75
|
* More spelling fixes from Larry Doolittle.Mark Whitley2000-12-191-2/+2
|
* Added a paragraph from Larry Dolittle, made some more section headers.Mark Whitley2000-12-191-3/+18
|
* New applet HOWTO. Written by Matt Kraai with some formating and additions by me.Mark Whitley2000-12-191-0/+128
|