summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0ba424f)
raw | patch | inline | side by side (parent: 0ba424f)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 27 Mar 2003 05:23:39 +0000 (05:23 +0000) | ||
committer | richard <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 | patch | blob | history | |
doc/user_guide.txt | patch | blob | history | |
roundup/admin.py | patch | blob | history |
diff --git a/doc/customizing.txt b/doc/customizing.txt
index c996feee222de20938510ca51a46ca8d8c003c47..236dc19056536eeafb0f0113a8c0da75c2d42f24 100644 (file)
--- a/doc/customizing.txt
+++ b/doc/customizing.txt
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
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.
diff --git a/doc/user_guide.txt b/doc/user_guide.txt
index f8395dc35f2a52d32aece4a6a75f67007fcceb07..73d647cff90fad3fa5a2cff696648924af0c9577 100644 (file)
--- a/doc/user_guide.txt
+++ b/doc/user_guide.txt
User Guide
==========
-:Version: $Revision: 1.16 $
+:Version: $Revision: 1.17 $
.. contents::
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
diff --git a/roundup/admin.py b/roundup/admin.py
index ebc22c8cb553d86ab295a2d60be2c891bd2af518..65bfa8c213535de51e3e8b39954a9bbb562fe78c 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.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.
'''
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