Code

Added vim command to all source so that we don't get no steenkin' tabs :)
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Sun, 29 Jul 2001 07:01:39 +0000 (07:01 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Sun, 29 Jul 2001 07:01:39 +0000 (07:01 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@133 57a73879-2fb5-44c3-a270-3262357dd7e2

30 files changed:
README.txt
cgi-bin/roundup.cgi
roundup-admin
roundup-mailgw
roundup-server
roundup/__init__.py
roundup/cgi_client.py
roundup/cgitb.py
roundup/date.py
roundup/htmltemplate.py
roundup/hyperdb.py
roundup/init.py
roundup/mailgw.py
roundup/roundupdb.py
roundup/templatebuilder.py
roundup/templates/classic/__init__.py
roundup/templates/classic/dbinit.py
roundup/templates/classic/instance_config.py
roundup/templates/classic/interfaces.py
roundup/templates/extended/__init__.py
roundup/templates/extended/dbinit.py
roundup/templates/extended/instance_config.py
roundup/templates/extended/interfaces.py
setup.py
test/README.txt
test/__init__.py
test/test_dates.py
test/test_db.py
test/test_multipart.py
test/test_schema.py

index 3f3ce5775eb9f4486b684fc2257e57d0932eefba..c079d25a166fa920d5ce48de7c187621262fc26a 100644 (file)
@@ -74,6 +74,7 @@ roundup.py:
   . getopt() for command line
 hyperdb:
   . transaction support
+  . more efficient reverse lookups
 roundupdb:
   . split the file storage into multiple dirs?
 roundup-mailgw:
index ad2a7b9980a43d23c3f2107b934bfe93756b0860..e55dfbcd44143ce0e645e13d08f950dd5144c816 100755 (executable)
@@ -1,6 +1,5 @@
 #!/usr/bin/env python
-
-# $Id: roundup.cgi,v 1.4 2001-07-23 04:47:27 anthonybaxter Exp $
+# $Id: roundup.cgi,v 1.5 2001-07-29 07:01:39 richard Exp $
 
 # python version check
 import sys
@@ -111,6 +110,10 @@ sys.stdout, sys.stderr = out, err
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.4  2001/07/23 04:47:27  anthonybaxter
+# renamed ROUNDUPS to ROUNDUP_INSTANCE_HOMES
+# sys.exit(0) if python version wrong.
+#
 # Revision 1.3  2001/07/23 04:33:30  richard
 # brought the CGI instance config dict in line with roundup-server
 #
@@ -121,3 +124,4 @@ sys.stdout, sys.stderr = out, err
 # More Grande Splite
 #
 #
+# vim: set filetype=python ts=4 sw=4 et si
index df9ca5823a528277221d45ba8fc0e7d0e32d115d..51a5e0eeefbe52eea6f8257007f0e705368562b3 100755 (executable)
@@ -1,6 +1,5 @@
 #! /usr/bin/python
-
-# $Id: roundup-admin,v 1.3 2001-07-23 08:45:28 richard Exp $
+# $Id: roundup-admin,v 1.4 2001-07-29 07:01:39 richard Exp $
 
 import sys
 if int(sys.version[0]) < 2:
@@ -292,6 +291,11 @@ if __name__ == '__main__':
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.3  2001/07/23 08:45:28  richard
+# ok, so now "./roundup-admin init" will ask questions in an attempt to get a
+# workable instance_home set up :)
+# _and_ anydbm has had its first test :)
+#
 # Revision 1.2  2001/07/23 08:20:44  richard
 # Moved over to using marshal in the bsddb and anydbm backends.
 # roundup-admin now has a "freshen" command that'll load/save all nodes (not
@@ -304,4 +308,4 @@ if __name__ == '__main__':
 # More Grande Splite stuff
 #
 #
-
+# vim: set filetype=python ts=4 sw=4 et si
index c16e38e96e1563ec04a073155d14e8eb5cc495ee..639dfe545300b4bb24c056824eb0c0d8069e91b7 100755 (executable)
@@ -1,6 +1,5 @@
 #! /usr/bin/python
-
-# $ID: $
+# $Id: roundup-mailgw,v 1.2 2001-07-29 07:01:39 richard Exp $
 
 import sys
 if int(sys.version[0]) < 2:
@@ -30,8 +29,11 @@ handler.main(sys.stdin)
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.1  2001/07/23 03:46:48  richard
+# moving the bin files to facilitate out-of-the-boxness
+#
 # Revision 1.1  2001/07/22 11:15:45  richard
 # More Grande Splite stuff
 #
 #
-
+# vim: set filetype=python ts=4 sw=4 et si
index d6a03e0eb0eeeb9807cf4a5ad4b9fa3a3f12d98b..9bebf8e5aaa1a62d7ca08f695cf17d9cb2d4d757 100755 (executable)
@@ -3,7 +3,7 @@
 
 Stolen from CGIHTTPServer
 
-$Id: roundup-server,v 1.5 2001-07-24 01:07:59 richard Exp $
+$Id: roundup-server,v 1.6 2001-07-29 07:01:39 richard Exp $
 
 """
 import sys
@@ -261,6 +261,10 @@ if __name__ == '__main__':
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.5  2001/07/24 01:07:59  richard
+# Added command-line arg handling to roundup-server so it's more useful
+# out-of-the-box.
+#
 # Revision 1.4  2001/07/23 10:31:45  richard
 # disabled the reloading until it can be done properly
 #
@@ -278,4 +282,4 @@ if __name__ == '__main__':
 # More Grande Splite stuff
 #
 #
-
+# vim: set filetype=python ts=4 sw=4 et si
index 4afdd2de5703e695d3683fc9f689c1e41be624f3..20a310e8a5c298c3ea315e50639b3af12d5749f7 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: __init__.py,v 1.3 2001-07-28 01:39:02 richard Exp $
+# $Id: __init__.py,v 1.4 2001-07-29 07:01:39 richard Exp $
 
 __doc__ = '''
 This is a simple-to-use and -install issue-tracking system with
@@ -50,7 +50,11 @@ much prettier cake :)
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.3  2001/07/28 01:39:02  richard
+# Added some documentation to the roundup package.
+#
 # Revision 1.2  2001/07/22 12:09:32  richard
 # Final commit of Grande Splite
 #
 #
+# vim: set filetype=python ts=4 sw=4 et si
index 42c9d76bfa2a4d42b8cee2ee8c9d3cbaca3108ed..a30bc48a7a394544b4cc6e5cdd8d8ea0d3745e8f 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: cgi_client.py,v 1.6 2001-07-29 04:04:00 richard Exp $
+# $Id: cgi_client.py,v 1.7 2001-07-29 07:01:39 richard Exp $
 
 import os, cgi, pprint, StringIO, urlparse, re, traceback
 
@@ -496,6 +496,9 @@ class Client:
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.6  2001/07/29 04:04:00  richard
+# Moved some code around allowing for subclassing to change behaviour.
+#
 # Revision 1.5  2001/07/28 08:16:52  richard
 # New issue form handles lack of note better now.
 #
@@ -511,3 +514,5 @@ class Client:
 # Revision 1.1  2001/07/22 11:58:35  richard
 # More Grande Splite
 #
+#
+# vim: set filetype=python ts=4 sw=4 et si
index 9d9fd9f64708e0994f3d9b419ff679e37b986ec5..9edf113a2c9006951ca7c900052736a6cfe8dbc3 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: cgitb.py,v 1.2 2001-07-22 12:09:32 richard Exp $
+# $Id: cgitb.py,v 1.3 2001-07-29 07:01:39 richard Exp $
 
 import sys, os, types, string, keyword, linecache, tokenize, inspect, pydoc
 
@@ -115,6 +115,11 @@ def handler():
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.2  2001/07/22 12:09:32  richard
+# Final commit of Grande Splite
+#
 # Revision 1.1  2001/07/22 11:58:35  richard
 # More Grande Splite
 #
+#
+# vim: set filetype=python ts=4 sw=4 et si
index d6feb4f260e66b3c92805af2918275064fa6d09c..fae7fbbc3492d95e738f4151409a2242187b31c8 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: date.py,v 1.4 2001-07-25 04:09:34 richard Exp $
+# $Id: date.py,v 1.5 2001-07-29 07:01:39 richard Exp $
 
 import time, re, calendar
 
@@ -355,6 +355,9 @@ if __name__ == '__main__':
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.4  2001/07/25 04:09:34  richard
+# Fixed offset handling (shoulda read the spec a little better)
+#
 # Revision 1.3  2001/07/23 07:56:05  richard
 # Storing only marshallable data in the db - no nasty pickled class references.
 #
@@ -364,3 +367,5 @@ if __name__ == '__main__':
 # Revision 1.1  2001/07/22 11:58:35  richard
 # More Grande Splite
 #
+#
+# vim: set filetype=python ts=4 sw=4 et si
index b7edbf45d732f5f4c5a7491d6d1051d5d4134110..036ad190cc67a1b66a9b85bbd05aab1c6b07672f 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: htmltemplate.py,v 1.7 2001-07-29 05:36:14 richard Exp $
+# $Id: htmltemplate.py,v 1.8 2001-07-29 07:01:39 richard Exp $
 
 import os, re, StringIO, urllib, cgi, errno
 
@@ -707,6 +707,9 @@ def newitem(client, templates, db, classname, form, replace=re.compile(
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.7  2001/07/29 05:36:14  richard
+# Cleanup of the link label generation.
+#
 # Revision 1.6  2001/07/29 04:06:42  richard
 # Fixed problem in link display when Link value is None.
 #
@@ -729,3 +732,5 @@ def newitem(client, templates, db, classname, form, replace=re.compile(
 # Revision 1.1  2001/07/22 11:58:35  richard
 # More Grande Splite
 #
+#
+# vim: set filetype=python ts=4 sw=4 et si
index 2a09c3c96a73ed11a6bd65164d265f9ccc17ee85..4dd8364fb8b3776406f40415662bf772b8952b2a 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: hyperdb.py,v 1.6 2001-07-29 05:36:14 richard Exp $
+# $Id: hyperdb.py,v 1.7 2001-07-29 07:01:39 richard Exp $
 
 # standard python modules
 import cPickle, re, string
@@ -789,6 +789,9 @@ def Choice(name, *options):
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.6  2001/07/29 05:36:14  richard
+# Cleanup of the link label generation.
+#
 # Revision 1.5  2001/07/29 04:05:37  richard
 # Added the fabricated property "id".
 #
@@ -806,3 +809,5 @@ def Choice(name, *options):
 # Revision 1.1  2001/07/22 11:58:35  richard
 # More Grande Splite
 #
+#
+# vim: set filetype=python ts=4 sw=4 et si
index 2667cd9ecc3d2ef9d089f1344b923cdf72d0eedb..b2300c8bb68a5c9c3f403bbbb00c243407e5cc0d 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: init.py,v 1.7 2001-07-28 07:59:53 richard Exp $
+# $Id: init.py,v 1.8 2001-07-29 07:01:39 richard Exp $
 
 import os, shutil, sys, errno
 
@@ -57,6 +57,10 @@ from roundup.backends.back_%s import Database'''%backend
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.7  2001/07/28 07:59:53  richard
+# Replaced errno integers with their module values.
+# De-tabbed templatebuilder.py
+#
 # Revision 1.6  2001/07/24 11:18:25  anthonybaxter
 # oops. left a print in
 #
@@ -80,3 +84,4 @@ from roundup.backends.back_%s import Database'''%backend
 # Final commit of Grande Splite
 #
 #
+# vim: set filetype=python ts=4 sw=4 et si
index 4ef6274631ecd98ebba1607f6055bde8555b8a99..94655476de3217461f77235d95ccb0bbd0dd9671 100644 (file)
@@ -55,7 +55,7 @@ are calling the create() method to create a new node). If an auditor raises
 an exception, the original message is bounced back to the sender with the
 explanatory message given in the exception. 
 
-$Id: mailgw.py,v 1.4 2001-07-28 06:43:02 richard Exp $
+$Id: mailgw.py,v 1.5 2001-07-29 07:01:39 richard Exp $
 '''
 
 
@@ -297,6 +297,9 @@ class MailGW:
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.4  2001/07/28 06:43:02  richard
+# Multipart message class has the getPart method now. Added some tests for it.
+#
 # Revision 1.3  2001/07/28 00:34:34  richard
 # Fixed some non-string node ids.
 #
@@ -304,3 +307,4 @@ class MailGW:
 # Final commit of Grande Splite
 #
 #
+# vim: set filetype=python ts=4 sw=4 et si
index 51cd1dbb0e55f0f8c4af176a80f935c8f48a83e4..659a10e343844e8cd8495302f189b69ea5299f9c 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: roundupdb.py,v 1.4 2001-07-29 04:05:37 richard Exp $
+# $Id: roundupdb.py,v 1.5 2001-07-29 07:01:39 richard Exp $
 
 import re, os, smtplib, socket
 
@@ -247,6 +247,9 @@ class IssueClass(Class):
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.4  2001/07/29 04:05:37  richard
+# Added the fabricated property "id".
+#
 # Revision 1.3  2001/07/23 07:14:41  richard
 # Moved the database backends off into backends.
 #
@@ -256,3 +259,5 @@ class IssueClass(Class):
 # Revision 1.1  2001/07/22 11:58:35  richard
 # More Grande Splite
 #
+#
+# vim: set filetype=python ts=4 sw=4 et si
index 1e305770147ab90d5778e1ad8da8d86ab893c306..1b1fc7f9165fc7a60813c382aa44480f5019c367 100644 (file)
@@ -1,3 +1,4 @@
+# $Id: templatebuilder.py,v 1.6 2001-07-29 07:01:39 richard Exp $
 import errno
 
 preamble = """ 
@@ -62,3 +63,8 @@ if __name__ == "__main__":
     else:
         raise "what you talkin about willis?"
 
+#
+# $Log: not supported by cvs2svn $
+#
+#
+# vim: set filetype=python ts=4 sw=4 et si
index 0a5422eaf0df4878a03788a8ff37cabe39fd77fa..cf3e2e8352597a4f1703d6acc5a2d09af05f6aa6 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: __init__.py,v 1.2 2001-07-24 10:46:22 anthonybaxter Exp $
+# $Id: __init__.py,v 1.3 2001-07-29 07:01:39 richard Exp $
 
 import sys
 from instance_config import *
@@ -10,6 +10,14 @@ from interfaces import *
 
 # 
 # $Log: not supported by cvs2svn $
+# Revision 1.2  2001/07/24 10:46:22  anthonybaxter
+# Added templatebuilder module. two functions - one to pack up the html base,
+# one to unpack it. Packed up the two standard templates into htmlbases.
+# Modified __init__ to install them.
+#
+# __init__.py magic was needed for the rather high levels of wierd import magic.
+# Reducing level of import magic == (good, future)
+#
 # Revision 1.1  2001/07/23 23:28:43  richard
 # Adding the classic template
 #
@@ -20,3 +28,4 @@ from interfaces import *
 # split __init__.py into 2. dbinit and instance_config.
 #
 #
+# vim: set filetype=python ts=4 sw=4 et si
index 7bc71cc066974dcc05360dc50a53b90d857af39a..06f39e47b1dcec858440ae65c4b865acac168183 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: dbinit.py,v 1.3 2001-07-24 10:46:22 anthonybaxter Exp $
+# $Id: dbinit.py,v 1.4 2001-07-29 07:01:39 richard Exp $
 
 import os
 
@@ -107,6 +107,14 @@ def init(adminpw):
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.3  2001/07/24 10:46:22  anthonybaxter
+# Added templatebuilder module. two functions - one to pack up the html base,
+# one to unpack it. Packed up the two standard templates into htmlbases.
+# Modified __init__ to install them.
+#
+# __init__.py magic was needed for the rather high levels of wierd import magic.
+# Reducing level of import magic == (good, future)
+#
 # Revision 1.2  2001/07/24 01:06:43  richard
 # Oops - accidentally duped the keywords class
 #
@@ -134,5 +142,5 @@ def init(adminpw):
 # Final commit of Grande Splite
 #
 #
-
+# vim: set filetype=python ts=4 sw=4 et si
 
index 6b139893ddb429af99be0b248ad8a90186242d26..cdf3187eb6603e32ae9497e24771091232e1c046 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: instance_config.py,v 1.1 2001-07-23 23:28:43 richard Exp $
+# $Id: instance_config.py,v 1.2 2001-07-29 07:01:39 richard Exp $
 
 MAIL_DOMAIN=MAILHOST=HTTP_HOST=None
 HTTP_PORT=0
@@ -44,7 +44,11 @@ LOG = os.path.join(INSTANCE_HOME, 'roundup.log')
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.1  2001/07/23 23:28:43  richard
+# Adding the classic template
+#
 # Revision 1.1  2001/07/23 04:33:21  anthonybaxter
 # split __init__.py into 2. dbinit and instance_config.
 #
 #
+# vim: set filetype=python ts=4 sw=4 et si
index 8db7082053b92002d4daec0d3a2a3ae3bcecdb07..9e54e419f5cbdbca644bc2f31ad4c7351ae121c0 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: interfaces.py,v 1.2 2001-07-29 04:07:37 richard Exp $
+# $Id: interfaces.py,v 1.3 2001-07-29 07:01:39 richard Exp $
 
 import urlparse, os
 
@@ -51,6 +51,10 @@ class MailGW(mailgw.MailGW):
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.2  2001/07/29 04:07:37  richard
+# Fixed the classic template so it's more like the "advertised" Roundup
+# template.
+#
 # Revision 1.1  2001/07/23 23:28:43  richard
 # Adding the classic template
 #
@@ -58,5 +62,4 @@ class MailGW(mailgw.MailGW):
 # Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
 #
 #
-
-
+# vim: set filetype=python ts=4 sw=4 et si
index 2572c22147a6a343f01430e934a2e769c8200b7b..966d707327b013f6b0fffc3e7560a916afbaf904 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: __init__.py,v 1.4 2001-07-24 10:46:22 anthonybaxter Exp $
+# $Id: __init__.py,v 1.5 2001-07-29 07:01:39 richard Exp $
 
 from instance_config import *
 try:
@@ -10,6 +10,14 @@ from interfaces import *
 
 # 
 # $Log: not supported by cvs2svn $
+# Revision 1.4  2001/07/24 10:46:22  anthonybaxter
+# Added templatebuilder module. two functions - one to pack up the html base,
+# one to unpack it. Packed up the two standard templates into htmlbases.
+# Modified __init__ to install them.
+#
+# __init__.py magic was needed for the rather high levels of wierd import magic.
+# Reducing level of import magic == (good, future)
+#
 # Revision 1.3  2001/07/23 23:16:01  richard
 # Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
 #
@@ -17,3 +25,4 @@ from interfaces import *
 # split __init__.py into 2. dbinit and instance_config.
 #
 #
+# vim: set filetype=python ts=4 sw=4 et si
index 44da2b20834bcf6c59228c7c9a5b3602cc30cd82..905d83b4d69a2ac7fabe6af3dc59baa9757deafc 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: dbinit.py,v 1.6 2001-07-25 01:23:07 richard Exp $
+# $Id: dbinit.py,v 1.7 2001-07-29 07:01:39 richard Exp $
 
 import os
 
@@ -151,6 +151,9 @@ def init(adminpw):
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.6  2001/07/25 01:23:07  richard
+# Added the Roundup spec to the new documentation directory.
+#
 # Revision 1.5  2001/07/23 23:20:35  richard
 # forgot to remove the interfaces from the dbinit module ;)
 #
@@ -175,5 +178,5 @@ def init(adminpw):
 # Final commit of Grande Splite
 #
 #
-
+# vim: set filetype=python ts=4 sw=4 et si
 
index 653983d09c72e370b9d72432c8da8ac6927e6295..e8fc5ddd4e7d9efb55c14072d40f8bf6f4db5637 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: instance_config.py,v 1.1 2001-07-23 04:33:21 anthonybaxter Exp $
+# $Id: instance_config.py,v 1.2 2001-07-29 07:01:39 richard Exp $
 
 MAIL_DOMAIN=MAILHOST=HTTP_HOST=None
 HTTP_PORT=0
@@ -44,4 +44,8 @@ LOG = os.path.join(INSTANCE_HOME, 'roundup.log')
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.1  2001/07/23 04:33:21  anthonybaxter
+# split __init__.py into 2. dbinit and instance_config.
 #
+#
+# vim: set filetype=python ts=4 sw=4 et si
index af495fea283362529b44195dec28bc19293c184f..c093c663adfe108575036987ceebaf22b5d931ef 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: interfaces.py,v 1.1 2001-07-23 23:16:01 richard Exp $
+# $Id: interfaces.py,v 1.2 2001-07-29 07:01:39 richard Exp $
 
 import instance_config
 from roundup import cgi_client, mailgw 
@@ -20,6 +20,8 @@ class MailGW(mailgw.MailGW):
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.1  2001/07/23 23:16:01  richard
+# Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
 #
-
-
+#
+# vim: set filetype=python ts=4 sw=4 et si
index 6d0e683ad2dc291bb3b2043f1513cb6ad40d2cf3..63a0d926a71de931578dd3b9b84673425c8b810a 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,5 @@
 #! /usr/bin/env python
-
-# $Id: setup.py,v 1.5 2001-07-28 00:39:18 richard Exp $
+# $Id: setup.py,v 1.6 2001-07-29 07:01:39 richard Exp $
 
 from distutils.core import setup, Extension
 from distutils.util import get_platform
@@ -31,6 +30,9 @@ setup ( name = "roundup",
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.5  2001/07/28 00:39:18  richard
+# changes for the 0.2.1 distribution build.
+#
 # Revision 1.4  2001/07/27 07:20:17  richard
 # Makefile is now obsolete - setup does what it used to do.
 #
@@ -42,3 +44,5 @@ setup ( name = "roundup",
 # Made setup.py executable, added id and log.
 #
 #
+#
+# vim: set filetype=python ts=4 sw=4 et si
index c5773c8d7bc3279eea90080b7b9734c1a3b613c8..026d3651496e42c1788f4a8d21b653a8272ae98d 100644 (file)
@@ -1,6 +1,6 @@
-$Id: README.txt,v 1.1 2001-07-27 07:16:21 richard Exp $
+$Id: README.txt,v 1.2 2001-07-29 07:01:39 richard Exp $
 
-Structre of the tests:
+Structure of the tests:
 
    1   Test date classes
    1.1 Date
@@ -21,6 +21,9 @@ Structre of the tests:
 
 ------
 $Log: not supported by cvs2svn $
+Revision 1.1  2001/07/27 07:16:21  richard
+rename for consistency
+
 Revision 1.1  2001/07/27 06:55:07  richard
 moving tests -> test
 
index 83e94ed8c6316dd74a6fc0dedd357e18e30fe3b2..7e841b3f0eb59b508fd50206623ba29342e7882c 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: __init__.py,v 1.2 2001-07-28 06:43:02 richard Exp $
+# $Id: __init__.py,v 1.3 2001-07-29 07:01:39 richard Exp $
 
 import unittest
 
@@ -16,6 +16,9 @@ def go():
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.2  2001/07/28 06:43:02  richard
+# Multipart message class has the getPart method now. Added some tests for it.
+#
 # Revision 1.1  2001/07/27 06:55:07  richard
 # moving tests -> test
 #
@@ -23,3 +26,4 @@ def go():
 # Added id and log to tests files...
 #
 #
+# vim: set filetype=python ts=4 sw=4 et si
index 38b0ef6ec83215e5b3d48a56604a0661a22fa8a3..f38ffe2033f8cd5ae983ecb2827a574747dde1ce 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: test_dates.py,v 1.2 2001-07-29 06:42:20 richard Exp $ 
+# $Id: test_dates.py,v 1.3 2001-07-29 07:01:39 richard Exp $ 
 
 import unittest, time
 
@@ -66,6 +66,9 @@ def suite():
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.2  2001/07/29 06:42:20  richard
+# Added Interval tests.
+#
 # Revision 1.1  2001/07/27 06:55:07  richard
 # moving tests -> test
 #
@@ -73,3 +76,4 @@ def suite():
 # Added id and log to tests files...
 #
 #
+# vim: set filetype=python ts=4 sw=4 et si
index 9a149a41cfb99a13909e3074dbc77ee36b86ea9b..ab7251a0e87a84dc57f1ff6807950c4c05ae39ec 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: test_db.py,v 1.2 2001-07-29 04:09:20 richard Exp $ 
+# $Id: test_db.py,v 1.3 2001-07-29 07:01:39 richard Exp $ 
 
 import unittest, os, shutil
 
@@ -157,6 +157,9 @@ def suite():
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.2  2001/07/29 04:09:20  richard
+# Added the fabricated property "id" to all hyperdb classes.
+#
 # Revision 1.1  2001/07/27 06:55:07  richard
 # moving tests -> test
 #
@@ -173,3 +176,4 @@ def suite():
 # Added id and log to tests files...
 #
 #
+# vim: set filetype=python ts=4 sw=4 et si
index 54db28f5a0cf5468aa8dc4b1236b739243cb7110..703d68a1aa3d69118d6d2ceed72e8482f26f2261 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: test_multipart.py,v 1.1 2001-07-28 06:43:02 richard Exp $ 
+# $Id: test_multipart.py,v 1.2 2001-07-29 07:01:39 richard Exp $ 
 
 import unittest, cStringIO
 
@@ -97,4 +97,8 @@ def suite():
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.1  2001/07/28 06:43:02  richard
+# Multipart message class has the getPart method now. Added some tests for it.
 #
+#
+# vim: set filetype=python ts=4 sw=4 et si
index 4821aa450dab3f01f259a41463e301b1c18cf566..4302861fee05c2dbd5fac50aa9cd99c61183d098 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: test_schema.py,v 1.1 2001-07-27 06:55:07 richard Exp $ 
+# $Id: test_schema.py,v 1.2 2001-07-29 07:01:39 richard Exp $ 
 
 import unittest, os, shutil
 
@@ -58,7 +58,11 @@ def suite():
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.1  2001/07/27 06:55:07  richard
+# moving tests -> test
+#
 # Revision 1.3  2001/07/25 04:34:31  richard
 # Added id and log to tests files...
 #
 #
+# vim: set filetype=python ts=4 sw=4 et si