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
# Zope configure script
# $Id: configure,v 1.24 2004/04/15 14:21:00 fdrake Exp $
# $Revision: 1.24 $
# $Id$
# $Rev$
#####################################################################
# BEGIN EDITABLE PARAMETERS #
......
......@@ -1542,7 +1542,7 @@ initAcquisition(void)
/* Create the module and add the functions */
m = Py_InitModule4("Acquisition", methods,
"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);
d = PyModule_GetDict(m);
......
......@@ -21,7 +21,7 @@ static char ExtensionClass_module_documentation[] =
" - They provide access to unbound methods,\n"
" - They can be called to create instances.\n"
"\n"
"$Id: ExtensionClass.c,v 1.62 2003/10/02 18:17:27 jeremy Exp $\n"
"$Id$\n"
;
#include "ExtensionClass.h"
......
......@@ -12,7 +12,7 @@
##############################################################################
'''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]
from DocumentTemplate import DT_Util
......
......@@ -12,7 +12,7 @@
##############################################################################
"""Support for owned objects
$Id: Owned.py,v 1.24 2004/03/12 18:12:11 tseaver Exp $
$Id$
"""
import Globals, urlparse, SpecialUsers, ExtensionClass
......
......@@ -13,7 +13,7 @@
__doc__='''short description
$Id: Permission.py,v 1.10 2002/08/14 21:29:07 mj Exp $'''
$Id$'''
__version__='$Revision: 1.10 $'[11:-2]
import string, Products, Globals
......
......@@ -12,7 +12,7 @@
##############################################################################
'''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:
#
......
......@@ -12,7 +12,7 @@
##############################################################################
"""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'
......
......@@ -13,7 +13,7 @@
__doc__='''short description
$Id: SecurityManagement.py,v 1.10 2004/01/21 19:59:09 Brian Exp $'''
$Id$'''
__version__='$Revision: 1.10 $'[11:-2]
def getSecurityManager():
......
......@@ -13,7 +13,7 @@
'''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.SimpleObjectPolicies import _noroles
......
......@@ -42,7 +42,7 @@ disallowed otherwise.
XXX This descrition doesn't actually match what's done in ZopeGuards
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
......
......@@ -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
initialization.
$Id: SpecialUsers.py,v 1.5 2003/07/11 14:21:30 fdrake Exp $
$Id$
"""
__version__='$Revision: 1.5 $'[11:-2]
......
......@@ -12,7 +12,7 @@
##############################################################################
"""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
......
......@@ -36,7 +36,7 @@
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
$Id: cAccessControl.c,v 1.30 2004/02/18 18:55:04 jim Exp $
$Id$
If you have questions regarding this software,
contact:
......@@ -2296,7 +2296,7 @@ void initcAccessControl(void) {
module = Py_InitModule3("cAccessControl",
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
Py_InitModule(). */
......
......@@ -16,7 +16,7 @@ class ResultObject:
""" result object used for keeping results from the
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):
......
......@@ -39,7 +39,7 @@ __bobo_before__=AccessControl.SecurityManagement.noSecurityManager
class SecurityBase(unittest.TestCase) :
""" 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)\
......
......@@ -13,7 +13,7 @@
#
##############################################################################
# $Id: regressionSecurity.py,v 1.5 2002/08/14 21:27:32 mj Exp $
# $Id$
import os, sys, unittest
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Test Bindings
$Id: testBindings.py,v 1.6 2004/03/09 16:48:02 evan Exp $
$Id$
"""
import unittest
......
......@@ -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]
import ZODB # Sigh. Persistent needs to be set, so we import ZODB.
......
......@@ -13,7 +13,7 @@
"""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]
import os, sys, unittest
......
"""Unit tests for AccessControl.Owned
$Id: testOwned.py,v 1.3 2004/03/12 18:12:11 tseaver Exp $
$Id$
"""
import unittest
......
......@@ -13,7 +13,7 @@
"""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]
import os, sys, unittest
......
......@@ -13,7 +13,7 @@
"""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]
import os, sys, unittest
......
......@@ -13,7 +13,7 @@
"""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]
import os, sys, unittest
......
......@@ -13,7 +13,7 @@
"""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]
import os, sys, base64, unittest
......
......@@ -15,7 +15,7 @@
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
......
......@@ -13,7 +13,7 @@
"""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]
import os, sys, unittest
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Tests for the guarded iterartor.
$Id: test_safeiter.py,v 1.2 2004/01/15 23:09:06 tseaver Exp $
$Id$
"""
import unittest
......
......@@ -1543,7 +1543,7 @@ init_Acquisition(void)
/* Create the module and add the functions */
m = Py_InitModule4("_Acquisition", methods,
"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);
d = PyModule_GetDict(m);
......
......@@ -328,7 +328,7 @@
http://www.bell-labs.com/people/cope/oopsla/Oopsla96TechnicalProgramAbstracts.html#GilLorenz,
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
......
......@@ -14,7 +14,7 @@
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]
import time
......
......@@ -14,7 +14,7 @@ __doc__='''Standard routines for handling extensions.
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]
import os, zlib, imp
......
......@@ -12,7 +12,7 @@
##############################################################################
__doc__='''Factory objects
$Id: Factory.py,v 1.27 2003/05/14 14:43:44 shane Exp $'''
$Id$'''
__version__='$Revision: 1.27 $'[11:-2]
import OFS.SimpleItem, Acquisition, Globals, AccessControl.Role
......
......@@ -13,7 +13,7 @@
"""Standard management interface support
$Id: Management.py,v 1.66 2004/01/15 22:44:04 tseaver Exp $
$Id$
"""
import sys, Globals, ExtensionClass, urllib
......
......@@ -12,7 +12,7 @@
##############################################################################
__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]
import OFS.SimpleItem, Acquisition, Globals, ExtensionClass, AccessControl.Role
......
......@@ -12,7 +12,7 @@
##############################################################################
'''
Functions for refreshing products.
$Id: RefreshFuncs.py,v 1.7 2003/12/10 20:03:03 shane Exp $
$Id$
'''
import os, sys
......
......@@ -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]
from Acquisition import aq_base, aq_parent, aq_inner
......
......@@ -12,7 +12,7 @@
##############################################################################
__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]
import sys, time, zlib
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Tests for the CacheManager.
$Id: test_cachemanager.py,v 1.1 2003/11/03 16:40:37 fdrake Exp $
$Id$
"""
import unittest
......
......@@ -109,7 +109,7 @@ init_ComputedAttribute(void)
/* Create the module and add the functions */
m = Py_InitModule4("_ComputedAttribute", methods,
"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);
d = PyModule_GetDict(m);
......
......@@ -31,7 +31,7 @@ Except that you can also use computed attributes with instances:
>>> "%.2f" % p.angle
'0.93'
$Id: tests.py,v 1.2 2003/11/28 16:44:59 jim Exp $
$Id$
"""
def test_wrapper_support():
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Available ZODB class factories.
$Id: ClassFactories.py,v 1.3 2004/04/15 16:41:03 jeremy Exp $"""
$Id$"""
import OFS.Uninstalled
......
......@@ -13,7 +13,7 @@
##############################################################################
"""DBTab and DatabaseFactory classes.
$Id: DBTab.py,v 1.1 2003/07/20 02:55:58 chrism Exp $
$Id$
"""
import sys
......
......@@ -13,7 +13,7 @@
##############################################################################
"""DBTab exception classes.
$Id: Exceptions.py,v 1.1 2003/07/20 02:55:58 chrism Exp $
$Id$
"""
......
......@@ -13,7 +13,7 @@
##############################################################################
"""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
......
......@@ -12,7 +12,7 @@
##############################################################################
"""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
import DT_String, re
......
......@@ -75,7 +75,7 @@ __doc__='''Conditional insertion
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]
from DT_Util import ParseError, parse_params, name_param, str
......
......@@ -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]
import sys
......
......@@ -13,7 +13,7 @@
__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]
from math import sqrt
......
......@@ -23,7 +23,7 @@
<!--#/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]
from DT_Util import parse_params, name_param, render_blocks, str
......
......@@ -10,7 +10,7 @@
# FOR A PARTICULAR PURPOSE
#
##############################################################################
"$Id: DT_String.py,v 1.52 2003/12/26 23:43:11 jeremy Exp $"
"$Id$"
import os
import thread
......
......@@ -12,7 +12,7 @@
##############################################################################
__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]
from DT_HTML import HTML
......
......@@ -12,7 +12,7 @@
##############################################################################
"""DTML Utilities
$Id: DT_Util.py,v 1.92 2004/04/29 21:17:08 caseman Exp $"""
$Id$"""
import re
......
......@@ -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]
from DT_Util import parse_params, name_param, str, ustr
......
......@@ -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]
from DT_Util import parse_params, name_param, InstanceDict, render_blocks, str
......
......@@ -13,7 +13,7 @@
__doc__='''short description
$Id: DTtestExpr.py,v 1.8 2002/08/14 22:29:52 mj Exp $'''
$Id$'''
__version__='$Revision: 1.8 $'[11:-2]
from DocumentTemplate import *
......
......@@ -15,7 +15,7 @@ __doc__='''Package wrapper for Document Template
This wrapper allows the (now many) document template modules to be
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]
from DocumentTemplate import String, File, HTML, HTMLDefault, HTMLFile
......@@ -12,7 +12,7 @@
****************************************************************************/
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"
......
......@@ -15,7 +15,7 @@
XXX This module is no longer actively used, but is left as an
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]
import sys, types
......
......@@ -14,7 +14,7 @@
Advanced sort support by Oleg Broytmann <phd@@phd.pp.ru> 23 Apr 2001
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
......
......@@ -13,7 +13,7 @@
"""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]
import sys, os
......
......@@ -13,7 +13,7 @@
"""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]
import sys, os
......
......@@ -13,7 +13,7 @@
"""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]
import sys, os
......
......@@ -14,7 +14,7 @@
/*
$Id: ExtensionClass.h,v 1.2 2003/11/28 16:45:02 jim Exp $
$Id$
Extension Class Definitions
......
......@@ -14,7 +14,7 @@
static char _extensionclass_module_documentation[] =
"ExtensionClass\n"
"\n"
"$Id: _ExtensionClass.c,v 1.2 2003/11/28 16:45:02 jim Exp $\n"
"$Id$\n"
;
#include "ExtensionClass.h"
......
......@@ -99,7 +99,7 @@ called even when it is retrieved from an instance.
>>> int(c.o2 == (o2, c, type(c)))
1
$Id: __init__.py,v 1.2 2003/11/28 16:45:02 jim Exp $
$Id$
"""
from _ExtensionClass import *
......@@ -13,7 +13,7 @@
##############################################################################
"""
$Id: tests.py,v 1.2 2003/11/28 16:45:02 jim Exp $
$Id$
"""
from ExtensionClass import *
......
......@@ -12,7 +12,7 @@
##############################################################################
""" API documentation help topics.
$Id: APIHelpTopic.py,v 1.17 2004/05/04 19:09:29 yuppie Exp $
$Id$
"""
import types
......
......@@ -14,7 +14,7 @@
"""
Revision information:
$Id: Attribute.py,v 1.5 2002/08/14 21:35:32 mj Exp $
$Id$
"""
from _Element import Element
......
......@@ -14,7 +14,7 @@
"""
Revision information:
$Id: Mapping.py,v 1.3 2002/08/14 21:35:33 mj Exp $
$Id$
"""
from Interface import Interface
......
......@@ -14,7 +14,7 @@
"""
Revision information:
$Id: BaseTestMapping.py,v 1.3 2002/08/14 21:35:33 mj Exp $
$Id$
"""
from operator import __getitem__
......
......@@ -17,7 +17,7 @@ This module provides a function, asStructuredText, for rendering an
interface as structured text.
Revision information:
$Id: Document.py,v 1.3 2002/08/14 21:35:32 mj Exp $
$Id$
"""
from string import maketrans
......
......@@ -14,7 +14,7 @@
"""
Revision information:
$Id: IAttribute.py,v 1.3 2002/08/14 21:35:32 mj Exp $
$Id$
"""
from IElement import IElement
......
......@@ -14,7 +14,7 @@
"""
Revision information:
$Id: IElement.py,v 1.5 2002/08/14 21:35:32 mj Exp $
$Id$
"""
from _Interface import Interface
......
......@@ -14,7 +14,7 @@
"""
Revision information:
$Id: IInterface.py,v 1.3 2002/08/14 21:35:32 mj Exp $
$Id$
"""
from IElement import IElement
......
......@@ -14,7 +14,7 @@
"""
Revision information:
$Id: IMethod.py,v 1.3 2002/08/14 21:35:32 mj Exp $
$Id$
"""
from IAttribute import IAttribute
......
......@@ -14,7 +14,7 @@
"""Implemantation assertion facilities.
Revision information:
$Id: Implements.py,v 1.5 2003/10/20 21:44:10 tiran Exp $
$Id$
"""
import Exceptions
......
......@@ -14,7 +14,7 @@
"""Method interfaces
Revision information:
$Id: Method.py,v 1.12 2002/08/14 21:35:32 mj Exp $
$Id$
"""
import Exceptions
from Attribute import Attribute
......
......@@ -14,7 +14,7 @@
"""
Revision information:
$Id: _Element.py,v 1.5 2003/07/30 22:09:23 philikon Exp $
$Id$
"""
from _object import object
......
......@@ -14,7 +14,7 @@
"""Interface object implementation
Revision information:
$Id: _Interface.py,v 1.5 2002/08/14 21:35:32 mj Exp $
$Id$
"""
from _InterfaceClass import Interface as InterfaceClass
......
......@@ -14,7 +14,7 @@
"""Interface object implementation
Revision information:
$Id: _InterfaceClass.py,v 1.6 2002/08/14 21:35:32 mj Exp $
$Id$
"""
from inspect import currentframe
......
......@@ -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.
Revision information:
$Id: __init__.py,v 1.9 2002/08/14 21:35:32 mj Exp $
$Id$
"""
from _Interface import Interface
......
......@@ -13,7 +13,7 @@
##############################################################################
"""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:
......
......@@ -25,7 +25,7 @@ Example:
The dotted name is the module name and interface object name connected
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
......
......@@ -14,7 +14,7 @@
"""
Revision information:
$Id: testDocument.py,v 1.5 2002/08/14 21:35:33 mj Exp $
$Id$
"""
from unittest import TestCase, TestSuite, main, makeSuite
......
......@@ -14,7 +14,7 @@
"""
Revision information:
$Id: testVerify.py,v 1.4 2002/11/11 19:53:16 mj Exp $
$Id$
"""
from __future__ import nested_scopes
......
......@@ -49,7 +49,7 @@ init_MethodObject(void)
/* Create the module and add the functions */
m = Py_InitModule4("_MethodObject", methods,
"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);
d = PyModule_GetDict(m);
......
......@@ -13,7 +13,7 @@
##############################################################################
"""XXX short summary goes here.
$Id: tests.py,v 1.2 2003/11/28 16:45:06 jim Exp $
$Id$
"""
import unittest
from doctest import DocTestSuite
......
......@@ -14,7 +14,7 @@
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"
......
......@@ -33,7 +33,7 @@
>>> Value == Value + 1
1
$Id: tests.py,v 1.2 2003/11/28 16:45:07 jim Exp $
$Id$
"""
import unittest
from doctest import DocTestSuite
......
......@@ -206,7 +206,7 @@ init_MultiMapping(void)
"_MultiMapping", MultiMapping_methods,
"MultiMapping -- Wrap multiple mapping objects for lookup"
"\n\n"
"$Id: _MultiMapping.c,v 1.2 2003/11/28 16:45:14 jim Exp $\n",
"$Id$\n",
(PyObject*)NULL,PYTHON_API_VERSION);
d = PyModule_GetDict(m);
PyExtensionClass_Export(d,"MultiMapping",MMtype);
......
......@@ -47,7 +47,7 @@
... except: # I should probably raise a specific error in this case.
... pass
$Id: tests.py,v 1.2 2003/11/28 16:45:14 jim Exp $
$Id$
"""
import unittest
from doctest import DocTestSuite
......
......@@ -12,7 +12,7 @@
##############################################################################
__doc__='''Application support
$Id: Application.py,v 1.202 2004/04/15 16:41:04 jeremy Exp $'''
$Id$'''
__version__='$Revision: 1.202 $'[11:-2]
import Globals,Folder,os,sys,App.Product, App.ProductRegistry, misc_
......
......@@ -12,7 +12,7 @@
##############################################################################
__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]
......
......@@ -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
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]
......
......@@ -15,7 +15,7 @@
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]
......
......@@ -12,7 +12,7 @@
##############################################################################
""" Order support interfaces.
$Id: IOrderSupport.py,v 1.4 2004/04/09 12:26:26 yuppie Exp $
$Id$
"""
from Interface import Interface
......
......@@ -12,7 +12,7 @@
##############################################################################
__doc__="""Object Manager
$Id: ObjectManager.py,v 1.175 2004/04/29 20:59:43 chrism Exp $"""
$Id$"""
__version__='$Revision: 1.175 $'[11:-2]
......
......@@ -12,7 +12,7 @@
##############################################################################
""" Order support for 'Object Manager'.
$Id: OrderSupport.py,v 1.6 2004/04/09 12:26:26 yuppie Exp $
$Id$
"""
from types import StringType
......
......@@ -12,7 +12,7 @@
##############################################################################
""" 'Folder' with order support.
$Id: OrderedFolder.py,v 1.2 2003/06/12 10:20:59 yuppie Exp $
$Id$
"""
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