Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | - generated middle section of busybox.pod w/ autodocifier.pl | John Beppu | 2001-03-15 | 2 | -418/+357 | |
| | | | | - updated autodocifier.pl to use tab to indent example section | |||||
* | - properly indent Examples section in pod generator | John Beppu | 2001-03-15 | 1 | -2/+7 | |
| | ||||||
* | Update the documentation so examples are autoincluded in the output text. | Eric Andersen | 2001-03-15 | 2 | -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 the | Mark Whitley | 2001-03-14 | 1 | -30/+57 | |
| | | | | mk2knr.pl script. Also some minor cleanups. | |||||
* | Added Midori Linux to the list of known projects that use Busybox. | Mark Whitley | 2001-03-13 | 1 | -0/+2 | |
| | ||||||
* | Applied patch from Christophe Boyanique to add -i support to rm. | Mark Whitley | 2001-03-13 | 1 | -0/+1 | |
| | ||||||
* | Thought of another janitorial item for the list. | Mark Whitley | 2001-03-06 | 1 | -0/+3 | |
| | ||||||
* | minor cleanup | John Beppu | 2001-03-06 | 1 | -2/+2 | |
| | ||||||
* | Fix up the freshmeat appindex record. | Eric Andersen | 2001-03-05 | 1 | -1/+1 | |
| | ||||||
* | Added some words on use of getopt in applets. | Mark Whitley | 2001-03-03 | 2 | -1/+50 | |
| | ||||||
* | Removed section on testing that is now in contributing.txt. | Mark Whitley | 2001-03-02 | 1 | -20/+0 | |
| | ||||||
* | Added 'How to contribute to Busybox' doc. | Mark Whitley | 2001-03-02 | 1 | -0/+390 | |
| | ||||||
* | - changed the way POD is generated such that the dashed | John Beppu | 2001-02-26 | 1 | -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 Beppu | 2001-02-24 | 1 | -3/+1 | |
| | ||||||
* | refinement | John Beppu | 2001-02-24 | 1 | -12/+16 | |
| | ||||||
* | formatting ... | John Beppu | 2001-02-23 | 1 | -2/+2 | |
| | ||||||
* | Added some documentation and made --sgml use sgml_from_usage(). | John Beppu | 2001-02-23 | 1 | -9/+24 | |
| | | | | pod_from_usage() is the default generator. | |||||
* | During POD generation, it inserts a blank line before lines | John Beppu | 2001-02-23 | 1 | -5/+17 | |
| | | | | that were intended to be indented. | |||||
* | forgot to remove some debugging noise | John Beppu | 2001-02-23 | 1 | -3/+1 | |
| | ||||||
* | This one should be able to deal with the USAGE macros a little | John Beppu | 2001-02-23 | 1 | -3/+6 | |
| | | | | more robustly. I also blow away any USAGE_NOT_\w+ macros. | |||||
* | forgot a comma. | John Beppu | 2001-02-23 | 1 | -2/+2 | |
| | ||||||
* | I can't leave it alone. | John Beppu | 2001-02-23 | 1 | -8/+7 | |
| | ||||||
* | minor cleanup... all that's left to do is | John Beppu | 2001-02-23 | 1 | -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 Beppu | 2001-02-23 | 1 | -80/+175 | |
| | ||||||
* | First pass at making up an automagical usage message extractor, which | Eric Andersen | 2001-02-22 | 1 | -0/+88 | |
| | | | | | will be used (when it works) to autogenerate documentation. Based on code written by Mark Whitley. | |||||
* | Fix typo. | Matt Kraai | 2001-02-09 | 1 | -1/+1 | |
| | ||||||
* | Minor cleanups and clarifications. | Mark Whitley | 2001-02-09 | 1 | -8/+16 | |
| | ||||||
* | Add listening support. | Matt Kraai | 2001-02-07 | 1 | -1/+6 | |
| | ||||||
* | Added documentation for new find options. | Matt Kraai | 2001-02-07 | 1 | -1/+3 | |
| | ||||||
* | Added some more on paren spacing and a section on testing guidelines. | Mark Whitley | 2001-02-03 | 1 | -2/+38 | |
| | ||||||
* | Added floppyfw to list of known projects using BusyBox. | Mark Whitley | 2001-01-31 | 1 | -0/+1 | |
| | ||||||
* | Wrap a table (bg set to black, width=80%) around the screenshot | Eric Andersen | 2001-01-31 | 1 | -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 Kraai | 2001-01-31 | 1 | -12/+11 | |
| | ||||||
* | Close IMG tag. | Matt Kraai | 2001-01-31 | 1 | -1/+1 | |
| | ||||||
* | Added a new screenshot of Busybox. :-) | Mark Whitley | 2001-01-30 | 2 | -0/+56 | |
| | ||||||
* | Fix up copyright msgs. Bump version to 0.49 in preparation for0_49 | Eric Andersen | 2001-01-27 | 2 | -21/+45 | |
| | | | | | a release. Update the website with release details. -Erik | |||||
* | Commit Larry Doolittle's buffers-on-stack/buffers-via-malloc patch. | Eric Andersen | 2001-01-25 | 1 | -9/+9 | |
| | | | | -Erik | |||||
* | Add in spoon's watchdog timer app. | Eric Andersen | 2001-01-25 | 2 | -5/+25 | |
| | | | | -Erik | |||||
* | Because you demanded it, source tree snapshots are made available daily. | Mark Whitley | 2001-01-25 | 1 | -2/+8 | |
| | ||||||
* | Added Linux on nanoEngine to the list of known users. | Mark Whitley | 2001-01-25 | 1 | -1/+1 | |
| | ||||||
* | Update contact info. | Eric Andersen | 2001-01-25 | 1 | -1/+1 | |
| | ||||||
* | Apply a patch from Brent Priddy <brent.priddy@adtran.com> to add | Eric Andersen | 2001-01-25 | 2 | -1/+3 | |
| | | | | | 'id -n' support. -Erik | |||||
* | Fix up insmod usage info to mention -L | Eric Andersen | 2001-01-24 | 2 | -1/+3 | |
| | ||||||
* | - Added a section on avoiding static buffers, per mailing list discussions | Mark Whitley | 2001-01-24 | 1 | -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 documentation | Glenn L McGrath | 2001-01-03 | 2 | -13/+77 | |
| | ||||||
* | Update logger usage information. | Matt Kraai | 2001-01-02 | 2 | -3/+3 | |
| | ||||||
* | Some corrections, some additions, some embellishments. | Mark Whitley | 2000-12-20 | 1 | -14/+75 | |
| | ||||||
* | More spelling fixes from Larry Doolittle. | Mark Whitley | 2000-12-19 | 1 | -2/+2 | |
| | ||||||
* | Added a paragraph from Larry Dolittle, made some more section headers. | Mark Whitley | 2000-12-19 | 1 | -3/+18 | |
| | ||||||
* | New applet HOWTO. Written by Matt Kraai with some formating and additions by me. | Mark Whitley | 2000-12-19 | 1 | -0/+128 | |
| |