From efe03825ec770b4c20f5264e30a705b22e73267a Mon Sep 17 00:00:00 2001 From: richard Date: Sun, 29 Jul 2001 07:01:39 +0000 Subject: [PATCH] Added vim command to all source so that we don't get no steenkin' tabs :) git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@133 57a73879-2fb5-44c3-a270-3262357dd7e2 --- README.txt | 1 + cgi-bin/roundup.cgi | 8 ++++++-- roundup-admin | 10 +++++++--- roundup-mailgw | 8 +++++--- roundup-server | 8 ++++++-- roundup/__init__.py | 6 +++++- roundup/cgi_client.py | 7 ++++++- roundup/cgitb.py | 7 ++++++- roundup/date.py | 7 ++++++- roundup/htmltemplate.py | 7 ++++++- roundup/hyperdb.py | 7 ++++++- roundup/init.py | 7 ++++++- roundup/mailgw.py | 6 +++++- roundup/roundupdb.py | 7 ++++++- roundup/templatebuilder.py | 6 ++++++ roundup/templates/classic/__init__.py | 11 ++++++++++- roundup/templates/classic/dbinit.py | 12 ++++++++++-- roundup/templates/classic/instance_config.py | 6 +++++- roundup/templates/classic/interfaces.py | 9 ++++++--- roundup/templates/extended/__init__.py | 11 ++++++++++- roundup/templates/extended/dbinit.py | 7 +++++-- roundup/templates/extended/instance_config.py | 6 +++++- roundup/templates/extended/interfaces.py | 8 +++++--- setup.py | 8 ++++++-- test/README.txt | 7 +++++-- test/__init__.py | 6 +++++- test/test_dates.py | 6 +++++- test/test_db.py | 6 +++++- test/test_multipart.py | 6 +++++- test/test_schema.py | 6 +++++- 30 files changed, 175 insertions(+), 42 deletions(-) diff --git a/README.txt b/README.txt index 3f3ce57..c079d25 100644 --- a/README.txt +++ b/README.txt @@ -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: diff --git a/cgi-bin/roundup.cgi b/cgi-bin/roundup.cgi index ad2a7b9..e55dfbc 100755 --- a/cgi-bin/roundup.cgi +++ b/cgi-bin/roundup.cgi @@ -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 diff --git a/roundup-admin b/roundup-admin index df9ca58..51a5e0e 100755 --- a/roundup-admin +++ b/roundup-admin @@ -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 diff --git a/roundup-mailgw b/roundup-mailgw index c16e38e..639dfe5 100755 --- a/roundup-mailgw +++ b/roundup-mailgw @@ -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 diff --git a/roundup-server b/roundup-server index d6a03e0..9bebf8e 100755 --- a/roundup-server +++ b/roundup-server @@ -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 diff --git a/roundup/__init__.py b/roundup/__init__.py index 4afdd2d..20a310e 100644 --- a/roundup/__init__.py +++ b/roundup/__init__.py @@ -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 diff --git a/roundup/cgi_client.py b/roundup/cgi_client.py index 42c9d76..a30bc48 100644 --- a/roundup/cgi_client.py +++ b/roundup/cgi_client.py @@ -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 diff --git a/roundup/cgitb.py b/roundup/cgitb.py index 9d9fd9f..9edf113 100644 --- a/roundup/cgitb.py +++ b/roundup/cgitb.py @@ -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 diff --git a/roundup/date.py b/roundup/date.py index d6feb4f..fae7fbb 100644 --- a/roundup/date.py +++ b/roundup/date.py @@ -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 diff --git a/roundup/htmltemplate.py b/roundup/htmltemplate.py index b7edbf4..036ad19 100644 --- a/roundup/htmltemplate.py +++ b/roundup/htmltemplate.py @@ -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 diff --git a/roundup/hyperdb.py b/roundup/hyperdb.py index 2a09c3c..4dd8364 100644 --- a/roundup/hyperdb.py +++ b/roundup/hyperdb.py @@ -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 diff --git a/roundup/init.py b/roundup/init.py index 2667cd9..b2300c8 100644 --- a/roundup/init.py +++ b/roundup/init.py @@ -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 diff --git a/roundup/mailgw.py b/roundup/mailgw.py index 4ef6274..9465547 100644 --- a/roundup/mailgw.py +++ b/roundup/mailgw.py @@ -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 diff --git a/roundup/roundupdb.py b/roundup/roundupdb.py index 51cd1db..659a10e 100644 --- a/roundup/roundupdb.py +++ b/roundup/roundupdb.py @@ -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 diff --git a/roundup/templatebuilder.py b/roundup/templatebuilder.py index 1e30577..1b1fc7f 100644 --- a/roundup/templatebuilder.py +++ b/roundup/templatebuilder.py @@ -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 diff --git a/roundup/templates/classic/__init__.py b/roundup/templates/classic/__init__.py index 0a5422e..cf3e2e8 100644 --- a/roundup/templates/classic/__init__.py +++ b/roundup/templates/classic/__init__.py @@ -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 diff --git a/roundup/templates/classic/dbinit.py b/roundup/templates/classic/dbinit.py index 7bc71cc..06f39e4 100644 --- a/roundup/templates/classic/dbinit.py +++ b/roundup/templates/classic/dbinit.py @@ -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 diff --git a/roundup/templates/classic/instance_config.py b/roundup/templates/classic/instance_config.py index 6b13989..cdf3187 100644 --- a/roundup/templates/classic/instance_config.py +++ b/roundup/templates/classic/instance_config.py @@ -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 diff --git a/roundup/templates/classic/interfaces.py b/roundup/templates/classic/interfaces.py index 8db7082..9e54e41 100644 --- a/roundup/templates/classic/interfaces.py +++ b/roundup/templates/classic/interfaces.py @@ -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 diff --git a/roundup/templates/extended/__init__.py b/roundup/templates/extended/__init__.py index 2572c22..966d707 100644 --- a/roundup/templates/extended/__init__.py +++ b/roundup/templates/extended/__init__.py @@ -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 diff --git a/roundup/templates/extended/dbinit.py b/roundup/templates/extended/dbinit.py index 44da2b2..905d83b 100644 --- a/roundup/templates/extended/dbinit.py +++ b/roundup/templates/extended/dbinit.py @@ -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 diff --git a/roundup/templates/extended/instance_config.py b/roundup/templates/extended/instance_config.py index 653983d..e8fc5dd 100644 --- a/roundup/templates/extended/instance_config.py +++ b/roundup/templates/extended/instance_config.py @@ -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 diff --git a/roundup/templates/extended/interfaces.py b/roundup/templates/extended/interfaces.py index af495fe..c093c66 100644 --- a/roundup/templates/extended/interfaces.py +++ b/roundup/templates/extended/interfaces.py @@ -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 diff --git a/setup.py b/setup.py index 6d0e683..63a0d92 100644 --- 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 diff --git a/test/README.txt b/test/README.txt index c5773c8..026d365 100644 --- a/test/README.txt +++ b/test/README.txt @@ -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 diff --git a/test/__init__.py b/test/__init__.py index 83e94ed..7e841b3 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -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 diff --git a/test/test_dates.py b/test/test_dates.py index 38b0ef6..f38ffe2 100644 --- a/test/test_dates.py +++ b/test/test_dates.py @@ -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 diff --git a/test/test_db.py b/test/test_db.py index 9a149a4..ab7251a 100644 --- a/test/test_db.py +++ b/test/test_db.py @@ -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 diff --git a/test/test_multipart.py b/test/test_multipart.py index 54db28f..703d68a 100644 --- a/test/test_multipart.py +++ b/test/test_multipart.py @@ -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 diff --git a/test/test_schema.py b/test/test_schema.py index 4821aa4..4302861 100644 --- a/test/test_schema.py +++ b/test/test_schema.py @@ -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 -- 2.30.2