Mercurial > p > roundup > code
changeset 3671:cecdd102733c
fix help message for roundup-admin install [SF#1494990]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 11 Aug 2006 05:13:06 +0000 |
| parents | 64f0b85ea603 |
| children | ef63c735f712 |
| files | CHANGES.txt roundup/admin.py |
| diffstat | 2 files changed, 7 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Fri Aug 11 05:10:15 2006 +0000 +++ b/CHANGES.txt Fri Aug 11 05:13:06 2006 +0000 @@ -33,6 +33,7 @@ 1507814) - don't int() ids (sf bug 1512939) - fix importing into anydbm backend (sf bug 1512939) +- fix help message for roundup-admin install (sf bug 1494990) 2006-04-27 1.1.2
--- a/roundup/admin.py Fri Aug 11 05:10:15 2006 +0000 +++ b/roundup/admin.py Fri Aug 11 05:13:06 2006 +0000 @@ -16,7 +16,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: admin.py,v 1.104 2006-08-11 05:10:15 richard Exp $ +# $Id: admin.py,v 1.105 2006-08-11 05:13:06 richard Exp $ '''Administration commands for maintaining Roundup trackers. ''' @@ -343,16 +343,16 @@ print _('Back ends:'), ', '.join(backends) def do_install(self, tracker_home, args): - ""'''Usage: install [template [backend [admin password [key=val[,key=val]]]]] + ""'''Usage: install [template [backend [key=val[,key=val]]]] Install a new Roundup tracker. The command will prompt for the tracker home directory (if not supplied through TRACKER_HOME or the -i option). - The template, backend and admin password may be specified - on the command-line as arguments, in that order. + The template and backend may be specified on the command-line + as arguments, in that order. - The last command line argument allows to pass initial values - for config options. For example, passing + Command line arguments following the backend allows you to + pass initial values for config options. For example, passing "web_http_auth=no,rdbms_user=dinsdale" will override defaults for options http_auth in section [web] and user in section [rdbms]. Please be careful to not use spaces in this argument! (Enclose
