|
From: <di...@us...> - 2007-01-27 18:13:41
|
Revision: 321
http://safekeep.svn.sourceforge.net/safekeep/?rev=321&view=rev
Author: dimi
Date: 2007-01-27 10:13:37 -0800 (Sat, 27 Jan 2007)
Log Message:
-----------
Remove the --client mode from the online help screen,
this is an internal-only mode, and it just makes the
output more confusing and difficult to read.
Modified Paths:
--------------
safekeep/trunk/doc/safekeep.txt
safekeep/trunk/safekeep
Modified: safekeep/trunk/doc/safekeep.txt
===================================================================
--- safekeep/trunk/doc/safekeep.txt 2007-01-27 18:10:33 UTC (rev 320)
+++ safekeep/trunk/doc/safekeep.txt 2007-01-27 18:13:37 UTC (rev 321)
@@ -9,10 +9,10 @@
--------
'safekeep' [--server] [-q] [-v] [-c file] [-e <email>] [-s <smtp>] <clientid>*
+'safekeep' --keys [-q] [-v] [-c file] [--status] [--print] [--deploy] <clientid>*
+
'safekeep' --client
-'safekeep' --keys [-q] [-v] [-c file] [--status] [--print] [--deploy] <clientid>*
-
'safekeep' -h | -V
DESCRIPTION
Modified: safekeep/trunk/safekeep
===================================================================
--- safekeep/trunk/safekeep 2007-01-27 18:10:33 UTC (rev 320)
+++ safekeep/trunk/safekeep 2007-01-27 18:13:37 UTC (rev 321)
@@ -744,28 +744,25 @@
def usage(exitcode=None):
print 'usage: %s [--server] [common options] [server options] <client-id>*' % (sys.argv[0])
- print ' %s --client [common options]' % (sys.argv[0])
print ' %s --keys [common options] [keys options] <client-id>*' % (sys.argv[0])
print
print 'mode selection (pick one):'
print '--server launch in server mode (default)'
- print '--client launch in client mode'
print '--keys launch in keys management mode'
print
print 'common options:'
+ print '-c, --conf=FILE|DIR use the given configuration file/directory'
print '-h, --help show this help message and exit'
print '-q, --quiet decreases the verbosity level'
print '-v, --verbose increases the verbosity level'
print '-V, --version show the version number and exit'
print
print 'keys options:'
- print '-c, --conf=FILE|DIR use the given configuration file/directory'
print '--status display the key status for the clients (default)'
print '--print display the authorization keys'
print '--deploy deploy the authorization keys'
print
print 'server options:'
- print '-c, --conf=FILE|DIR use the given configuration file/directory'
print '-e, --email=EMAIL send results by email (can appear multiple times)'
print '-s, --smtp=SMTP SMTP server to use when sending mails (default: sendmail)'
if exitcode is not None: sys.exit(exitcode)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|