Tell subversion to expand the Id keyword:

  - replaced old CVS expansion with a clean $Id$
  - set the svn:keywords property to "Id"

When you check-in files in the future and want $Id$ to be expanded,
make sure it reads "$Id$" in that file; then set svn:keywords to "Id".

ZODB, ZEO, Persistence and similar packages were not modified since they
are really maintained elsewhere. Right now, we use a copy of them in our
Zope/Zope3 trees. We should go back to the module sharing (using
svn:externals).
parent 0e899545
#!/bin/sh #!/bin/sh
# Zope configure script # Zope configure script
# $Id: configure,v 1.24 2004/04/15 14:21:00 fdrake Exp $ # $Id$
# $Revision: 1.24 $ # $Rev$
##################################################################### #####################################################################
# BEGIN EDITABLE PARAMETERS # # BEGIN EDITABLE PARAMETERS #
......
...@@ -1542,7 +1542,7 @@ initAcquisition(void) ...@@ -1542,7 +1542,7 @@ initAcquisition(void)
/* Create the module and add the functions */ /* Create the module and add the functions */
m = Py_InitModule4("Acquisition", methods, m = Py_InitModule4("Acquisition", methods,
"Provide base classes for acquiring objects\n\n" "Provide base classes for acquiring objects\n\n"
"$Id: Acquisition.c,v 1.62 2003/10/21 12:43:22 andreasjung Exp $\n", "$Id$\n",
OBJECT(NULL),PYTHON_API_VERSION); OBJECT(NULL),PYTHON_API_VERSION);
d = PyModule_GetDict(m); d = PyModule_GetDict(m);
......
...@@ -21,7 +21,7 @@ static char ExtensionClass_module_documentation[] = ...@@ -21,7 +21,7 @@ static char ExtensionClass_module_documentation[] =
" - They provide access to unbound methods,\n" " - They provide access to unbound methods,\n"
" - They can be called to create instances.\n" " - They can be called to create instances.\n"
"\n" "\n"
"$Id: ExtensionClass.c,v 1.62 2003/10/02 18:17:27 jeremy Exp $\n" "$Id$\n"
; ;
#include "ExtensionClass.h" #include "ExtensionClass.h"
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
############################################################################## ##############################################################################
'''Add security system support to Document Templates '''Add security system support to Document Templates
$Id: DTML.py,v 1.13 2004/01/19 14:49:28 Brian Exp $''' $Id$'''
__version__='$Revision: 1.13 $'[11:-2] __version__='$Revision: 1.13 $'[11:-2]
from DocumentTemplate import DT_Util from DocumentTemplate import DT_Util
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
############################################################################## ##############################################################################
"""Support for owned objects """Support for owned objects
$Id: Owned.py,v 1.24 2004/03/12 18:12:11 tseaver Exp $ $Id$
""" """
import Globals, urlparse, SpecialUsers, ExtensionClass import Globals, urlparse, SpecialUsers, ExtensionClass
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
__doc__='''short description __doc__='''short description
$Id: Permission.py,v 1.10 2002/08/14 21:29:07 mj Exp $''' $Id$'''
__version__='$Revision: 1.10 $'[11:-2] __version__='$Revision: 1.10 $'[11:-2]
import string, Products, Globals import string, Products, Globals
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
############################################################################## ##############################################################################
'''Objects that implement Permission-based roles. '''Objects that implement Permission-based roles.
$Id: PermissionRole.py,v 1.21 2004/01/15 23:09:03 tseaver Exp $''' $Id$'''
# The following names are inserted by AccessControl.Implementation: # The following names are inserted by AccessControl.Implementation:
# #
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
############################################################################## ##############################################################################
"""Constant definitions for built-in Zope permissions """Constant definitions for built-in Zope permissions
$Id: Permissions.py,v 1.8 2004/01/15 23:09:03 tseaver Exp $""" $Id$"""
access_contents_information='Access contents information' access_contents_information='Access contents information'
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
__doc__='''short description __doc__='''short description
$Id: SecurityManagement.py,v 1.10 2004/01/21 19:59:09 Brian Exp $''' $Id$'''
__version__='$Revision: 1.10 $'[11:-2] __version__='$Revision: 1.10 $'[11:-2]
def getSecurityManager(): def getSecurityManager():
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
'''API module to set the security policy '''API module to set the security policy
$Id: SecurityManager.py,v 1.15 2004/01/15 23:09:03 tseaver Exp $''' $Id$'''
from AccessControl import ImplPython as _ImplPython from AccessControl import ImplPython as _ImplPython
from AccessControl.SimpleObjectPolicies import _noroles from AccessControl.SimpleObjectPolicies import _noroles
......
...@@ -42,7 +42,7 @@ disallowed otherwise. ...@@ -42,7 +42,7 @@ disallowed otherwise.
XXX This descrition doesn't actually match what's done in ZopeGuards XXX This descrition doesn't actually match what's done in ZopeGuards
or in ZopeSecurityPolicy. :( or in ZopeSecurityPolicy. :(
$Id: SimpleObjectPolicies.py,v 1.16 2004/01/27 21:39:34 fdrake Exp $''' $Id$'''
_noroles = [] # this is imported in various places _noroles = [] # this is imported in various places
......
...@@ -16,7 +16,7 @@ This is needed to avoid a circular import problem. The 'real' values ...@@ -16,7 +16,7 @@ This is needed to avoid a circular import problem. The 'real' values
are stored here by the AccessControl.User module as part of it's are stored here by the AccessControl.User module as part of it's
initialization. initialization.
$Id: SpecialUsers.py,v 1.5 2003/07/11 14:21:30 fdrake Exp $ $Id$
""" """
__version__='$Revision: 1.5 $'[11:-2] __version__='$Revision: 1.5 $'[11:-2]
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
############################################################################## ##############################################################################
"""Define Zope's default security policy """Define Zope's default security policy
$Id: ZopeSecurityPolicy.py,v 1.26 2004/01/15 23:09:03 tseaver Exp $""" $Id$"""
# AccessControl.Implementation inserts ZopeSecurityPolicy, getRoles # AccessControl.Implementation inserts ZopeSecurityPolicy, getRoles
......
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE. DAMAGE.
$Id: cAccessControl.c,v 1.30 2004/02/18 18:55:04 jim Exp $ $Id$
If you have questions regarding this software, If you have questions regarding this software,
contact: contact:
...@@ -2296,7 +2296,7 @@ void initcAccessControl(void) { ...@@ -2296,7 +2296,7 @@ void initcAccessControl(void) {
module = Py_InitModule3("cAccessControl", module = Py_InitModule3("cAccessControl",
cAccessControl_methods, cAccessControl_methods,
"$Id: cAccessControl.c,v 1.30 2004/02/18 18:55:04 jim Exp $\n"); "$Id$\n");
aq_init(); /* For Python <= 2.1.1, aq_init() should be after aq_init(); /* For Python <= 2.1.1, aq_init() should be after
Py_InitModule(). */ Py_InitModule(). */
......
...@@ -16,7 +16,7 @@ class ResultObject: ...@@ -16,7 +16,7 @@ class ResultObject:
""" result object used for keeping results from the """ result object used for keeping results from the
ZPublisher.Zope() calls ZPublisher.Zope() calls
$Id: ResultObject.py,v 1.4 2002/08/14 21:27:32 mj Exp $ $Id$
""" """
def __str__(self,expected=-1,with_output=1): def __str__(self,expected=-1,with_output=1):
......
...@@ -39,7 +39,7 @@ __bobo_before__=AccessControl.SecurityManagement.noSecurityManager ...@@ -39,7 +39,7 @@ __bobo_before__=AccessControl.SecurityManagement.noSecurityManager
class SecurityBase(unittest.TestCase) : class SecurityBase(unittest.TestCase) :
""" Base class for all security tests """ Base class for all security tests
$Id: SecurityBase.py,v 1.7 2002/08/14 21:27:32 mj Exp $ $Id$
""" """
status_regex = re.compile("Status: ([0-9]{1,4}) (.*)",re.I)\ status_regex = re.compile("Status: ([0-9]{1,4}) (.*)",re.I)\
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
# #
############################################################################## ##############################################################################
# $Id: regressionSecurity.py,v 1.5 2002/08/14 21:27:32 mj Exp $ # $Id$
import os, sys, unittest import os, sys, unittest
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
"""Test Bindings """Test Bindings
$Id: testBindings.py,v 1.6 2004/03/09 16:48:02 evan Exp $ $Id$
""" """
import unittest import unittest
......
...@@ -16,7 +16,7 @@ To be removed together with the API in due time. ...@@ -16,7 +16,7 @@ To be removed together with the API in due time.
""" """
__rcs_id__='$Id: testDeprecatedAPI.py,v 1.6 2003/12/18 19:58:06 evan Exp $' __rcs_id__='$Id$'
__version__='$Revision: 1.6 $'[11:-2] __version__='$Revision: 1.6 $'[11:-2]
import ZODB # Sigh. Persistent needs to be set, so we import ZODB. import ZODB # Sigh. Persistent needs to be set, so we import ZODB.
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
"""Module Import Tests """Module Import Tests
""" """
__rcs_id__='$Id: testModuleSecurity.py,v 1.4 2002/08/21 20:01:37 shane Exp $' __rcs_id__='$Id$'
__version__='$Revision: 1.4 $'[11:-2] __version__='$Revision: 1.4 $'[11:-2]
import os, sys, unittest import os, sys, unittest
......
"""Unit tests for AccessControl.Owned """Unit tests for AccessControl.Owned
$Id: testOwned.py,v 1.3 2004/03/12 18:12:11 tseaver Exp $ $Id$
""" """
import unittest import unittest
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
"""Test of AuthEncoding """Test of AuthEncoding
""" """
__rcs_id__='$Id: testPasswordDigest.py,v 1.5 2003/01/27 22:55:27 gvanrossum Exp $' __rcs_id__='$Id$'
__version__='$Revision: 1.5 $'[11:-2] __version__='$Revision: 1.5 $'[11:-2]
import os, sys, unittest import os, sys, unittest
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
"""Tests of PermissionRole """Tests of PermissionRole
""" """
__rcs_id__='$Id: testPermissionRole.py,v 1.4 2002/12/16 19:15:05 chrism Exp $' __rcs_id__='$Id$'
__version__='$Revision: 1.4 $'[11:-2] __version__='$Revision: 1.4 $'[11:-2]
import os, sys, unittest import os, sys, unittest
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
"""Document Template Tests """Document Template Tests
""" """
__rcs_id__='$Id: testSecurity.py,v 1.13 2004/01/19 14:49:29 Brian Exp $' __rcs_id__='$Id$'
__version__='$Revision: 1.13 $'[11:-2] __version__='$Revision: 1.13 $'[11:-2]
import os, sys, unittest import os, sys, unittest
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
"""User folder tests """User folder tests
""" """
__rcs_id__='$Id: testUserFolder.py,v 1.10 2004/04/29 21:17:06 caseman Exp $' __rcs_id__='$Id$'
__version__='$Revision: 1.10 $'[11:-2] __version__='$Revision: 1.10 $'[11:-2]
import os, sys, base64, unittest import os, sys, base64, unittest
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
Well, at least begin testing some of the functionality Well, at least begin testing some of the functionality
$Id: testZopeGuards.py,v 1.2 2004/01/15 23:09:06 tseaver Exp $ $Id$
""" """
import os, sys import os, sys
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
"""Tests of ZopeSecurityPolicy """Tests of ZopeSecurityPolicy
""" """
__rcs_id__='$Id: testZopeSecurityPolicy.py,v 1.10 2004/01/27 19:22:51 Brian Exp $' __rcs_id__='$Id$'
__version__='$Revision: 1.10 $'[11:-2] __version__='$Revision: 1.10 $'[11:-2]
import os, sys, unittest import os, sys, unittest
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
"""Tests for the guarded iterartor. """Tests for the guarded iterartor.
$Id: test_safeiter.py,v 1.2 2004/01/15 23:09:06 tseaver Exp $ $Id$
""" """
import unittest import unittest
......
...@@ -1543,7 +1543,7 @@ init_Acquisition(void) ...@@ -1543,7 +1543,7 @@ init_Acquisition(void)
/* Create the module and add the functions */ /* Create the module and add the functions */
m = Py_InitModule4("_Acquisition", methods, m = Py_InitModule4("_Acquisition", methods,
"Provide base classes for acquiring objects\n\n" "Provide base classes for acquiring objects\n\n"
"$Id: _Acquisition.c,v 1.3 2003/12/27 13:54:02 sidnei Exp $\n", "$Id$\n",
OBJECT(NULL),PYTHON_API_VERSION); OBJECT(NULL),PYTHON_API_VERSION);
d = PyModule_GetDict(m); d = PyModule_GetDict(m);
......
...@@ -328,7 +328,7 @@ ...@@ -328,7 +328,7 @@
http://www.bell-labs.com/people/cope/oopsla/Oopsla96TechnicalProgramAbstracts.html#GilLorenz, http://www.bell-labs.com/people/cope/oopsla/Oopsla96TechnicalProgramAbstracts.html#GilLorenz,
OOPSLA '96 Proceedings, ACM SIG-PLAN, October, 1996 OOPSLA '96 Proceedings, ACM SIG-PLAN, October, 1996
$Id: tests.py,v 1.2 2003/11/28 16:44:14 jim Exp $ $Id$
""" """
import ExtensionClass import ExtensionClass
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
This class is mixed into the database manager in App.ApplicationManager. This class is mixed into the database manager in App.ApplicationManager.
$Id: CacheManager.py,v 1.31 2004/03/03 14:31:38 jeremy Exp $''' $Id$'''
__version__='$Revision: 1.31 $'[11:-2] __version__='$Revision: 1.31 $'[11:-2]
import time import time
......
...@@ -14,7 +14,7 @@ __doc__='''Standard routines for handling extensions. ...@@ -14,7 +14,7 @@ __doc__='''Standard routines for handling extensions.
Extensions currently include external methods and pluggable brains. Extensions currently include external methods and pluggable brains.
$Id: Extensions.py,v 1.23 2003/11/18 13:16:58 tseaver Exp $''' $Id$'''
__version__='$Revision: 1.23 $'[11:-2] __version__='$Revision: 1.23 $'[11:-2]
import os, zlib, imp import os, zlib, imp
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
############################################################################## ##############################################################################
__doc__='''Factory objects __doc__='''Factory objects
$Id: Factory.py,v 1.27 2003/05/14 14:43:44 shane Exp $''' $Id$'''
__version__='$Revision: 1.27 $'[11:-2] __version__='$Revision: 1.27 $'[11:-2]
import OFS.SimpleItem, Acquisition, Globals, AccessControl.Role import OFS.SimpleItem, Acquisition, Globals, AccessControl.Role
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
"""Standard management interface support """Standard management interface support
$Id: Management.py,v 1.66 2004/01/15 22:44:04 tseaver Exp $ $Id$
""" """
import sys, Globals, ExtensionClass, urllib import sys, Globals, ExtensionClass, urllib
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
############################################################################## ##############################################################################
__doc__='''Zope registerable permissions __doc__='''Zope registerable permissions
$Id: Permission.py,v 1.9 2003/05/28 14:51:12 shane Exp $''' $Id$'''
__version__='$Revision: 1.9 $'[11:-2] __version__='$Revision: 1.9 $'[11:-2]
import OFS.SimpleItem, Acquisition, Globals, ExtensionClass, AccessControl.Role import OFS.SimpleItem, Acquisition, Globals, ExtensionClass, AccessControl.Role
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
############################################################################## ##############################################################################
''' '''
Functions for refreshing products. Functions for refreshing products.
$Id: RefreshFuncs.py,v 1.7 2003/12/10 20:03:03 shane Exp $ $Id$
''' '''
import os, sys import os, sys
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
# #
############################################################################## ##############################################################################
""" """
$Id: Undo.py,v 1.34 2003/08/04 09:59:40 andreasjung Exp $""" $Id$"""
__version__='$Revision: 1.34 $'[11:-2] __version__='$Revision: 1.34 $'[11:-2]
from Acquisition import aq_base, aq_parent, aq_inner from Acquisition import aq_base, aq_parent, aq_inner
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
############################################################################## ##############################################################################
__doc__='''Simple module for writing tar files __doc__='''Simple module for writing tar files
$Id: tar.py,v 1.8 2004/01/19 16:28:08 Brian Exp $''' $Id$'''
__version__='$Revision: 1.8 $'[11:-2] __version__='$Revision: 1.8 $'[11:-2]
import sys, time, zlib import sys, time, zlib
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
"""Tests for the CacheManager. """Tests for the CacheManager.
$Id: test_cachemanager.py,v 1.1 2003/11/03 16:40:37 fdrake Exp $ $Id$
""" """
import unittest import unittest
......
...@@ -109,7 +109,7 @@ init_ComputedAttribute(void) ...@@ -109,7 +109,7 @@ init_ComputedAttribute(void)
/* Create the module and add the functions */ /* Create the module and add the functions */
m = Py_InitModule4("_ComputedAttribute", methods, m = Py_InitModule4("_ComputedAttribute", methods,
"Provide Computed Attributes\n\n" "Provide Computed Attributes\n\n"
"$Id: _ComputedAttribute.c,v 1.2 2003/11/28 16:44:59 jim Exp $\n", "$Id$\n",
OBJECT(NULL),PYTHON_API_VERSION); OBJECT(NULL),PYTHON_API_VERSION);
d = PyModule_GetDict(m); d = PyModule_GetDict(m);
......
...@@ -31,7 +31,7 @@ Except that you can also use computed attributes with instances: ...@@ -31,7 +31,7 @@ Except that you can also use computed attributes with instances:
>>> "%.2f" % p.angle >>> "%.2f" % p.angle
'0.93' '0.93'
$Id: tests.py,v 1.2 2003/11/28 16:44:59 jim Exp $ $Id$
""" """
def test_wrapper_support(): def test_wrapper_support():
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
"""Available ZODB class factories. """Available ZODB class factories.
$Id: ClassFactories.py,v 1.3 2004/04/15 16:41:03 jeremy Exp $""" $Id$"""
import OFS.Uninstalled import OFS.Uninstalled
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
"""DBTab and DatabaseFactory classes. """DBTab and DatabaseFactory classes.
$Id: DBTab.py,v 1.1 2003/07/20 02:55:58 chrism Exp $ $Id$
""" """
import sys import sys
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
"""DBTab exception classes. """DBTab exception classes.
$Id: Exceptions.py,v 1.1 2003/07/20 02:55:58 chrism Exp $ $Id$
""" """
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
"""DBTab product. """DBTab product.
$Id: __init__.py,v 1.1 2003/07/20 02:55:58 chrism Exp $ $Id$
""" """
# importing ThreadedAsync has the side effect of patching asyncore so # importing ThreadedAsync has the side effect of patching asyncore so
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
############################################################################## ##############################################################################
"""HTML formated DocumentTemplates """HTML formated DocumentTemplates
$Id: DT_HTML.py,v 1.32 2002/08/14 22:29:52 mj Exp $""" $Id$"""
from DT_String import String, FileMixin from DT_String import String, FileMixin
import DT_String, re import DT_String, re
......
...@@ -75,7 +75,7 @@ __doc__='''Conditional insertion ...@@ -75,7 +75,7 @@ __doc__='''Conditional insertion
variable is not reevaluated. variable is not reevaluated.
''' '''
__rcs_id__='$Id: DT_If.py,v 1.19 2002/08/14 22:29:52 mj Exp $' __rcs_id__='$Id$'
__version__='$Revision: 1.19 $'[11:-2] __version__='$Revision: 1.19 $'[11:-2]
from DT_Util import ParseError, parse_params, name_param, str from DT_Util import ParseError, parse_params, name_param, str
......
...@@ -329,7 +329,7 @@ ...@@ -329,7 +329,7 @@
''' #' ''' #'
__rcs_id__='$Id: DT_In.py,v 1.62 2004/01/15 22:44:07 tseaver Exp $' __rcs_id__='$Id$'
__version__='$Revision: 1.62 $'[11:-2] __version__='$Revision: 1.62 $'[11:-2]
import sys import sys
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
__doc__='''Sequence variables support __doc__='''Sequence variables support
$Id: DT_InSV.py,v 1.22 2002/08/14 22:29:52 mj Exp $''' $Id$'''
__version__='$Revision: 1.22 $'[11:-2] __version__='$Revision: 1.22 $'[11:-2]
from math import sqrt from math import sqrt
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
<!--#/if--> <!--#/if-->
''' '''
__rcs_id__='$Id: DT_Raise.py,v 1.13 2002/08/14 22:29:52 mj Exp $' __rcs_id__='$Id$'
__version__='$Revision: 1.13 $'[11:-2] __version__='$Revision: 1.13 $'[11:-2]
from DT_Util import parse_params, name_param, render_blocks, str from DT_Util import parse_params, name_param, render_blocks, str
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
# FOR A PARTICULAR PURPOSE # FOR A PARTICULAR PURPOSE
# #
############################################################################## ##############################################################################
"$Id: DT_String.py,v 1.52 2003/12/26 23:43:11 jeremy Exp $" "$Id$"
import os import os
import thread import thread
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
############################################################################## ##############################################################################
__doc__='''Machinery to support through-the-web editing __doc__='''Machinery to support through-the-web editing
$Id: DT_UI.py,v 1.15 2004/01/15 22:44:07 tseaver Exp $''' $Id$'''
__version__='$Revision: 1.15 $'[11:-2] __version__='$Revision: 1.15 $'[11:-2]
from DT_HTML import HTML from DT_HTML import HTML
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
############################################################################## ##############################################################################
"""DTML Utilities """DTML Utilities
$Id: DT_Util.py,v 1.92 2004/04/29 21:17:08 caseman Exp $""" $Id$"""
import re import re
......
...@@ -151,7 +151,7 @@ Evaluating expressions without rendering results ...@@ -151,7 +151,7 @@ Evaluating expressions without rendering results
''' # ' ''' # '
__rcs_id__='$Id: DT_Var.py,v 1.60 2003/11/18 13:17:00 tseaver Exp $' __rcs_id__='$Id$'
__version__='$Revision: 1.60 $'[11:-2] __version__='$Revision: 1.60 $'[11:-2]
from DT_Util import parse_params, name_param, str, ustr from DT_Util import parse_params, name_param, str, ustr
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
''' '''
__rcs_id__='$Id: DT_With.py,v 1.15 2002/08/14 22:29:52 mj Exp $' __rcs_id__='$Id$'
__version__='$Revision: 1.15 $'[11:-2] __version__='$Revision: 1.15 $'[11:-2]
from DT_Util import parse_params, name_param, InstanceDict, render_blocks, str from DT_Util import parse_params, name_param, InstanceDict, render_blocks, str
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
__doc__='''short description __doc__='''short description
$Id: DTtestExpr.py,v 1.8 2002/08/14 22:29:52 mj Exp $''' $Id$'''
__version__='$Revision: 1.8 $'[11:-2] __version__='$Revision: 1.8 $'[11:-2]
from DocumentTemplate import * from DocumentTemplate import *
......
...@@ -15,7 +15,7 @@ __doc__='''Package wrapper for Document Template ...@@ -15,7 +15,7 @@ __doc__='''Package wrapper for Document Template
This wrapper allows the (now many) document template modules to be This wrapper allows the (now many) document template modules to be
segregated in a separate package. segregated in a separate package.
$Id: __init__.py,v 1.18 2003/12/26 23:43:11 jeremy Exp $''' $Id$'''
__version__='$Revision: 1.18 $'[11:-2] __version__='$Revision: 1.18 $'[11:-2]
from DocumentTemplate import String, File, HTML, HTMLDefault, HTMLFile from DocumentTemplate import String, File, HTML, HTMLDefault, HTMLFile
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
****************************************************************************/ ****************************************************************************/
static char cDocumentTemplate_module_documentation[] = static char cDocumentTemplate_module_documentation[] =
"" ""
"\n$Id: cDocumentTemplate.c,v 1.48 2002/08/05 20:51:14 shane Exp $" "\n$Id$"
; ;
#include "ExtensionClass.h" #include "ExtensionClass.h"
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
XXX This module is no longer actively used, but is left as an XXX This module is no longer actively used, but is left as an
XXX implementation reference for cDocumentTemplate XXX implementation reference for cDocumentTemplate
$Id: pDocumentTemplate.py,v 1.42 2004/04/29 21:17:08 caseman Exp $""" $Id$"""
__version__='$Revision: 1.42 $'[11:-2] __version__='$Revision: 1.42 $'[11:-2]
import sys, types import sys, types
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
Advanced sort support by Oleg Broytmann <phd@@phd.pp.ru> 23 Apr 2001 Advanced sort support by Oleg Broytmann <phd@@phd.pp.ru> 23 Apr 2001
eg Sort(sequence, (("akey", "nocase"), ("anotherkey", "cmp", "desc"))) eg Sort(sequence, (("akey", "nocase"), ("anotherkey", "cmp", "desc")))
$Id: SortEx.py,v 1.8 2003/04/01 10:45:24 yuppie Exp $ $Id$
""" """
from types import TupleType from types import TupleType
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
"""Document Template Tests """Document Template Tests
""" """
__rcs_id__='$Id: testDTML.py,v 1.15 2003/07/09 15:12:07 fdrake Exp $' __rcs_id__='$Id$'
__version__='$Revision: 1.15 $'[11:-2] __version__='$Revision: 1.15 $'[11:-2]
import sys, os import sys, os
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
"""Document Template Tests """Document Template Tests
""" """
__rcs_id__='$Id: testDTMLUnicode.py,v 1.4 2002/09/16 10:09:11 htrd Exp $' __rcs_id__='$Id$'
__version__='$Revision: 1.4 $'[11:-2] __version__='$Revision: 1.4 $'[11:-2]
import sys, os import sys, os
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
"""Document Template Tests """Document Template Tests
""" """
__rcs_id__='$Id: testustr.py,v 1.3 2002/08/14 22:29:53 mj Exp $' __rcs_id__='$Id$'
__version__='$Revision: 1.3 $'[11:-2] __version__='$Revision: 1.3 $'[11:-2]
import sys, os import sys, os
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
/* /*
$Id: ExtensionClass.h,v 1.2 2003/11/28 16:45:02 jim Exp $ $Id$
Extension Class Definitions Extension Class Definitions
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
static char _extensionclass_module_documentation[] = static char _extensionclass_module_documentation[] =
"ExtensionClass\n" "ExtensionClass\n"
"\n" "\n"
"$Id: _ExtensionClass.c,v 1.2 2003/11/28 16:45:02 jim Exp $\n" "$Id$\n"
; ;
#include "ExtensionClass.h" #include "ExtensionClass.h"
......
...@@ -99,7 +99,7 @@ called even when it is retrieved from an instance. ...@@ -99,7 +99,7 @@ called even when it is retrieved from an instance.
>>> int(c.o2 == (o2, c, type(c))) >>> int(c.o2 == (o2, c, type(c)))
1 1
$Id: __init__.py,v 1.2 2003/11/28 16:45:02 jim Exp $ $Id$
""" """
from _ExtensionClass import * from _ExtensionClass import *
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
""" """
$Id: tests.py,v 1.2 2003/11/28 16:45:02 jim Exp $ $Id$
""" """
from ExtensionClass import * from ExtensionClass import *
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
############################################################################## ##############################################################################
""" API documentation help topics. """ API documentation help topics.
$Id: APIHelpTopic.py,v 1.17 2004/05/04 19:09:29 yuppie Exp $ $Id$
""" """
import types import types
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
""" """
Revision information: Revision information:
$Id: Attribute.py,v 1.5 2002/08/14 21:35:32 mj Exp $ $Id$
""" """
from _Element import Element from _Element import Element
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
""" """
Revision information: Revision information:
$Id: Mapping.py,v 1.3 2002/08/14 21:35:33 mj Exp $ $Id$
""" """
from Interface import Interface from Interface import Interface
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
""" """
Revision information: Revision information:
$Id: BaseTestMapping.py,v 1.3 2002/08/14 21:35:33 mj Exp $ $Id$
""" """
from operator import __getitem__ from operator import __getitem__
......
...@@ -17,7 +17,7 @@ This module provides a function, asStructuredText, for rendering an ...@@ -17,7 +17,7 @@ This module provides a function, asStructuredText, for rendering an
interface as structured text. interface as structured text.
Revision information: Revision information:
$Id: Document.py,v 1.3 2002/08/14 21:35:32 mj Exp $ $Id$
""" """
from string import maketrans from string import maketrans
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
""" """
Revision information: Revision information:
$Id: IAttribute.py,v 1.3 2002/08/14 21:35:32 mj Exp $ $Id$
""" """
from IElement import IElement from IElement import IElement
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
""" """
Revision information: Revision information:
$Id: IElement.py,v 1.5 2002/08/14 21:35:32 mj Exp $ $Id$
""" """
from _Interface import Interface from _Interface import Interface
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
""" """
Revision information: Revision information:
$Id: IInterface.py,v 1.3 2002/08/14 21:35:32 mj Exp $ $Id$
""" """
from IElement import IElement from IElement import IElement
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
""" """
Revision information: Revision information:
$Id: IMethod.py,v 1.3 2002/08/14 21:35:32 mj Exp $ $Id$
""" """
from IAttribute import IAttribute from IAttribute import IAttribute
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
"""Implemantation assertion facilities. """Implemantation assertion facilities.
Revision information: Revision information:
$Id: Implements.py,v 1.5 2003/10/20 21:44:10 tiran Exp $ $Id$
""" """
import Exceptions import Exceptions
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
"""Method interfaces """Method interfaces
Revision information: Revision information:
$Id: Method.py,v 1.12 2002/08/14 21:35:32 mj Exp $ $Id$
""" """
import Exceptions import Exceptions
from Attribute import Attribute from Attribute import Attribute
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
""" """
Revision information: Revision information:
$Id: _Element.py,v 1.5 2003/07/30 22:09:23 philikon Exp $ $Id$
""" """
from _object import object from _object import object
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
"""Interface object implementation """Interface object implementation
Revision information: Revision information:
$Id: _Interface.py,v 1.5 2002/08/14 21:35:32 mj Exp $ $Id$
""" """
from _InterfaceClass import Interface as InterfaceClass from _InterfaceClass import Interface as InterfaceClass
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
"""Interface object implementation """Interface object implementation
Revision information: Revision information:
$Id: _InterfaceClass.py,v 1.6 2002/08/14 21:35:32 mj Exp $ $Id$
""" """
from inspect import currentframe from inspect import currentframe
......
...@@ -64,7 +64,7 @@ There is also a script, pyself.py in the package that can be used to ...@@ -64,7 +64,7 @@ There is also a script, pyself.py in the package that can be used to
create interface skeletins. Run it without arguments to get documentation. create interface skeletins. Run it without arguments to get documentation.
Revision information: Revision information:
$Id: __init__.py,v 1.9 2002/08/14 21:35:32 mj Exp $ $Id$
""" """
from _Interface import Interface from _Interface import Interface
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
"""Provide a halfway believable rendition of Python 2.2's object """Provide a halfway believable rendition of Python 2.2's object
$Id: _object.py,v 1.4 2002/08/14 21:35:32 mj Exp $ $Id$
""" """
class _x: class _x:
......
...@@ -25,7 +25,7 @@ Example: ...@@ -25,7 +25,7 @@ Example:
The dotted name is the module name and interface object name connected The dotted name is the module name and interface object name connected
with a dot. with a dot.
Revision information: $Id: pyskel.py,v 1.6 2002/08/14 21:35:32 mj Exp $ Revision information: $Id$
""" """
import sys, os, re import sys, os, re
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
""" """
Revision information: Revision information:
$Id: testDocument.py,v 1.5 2002/08/14 21:35:33 mj Exp $ $Id$
""" """
from unittest import TestCase, TestSuite, main, makeSuite from unittest import TestCase, TestSuite, main, makeSuite
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
""" """
Revision information: Revision information:
$Id: testVerify.py,v 1.4 2002/11/11 19:53:16 mj Exp $ $Id$
""" """
from __future__ import nested_scopes from __future__ import nested_scopes
......
...@@ -49,7 +49,7 @@ init_MethodObject(void) ...@@ -49,7 +49,7 @@ init_MethodObject(void)
/* Create the module and add the functions */ /* Create the module and add the functions */
m = Py_InitModule4("_MethodObject", methods, m = Py_InitModule4("_MethodObject", methods,
"Method-object mix-in class module\n\n" "Method-object mix-in class module\n\n"
"$Id: _MethodObject.c,v 1.2 2003/11/28 16:45:06 jim Exp $\n", "$Id$\n",
(PyObject*)NULL,PYTHON_API_VERSION); (PyObject*)NULL,PYTHON_API_VERSION);
d = PyModule_GetDict(m); d = PyModule_GetDict(m);
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
"""XXX short summary goes here. """XXX short summary goes here.
$Id: tests.py,v 1.2 2003/11/28 16:45:06 jim Exp $ $Id$
""" """
import unittest import unittest
from doctest import DocTestSuite from doctest import DocTestSuite
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
static char Missing_module_documentation[] = static char Missing_module_documentation[] =
"" ""
"\n$Id: _Missing.c,v 1.2 2003/11/28 16:45:07 jim Exp $" "\n$Id$"
; ;
#include "ExtensionClass.h" #include "ExtensionClass.h"
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
>>> Value == Value + 1 >>> Value == Value + 1
1 1
$Id: tests.py,v 1.2 2003/11/28 16:45:07 jim Exp $ $Id$
""" """
import unittest import unittest
from doctest import DocTestSuite from doctest import DocTestSuite
......
...@@ -206,7 +206,7 @@ init_MultiMapping(void) ...@@ -206,7 +206,7 @@ init_MultiMapping(void)
"_MultiMapping", MultiMapping_methods, "_MultiMapping", MultiMapping_methods,
"MultiMapping -- Wrap multiple mapping objects for lookup" "MultiMapping -- Wrap multiple mapping objects for lookup"
"\n\n" "\n\n"
"$Id: _MultiMapping.c,v 1.2 2003/11/28 16:45:14 jim Exp $\n", "$Id$\n",
(PyObject*)NULL,PYTHON_API_VERSION); (PyObject*)NULL,PYTHON_API_VERSION);
d = PyModule_GetDict(m); d = PyModule_GetDict(m);
PyExtensionClass_Export(d,"MultiMapping",MMtype); PyExtensionClass_Export(d,"MultiMapping",MMtype);
......
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
... except: # I should probably raise a specific error in this case. ... except: # I should probably raise a specific error in this case.
... pass ... pass
$Id: tests.py,v 1.2 2003/11/28 16:45:14 jim Exp $ $Id$
""" """
import unittest import unittest
from doctest import DocTestSuite from doctest import DocTestSuite
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
############################################################################## ##############################################################################
__doc__='''Application support __doc__='''Application support
$Id: Application.py,v 1.202 2004/04/15 16:41:04 jeremy Exp $''' $Id$'''
__version__='$Revision: 1.202 $'[11:-2] __version__='$Revision: 1.202 $'[11:-2]
import Globals,Folder,os,sys,App.Product, App.ProductRegistry, misc_ import Globals,Folder,os,sys,App.Product, App.ProductRegistry, misc_
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
############################################################################## ##############################################################################
__doc__="""Cacheable object and cache management base classes. __doc__="""Cacheable object and cache management base classes.
$Id: Cache.py,v 1.12 2003/11/28 16:45:33 jim Exp $""" $Id$"""
__version__='$Revision: 1.12 $'[11:-2] __version__='$Revision: 1.12 $'[11:-2]
......
...@@ -15,7 +15,7 @@ http://www.zope.org/Members/michel/Projects/Interfaces/ObserverAndNotification) ...@@ -15,7 +15,7 @@ http://www.zope.org/Members/michel/Projects/Interfaces/ObserverAndNotification)
This class is intended to be used as a mixin (note that it doesn't derive This class is intended to be used as a mixin (note that it doesn't derive
from any Zope persistence classes, for instance). from any Zope persistence classes, for instance).
$Id: DefaultObservable.py,v 1.7 2003/11/18 13:17:02 tseaver Exp $""" $Id$"""
__version__='$Revision: 1.7 $'[11:-2] __version__='$Revision: 1.7 $'[11:-2]
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
Folders are the basic container objects and are analogous to directories. Folders are the basic container objects and are analogous to directories.
$Id: Folder.py,v 1.104 2003/10/21 15:15:54 andreasjung Exp $""" $Id$"""
__version__='$Revision: 1.104 $'[11:-2] __version__='$Revision: 1.104 $'[11:-2]
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
############################################################################## ##############################################################################
""" Order support interfaces. """ Order support interfaces.
$Id: IOrderSupport.py,v 1.4 2004/04/09 12:26:26 yuppie Exp $ $Id$
""" """
from Interface import Interface from Interface import Interface
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
############################################################################## ##############################################################################
__doc__="""Object Manager __doc__="""Object Manager
$Id: ObjectManager.py,v 1.175 2004/04/29 20:59:43 chrism Exp $""" $Id$"""
__version__='$Revision: 1.175 $'[11:-2] __version__='$Revision: 1.175 $'[11:-2]
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
############################################################################## ##############################################################################
""" Order support for 'Object Manager'. """ Order support for 'Object Manager'.
$Id: OrderSupport.py,v 1.6 2004/04/09 12:26:26 yuppie Exp $ $Id$
""" """
from types import StringType from types import StringType
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
############################################################################## ##############################################################################
""" 'Folder' with order support. """ 'Folder' with order support.
$Id: OrderedFolder.py,v 1.2 2003/06/12 10:20:59 yuppie Exp $ $Id$
""" """
from AccessControl import getSecurityManager from AccessControl import getSecurityManager
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment