Skip to content

Commit 8bb8736

Browse files
author
Anthony Baxter
committed
fixing (manually) the (dollarsign)Log(dollarsign)...
...entries caused by my using the magic (dollarsign)Id(dollarsign) and (dollarsign)Log(dollarsign) strings in a commit message. I'm a twonk. Also broke the help string in two.
1 parent af061b9 commit 8bb8736

File tree

10 files changed

+67
-12
lines changed

10 files changed

+67
-12
lines changed

cgitb.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: cgitb.py,v 1.2 2001-07-19 05:52:22 anthonybaxter Exp $
1+
# $Id: cgitb.py,v 1.3 2001-07-19 06:27:07 anthonybaxter Exp $
22

33
import sys, os, types, string, keyword, linecache, tokenize, inspect, pydoc
44

@@ -115,4 +115,7 @@ def handler():
115115

116116
#
117117
# $Log: not supported by cvs2svn $
118+
# Revision 1.2 2001/07/19 05:52:22 anthonybaxter
119+
# Added CVS keywords Id and Log to all python files.
120+
#
118121
#

config.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: config.py,v 1.4 2001-07-19 05:52:22 anthonybaxter Exp $
1+
# $Id: config.py,v 1.5 2001-07-19 06:27:07 anthonybaxter Exp $
22

33
ROUNDUP_HOME=MAIL_DOMAIN=MAILHOST=None
44

@@ -37,5 +37,8 @@
3737

3838
#
3939
# $Log: not supported by cvs2svn $
40+
# Revision 1.4 2001/07/19 05:52:22 anthonybaxter
41+
# Added CVS keywords Id and Log to all python files.
42+
#
4043
#
4144

date.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: date.py,v 1.2 2001-07-19 05:52:22 anthonybaxter Exp $
1+
# $Id: date.py,v 1.3 2001-07-19 06:27:07 anthonybaxter Exp $
22

33
import time, re, calendar
44

@@ -344,5 +344,8 @@ def test():
344344

345345
#
346346
# $Log: not supported by cvs2svn $
347+
# Revision 1.2 2001/07/19 05:52:22 anthonybaxter
348+
# Added CVS keywords Id and Log to all python files.
349+
#
347350
#
348351

hyperdb.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: hyperdb.py,v 1.3 2001-07-19 05:52:22 anthonybaxter Exp $
1+
# $Id: hyperdb.py,v 1.4 2001-07-19 06:27:07 anthonybaxter Exp $
22

33
import bsddb, os, cPickle, re, string
44

@@ -921,5 +921,8 @@ def Choice(name, *options):
921921

922922
#
923923
# $Log: not supported by cvs2svn $
924+
# Revision 1.3 2001/07/19 05:52:22 anthonybaxter
925+
# Added CVS keywords Id and Log to all python files.
926+
#
924927
#
925928

roundup-mailgw.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
an exception, the original message is bounced back to the sender with the
4646
explanatory message given in the exception.
4747
48-
$Id: roundup-mailgw.py,v 1.2 2001-07-19 05:52:22 anthonybaxter Exp $
48+
$Id: roundup-mailgw.py,v 1.3 2001-07-19 06:27:07 anthonybaxter Exp $
4949
'''
5050

5151
import sys
@@ -275,5 +275,8 @@ def handle_message(db, message):
275275

276276
#
277277
# $Log: not supported by cvs2svn $
278+
# Revision 1.2 2001/07/19 05:52:22 anthonybaxter
279+
# Added CVS keywords Id and Log to all python files.
280+
#
278281
#
279282

roundup.py

Lines changed: 31 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /usr/bin/python
22

3-
# $Id: roundup.py,v 1.3 2001-07-19 06:08:24 anthonybaxter Exp $
3+
# $Id: roundup.py,v 1.4 2001-07-19 06:27:07 anthonybaxter Exp $
44

55
import sys
66
if int(sys.version[0]) < 2:
@@ -34,15 +34,32 @@ def usage():
3434
print '''Usage:
3535
3636
roundup init
37+
-- initialise the database
3738
roundup spec classname
39+
-- show the properties for a classname
3840
roundup create [-user login] classname propname=value ...
41+
-- create a new entry of a given class
3942
roundup list [-list] classname
43+
-- list the instances of a class
4044
roundup history [-list] designator
45+
-- show the history entries of a designator
4146
roundup get [-list] designator[,designator,...] propname
47+
-- get the given property of one or more designator(s)
4248
roundup set [-user login] designator[,designator,...] propname=value ...
49+
-- set the given property of one or more designator(s)
4350
roundup find [-list] classname propname=value ...
51+
-- find the class instances with a given property
4452
roundup retire designator[,designator,...]
53+
-- "retire" a designator
54+
roundup help
55+
-- this help
56+
roundup morehelp
57+
-- even more detailed help
58+
'''
4559

60+
def moreusage():
61+
usage()
62+
print '''
4663
A designator is a classname and a nodeid concatenated, eg. bug1, user10, ...
4764
4865
Property values are represented as strings in command arguments and in the
@@ -194,7 +211,16 @@ def main():
194211
classname, nodeid = roundupdb.splitDesignator(designator)
195212
db.getclass(classname).retire(nodeid)
196213

214+
elif command == 'help':
215+
usage()
216+
return 0
217+
218+
elif command == 'morehelp':
219+
moreusage()
220+
return 0
221+
197222
else:
223+
print "Unknown command '%s'"%command
198224
usage()
199225
return 1
200226

@@ -206,8 +232,10 @@ def main():
206232

207233
#
208234
# $Log: not supported by cvs2svn $
209-
# Revision 1.2 2001/07/19 05:52:22 anthonybaxter
210-
# Added CVS keywords $Id: roundup.py,v 1.3 2001-07-19 06:08:24 anthonybaxter Exp $ and $Log: not supported by cvs2svn $ to all python files.
235+
# Revision 1.3 2001/07/19 06:08:24 anthonybaxter
236+
# fixed typo in usage string because it was bugging me each time I saw it.
211237
#
238+
# Revision 1.2 2001/07/19 05:52:22 anthonybaxter
239+
# Added CVS keywords Id and Log
212240
#
213241

roundup_cgi.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: roundup_cgi.py,v 1.3 2001-07-19 05:52:22 anthonybaxter Exp $
1+
# $Id: roundup_cgi.py,v 1.4 2001-07-19 06:27:07 anthonybaxter Exp $
22

33
import os, cgi, pprint, StringIO, urlparse, re, traceback
44

@@ -482,5 +482,8 @@ def __del__(self):
482482

483483
#
484484
# $Log: not supported by cvs2svn $
485+
# Revision 1.3 2001/07/19 05:52:22 anthonybaxter
486+
# Added CVS keywords Id and Log to all python files.
487+
#
485488
#
486489

roundupdb.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: roundupdb.py,v 1.3 2001-07-19 05:52:22 anthonybaxter Exp $
1+
# $Id: roundupdb.py,v 1.4 2001-07-19 06:27:07 anthonybaxter Exp $
22

33
import re, os, smtplib, socket
44

@@ -374,5 +374,8 @@ def initDB(storagelocator, password):
374374

375375
#
376376
# $Log: not supported by cvs2svn $
377+
# Revision 1.3 2001/07/19 05:52:22 anthonybaxter
378+
# Added CVS keywords Id and Log to all python files.
379+
#
377380
#
378381

server.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Stolen from CGIHTTPServer
55
6-
$Id: server.py,v 1.2 2001-07-19 05:52:22 anthonybaxter Exp $
6+
$Id: server.py,v 1.3 2001-07-19 06:27:07 anthonybaxter Exp $
77
88
"""
99
import sys
@@ -152,5 +152,8 @@ def nobody_uid():
152152

153153
#
154154
# $Log: not supported by cvs2svn $
155+
# Revision 1.2 2001/07/19 05:52:22 anthonybaxter
156+
# Added CVS keywords Id and Log to all python files.
157+
#
155158
#
156159

template.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: template.py,v 1.3 2001-07-19 05:52:22 anthonybaxter Exp $
1+
# $Id: template.py,v 1.4 2001-07-19 06:27:07 anthonybaxter Exp $
22

33
import os, re, StringIO, urllib
44

@@ -697,5 +697,8 @@ def newitem(fp, db, classname, form, replace=re.compile(
697697

698698
#
699699
# $Log: not supported by cvs2svn $
700+
# Revision 1.3 2001/07/19 05:52:22 anthonybaxter
701+
# Added CVS keywords Id and Log to all python files.
702+
#
700703
#
701704

0 commit comments

Comments
 (0)