summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 640dac5)
raw | patch | inline | side by side (parent: 640dac5)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Sun, 29 Jul 2001 07:01:39 +0000 (07:01 +0000) | ||
committer | richard <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:
diff --git a/README.txt b/README.txt
index 3f3ce5775eb9f4486b684fc2257e57d0932eefba..c079d25a166fa920d5ce48de7c187621262fc26a 100644 (file)
--- a/README.txt
+++ b/README.txt
. 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 ad2a7b9980a43d23c3f2107b934bfe93756b0860..e55dfbcd44143ce0e645e13d08f950dd5144c816 100755 (executable)
--- a/cgi-bin/roundup.cgi
+++ b/cgi-bin/roundup.cgi
#!/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
#
# $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
#
# More Grande Splite
#
#
+# vim: set filetype=python ts=4 sw=4 et si
diff --git a/roundup-admin b/roundup-admin
index df9ca5823a528277221d45ba8fc0e7d0e32d115d..51a5e0eeefbe52eea6f8257007f0e705368562b3 100755 (executable)
--- a/roundup-admin
+++ b/roundup-admin
#! /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:
#
# $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
# More Grande Splite stuff
#
#
-
+# vim: set filetype=python ts=4 sw=4 et si
diff --git a/roundup-mailgw b/roundup-mailgw
index c16e38e96e1563ec04a073155d14e8eb5cc495ee..639dfe545300b4bb24c056824eb0c0d8069e91b7 100755 (executable)
--- a/roundup-mailgw
+++ b/roundup-mailgw
#! /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:
#
# $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 d6a03e0eb0eeeb9807cf4a5ad4b9fa3a3f12d98b..9bebf8e5aaa1a62d7ca08f695cf17d9cb2d4d757 100755 (executable)
--- a/roundup-server
+++ b/roundup-server
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
#
# $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
#
# 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 4afdd2de5703e695d3683fc9f689c1e41be624f3..20a310e8a5c298c3ea315e50639b3af12d5749f7 100644 (file)
--- a/roundup/__init__.py
+++ b/roundup/__init__.py
-# $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
#
# $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 42c9d76bfa2a4d42b8cee2ee8c9d3cbaca3108ed..a30bc48a7a394544b4cc6e5cdd8d8ea0d3745e8f 100644 (file)
--- a/roundup/cgi_client.py
+++ b/roundup/cgi_client.py
-# $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
#
# $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.
#
# 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 9d9fd9f64708e0994f3d9b419ff679e37b986ec5..9edf113a2c9006951ca7c900052736a6cfe8dbc3 100644 (file)
--- a/roundup/cgitb.py
+++ b/roundup/cgitb.py
-# $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
#
# $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 d6feb4f260e66b3c92805af2918275064fa6d09c..fae7fbbc3492d95e738f4151409a2242187b31c8 100644 (file)
--- a/roundup/date.py
+++ b/roundup/date.py
-# $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
#
# $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.
#
# 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)
--- a/roundup/htmltemplate.py
+++ b/roundup/htmltemplate.py
-# $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
#
# $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.
#
# 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 2a09c3c96a73ed11a6bd65164d265f9ccc17ee85..4dd8364fb8b3776406f40415662bf772b8952b2a 100644 (file)
--- a/roundup/hyperdb.py
+++ b/roundup/hyperdb.py
-# $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
#
# $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".
#
# 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 2667cd9ecc3d2ef9d089f1344b923cdf72d0eedb..b2300c8bb68a5c9c3f403bbbb00c243407e5cc0d 100644 (file)
--- a/roundup/init.py
+++ b/roundup/init.py
-# $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
#
# $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
#
# 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 4ef6274631ecd98ebba1607f6055bde8555b8a99..94655476de3217461f77235d95ccb0bbd0dd9671 100644 (file)
--- a/roundup/mailgw.py
+++ b/roundup/mailgw.py
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 $
'''
#
# $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.
#
# 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 51cd1dbb0e55f0f8c4af176a80f935c8f48a83e4..659a10e343844e8cd8495302f189b69ea5299f9c 100644 (file)
--- a/roundup/roundupdb.py
+++ b/roundup/roundupdb.py
-# $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
#
# $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.
#
# 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)
+# $Id: templatebuilder.py,v 1.6 2001-07-29 07:01:39 richard Exp $
import errno
preamble = """
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)
-# $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 *
#
# $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
#
# split __init__.py into 2. dbinit and instance_config.
#
#
+# vim: set filetype=python ts=4 sw=4 et si
index 7bc71cc066974dcc05360dc50a53b90d857af39a..06f39e47b1dcec858440ae65c4b865acac168183 100644 (file)
-# $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
#
# $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
#
# 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 6b139893ddb429af99be0b248ad8a90186242d26..cdf3187eb6603e32ae9497e24771091232e1c046 100644 (file)
-# $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
#
# $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)
-# $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
#
# $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
#
# 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)
-# $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:
#
# $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.
#
# split __init__.py into 2. dbinit and instance_config.
#
#
+# vim: set filetype=python ts=4 sw=4 et si
index 44da2b20834bcf6c59228c7c9a5b3602cc30cd82..905d83b4d69a2ac7fabe6af3dc59baa9757deafc 100644 (file)
-# $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
#
# $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 ;)
#
# 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 653983d09c72e370b9d72432c8da8ac6927e6295..e8fc5ddd4e7d9efb55c14072d40f8bf6f4db5637 100644 (file)
-# $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
#
# $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)
-# $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
#
# $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 6d0e683ad2dc291bb3b2043f1513cb6ad40d2cf3..63a0d926a71de931578dd3b9b84673425c8b810a 100644 (file)
--- a/setup.py
+++ b/setup.py
#! /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
#
# $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.
#
# 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 c5773c8d7bc3279eea90080b7b9734c1a3b613c8..026d3651496e42c1788f4a8d21b653a8272ae98d 100644 (file)
--- a/test/README.txt
+++ b/test/README.txt
-$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
------
$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 83e94ed8c6316dd74a6fc0dedd357e18e30fe3b2..7e841b3f0eb59b508fd50206623ba29342e7882c 100644 (file)
--- a/test/__init__.py
+++ b/test/__init__.py
-# $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
#
# $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
#
# 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 38b0ef6ec83215e5b3d48a56604a0661a22fa8a3..f38ffe2033f8cd5ae983ecb2827a574747dde1ce 100644 (file)
--- a/test/test_dates.py
+++ b/test/test_dates.py
-# $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
#
# $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
#
# 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 9a149a41cfb99a13909e3074dbc77ee36b86ea9b..ab7251a0e87a84dc57f1ff6807950c4c05ae39ec 100644 (file)
--- a/test/test_db.py
+++ b/test/test_db.py
-# $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
#
# $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
#
# 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 54db28f5a0cf5468aa8dc4b1236b739243cb7110..703d68a1aa3d69118d6d2ceed72e8482f26f2261 100644 (file)
--- a/test/test_multipart.py
+++ b/test/test_multipart.py
-# $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
#
# $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 4821aa450dab3f01f259a41463e301b1c18cf566..4302861fee05c2dbd5fac50aa9cd99c61183d098 100644 (file)
--- a/test/test_schema.py
+++ b/test/test_schema.py
-# $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
#
# $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