[Checkins] SVN: zope.publisher/trunk/ Remove CVS-era Id fossils.

Tres Seaver tseaver at palladion.com
Thu Jun 3 13:27:41 EDT 2010


Log message for revision 113054:
  Remove CVS-era Id fossils.

Changed:
  U   zope.publisher/trunk/bootstrap.py
  U   zope.publisher/trunk/src/zope/publisher/base.py
  U   zope.publisher/trunk/src/zope/publisher/browser.py
  U   zope.publisher/trunk/src/zope/publisher/defaultview.py
  U   zope.publisher/trunk/src/zope/publisher/ftp.py
  U   zope.publisher/trunk/src/zope/publisher/http.py
  U   zope.publisher/trunk/src/zope/publisher/interfaces/__init__.py
  U   zope.publisher/trunk/src/zope/publisher/interfaces/browser.py
  U   zope.publisher/trunk/src/zope/publisher/interfaces/ftp.py
  U   zope.publisher/trunk/src/zope/publisher/interfaces/http.py
  U   zope.publisher/trunk/src/zope/publisher/interfaces/logginginfo.py
  U   zope.publisher/trunk/src/zope/publisher/interfaces/xmlrpc.py
  U   zope.publisher/trunk/src/zope/publisher/principallogging.py
  U   zope.publisher/trunk/src/zope/publisher/publish.py
  U   zope.publisher/trunk/src/zope/publisher/skinnable.py
  U   zope.publisher/trunk/src/zope/publisher/tests/basetestiapplicationrequest.py
  U   zope.publisher/trunk/src/zope/publisher/tests/basetestipublicationrequest.py
  U   zope.publisher/trunk/src/zope/publisher/tests/basetestipublisherrequest.py
  U   zope.publisher/trunk/src/zope/publisher/tests/httprequest.py
  U   zope.publisher/trunk/src/zope/publisher/tests/publication.py
  U   zope.publisher/trunk/src/zope/publisher/tests/test_baserequest.py
  U   zope.publisher/trunk/src/zope/publisher/tests/test_baseresponse.py
  U   zope.publisher/trunk/src/zope/publisher/tests/test_browser.py
  U   zope.publisher/trunk/src/zope/publisher/tests/test_browserlanguages.py
  U   zope.publisher/trunk/src/zope/publisher/tests/test_browserresponse.py
  U   zope.publisher/trunk/src/zope/publisher/tests/test_defaultview.py
  U   zope.publisher/trunk/src/zope/publisher/tests/test_ftp.py
  U   zope.publisher/trunk/src/zope/publisher/tests/test_http.py
  U   zope.publisher/trunk/src/zope/publisher/tests/test_httpcharsets.py
  U   zope.publisher/trunk/src/zope/publisher/tests/test_ipublication.py
  U   zope.publisher/trunk/src/zope/publisher/tests/test_mapply.py
  U   zope.publisher/trunk/src/zope/publisher/tests/test_principallogging.py
  U   zope.publisher/trunk/src/zope/publisher/tests/test_publisher.py
  U   zope.publisher/trunk/src/zope/publisher/tests/test_requestdataproperty.py
  U   zope.publisher/trunk/src/zope/publisher/tests/test_skinnable.py
  U   zope.publisher/trunk/src/zope/publisher/tests/test_xmlrpc.py
  U   zope.publisher/trunk/src/zope/publisher/tests/test_xmlrpcrequest.py
  U   zope.publisher/trunk/src/zope/publisher/tests/test_zcml.py
  U   zope.publisher/trunk/src/zope/publisher/tests/views.py
  U   zope.publisher/trunk/src/zope/publisher/tests/xmlrpcviews.py
  U   zope.publisher/trunk/src/zope/publisher/xmlrpc.py
  U   zope.publisher/trunk/src/zope/publisher/zcml.py

-=-
Modified: zope.publisher/trunk/bootstrap.py
===================================================================
--- zope.publisher/trunk/bootstrap.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/bootstrap.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -16,8 +16,6 @@
 Simply run this script in a directory containing a buildout.cfg.
 The script accepts buildout command-line options, so you can
 use the -c option to specify an alternate configuration file.
-
-$Id$
 """
 
 import os, shutil, sys, tempfile, urllib2

Modified: zope.publisher/trunk/src/zope/publisher/base.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/base.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/base.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -15,8 +15,6 @@
 
 Specifically, 'BaseRequest', 'BaseResponse', and 'DefaultPublication' are
 specified here.
-
-$Id$
 """
 from cStringIO import StringIO
 

Modified: zope.publisher/trunk/src/zope/publisher/browser.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/browser.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/browser.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -17,8 +17,6 @@
 big improvement of the 'BrowserRequest' to 'HTTPRequest' is that is can handle
 HTML form data and convert them into a Python-native format. Even file data is
 packaged into a nice, Python-friendly 'FileUpload' object.
-
-$Id$
 """
 __docformat__ = 'restructuredtext'
 

Modified: zope.publisher/trunk/src/zope/publisher/defaultview.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/defaultview.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/defaultview.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Default view name API
-
-$Id$
 """
 from zope.component.interfaces import ComponentLookupError
 from zope.component import getSiteManager

Modified: zope.publisher/trunk/src/zope/publisher/ftp.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/ftp.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/ftp.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """FTP Publisher
-
-$Id$
 """
 from zope.interface import implements
 from zope.publisher.interfaces.ftp import IFTPCredentials, IFTPRequest

Modified: zope.publisher/trunk/src/zope/publisher/http.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/http.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/http.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """HTTP Publisher
-
-$Id$
 """
 from cStringIO import StringIO
 from zope.i18n.interfaces import IUserPreferredCharsets

Modified: zope.publisher/trunk/src/zope/publisher/interfaces/__init__.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/interfaces/__init__.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/interfaces/__init__.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Interfaces for the publisher.
-
-$Id$
 """
 __docformat__ = "reStructuredText"
 

Modified: zope.publisher/trunk/src/zope/publisher/interfaces/browser.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/interfaces/browser.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/interfaces/browser.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Browser Interfaces
-
-$Id$
 """
 
 __docformat__ = "reStructuredText"

Modified: zope.publisher/trunk/src/zope/publisher/interfaces/ftp.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/interfaces/ftp.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/interfaces/ftp.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Virtual File System interfaces for the publisher.
-
-$Id$
 """
 
 __docformat__ = "reStructuredText"

Modified: zope.publisher/trunk/src/zope/publisher/interfaces/http.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/interfaces/http.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/interfaces/http.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """HTTP-related publisher interfaces.
-
-$Id$
 """
 
 __docformat__ = "reStructuredText"

Modified: zope.publisher/trunk/src/zope/publisher/interfaces/logginginfo.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/interfaces/logginginfo.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/interfaces/logginginfo.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """An interface for LoggingInfo.
-
-$Id$
 """
 
 __docformat__ = "reStructuredText"

Modified: zope.publisher/trunk/src/zope/publisher/interfaces/xmlrpc.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/interfaces/xmlrpc.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/interfaces/xmlrpc.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Interfaces for the XMLRPC publisher.
-
-$Id$
 """
 
 __docformat__ = "reStructuredText"

Modified: zope.publisher/trunk/src/zope/publisher/principallogging.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/principallogging.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/principallogging.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -11,10 +11,10 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""An adapter from zope.security.interfaces.IPrincipal to
+"""Adapter:
+
+Adapts zope.security.interfaces.IPrincipal to
 zope.publisher.interfaces.logginginfo.ILoggingInfo.
-
-$Id$
 """
 from zope.component import adapts
 from zope.interface import implements

Modified: zope.publisher/trunk/src/zope/publisher/publish.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/publish.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/publish.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -14,8 +14,6 @@
 """Python Object Publisher -- Publish Python objects on web servers
 
 Provide an apply-like facility that works with any mapping object
-
-$Id$
 """
 import sys
 from zope import component

Modified: zope.publisher/trunk/src/zope/publisher/skinnable.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/skinnable.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/skinnable.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -17,8 +17,6 @@
 big improvement of the 'BrowserRequest' to 'HTTPRequest' is that is can handle
 HTML form data and convert them into a Python-native format. Even file data is
 packaged into a nice, Python-friendly 'FileUpload' object.
-
-$Id: browser.py 97505 2009-03-05 00:47:39Z rogerineichen $
 """
 __docformat__ = 'restructuredtext'
 

Modified: zope.publisher/trunk/src/zope/publisher/tests/basetestiapplicationrequest.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/basetestiapplicationrequest.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/basetestiapplicationrequest.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """IApplicationRequest Base Test
-
-$Id$
 """
 from zope.interface.verify import verifyObject
 from zope.publisher.interfaces import IApplicationRequest

Modified: zope.publisher/trunk/src/zope/publisher/tests/basetestipublicationrequest.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/basetestipublicationrequest.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/basetestipublicationrequest.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """IPublicationRequest base test
-
-$Id$
 """
 import sys
 

Modified: zope.publisher/trunk/src/zope/publisher/tests/basetestipublisherrequest.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/basetestipublisherrequest.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/basetestipublisherrequest.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """IPublisherReuqest Test
-
-$Id$
 """
 
 from zope.interface.verify import verifyObject

Modified: zope.publisher/trunk/src/zope/publisher/tests/httprequest.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/httprequest.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/httprequest.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -14,8 +14,6 @@
 """Test request for writing tests that need HTTP requests.
 
 Note that this is used by tests in other packages.
-
-$Id$
 """
 
 from StringIO import StringIO

Modified: zope.publisher/trunk/src/zope/publisher/tests/publication.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/publication.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/publication.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Publication test
-
-$Id$
 """
 
 from zope.publisher.interfaces import IPublication

Modified: zope.publisher/trunk/src/zope/publisher/tests/test_baserequest.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/test_baserequest.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/test_baserequest.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """baserequest tests
-
-$Id$
 """
 from unittest import TestCase, main, makeSuite
 

Modified: zope.publisher/trunk/src/zope/publisher/tests/test_baseresponse.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/test_baseresponse.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/test_baseresponse.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Tests for BaseResponse
-
-$Id$
 """
 
 from unittest import TestCase, TestSuite, main, makeSuite

Modified: zope.publisher/trunk/src/zope/publisher/tests/test_browser.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/test_browser.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/test_browser.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Test zope.publisher.browser doctests
-
-$Id$
 """
 import unittest
 from doctest import DocTestSuite

Modified: zope.publisher/trunk/src/zope/publisher/tests/test_browserlanguages.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/test_browserlanguages.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/test_browserlanguages.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Test Browser Languages detector
-
-$Id$
 """
 import unittest
 

Modified: zope.publisher/trunk/src/zope/publisher/tests/test_browserresponse.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/test_browserresponse.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/test_browserresponse.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Browser response tests
-
-$Id$
 """
 
 import sys

Modified: zope.publisher/trunk/src/zope/publisher/tests/test_defaultview.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/test_defaultview.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/test_defaultview.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Default View Tests
-
-$Id$
 """
 import unittest
 from doctest import DocTestSuite

Modified: zope.publisher/trunk/src/zope/publisher/tests/test_ftp.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/test_ftp.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/test_ftp.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """FTP Publisher Tests
-
-$Id$
 """
 import sys
 from cStringIO import StringIO

Modified: zope.publisher/trunk/src/zope/publisher/tests/test_http.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/test_http.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/test_http.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -13,8 +13,6 @@
 #
 ##############################################################################
 """HTTP Publisher Tests
-
-$Id$
 """
 import sys
 import tempfile

Modified: zope.publisher/trunk/src/zope/publisher/tests/test_httpcharsets.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/test_httpcharsets.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/test_httpcharsets.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Retrieval of HTTP character set information.
-
-$Id$
 """
 import unittest
 

Modified: zope.publisher/trunk/src/zope/publisher/tests/test_ipublication.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/test_ipublication.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/test_ipublication.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """IPublication Test
-
-$Id$
 """
 
 import sys

Modified: zope.publisher/trunk/src/zope/publisher/tests/test_mapply.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/test_mapply.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/test_mapply.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Test mapply() function
-
-$Id$
 """
 import unittest
 

Modified: zope.publisher/trunk/src/zope/publisher/tests/test_principallogging.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/test_principallogging.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/test_principallogging.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Test for PrincipalLogging adapter.
-
-$Id$
 """
 import unittest
 from zope.interface.verify import verifyObject

Modified: zope.publisher/trunk/src/zope/publisher/tests/test_publisher.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/test_publisher.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/test_publisher.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Test Publisher
-
-$Id$
 """
 import unittest
 

Modified: zope.publisher/trunk/src/zope/publisher/tests/test_requestdataproperty.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/test_requestdataproperty.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/test_requestdataproperty.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Request Data-Property Tests
-
-$Id$
 """
 from unittest import TestCase, main, makeSuite
 

Modified: zope.publisher/trunk/src/zope/publisher/tests/test_skinnable.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/test_skinnable.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/test_skinnable.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -13,8 +13,6 @@
 #
 ##############################################################################
 """HTTP Publisher Tests
-
-$Id: test_http.py 96537 2009-02-14 15:13:58Z benji_york $
 """
 import unittest
 import doctest

Modified: zope.publisher/trunk/src/zope/publisher/tests/test_xmlrpc.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/test_xmlrpc.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/test_xmlrpc.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Testing the XML-RPC Publisher code.
-
-$Id$
 """
 import doctest
 import xmlrpclib

Modified: zope.publisher/trunk/src/zope/publisher/tests/test_xmlrpcrequest.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/test_xmlrpcrequest.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/test_xmlrpcrequest.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """XML-RPC Request Tests
-
-$Id$
 """
 import unittest
 from StringIO import StringIO

Modified: zope.publisher/trunk/src/zope/publisher/tests/test_zcml.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/test_zcml.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/test_zcml.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Tests for browser:defaultSkin and browser:defaultView directives
-
-$Id: tests.py 103163 2009-08-24 16:22:07Z nadako $
 """
 from cStringIO import StringIO
 import unittest

Modified: zope.publisher/trunk/src/zope/publisher/tests/views.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/views.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/views.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Test objects and interfaces.
-
-$Id$
 """
 
 from zope.interface import Interface, implements

Modified: zope.publisher/trunk/src/zope/publisher/tests/xmlrpcviews.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/tests/xmlrpcviews.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/tests/xmlrpcviews.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """XML-RPC Views test objects
-
-$Id$
 """
 from zope.interface import Interface, implements
 from zope.publisher.interfaces.xmlrpc import IXMLRPCPublisher

Modified: zope.publisher/trunk/src/zope/publisher/xmlrpc.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/xmlrpc.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/xmlrpc.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -14,8 +14,6 @@
 """XML-RPC Publisher
 
 This module contains the XMLRPCRequest and XMLRPCResponse
-
-$Id$
 """
 __docformat__ = 'restructuredtext'
 

Modified: zope.publisher/trunk/src/zope/publisher/zcml.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/zcml.py	2010-06-03 17:24:28 UTC (rev 113053)
+++ zope.publisher/trunk/src/zope/publisher/zcml.py	2010-06-03 17:27:40 UTC (rev 113054)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Default view and default skin ZCML configuration feature.
-
-$Id: metaconfigure.py 103163 2009-08-24 16:22:07Z nadako $
 """
 from zope import component
 from zope.component.interface import provideInterface



More information about the checkins mailing list