[Zope-Checkins] SVN: Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/ Fix up standard file header and set svn:keywords=Id. Just some cosmetics

Philipp von Weitershausen philikon at philikon.de
Mon May 8 18:04:29 EDT 2006


Log message for revision 68041:
  Fix up standard file header and set svn:keywords=Id. Just some cosmetics
  

Changed:
  UU  Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/PathIterator.py
  UU  Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/PythonExpr.py
  UU  Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/ZPythonExpr.py
  UU  Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/ZRPythonExpr.py
  _U  Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/ZopePageTemplate.py
  U   Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/__init__.py

-=-
Modified: Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/PathIterator.py
===================================================================
--- Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/PathIterator.py	2006-05-08 19:32:54 UTC (rev 68040)
+++ Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/PathIterator.py	2006-05-08 22:04:29 UTC (rev 68041)
@@ -10,15 +10,13 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-
 """Path Iterator
 
 A TALES Iterator with the ability to use first() and last() on
 subpaths of elements.
-"""
 
-__version__='$Revision: 1.4 $'[11:-2]
-
+$Id$
+"""
 import TALES
 from Expressions import restrictedTraverse, Undefs, getSecurityManager
 


Property changes on: Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/PathIterator.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/PythonExpr.py
===================================================================
--- Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/PythonExpr.py	2006-05-08 19:32:54 UTC (rev 68040)
+++ Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/PythonExpr.py	2006-05-08 22:04:29 UTC (rev 68041)
@@ -10,15 +10,13 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-
 """Generic Python Expression Handler
-"""
 
-__version__='$Revision: 1.13 $'[11:-2]
-
+$Id$
+"""
 from TALES import CompilerError
 from sys import exc_info
-from DeferExpr import DeferWrapper
+from zope.tales.expressions import DeferWrapper
 
 class getSecurityManager:
     '''Null security manager'''


Property changes on: Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/PythonExpr.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/ZPythonExpr.py
===================================================================
--- Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/ZPythonExpr.py	2006-05-08 19:32:54 UTC (rev 68040)
+++ Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/ZPythonExpr.py	2006-05-08 22:04:29 UTC (rev 68041)
@@ -10,15 +10,13 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-
 """Old Zope-specific Python Expression Handler
 
 Handler for Python expressions, using the pre-Python 2.1 restriction
 machinery from PythonScripts.
-"""
 
-__version__='$Revision: 1.8 $'[11:-2]
-
+$Id$
+"""
 from AccessControl import getSecurityManager
 from Products.PythonScripts.Guarded import _marker, \
      GuardedBlock, theGuard, safebin, WriteGuard, ReadGuard, UntupleFunction


Property changes on: Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/ZPythonExpr.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/ZRPythonExpr.py
===================================================================
--- Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/ZRPythonExpr.py	2006-05-08 19:32:54 UTC (rev 68040)
+++ Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/ZRPythonExpr.py	2006-05-08 22:04:29 UTC (rev 68041)
@@ -10,14 +10,12 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-
 """Zope-specific Python Expression Handler
 
 Handler for Python expressions that uses the RestrictedPython package.
-"""
 
-__version__='$Revision: 1.11 $'[11:-2]
-
+$Id$
+"""
 from AccessControl import safe_builtins
 from AccessControl.ZopeGuards import guarded_getattr, get_safe_globals
 from RestrictedPython import compile_restricted_eval


Property changes on: Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/ZRPythonExpr.py
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/ZopePageTemplate.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/__init__.py
===================================================================
--- Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/__init__.py	2006-05-08 19:32:54 UTC (rev 68040)
+++ Zope/branches/ajung-zpt-end-game/lib/python/Products/PageTemplates/__init__.py	2006-05-08 22:04:29 UTC (rev 68041)
@@ -10,15 +10,14 @@
 # FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
-__doc__='''Package wrapper for Page Templates
+"""Package wrapper for Page Templates
 
 This wrapper allows the Page Template modules to be segregated in a
 separate package.
 
-$Id$'''
-__version__='$$'[11:-2]
+$Id$
+"""
 
-
 # Placeholder for Zope Product data
 misc_ = {}
 



More information about the Zope-Checkins mailing list