Thread: [Japi-cvs] SF.net SVN: japi: [334] libs/argparser/trunk/src/doc/start.xhtml
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2007-05-12 15:07:53
|
Revision: 334 http://svn.sourceforge.net/japi/?rev=334&view=rev Author: christianhujer Date: 2007-05-12 08:07:52 -0700 (Sat, 12 May 2007) Log Message: ----------- Added argparser documentation. Added Paths: ----------- libs/argparser/trunk/src/doc/start.xhtml Added: libs/argparser/trunk/src/doc/start.xhtml =================================================================== --- libs/argparser/trunk/src/doc/start.xhtml (rev 0) +++ libs/argparser/trunk/src/doc/start.xhtml 2007-05-12 15:07:52 UTC (rev 334) @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- $Id: start.xhtml,v 1.12 2006/03/29 22:20:33 christianhujer Exp $ --> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html> + <head> + <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> + <meta name="Date" content="$Date: 2006-11-26 16:38:11 +0100 (So, 26 Nov 2006) $" /> + <title></title> + </head> + <body> + <h1>JAPI Libs Argparser</h1> + <p> + <em>JAPI Libs Argparser</em> is a library for parsing command line arguments. + It supports the following features: + </p> + <ul> + <li>Easy-to-write Session-Bean-like code</li> + <li><abbr>i18n</abbr> / <abbr>l10n</abbr></li> + <li>Short (e.g. <code>-h</code>) and long (e.g. <code>--help</code>) options </li> + <li>Automatic built-in help</li> + <li>Mandatory and optional options / switches</li> + </ul> + <h2>Target Audience</h2> + <ul> + <li>Direct Audience: Developers: Makes command line argument parsing easy</li> + <li>Indirect Audience: Users: Makes command line argument parsing consistent between programs</li> + </ul> + </body> +</html> \ No newline at end of file Property changes on: libs/argparser/trunk/src/doc/start.xhtml ___________________________________________________________________ Name: svn:mime-type + text/html Name: svn:eol-style + LF This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2007-06-13 20:34:36
|
Revision: 404 http://svn.sourceforge.net/japi/?rev=404&view=rev Author: christianhujer Date: 2007-06-13 13:34:30 -0700 (Wed, 13 Jun 2007) Log Message: ----------- Updated and extended documentation. Modified Paths: -------------- libs/argparser/trunk/src/doc/start.xhtml Modified: libs/argparser/trunk/src/doc/start.xhtml =================================================================== --- libs/argparser/trunk/src/doc/start.xhtml 2007-06-13 20:23:40 UTC (rev 403) +++ libs/argparser/trunk/src/doc/start.xhtml 2007-06-13 20:34:30 UTC (rev 404) @@ -1,29 +1,44 @@ <?xml version="1.0" encoding="utf-8"?> -<!-- $Id: start.xhtml,v 1.12 2006/03/29 22:20:33 christianhujer Exp $ --> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> <meta name="Date" content="$Date: 2006-11-26 16:38:11 +0100 (So, 26 Nov 2006) $" /> - <title></title> + <title>JAPI Lib ArgParser</title> </head> <body> - <h1>JAPI Libs Argparser</h1> + <h1>JAPI Lib Argparser</h1> <p> - <em>JAPI Libs Argparser</em> is a library for parsing command line arguments. + <em>JAPI Lib Argparser</em> is a library for parsing command line arguments. It supports the following features: </p> <ul> <li>Easy-to-write Session-Bean-like code</li> - <li><abbr>i18n</abbr> / <abbr>l10n</abbr></li> - <li>Short (e.g. <code>-h</code>) and long (e.g. <code>--help</code>) options </li> - <li>Automatic built-in help</li> + <li>Bean-like reflective / introspective usage</li> + <li>Java standard <abbr>i18n</abbr> / <abbr>l10n</abbr> support using properties files</li> + <li>Short (e.g. <code>-f</code>) and long (e.g. <code>--filename</code>) options</li> + <li>Concatenation of short options (e.g. <code>-fiz</code> for <code>-f -i -z</code>)</li> + <li>Automatic built-in help (<code>-h</code> and <code>--help</code>)</li> <li>Mandatory and optional options / switches</li> + <li>Automatic conversion of command line arguments to relevant Java types</li> </ul> <h2>Target Audience</h2> <ul> - <li>Direct Audience: Developers: Makes command line argument parsing easy</li> - <li>Indirect Audience: Users: Makes command line argument parsing consistent between programs</li> + <li> + Direct Audience: Developers + <ul> + <li>Makes command line argument parsing easy</li> + <li>Keeps you from reinventing the wheel</li> + </ul> + </li> + <li> + Indirect Audience: Users + <ul> + <li>Makes command line argument parsing consistent between programs</li> + <li>Increases chance of at least a minimum help being available</li> + <li>Makes even command line argument value parsing consistent between programs</li> + </ul> + </li> </ul> </body> -</html> \ No newline at end of file +</html> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2008-01-06 20:36:05
|
Revision: 633 http://japi.svn.sourceforge.net/japi/?rev=633&view=rev Author: christianhujer Date: 2008-01-06 12:35:59 -0800 (Sun, 06 Jan 2008) Log Message: ----------- Minor documentation change. Modified Paths: -------------- libs/argparser/trunk/src/doc/start.xhtml Modified: libs/argparser/trunk/src/doc/start.xhtml =================================================================== --- libs/argparser/trunk/src/doc/start.xhtml 2007-12-16 23:40:08 UTC (rev 632) +++ libs/argparser/trunk/src/doc/start.xhtml 2008-01-06 20:35:59 UTC (rev 633) @@ -58,7 +58,7 @@ <li> Indirect Audience: Users <ul> - <li>Makes command line argument parsing consistent between programs</li> + <li>Makes command line argument parsing more consistent between programs</li> <li>Increases chance of at least a minimum help being available</li> <li>Makes even command line argument value parsing consistent between programs</li> </ul> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |