From: anthonybaxter Date: Thu, 19 Jul 2001 05:52:22 +0000 (+0000) Subject: Added CVS keywords $Id$ and $Log$ to all python files. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=36acb55e5d04abcda51478b62e2b77a7916cab36;p=roundup.git Added CVS keywords $Id$ and $Log$ to all python files. git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@9 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/cgitb.py b/cgitb.py index 5af5ef6..b7e2bda 100644 --- a/cgitb.py +++ b/cgitb.py @@ -1,3 +1,5 @@ +# $Id: cgitb.py,v 1.2 2001-07-19 05:52:22 anthonybaxter Exp $ + import sys, os, types, string, keyword, linecache, tokenize, inspect, pydoc def breaker(): @@ -111,3 +113,6 @@ def handler(): print breaker() print html() +# +# $Log: not supported by cvs2svn $ +# diff --git a/config.py b/config.py index c684e36..cd363a4 100644 --- a/config.py +++ b/config.py @@ -1,3 +1,5 @@ +# $Id: config.py,v 1.4 2001-07-19 05:52:22 anthonybaxter Exp $ + ROUNDUP_HOME=MAIL_DOMAIN=MAILHOST=None try: @@ -32,3 +34,8 @@ ADMIN_EMAIL = 'roundup-admin@%s'%MAIL_DOMAIN LOG = os.path.join(ROUNDUP_HOME, 'roundup.log') del os + +# +# $Log: not supported by cvs2svn $ +# + diff --git a/date.py b/date.py index 47b94db..06580a6 100644 --- a/date.py +++ b/date.py @@ -1,3 +1,5 @@ +# $Id: date.py,v 1.2 2001-07-19 05:52:22 anthonybaxter Exp $ + import time, re, calendar class Date: @@ -340,3 +342,7 @@ def test(): if __name__ == '__main__': test() +# +# $Log: not supported by cvs2svn $ +# + diff --git a/hyperdb.py b/hyperdb.py index c7684d3..ae8a654 100644 --- a/hyperdb.py +++ b/hyperdb.py @@ -1,3 +1,5 @@ +# $Id: hyperdb.py,v 1.3 2001-07-19 05:52:22 anthonybaxter Exp $ + import bsddb, os, cPickle, re, string import date @@ -917,3 +919,7 @@ if __name__ == '__main__': # TODO: set up some filter tests +# +# $Log: not supported by cvs2svn $ +# + diff --git a/roundup-mailgw.py b/roundup-mailgw.py index 5462016..91cd5a8 100755 --- a/roundup-mailgw.py +++ b/roundup-mailgw.py @@ -44,6 +44,8 @@ set() method to add the message to the item's spool; in the second case we 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: roundup-mailgw.py,v 1.2 2001-07-19 05:52:22 anthonybaxter Exp $ ''' import sys @@ -271,3 +273,7 @@ if __name__ == '__main__': roundup_mail(db, sys.stdin) db.close() +# +# $Log: not supported by cvs2svn $ +# + diff --git a/roundup.py b/roundup.py index 32b13f7..13ff99d 100755 --- a/roundup.py +++ b/roundup.py @@ -1,5 +1,7 @@ #! /usr/bin/python +# $Id: roundup.py,v 1.2 2001-07-19 05:52:22 anthonybaxter Exp $ + import sys if int(sys.version[0]) < 2: print 'Roundup requires python 2.0 or later.' @@ -202,3 +204,7 @@ def main(): if __name__ == '__main__': sys.exit(main()) +# +# $Log: not supported by cvs2svn $ +# + diff --git a/roundup_cgi.py b/roundup_cgi.py index 2ca5fa7..5899642 100644 --- a/roundup_cgi.py +++ b/roundup_cgi.py @@ -1,3 +1,5 @@ +# $Id: roundup_cgi.py,v 1.3 2001-07-19 05:52:22 anthonybaxter Exp $ + import os, cgi, pprint, StringIO, urlparse, re, traceback import config, roundupdb, template, date @@ -478,3 +480,7 @@ class Client: def __del__(self): self.db.close() +# +# $Log: not supported by cvs2svn $ +# + diff --git a/roundupdb.py b/roundupdb.py index 4e79832..d71d02a 100644 --- a/roundupdb.py +++ b/roundupdb.py @@ -1,3 +1,5 @@ +# $Id: roundupdb.py,v 1.3 2001-07-19 05:52:22 anthonybaxter Exp $ + import re, os, smtplib, socket import config, hyperdb, date @@ -370,3 +372,7 @@ def initDB(storagelocator, password): db.close() +# +# $Log: not supported by cvs2svn $ +# + diff --git a/server.py b/server.py index b9f2dc2..7d20fc8 100755 --- a/server.py +++ b/server.py @@ -3,6 +3,8 @@ Stolen from CGIHTTPServer +$Id: server.py,v 1.2 2001-07-19 05:52:22 anthonybaxter Exp $ + """ import sys if int(sys.version[0]) < 2: @@ -148,3 +150,7 @@ if __name__ == '__main__': print 'Roundup server started on', address httpd.serve_forever() +# +# $Log: not supported by cvs2svn $ +# + diff --git a/template.py b/template.py index b1393c4..b7cf167 100644 --- a/template.py +++ b/template.py @@ -1,3 +1,5 @@ +# $Id: template.py,v 1.3 2001-07-19 05:52:22 anthonybaxter Exp $ + import os, re, StringIO, urllib import hyperdb, date @@ -693,3 +695,7 @@ def newitem(fp, db, classname, form, replace=re.compile( w(replace.go(s)) w('') +# +# $Log: not supported by cvs2svn $ +# +