[Checkins] SVN: zope.principalregistry/trunk/s Update years, module descriptions and some formatting.

Dan Korostelev nadako at gmail.com
Fri Mar 13 15:22:37 EDT 2009


Log message for revision 98043:
  Update years, module descriptions and some formatting.

Changed:
  U   zope.principalregistry/trunk/setup.py
  U   zope.principalregistry/trunk/src/zope/principalregistry/README.txt
  U   zope.principalregistry/trunk/src/zope/principalregistry/metaconfigure.py
  U   zope.principalregistry/trunk/src/zope/principalregistry/metadirectives.py
  U   zope.principalregistry/trunk/src/zope/principalregistry/principalregistry.py
  U   zope.principalregistry/trunk/src/zope/principalregistry/tests/test_doc.py
  U   zope.principalregistry/trunk/src/zope/principalregistry/tests/test_principalregistry.py

-=-
Modified: zope.principalregistry/trunk/setup.py
===================================================================
--- zope.principalregistry/trunk/setup.py	2009-03-13 19:07:36 UTC (rev 98042)
+++ zope.principalregistry/trunk/setup.py	2009-03-13 19:22:37 UTC (rev 98043)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2006 Zope Corporation and Contributors.
+# Copyright (c) 2009 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: zope.principalregistry/trunk/src/zope/principalregistry/README.txt
===================================================================
--- zope.principalregistry/trunk/src/zope/principalregistry/README.txt	2009-03-13 19:07:36 UTC (rev 98042)
+++ zope.principalregistry/trunk/src/zope/principalregistry/README.txt	2009-03-13 19:22:37 UTC (rev 98043)
@@ -106,9 +106,7 @@
 
     >>> reset()
     >>> zcml("""
-    ...    <configure
-    ...        xmlns="http://namespaces.zope.org/zope"
-    ...        >
+    ...    <configure xmlns="http://namespaces.zope.org/zope">
     ...
     ...      <unauthenticatedGroup
     ...         id="zope.unknowngroup2"
@@ -150,9 +148,7 @@
 
     >>> reset()
     >>> zcml("""
-    ...    <configure
-    ...        xmlns="http://namespaces.zope.org/zope"
-    ...        >
+    ...    <configure xmlns="http://namespaces.zope.org/zope">
     ...
     ...      <unauthenticatedPrincipal
     ...         id="zope.unknown3"
@@ -216,9 +212,7 @@
 
     >>> reset()
     >>> zcml("""
-    ...    <configure
-    ...        xmlns="http://namespaces.zope.org/zope"
-    ...        >
+    ...    <configure xmlns="http://namespaces.zope.org/zope">
     ...
     ...      <unauthenticatedPrincipal
     ...         id="zope.unknown4"

Modified: zope.principalregistry/trunk/src/zope/principalregistry/metaconfigure.py
===================================================================
--- zope.principalregistry/trunk/src/zope/principalregistry/metaconfigure.py	2009-03-13 19:07:36 UTC (rev 98042)
+++ zope.principalregistry/trunk/src/zope/principalregistry/metaconfigure.py	2009-03-13 19:22:37 UTC (rev 98043)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2009 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -11,7 +11,7 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""Register security related configuration directives.
+"""Directives for defining principals and groups
 
 $Id$
 """

Modified: zope.principalregistry/trunk/src/zope/principalregistry/metadirectives.py
===================================================================
--- zope.principalregistry/trunk/src/zope/principalregistry/metadirectives.py	2009-03-13 19:07:36 UTC (rev 98042)
+++ zope.principalregistry/trunk/src/zope/principalregistry/metadirectives.py	2009-03-13 19:22:37 UTC (rev 98043)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2009 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -11,7 +11,7 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""securityPolicy Directive Schema
+"""Schemas for directives that define principals and groups
 
 $Id$
 """

Modified: zope.principalregistry/trunk/src/zope/principalregistry/principalregistry.py
===================================================================
--- zope.principalregistry/trunk/src/zope/principalregistry/principalregistry.py	2009-03-13 19:07:36 UTC (rev 98042)
+++ zope.principalregistry/trunk/src/zope/principalregistry/principalregistry.py	2009-03-13 19:22:37 UTC (rev 98043)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2009 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: zope.principalregistry/trunk/src/zope/principalregistry/tests/test_doc.py
===================================================================
--- zope.principalregistry/trunk/src/zope/principalregistry/tests/test_doc.py	2009-03-13 19:07:36 UTC (rev 98042)
+++ zope.principalregistry/trunk/src/zope/principalregistry/tests/test_doc.py	2009-03-13 19:22:37 UTC (rev 98043)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2009 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -11,7 +11,7 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""Global Authentication Serive or Principal Registry Tests
+"""Tests for the principal registry ZCML directives
 
 $Id$
 """

Modified: zope.principalregistry/trunk/src/zope/principalregistry/tests/test_principalregistry.py
===================================================================
--- zope.principalregistry/trunk/src/zope/principalregistry/tests/test_principalregistry.py	2009-03-13 19:07:36 UTC (rev 98042)
+++ zope.principalregistry/trunk/src/zope/principalregistry/tests/test_principalregistry.py	2009-03-13 19:22:37 UTC (rev 98043)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2009 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -11,7 +11,7 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""Global Authentication Serive or Principal Registry Tests
+"""Tests for the principal registry
 
 $Id$
 """



More information about the Checkins mailing list