Code

fix the "set" command usage statement
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 27 Mar 2003 05:23:39 +0000 (05:23 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 27 Mar 2003 05:23:39 +0000 (05:23 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1642 57a73879-2fb5-44c3-a270-3262357dd7e2

doc/customizing.txt
doc/user_guide.txt
roundup/admin.py

index c996feee222de20938510ca51a46ca8d8c003c47..236dc19056536eeafb0f0113a8c0da75c2d42f24 100644 (file)
@@ -2,7 +2,7 @@
 Customising Roundup
 ===================
 
-:Version: $Revision: 1.81 $
+:Version: $Revision: 1.82 $
 
 .. This document borrows from the ZopeBook section on ZPT. The original is at:
    http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx
@@ -371,11 +371,11 @@ let's say that there's an issue in roundup, issue 23. There's also a user,
 richard who happens to be user 2. To assign an issue to him, we could do either
 of::
 
-     roundup-admin set issue assignedto=2
+     roundup-admin set issue23 assignedto=2
 
 or::
 
-     roundup-admin set issue assignedto=richard
+     roundup-admin set issue23 assignedto=richard
 
 Note, the same thing can be done in the web and e-mail interfaces.
 
index f8395dc35f2a52d32aece4a6a75f67007fcceb07..73d647cff90fad3fa5a2cff696648924af0c9577 100644 (file)
@@ -2,7 +2,7 @@
 User Guide
 ==========
 
-:Version: $Revision: 1.16 $
+:Version: $Revision: 1.17 $
 
 .. contents::
 
@@ -440,7 +440,7 @@ The basic usage is::
   retire designator[,designator]*
   rollback
   security [Role name]
-  set [items] property=value property=value ...
+  set items property=value property=value ...
   specification classname
   table classname [property[,property]*]
  Commands may be abbreviated as long as the abbreviation matches only one
index ebc22c8cb553d86ab295a2d60be2c891bd2af518..65bfa8c213535de51e3e8b39954a9bbb562fe78c 100644 (file)
@@ -16,7 +16,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: admin.py,v 1.49 2003-03-26 11:02:28 richard Exp $
+# $Id: admin.py,v 1.50 2003-03-27 05:23:39 richard Exp $
 
 '''Administration commands for maintaining Roundup trackers.
 '''
@@ -482,10 +482,10 @@ Command help:
 
 
     def do_set(self, args, pwre = re.compile(r'{(\w+)}(.+)')):
-        '''Usage: set [items] property=value property=value ...
+        '''Usage: set items property=value property=value ...
         Set the given properties of one or more items(s).
 
-        The items may be specified as a class or as a comma-separated
+        The items are specified as a class or as a comma-separated
         list of item designators (ie "designator[,designator,...]").
 
         This command sets the properties to the values for all designators