summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 33dadd4)
raw | patch | inline | side by side (parent: 33dadd4)
author | grubert <grubert@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 23 Jan 2002 07:27:19 +0000 (07:27 +0000) | ||
committer | grubert <grubert@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 23 Jan 2002 07:27:19 +0000 (07:27 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@594 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
roundup/admin.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index a857926f0192406309cc463b2e6e9856004edd52..c6cc5f408b3a5c254b78a1cad31f5f0548ad4e78 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
. you can now use the roundup-admin tool pack the database
. unit tests for html templating (and re-enabled the listbox field for
multilinks)
+ . allow abbreviation of "help" in admin tool too.
Fixed:
. handle attachments with no name (eg tnef)
diff --git a/roundup/admin.py b/roundup/admin.py
index 679315c29d9898709024efcad0400a4a14496278..5ce870a01cbefcbb0ce9a38c65fdbe6b6b0cb70c 100644 (file)
--- a/roundup/admin.py
+++ b/roundup/admin.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: admin.py,v 1.5 2002-01-21 16:33:19 rochecompaan Exp $
+# $Id: admin.py,v 1.6 2002-01-23 07:27:19 grubert Exp $
import sys, os, getpass, getopt, re, UserDict, shlex
try:
initopts -- init command options
all -- all available help
'''
- topic = args[0]
+ if len(args)>0:
+ topic = args[0]
+ else:
+ topic = 'help'
+
# try help_ methods
if self.help.has_key(topic):
#
# $Log: not supported by cvs2svn $
+# Revision 1.5 2002/01/21 16:33:19 rochecompaan
+# You can now use the roundup-admin tool to pack the database
+#
# Revision 1.4 2002/01/14 06:51:09 richard
# . #503164 ] create and passwords
#