Skip to content

Commit 1e412a0

Browse files
author
Richard Jones
committed
Added vim command to all source so that we don't get no steenkin' tabs :)
1 parent 7f08581 commit 1e412a0

30 files changed

+175
-42
lines changed

README.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ roundup.py:
7474
. getopt() for command line
7575
hyperdb:
7676
. transaction support
77+
. more efficient reverse lookups
7778
roundupdb:
7879
. split the file storage into multiple dirs?
7980
roundup-mailgw:

cgi-bin/roundup.cgi

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/usr/bin/env python
2-
3-
# $Id: roundup.cgi,v 1.4 2001-07-23 04:47:27 anthonybaxter Exp $
2+
# $Id: roundup.cgi,v 1.5 2001-07-29 07:01:39 richard Exp $
43

54
# python version check
65
import sys
@@ -111,6 +110,10 @@ sys.stdout, sys.stderr = out, err
111110

112111
#
113112
# $Log: not supported by cvs2svn $
113+
# Revision 1.4 2001/07/23 04:47:27 anthonybaxter
114+
# renamed ROUNDUPS to ROUNDUP_INSTANCE_HOMES
115+
# sys.exit(0) if python version wrong.
116+
#
114117
# Revision 1.3 2001/07/23 04:33:30 richard
115118
# brought the CGI instance config dict in line with roundup-server
116119
#
@@ -121,3 +124,4 @@ sys.stdout, sys.stderr = out, err
121124
# More Grande Splite
122125
#
123126
#
127+
# vim: set filetype=python ts=4 sw=4 et si

roundup-admin

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#! /usr/bin/python
2-
3-
# $Id: roundup-admin,v 1.3 2001-07-23 08:45:28 richard Exp $
2+
# $Id: roundup-admin,v 1.4 2001-07-29 07:01:39 richard Exp $
43

54
import sys
65
if int(sys.version[0]) < 2:
@@ -292,6 +291,11 @@ if __name__ == '__main__':
292291

293292
#
294293
# $Log: not supported by cvs2svn $
294+
# Revision 1.3 2001/07/23 08:45:28 richard
295+
# ok, so now "./roundup-admin init" will ask questions in an attempt to get a
296+
# workable instance_home set up :)
297+
# _and_ anydbm has had its first test :)
298+
#
295299
# Revision 1.2 2001/07/23 08:20:44 richard
296300
# Moved over to using marshal in the bsddb and anydbm backends.
297301
# roundup-admin now has a "freshen" command that'll load/save all nodes (not
@@ -304,4 +308,4 @@ if __name__ == '__main__':
304308
# More Grande Splite stuff
305309
#
306310
#
307-
311+
# vim: set filetype=python ts=4 sw=4 et si

roundup-mailgw

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#! /usr/bin/python
2-
3-
# $ID: $
2+
# $Id: roundup-mailgw,v 1.2 2001-07-29 07:01:39 richard Exp $
43

54
import sys
65
if int(sys.version[0]) < 2:
@@ -30,8 +29,11 @@ handler.main(sys.stdin)
3029

3130
#
3231
# $Log: not supported by cvs2svn $
32+
# Revision 1.1 2001/07/23 03:46:48 richard
33+
# moving the bin files to facilitate out-of-the-boxness
34+
#
3335
# Revision 1.1 2001/07/22 11:15:45 richard
3436
# More Grande Splite stuff
3537
#
3638
#
37-
39+
# vim: set filetype=python ts=4 sw=4 et si

roundup-server

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Stolen from CGIHTTPServer
55
6-
$Id: roundup-server,v 1.5 2001-07-24 01:07:59 richard Exp $
6+
$Id: roundup-server,v 1.6 2001-07-29 07:01:39 richard Exp $
77
88
"""
99
import sys
@@ -261,6 +261,10 @@ if __name__ == '__main__':
261261

262262
#
263263
# $Log: not supported by cvs2svn $
264+
# Revision 1.5 2001/07/24 01:07:59 richard
265+
# Added command-line arg handling to roundup-server so it's more useful
266+
# out-of-the-box.
267+
#
264268
# Revision 1.4 2001/07/23 10:31:45 richard
265269
# disabled the reloading until it can be done properly
266270
#
@@ -278,4 +282,4 @@ if __name__ == '__main__':
278282
# More Grande Splite stuff
279283
#
280284
#
281-
285+
# vim: set filetype=python ts=4 sw=4 et si

roundup/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: __init__.py,v 1.3 2001-07-28 01:39:02 richard Exp $
1+
# $Id: __init__.py,v 1.4 2001-07-29 07:01:39 richard Exp $
22

33
__doc__ = '''
44
This is a simple-to-use and -install issue-tracking system with
@@ -50,7 +50,11 @@
5050

5151
#
5252
# $Log: not supported by cvs2svn $
53+
# Revision 1.3 2001/07/28 01:39:02 richard
54+
# Added some documentation to the roundup package.
55+
#
5356
# Revision 1.2 2001/07/22 12:09:32 richard
5457
# Final commit of Grande Splite
5558
#
5659
#
60+
# vim: set filetype=python ts=4 sw=4 et si

roundup/cgi_client.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: cgi_client.py,v 1.6 2001-07-29 04:04:00 richard Exp $
1+
# $Id: cgi_client.py,v 1.7 2001-07-29 07:01:39 richard Exp $
22

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

@@ -496,6 +496,9 @@ def __del__(self):
496496

497497
#
498498
# $Log: not supported by cvs2svn $
499+
# Revision 1.6 2001/07/29 04:04:00 richard
500+
# Moved some code around allowing for subclassing to change behaviour.
501+
#
499502
# Revision 1.5 2001/07/28 08:16:52 richard
500503
# New issue form handles lack of note better now.
501504
#
@@ -511,3 +514,5 @@ def __del__(self):
511514
# Revision 1.1 2001/07/22 11:58:35 richard
512515
# More Grande Splite
513516
#
517+
#
518+
# vim: set filetype=python ts=4 sw=4 et si

roundup/cgitb.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: cgitb.py,v 1.2 2001-07-22 12:09:32 richard Exp $
1+
# $Id: cgitb.py,v 1.3 2001-07-29 07:01:39 richard Exp $
22

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

@@ -115,6 +115,11 @@ def handler():
115115

116116
#
117117
# $Log: not supported by cvs2svn $
118+
# Revision 1.2 2001/07/22 12:09:32 richard
119+
# Final commit of Grande Splite
120+
#
118121
# Revision 1.1 2001/07/22 11:58:35 richard
119122
# More Grande Splite
120123
#
124+
#
125+
# vim: set filetype=python ts=4 sw=4 et si

roundup/date.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: date.py,v 1.4 2001-07-25 04:09:34 richard Exp $
1+
# $Id: date.py,v 1.5 2001-07-29 07:01:39 richard Exp $
22

33
import time, re, calendar
44

@@ -355,6 +355,9 @@ def test():
355355

356356
#
357357
# $Log: not supported by cvs2svn $
358+
# Revision 1.4 2001/07/25 04:09:34 richard
359+
# Fixed offset handling (shoulda read the spec a little better)
360+
#
358361
# Revision 1.3 2001/07/23 07:56:05 richard
359362
# Storing only marshallable data in the db - no nasty pickled class references.
360363
#
@@ -364,3 +367,5 @@ def test():
364367
# Revision 1.1 2001/07/22 11:58:35 richard
365368
# More Grande Splite
366369
#
370+
#
371+
# vim: set filetype=python ts=4 sw=4 et si

roundup/htmltemplate.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: htmltemplate.py,v 1.7 2001-07-29 05:36:14 richard Exp $
1+
# $Id: htmltemplate.py,v 1.8 2001-07-29 07:01:39 richard Exp $
22

33
import os, re, StringIO, urllib, cgi, errno
44

@@ -707,6 +707,9 @@ def newitem(client, templates, db, classname, form, replace=re.compile(
707707

708708
#
709709
# $Log: not supported by cvs2svn $
710+
# Revision 1.7 2001/07/29 05:36:14 richard
711+
# Cleanup of the link label generation.
712+
#
710713
# Revision 1.6 2001/07/29 04:06:42 richard
711714
# Fixed problem in link display when Link value is None.
712715
#
@@ -729,3 +732,5 @@ def newitem(client, templates, db, classname, form, replace=re.compile(
729732
# Revision 1.1 2001/07/22 11:58:35 richard
730733
# More Grande Splite
731734
#
735+
#
736+
# vim: set filetype=python ts=4 sw=4 et si

0 commit comments

Comments
 (0)