[Zope-Checkins] SVN: Zope/trunk/ Get rid of $Revision$ in a few prominant places. Use an $Id$ in the

Philipp von Weitershausen philikon at philikon.de
Mon May 17 02:13:48 EDT 2004


Log message for revision 24764:
Get rid of $Revision$ in a few prominant places. Use an $Id$ in the
docstring instead, as the new style suggests.



-=-
Modified: Zope/trunk/lib/python/AccessControl/DTML.py
===================================================================
--- Zope/trunk/lib/python/AccessControl/DTML.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/AccessControl/DTML.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,11 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-'''Add security system support to Document Templates
+"""Add security system support to Document Templates
 
-$Id$'''
-__version__='$Revision: 1.13 $'[11:-2]
-
+$Id$
+"""
 from DocumentTemplate import DT_Util
 import SecurityManagement, string, math, whrandom, random
 import DocumentTemplate.sequence

Modified: Zope/trunk/lib/python/AccessControl/Permission.py
===================================================================
--- Zope/trunk/lib/python/AccessControl/Permission.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/AccessControl/Permission.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,12 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-__doc__='''short description
+"""Permissions
 
-
-$Id$'''
-__version__='$Revision: 1.10 $'[11:-2]
-
+$Id$
+"""
 import string, Products, Globals
 
 ListType=type([])

Modified: Zope/trunk/lib/python/AccessControl/Role.py
===================================================================
--- Zope/trunk/lib/python/AccessControl/Role.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/AccessControl/Role.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,11 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-"""Access control support"""
+"""Access control support
 
-__version__='$Revision: 1.61 $'[11:-2]
-
-
+$Id$
+"""
 from Globals import DTMLFile, MessageDialog, Dictionary
 from Acquisition import Implicit, Acquired, aq_get
 import Globals, ExtensionClass, PermissionMapping, Products


Property changes on: Zope/trunk/lib/python/AccessControl/Role.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope/trunk/lib/python/AccessControl/SecurityManagement.py
===================================================================
--- Zope/trunk/lib/python/AccessControl/SecurityManagement.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/AccessControl/SecurityManagement.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,12 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-__doc__='''short description
+"""Security management
 
-
-$Id$'''
-__version__='$Revision: 1.10 $'[11:-2]
-
+$Id$
+"""
 def getSecurityManager():
     """Get a security manager, for the current thread.
     """

Modified: Zope/trunk/lib/python/AccessControl/SpecialUsers.py
===================================================================
--- Zope/trunk/lib/python/AccessControl/SpecialUsers.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/AccessControl/SpecialUsers.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -18,8 +18,6 @@
 
 $Id$
 """
-__version__='$Revision: 1.5 $'[11:-2]
-
 nobody = None
 system = None
 emergency_user = None

Modified: Zope/trunk/lib/python/OFS/Application.py
===================================================================
--- Zope/trunk/lib/python/OFS/Application.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/OFS/Application.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,11 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-__doc__='''Application support
+"""Application support
 
-$Id$'''
-__version__='$Revision: 1.202 $'[11:-2]
-
+$Id$
+"""
 import Globals,Folder,os,sys,App.Product, App.ProductRegistry, misc_
 import time, traceback, os,  Products
 from DateTime import DateTime

Modified: Zope/trunk/lib/python/OFS/Cache.py
===================================================================
--- Zope/trunk/lib/python/OFS/Cache.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/OFS/Cache.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,12 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-__doc__="""Cacheable object and cache management base classes.
+"""Cacheable object and cache management base classes.
 
-$Id$"""
-
-__version__='$Revision: 1.12 $'[11:-2]
-
+$Id$
+"""
 import time, sys
 import Globals
 from Globals import DTMLFile

Modified: Zope/trunk/lib/python/OFS/CopySupport.py
===================================================================
--- Zope/trunk/lib/python/OFS/CopySupport.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/OFS/CopySupport.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,9 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-__doc__="""Copy interface"""
-__version__='$Revision: 1.91 $'[11:-2]
+"""Copy interface
 
+$Id$
+"""
 import sys,  Globals, Moniker, tempfile, ExtensionClass
 from marshal import loads, dumps
 from urllib import quote, unquote


Property changes on: Zope/trunk/lib/python/OFS/CopySupport.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope/trunk/lib/python/OFS/DTMLDocument.py
===================================================================
--- Zope/trunk/lib/python/OFS/DTMLDocument.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/OFS/DTMLDocument.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,10 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-"""DTML Document objects."""
+"""DTML Document objects.
 
-__version__='$Revision: 1.51 $'[11:-2]
-
+$Id$
+"""
 from ZPublisher.Converters import type_converters
 from Globals import HTML, DTMLFile, MessageDialog
 from OFS.content_types import guess_content_type


Property changes on: Zope/trunk/lib/python/OFS/DTMLDocument.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope/trunk/lib/python/OFS/DTMLMethod.py
===================================================================
--- Zope/trunk/lib/python/OFS/DTMLMethod.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/OFS/DTMLMethod.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,10 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-"""DTML Method objects."""
+"""DTML Method objects.
 
-__version__='$Revision: 1.85 $'[11:-2]
-
+$Id$
+"""
 import History
 from Globals import HTML, DTMLFile, MessageDialog
 from SimpleItem import Item_w__name__, pretty_tb


Property changes on: Zope/trunk/lib/python/OFS/DTMLMethod.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope/trunk/lib/python/OFS/DefaultObservable.py
===================================================================
--- Zope/trunk/lib/python/OFS/DefaultObservable.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/OFS/DefaultObservable.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,15 +10,13 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-__doc__="""Implement Observable interface (see
+"""Implement Observable interface (see
 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).
+This class is intended to be used as a mixin (note that it doesn't
+derive from any Zope persistence classes, for instance).
 
-$Id$"""
-
-__version__='$Revision: 1.7 $'[11:-2]
-
+$Id$
+"""
 from types import StringType
 
 class DefaultObservable:

Modified: Zope/trunk/lib/python/OFS/Document.py
===================================================================
--- Zope/trunk/lib/python/OFS/Document.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/OFS/Document.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,10 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-"""Deprecated - use DTMLMethod"""
+"""Deprecated - use DTMLMethod
 
-__version__='$Revision: 1.76 $'[11:-2]
-
+$Id$
+"""
 import DTMLMethod
 
 Document=DTMLMethod.DTMLMethod


Property changes on: Zope/trunk/lib/python/OFS/Document.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope/trunk/lib/python/OFS/FindSupport.py
===================================================================
--- Zope/trunk/lib/python/OFS/FindSupport.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/OFS/FindSupport.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,10 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-__doc__="""Find support"""
-__version__='$Revision: 1.33 $'[11:-2]
+"""Find support
 
-
+$Id$
+"""
 import sys, os, time, Globals, ExtensionClass
 from DocumentTemplate.DT_Util import Eval
 from AccessControl.Permission import name_trans


Property changes on: Zope/trunk/lib/python/OFS/FindSupport.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope/trunk/lib/python/OFS/Folder.py
===================================================================
--- Zope/trunk/lib/python/OFS/Folder.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/OFS/Folder.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,15 +10,12 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-
 """Folder object
 
 Folders are the basic container objects and are analogous to directories.
 
-$Id$"""
-
-__version__='$Revision: 1.104 $'[11:-2]
-
+$Id$
+"""
 import Globals, SimpleItem, ObjectManager, PropertyManager
 import AccessControl.Role, webdav.Collection, FindSupport
 from webdav.WriteLockInterface import WriteLockInterface

Modified: Zope/trunk/lib/python/OFS/History.py
===================================================================
--- Zope/trunk/lib/python/OFS/History.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/OFS/History.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,10 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-"""Object Histories"""
+"""Object Histories
 
-__version__='$Revision: 1.18 $'[11:-2]
-
+$Id$
+"""
 import Globals, ExtensionClass, difflib
 from DateTime import DateTime
 from Acquisition import Implicit, aq_base


Property changes on: Zope/trunk/lib/python/OFS/History.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope/trunk/lib/python/OFS/Image.py
===================================================================
--- Zope/trunk/lib/python/OFS/Image.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/OFS/Image.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,10 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-"""Image object"""
+"""Image object
 
-__version__='$Revision: 1.152 $'[11:-2]
-
+$Id$
+"""
 import Globals, struct
 from OFS.content_types import guess_content_type
 from Globals import DTMLFile


Property changes on: Zope/trunk/lib/python/OFS/Image.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope/trunk/lib/python/OFS/Moniker.py
===================================================================
--- Zope/trunk/lib/python/OFS/Moniker.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/OFS/Moniker.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -17,10 +17,8 @@
    a real object that retains its correct version context
    and aquisition relationships via a simple interface.
 
+$Id$
 """
-__version__='$Revision: 1.16 $'[11:-2]
-
-
 import Globals
 
 class Moniker:


Property changes on: Zope/trunk/lib/python/OFS/Moniker.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope/trunk/lib/python/OFS/ObjectManager.py
===================================================================
--- Zope/trunk/lib/python/OFS/ObjectManager.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/OFS/ObjectManager.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,12 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-__doc__="""Object Manager
+"""Object Manager
 
-$Id$"""
-
-__version__='$Revision: 1.175 $'[11:-2]
-
+$Id$
+"""
 import App.Management, Acquisition, Globals, CopySupport, Products
 import os, App.FactoryDispatcher, re, Products
 from OFS.Traversable import Traversable

Modified: Zope/trunk/lib/python/OFS/PropertyManager.py
===================================================================
--- Zope/trunk/lib/python/OFS/PropertyManager.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/OFS/PropertyManager.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,10 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
+"""Property management
 
-"""Property management"""
-__version__='$Revision: 1.56 $'[11:-2]
-
+$Id$
+"""
 import ExtensionClass, Globals
 import ZDOM
 from PropertySheets import DefaultPropertySheets, vps


Property changes on: Zope/trunk/lib/python/OFS/PropertyManager.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope/trunk/lib/python/OFS/PropertySheets.py
===================================================================
--- Zope/trunk/lib/python/OFS/PropertySheets.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/OFS/PropertySheets.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,11 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
+"""Property sheets
 
-"""Property sheets"""
-
-__version__='$Revision: 1.95 $'[11:-2]
-
+$Id$
+"""
 import time,  App.Management, Globals, sys
 from webdav.WriteLockInterface import WriteLockInterface
 from ZPublisher.Converters import type_converters


Property changes on: Zope/trunk/lib/python/OFS/PropertySheets.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope/trunk/lib/python/OFS/SimpleItem.py
===================================================================
--- Zope/trunk/lib/python/OFS/SimpleItem.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/OFS/SimpleItem.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,16 +10,15 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-'''This module implements a simple item mix-in for objects that have a
+"""This module implements a simple item mix-in for objects that have a
 very simple (e.g. one-screen) management interface, like documents,
 Aqueduct database adapters, etc.
 
 This module can also be used as a simple template for implementing new
 item types.
 
-$Id$'''
-__version__='$Revision: 1.110 $'[11:-2]
-
+$Id$
+"""
 import re, sys, Globals, App.Management, Acquisition, App.Undo
 import AccessControl.Role, AccessControl.Owned, App.Common
 from webdav.Resource import Resource

Modified: Zope/trunk/lib/python/OFS/Traversable.py
===================================================================
--- Zope/trunk/lib/python/OFS/Traversable.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/OFS/Traversable.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,12 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-'''This module implements a mix-in for traversable objects.
+"""This module implements a mix-in for traversable objects.
 
-$Id$'''
-__version__='$Revision: 1.24 $'[11:-2]
-
-
+$Id$
+"""
 from Acquisition import Acquired, aq_inner, aq_parent, aq_base
 from AccessControl import getSecurityManager
 from AccessControl import Unauthorized

Modified: Zope/trunk/lib/python/OFS/content_types.py
===================================================================
--- Zope/trunk/lib/python/OFS/content_types.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/OFS/content_types.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,9 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-"""A utility module for content-type handling."""
-__version__='$Revision: 1.20 $'[11:-2]
+"""A utility module for content-type handling.
 
+$Id$
+"""
 import mimetypes
 import os.path
 import re


Property changes on: Zope/trunk/lib/python/OFS/content_types.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope/trunk/lib/python/OFS/rPickle.py
===================================================================
--- Zope/trunk/lib/python/OFS/rPickle.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/OFS/rPickle.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,11 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-"""Restricted unpickler"""
+"""Restricted unpickler
 
-__version__='$Revision: 1.7 $'[11:-2]
-
-
+$Id$
+"""
 import pickle
 
 reg={}


Property changes on: Zope/trunk/lib/python/OFS/rPickle.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope/trunk/lib/python/ZTUtils/Batch.py
===================================================================
--- Zope/trunk/lib/python/ZTUtils/Batch.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/ZTUtils/Batch.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,11 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-__doc__='''Batch class, for iterating over a sequence in batches
+"""Batch class, for iterating over a sequence in batches
 
-$Id$'''
-__version__='$Revision: 1.10 $'[11:-2]
-
+$Id$
+"""
 from ExtensionClass import Base
 
 class LazyPrevBatch(Base):

Modified: Zope/trunk/lib/python/ZTUtils/Iterator.py
===================================================================
--- Zope/trunk/lib/python/ZTUtils/Iterator.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/ZTUtils/Iterator.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,7 +10,7 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-__doc__='''Iterator class
+"""Iterator class
 
 Unlike the builtin iterators of Python 2.2+, these classes are
 designed to maintain information about the state of an iteration.
@@ -18,8 +18,8 @@
 iterator.  The next() method fetches the next item, and returns
 true if it succeeds.
 
-$Id$'''
-__version__='$Revision: 1.11 $'[11:-2]
+$Id$
+"""
 
 class Iterator:
     '''Simple Iterator class'''

Modified: Zope/trunk/lib/python/ZTUtils/SimpleTree.py
===================================================================
--- Zope/trunk/lib/python/ZTUtils/SimpleTree.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/ZTUtils/SimpleTree.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,11 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-__doc__='''Simple Tree classes
+"""Simple Tree classes
 
-$Id$'''
-__version__='$Revision: 1.5 $'[11:-2]
-
+$Id$
+"""
 from Tree import TreeMaker, TreeNode, b2a
 from cgi import escape
 

Modified: Zope/trunk/lib/python/ZTUtils/Tree.py
===================================================================
--- Zope/trunk/lib/python/ZTUtils/Tree.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/ZTUtils/Tree.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,11 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-__doc__='''Tree manipulation classes
+"""Tree manipulation classes
 
-$Id$'''
-__version__='$Revision: 1.19 $'[11:-2]
-
+$Id$
+"""
 from Acquisition import Explicit
 from ComputedAttribute import ComputedAttribute
 from types import ListType, TupleType

Modified: Zope/trunk/lib/python/ZTUtils/Zope.py
===================================================================
--- Zope/trunk/lib/python/ZTUtils/Zope.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/ZTUtils/Zope.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,11 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-__doc__='''Zope-specific versions of ZTUTils classes
+"""Zope-specific versions of ZTUTils classes
 
-$Id$'''
-__version__='$Revision: 1.15 $'[11:-2]
-
+$Id$
+"""
 import sys, cgi, urllib, cgi
 from Tree import encodeExpansion, decodeExpansion, TreeMaker
 from SimpleTree import SimpleTreeMaker

Modified: Zope/trunk/lib/python/ZTUtils/__init__.py
===================================================================
--- Zope/trunk/lib/python/ZTUtils/__init__.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/lib/python/ZTUtils/__init__.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -10,10 +10,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-__doc__='''Package of template utility classes and functions.
+"""Package of template utility classes and functions.
 
-$Id$'''
-__version__='$Revision: 1.6 $'[11:-2]
+$Id$
+"""
 
 from Batch import Batch
 from Iterator import Iterator

Modified: Zope/trunk/utilities/check_catalog.py
===================================================================
--- Zope/trunk/utilities/check_catalog.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/utilities/check_catalog.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -1,5 +1,4 @@
 #!/usr/bin/env python2.3
-
 ##############################################################################
 #
 # Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
@@ -12,11 +11,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
+"""Script to check consistency of a ZCatalog
 
-""" script to consistency of a ZCatalog """
-
-__version__='$Revision: 1.6 $'[11:-2]
-
+$Id$
+"""
 import Zope
 import os,sys,re,getopt
 from types import IntType


Property changes on: Zope/trunk/utilities/check_catalog.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope/trunk/utilities/requestprofiler.py
===================================================================
--- Zope/trunk/utilities/requestprofiler.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/utilities/requestprofiler.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -1,5 +1,4 @@
 #!/usr/bin/env python2.3
-
 ##############################################################################
 #
 # Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
@@ -12,11 +11,10 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
+"""Request log profiler script
 
-""" Request log profiler script """
-
-__version__='$Revision: 1.19 $'[11:-2]
-
+$Id$
+"""
 import sys, time, getopt, math, cPickle
 from types import StringType
 try: import gzip


Property changes on: Zope/trunk/utilities/requestprofiler.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope/trunk/utilities/zpasswd.py
===================================================================
--- Zope/trunk/utilities/zpasswd.py	2004-05-17 05:59:28 UTC (rev 24763)
+++ Zope/trunk/utilities/zpasswd.py	2004-05-17 06:13:48 UTC (rev 24764)
@@ -39,9 +39,6 @@
     Filename is required and should be the name of the file to store the
     information in (usually "inituser" or "access").
 """
-
-__version__='$Revision: 1.5 $ '[11:-2]
-
 import sys,  sha, binascii, random, getopt, getpass, os
 
 try:




More information about the Zope-Checkins mailing list