[CMF-checkins] CVS: CMF/CMFCore/interfaces - portal_actions.py:1.8 portal_catalog.py:1.6 portal_discussion.py:1.6 portal_memberdata.py:1.5 portal_membership.py:1.5 portal_registration.py:1.5 portal_skins.py:1.5 portal_types.py:1.11 portal_undo.py:1.4 portal_workflow.py:1.10
Tres Seaver
tseaver@zope.com
Thu, 1 Aug 2002 15:05:43 -0400
Update of /cvs-repository/CMF/CMFCore/interfaces
In directory cvs.zope.org:/tmp/cvs-serv13736/CMFCore/interfaces
Modified Files:
portal_actions.py portal_catalog.py portal_discussion.py
portal_memberdata.py portal_membership.py
portal_registration.py portal_skins.py portal_types.py
portal_undo.py portal_workflow.py
Log Message:
- Normalize module headers:
o Eradicate __version__, which tended to be a merge hotspot, in favor
of embedding $Id$ in the docstring (which somehow seems not to cause
nearly so many conflicts).
o Use triple-quotes, rather than triple-apostrophes, for module
docstrings; canonicalize format: single, summary line, followed
by optional narrative, followed by $Id$; each section separated
by a blank line.
=== CMF/CMFCore/interfaces/portal_actions.py 1.7 => 1.8 ===
# FOR A PARTICULAR PURPOSE
#
##############################################################################
+""" Actions tool interface description.
-"""Actions tool interface description.
$Id$
"""
-__version__='$Revision$'[11:-2]
from Interface import Base, Attribute
=== CMF/CMFCore/interfaces/portal_catalog.py 1.5 => 1.6 ===
# FOR A PARTICULAR PURPOSE
#
##############################################################################
+""" Catalog tool interface description.
-"""Catalog tool interface description.
$Id$
"""
-__version__='$Revision$'[11:-2]
from Interface import Attribute, Base
=== CMF/CMFCore/interfaces/portal_discussion.py 1.5 => 1.6 ===
# FOR A PARTICULAR PURPOSE
#
##############################################################################
+""" Discussion tool interface description.
-"""Discussion tool interface description.
$Id$
"""
-__version__='$Revision$'[11:-2]
from Interface import Attribute, Base
=== CMF/CMFCore/interfaces/portal_memberdata.py 1.4 => 1.5 ===
# FOR A PARTICULAR PURPOSE
#
##############################################################################
+""" Membership data storage tool interface description.
-"""Membership data storage tool interface description.
$Id$
"""
-__version__='$Revision$'[11:-2]
from Interface import Attribute, Base
=== CMF/CMFCore/interfaces/portal_membership.py 1.4 => 1.5 ===
# FOR A PARTICULAR PURPOSE
#
##############################################################################
+""" Membership tool interface description.
-"""Membership tool interface description.
$Id$
"""
-__version__='$Revision$'[11:-2]
from Interface import Attribute, Base
=== CMF/CMFCore/interfaces/portal_registration.py 1.4 => 1.5 ===
# FOR A PARTICULAR PURPOSE
#
##############################################################################
+""" Registration tool interface description.
-"""Registration tool interface description.
$Id$
"""
-__version__='$Revision$'[11:-2]
from Interface import Attribute, Base
=== CMF/CMFCore/interfaces/portal_skins.py 1.4 => 1.5 ===
# FOR A PARTICULAR PURPOSE
#
##############################################################################
+""" Skins tool interface description.
-"""Skins tool interface description.
$Id$
"""
-__version__='$Revision$'[11:-2]
from Interface import Attribute, Base
=== CMF/CMFCore/interfaces/portal_types.py 1.10 => 1.11 ===
# FOR A PARTICULAR PURPOSE
#
##############################################################################
+""" Type registration tool interface description.
+$Id$
"""
- Type registration tool interface description.
-"""
-__version__='$Revision$'[11:-2]
from Interface import Attribute, Base
=== CMF/CMFCore/interfaces/portal_undo.py 1.3 => 1.4 ===
# FOR A PARTICULAR PURPOSE
#
##############################################################################
+""" Undo tool interface description.
-"""Undo tool interface description.
$Id$
"""
-__version__='$Revision$'[11:-2]
from Interface import Attribute, Base
=== CMF/CMFCore/interfaces/portal_workflow.py 1.9 => 1.10 ===
# FOR A PARTICULAR PURPOSE
#
##############################################################################
+""" Workflow tool interface description.
-"""Workflow tool interface description.
$Id$
"""
-__version__='$Revision$'[11:-2]
from Interface import Attribute, Base