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

Tres Seaver tseaver at palladion.com
Thu Jun 3 13:17:03 EDT 2010


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

Changed:
  U   zope.pluggableauth/trunk/bootstrap.py
  U   zope.pluggableauth/trunk/setup.py
  U   zope.pluggableauth/trunk/src/zope/pluggableauth/__init__.py
  U   zope.pluggableauth/trunk/src/zope/pluggableauth/authentication.py
  U   zope.pluggableauth/trunk/src/zope/pluggableauth/factories.py
  U   zope.pluggableauth/trunk/src/zope/pluggableauth/interfaces.py
  U   zope.pluggableauth/trunk/src/zope/pluggableauth/plugins/generic.py
  U   zope.pluggableauth/trunk/src/zope/pluggableauth/plugins/httpplugins.py
  U   zope.pluggableauth/trunk/src/zope/pluggableauth/plugins/session.py
  U   zope.pluggableauth/trunk/src/zope/pluggableauth/tests.py

-=-
Modified: zope.pluggableauth/trunk/bootstrap.py
===================================================================
--- zope.pluggableauth/trunk/bootstrap.py	2010-06-03 17:13:14 UTC (rev 113047)
+++ zope.pluggableauth/trunk/bootstrap.py	2010-06-03 17:17:03 UTC (rev 113048)
@@ -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.pluggableauth/trunk/setup.py
===================================================================
--- zope.pluggableauth/trunk/setup.py	2010-06-03 17:13:14 UTC (rev 113047)
+++ zope.pluggableauth/trunk/setup.py	2010-06-03 17:17:03 UTC (rev 113048)
@@ -19,8 +19,6 @@
 # Zope Toolkit policies as described by this documentation.
 ##############################################################################
 """Pluggable Authentication Utility
-
-$Id$
 """
 
 import os

Modified: zope.pluggableauth/trunk/src/zope/pluggableauth/__init__.py
===================================================================
--- zope.pluggableauth/trunk/src/zope/pluggableauth/__init__.py	2010-06-03 17:13:14 UTC (rev 113047)
+++ zope.pluggableauth/trunk/src/zope/pluggableauth/__init__.py	2010-06-03 17:17:03 UTC (rev 113048)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Pluggable Authentication Utility
-
-$Id$
 """
 
 from zope.pluggableauth import interfaces

Modified: zope.pluggableauth/trunk/src/zope/pluggableauth/authentication.py
===================================================================
--- zope.pluggableauth/trunk/src/zope/pluggableauth/authentication.py	2010-06-03 17:13:14 UTC (rev 113047)
+++ zope.pluggableauth/trunk/src/zope/pluggableauth/authentication.py	2010-06-03 17:17:03 UTC (rev 113048)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Pluggable Authentication Utility implementation
-
-$Id$
 """
 from zope import component
 from zope.authentication.interfaces import (

Modified: zope.pluggableauth/trunk/src/zope/pluggableauth/factories.py
===================================================================
--- zope.pluggableauth/trunk/src/zope/pluggableauth/factories.py	2010-06-03 17:13:14 UTC (rev 113047)
+++ zope.pluggableauth/trunk/src/zope/pluggableauth/factories.py	2010-06-03 17:17:03 UTC (rev 113048)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Principals related factories
-
-$Id$
 """
 __docformat__ = "reStructuredText"
 

Modified: zope.pluggableauth/trunk/src/zope/pluggableauth/interfaces.py
===================================================================
--- zope.pluggableauth/trunk/src/zope/pluggableauth/interfaces.py	2010-06-03 17:13:14 UTC (rev 113047)
+++ zope.pluggableauth/trunk/src/zope/pluggableauth/interfaces.py	2010-06-03 17:17:03 UTC (rev 113048)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Pluggable Authentication Utility Interfaces
-
-$Id$
 """
 __docformat__ = "reStructuredText"
 

Modified: zope.pluggableauth/trunk/src/zope/pluggableauth/plugins/generic.py
===================================================================
--- zope.pluggableauth/trunk/src/zope/pluggableauth/plugins/generic.py	2010-06-03 17:13:14 UTC (rev 113047)
+++ zope.pluggableauth/trunk/src/zope/pluggableauth/plugins/generic.py	2010-06-03 17:17:03 UTC (rev 113048)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Generic PAS Plugins
-
-$Id$
 """
 __docformat__ = "reStructuredText"
 

Modified: zope.pluggableauth/trunk/src/zope/pluggableauth/plugins/httpplugins.py
===================================================================
--- zope.pluggableauth/trunk/src/zope/pluggableauth/plugins/httpplugins.py	2010-06-03 17:13:14 UTC (rev 113047)
+++ zope.pluggableauth/trunk/src/zope/pluggableauth/plugins/httpplugins.py	2010-06-03 17:17:03 UTC (rev 113048)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """PAS plugins related to HTTP
-
-$Id$
 """
 __docformat__ = "reStructuredText"
 

Modified: zope.pluggableauth/trunk/src/zope/pluggableauth/plugins/session.py
===================================================================
--- zope.pluggableauth/trunk/src/zope/pluggableauth/plugins/session.py	2010-06-03 17:13:14 UTC (rev 113047)
+++ zope.pluggableauth/trunk/src/zope/pluggableauth/plugins/session.py	2010-06-03 17:17:03 UTC (rev 113048)
@@ -11,10 +11,7 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-""" Implementations of the session-based and cookie-based extractor and
-    challenge plugins.
-
-$Id$
+""" Session-based and cookie-based extractor and challenge plugins.
 """
 __docformat__ = 'restructuredtext'
 

Modified: zope.pluggableauth/trunk/src/zope/pluggableauth/tests.py
===================================================================
--- zope.pluggableauth/trunk/src/zope/pluggableauth/tests.py	2010-06-03 17:13:14 UTC (rev 113047)
+++ zope.pluggableauth/trunk/src/zope/pluggableauth/tests.py	2010-06-03 17:17:03 UTC (rev 113048)
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Pluggable Authentication Service Tests
-
-$Id$
 """
 __docformat__ = "reStructuredText"
 



More information about the checkins mailing list