1616# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818#
19- # $Id: roundup-admin,v 1.17 2001-08-28 05 :58:33 anthonybaxter Exp $
19+ # $Id: roundup-admin,v 1.18 2001-09-18 22 :58:37 richard Exp $
2020
2121import sys
2222if int (sys .version [0 ]) < 2 :
@@ -38,24 +38,26 @@ def usage(message=''):
3838
3939Commands:
4040 %s
41-
4241Help:
4342 roundup-admin -h
44- roundup-admin help
45- -- this help
46- roundup-admin help <command>
47- -- command-specific help
48- roundup-admin morehelp
49- -- even more detailed help
50-
51- ''' % ( message , '\n ' .join (commands ))
43+ roundup-admin help -- this help
44+ roundup-admin help <command> -- command-specific help
45+ roundup-admin morehelp -- even more detailed help
46+ Options:
47+ -i instance home -- specify the issue tracker "home directory" to administer
48+ -u -- the user[:password] to use for commands
49+ -c -- when outputting lists of data, just comma-separate them''' % (
50+ message , '\n ' .join (commands ))
5251
5352def moreusage (message = '' ):
5453 usage (message )
5554 print '''
5655All commands (except help) require an instance specifier. This is just the path
57- to the roundup instance you're working with. It may be specified in the
58- environment variable ROUNDUP_INSTANCE or on the command line as "-i instance".
56+ to the roundup instance you're working with. A roundup instance is where
57+ roundup keeps the database and configuration file that defines an issue
58+ tracker. It may be thought of as the issue tracker's "home directory". It may
59+ be specified in the environment variable ROUNDUP_INSTANCE or on the command
60+ line as "-i instance".
5961
6062A designator is a classname and a nodeid concatenated, eg. bug1, user10, ...
6163
@@ -426,6 +428,9 @@ if __name__ == '__main__':
426428
427429#
428430# $Log: not supported by cvs2svn $
431+ # Revision 1.17 2001/08/28 05:58:33 anthonybaxter
432+ # added missing 'import' statements.
433+ #
429434# Revision 1.16 2001/08/12 06:32:36 richard
430435# using isinstance(blah, Foo) now instead of isFooType
431436#
0 commit comments