[Zope-Checkins] SVN: Products.Five/trunk/ - svn properties cleanup
Yvo Schubbe
y.2007- at wcm-solutions.de
Mon Jan 8 08:16:24 EST 2007
Log message for revision 71798:
- svn properties cleanup
- added missing license headers
Changed:
U Products.Five/trunk/bbb.py
U Products.Five/trunk/browser/adding.py
UU Products.Five/trunk/browser/providerexpression.py
UU Products.Five/trunk/browser/tests/classes.py
UU Products.Five/trunk/browser/tests/i18n.py
_U Products.Five/trunk/browser/tests/pages/dirpage1.pt
_U Products.Five/trunk/browser/tests/pages/dirpage2.pt
_U Products.Five/trunk/browser/tests/provider.txt
_U Products.Five/trunk/browser/tests/provider.zcml
_U Products.Five/trunk/browser/tests/provider_error.pt
_U Products.Five/trunk/browser/tests/provider_messagebox.pt
_U Products.Five/trunk/browser/tests/provider_namespace.pt
_U Products.Five/trunk/browser/tests/provider_namespace2.pt
_U Products.Five/trunk/browser/tests/provider_template_based.pt
UU Products.Five/trunk/browser/tests/test_provider.py
_U Products.Five/trunk/component/makesite.txt
_U Products.Five/trunk/deprecated.zcml
_U Products.Five/trunk/doc/event.txt
_U Products.Five/trunk/doc/five14goals.txt
_U Products.Five/trunk/doc/formlib.txt
_U Products.Five/trunk/event.zcml
_U Products.Five/trunk/formlib/__init__.py
_U Products.Five/trunk/formlib/tests/__init__.py
_U Products.Five/trunk/formlib/tests/configure.zcml
UU Products.Five/trunk/formlib/tests/content.py
_U Products.Five/trunk/formlib/tests/formlib.txt
_U Products.Five/trunk/formlib/tests/framework.py
_U Products.Five/trunk/formlib/tests/test_formlib.py
_U Products.Five/trunk/formlib/tests/view.py
_U Products.Five/trunk/site/__init__.py
UU Products.Five/trunk/site/interfaces.py
UU Products.Five/trunk/site/metaconfigure.py
UU Products.Five/trunk/site/metadirectives.py
_U Products.Five/trunk/site/tests/__init__.py
_U Products.Five/trunk/site/tests/functional.txt
_U Products.Five/trunk/site/tests/test_functional.py
_U Products.Five/trunk/site/tests/test_localsite.py
_U Products.Five/trunk/site/tests/test_sitemanager.py
_U Products.Five/trunk/site/tests/test_utility.py
UU Products.Five/trunk/testbrowser.py
_U Products.Five/trunk/tests/classes.py
_U Products.Five/trunk/tests/test_registerpackage.py
_U Products.Five/trunk/tests/test_testbrowser.py
_U Products.Five/trunk/tests/testing/pythonproduct1.py
_U Products.Five/trunk/tests/testing/pythonproduct2/Extensions/__init__.py
_U Products.Five/trunk/tests/testing/pythonproduct2/Extensions/somemodule.py
_U Products.Five/trunk/tests/testing/pythonproduct2/__init__.py
_U Products.Five/trunk/viewlet/README.txt
_U Products.Five/trunk/viewlet/__init__.py
_U Products.Five/trunk/viewlet/configure.zcml
_U Products.Five/trunk/viewlet/css_viewlet.pt
_U Products.Five/trunk/viewlet/directives.txt
_U Products.Five/trunk/viewlet/javascript_viewlet.pt
UU Products.Five/trunk/viewlet/manager.py
_U Products.Five/trunk/viewlet/meta.zcml
UU Products.Five/trunk/viewlet/metaconfigure.py
UU Products.Five/trunk/viewlet/tests.py
UU Products.Five/trunk/viewlet/viewlet.py
-=-
Modified: Products.Five/trunk/bbb.py
===================================================================
--- Products.Five/trunk/bbb.py 2007-01-08 13:04:38 UTC (rev 71797)
+++ Products.Five/trunk/bbb.py 2007-01-08 13:16:22 UTC (rev 71798)
@@ -13,7 +13,7 @@
##############################################################################
"""Things needed for backward compatibility
-$Id
+$Id$
"""
from zope.interface import Interface, implements
from zope.component.interfaces import ComponentLookupError
Modified: Products.Five/trunk/browser/adding.py
===================================================================
--- Products.Five/trunk/browser/adding.py 2007-01-08 13:04:38 UTC (rev 71797)
+++ Products.Five/trunk/browser/adding.py 2007-01-08 13:16:22 UTC (rev 71798)
@@ -15,6 +15,8 @@
The Adding View is used to add new objects to a container. It is sort of a
factory screen.
+
+$Id$
"""
__docformat__ = 'restructuredtext'
Modified: Products.Five/trunk/browser/providerexpression.py
===================================================================
--- Products.Five/trunk/browser/providerexpression.py 2007-01-08 13:04:38 UTC (rev 71797)
+++ Products.Five/trunk/browser/providerexpression.py 2007-01-08 13:16:22 UTC (rev 71798)
@@ -1,3 +1,20 @@
+##############################################################################
+#
+# Copyright (c) 2006 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Provider expression.
+
+$Id$
+"""
import zope.component
from zope.contentprovider import interfaces as cp_interfaces
from zope.contentprovider.tales import addTALNamespaceData
Property changes on: Products.Five/trunk/browser/providerexpression.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Modified: Products.Five/trunk/browser/tests/classes.py
===================================================================
--- Products.Five/trunk/browser/tests/classes.py 2007-01-08 13:04:38 UTC (rev 71797)
+++ Products.Five/trunk/browser/tests/classes.py 2007-01-08 13:16:22 UTC (rev 71798)
@@ -12,6 +12,8 @@
#
##############################################################################
"""Test fixtures
+
+$Id$
"""
from zope.interface import Interface, implements
from Products.Five import BrowserView
Property changes on: Products.Five/trunk/browser/tests/classes.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Modified: Products.Five/trunk/browser/tests/i18n.py
===================================================================
--- Products.Five/trunk/browser/tests/i18n.py 2007-01-08 13:04:38 UTC (rev 71797)
+++ Products.Five/trunk/browser/tests/i18n.py 2007-01-08 13:16:22 UTC (rev 71798)
@@ -1,3 +1,20 @@
+##############################################################################
+#
+# Copyright (c) 2006 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Test i18n.
+
+$Id$
+"""
from zope.i18nmessageid import MessageFactory
_ = MessageFactory('fivetest')
from Products.Five import BrowserView
@@ -4,4 +21,3 @@
class I18nView(BrowserView):
this_is_a_message = _(u'This is a message')
-
Property changes on: Products.Five/trunk/browser/tests/i18n.py
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: Products.Five/trunk/browser/tests/pages/dirpage1.pt
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/browser/tests/pages/dirpage2.pt
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/browser/tests/provider.txt
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/browser/tests/provider.zcml
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/browser/tests/provider_error.pt
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/browser/tests/provider_messagebox.pt
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/browser/tests/provider_namespace.pt
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/browser/tests/provider_namespace2.pt
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/browser/tests/provider_template_based.pt
___________________________________________________________________
Name: svn:eol-style
+ native
Modified: Products.Five/trunk/browser/tests/test_provider.py
===================================================================
--- Products.Five/trunk/browser/tests/test_provider.py 2007-01-08 13:04:38 UTC (rev 71797)
+++ Products.Five/trunk/browser/tests/test_provider.py 2007-01-08 13:16:22 UTC (rev 71798)
@@ -13,7 +13,7 @@
##############################################################################
"""Test browser pages
-$Id: test_skin.py 61865 2005-11-19 09:54:53Z philikon $
+$Id$
"""
import os, sys
if __name__ == '__main__':
Property changes on: Products.Five/trunk/browser/tests/test_provider.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/component/makesite.txt
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/deprecated.zcml
___________________________________________________________________
Name: svn:keywords
- Id
Property changes on: Products.Five/trunk/doc/event.txt
___________________________________________________________________
Name: svn:keywords
- Id
Property changes on: Products.Five/trunk/doc/five14goals.txt
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/doc/formlib.txt
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/event.zcml
___________________________________________________________________
Name: svn:keywords
- Id
Property changes on: Products.Five/trunk/formlib/__init__.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/formlib/tests/__init__.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/formlib/tests/configure.zcml
___________________________________________________________________
Name: svn:eol-style
+ native
Modified: Products.Five/trunk/formlib/tests/content.py
===================================================================
--- Products.Five/trunk/formlib/tests/content.py 2007-01-08 13:04:38 UTC (rev 71797)
+++ Products.Five/trunk/formlib/tests/content.py 2007-01-08 13:16:22 UTC (rev 71798)
@@ -11,7 +11,10 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
+"""Test content.
+$Id$
+"""
from OFS.SimpleItem import SimpleItem
from Globals import InitializeClass
@@ -29,7 +32,7 @@
default='',
required=True
)
-
+
title = TextLine(
title=_(u"Title"),
description=_(u"A short description of the event."),
@@ -48,7 +51,7 @@
"""A Viewable piece of content with fields
"""
implements(IContent)
-
+
meta_type = 'Five Formlib Test Content'
def __init__(self, id, title, somelist=None):
Property changes on: Products.Five/trunk/formlib/tests/content.py
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/formlib/tests/formlib.txt
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/formlib/tests/framework.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/formlib/tests/test_formlib.py
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/formlib/tests/view.py
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/site/__init__.py
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: Products.Five/trunk/site/interfaces.py
===================================================================
--- Products.Five/trunk/site/interfaces.py 2007-01-08 13:04:38 UTC (rev 71797)
+++ Products.Five/trunk/site/interfaces.py 2007-01-08 13:16:22 UTC (rev 71798)
@@ -13,7 +13,7 @@
##############################################################################
"""Five interfaces
-$Id: interfaces.py 18584 2005-10-14 17:13:27Z regebro $
+$Id$
"""
from zope.interface import Interface, Attribute
from zope.component.interfaces import IComponentLookup
Property changes on: Products.Five/trunk/site/interfaces.py
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: Products.Five/trunk/site/metaconfigure.py
===================================================================
--- Products.Five/trunk/site/metaconfigure.py 2007-01-08 13:04:38 UTC (rev 71797)
+++ Products.Five/trunk/site/metaconfigure.py 2007-01-08 13:16:22 UTC (rev 71798)
@@ -15,7 +15,7 @@
These directives are specific to Five and have no equivalents in Zope 3.
-$Id: fiveconfigure.py 18581 2005-10-14 16:54:25Z regebro $
+$Id$
"""
from zope.interface import classImplements, classImplementsOnly, implementedBy
from zope.app.component.interfaces import IPossibleSite
Property changes on: Products.Five/trunk/site/metaconfigure.py
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: Products.Five/trunk/site/metadirectives.py
===================================================================
--- Products.Five/trunk/site/metadirectives.py 2007-01-08 13:04:38 UTC (rev 71797)
+++ Products.Five/trunk/site/metadirectives.py 2007-01-08 13:16:22 UTC (rev 71798)
@@ -13,7 +13,7 @@
##############################################################################
"""Site support ZCML directive schemas
-$Id: fivedirectives.py 18581 2005-10-14 16:54:25Z regebro $
+$Id$
"""
from zope.interface import Interface
from zope.configuration.fields import GlobalObject
Property changes on: Products.Five/trunk/site/metadirectives.py
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: Products.Five/trunk/site/tests/__init__.py
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: Products.Five/trunk/site/tests/functional.txt
___________________________________________________________________
Name: svn:keywords
- Id
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/site/tests/test_functional.py
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/site/tests/test_localsite.py
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/site/tests/test_sitemanager.py
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: Products.Five/trunk/site/tests/test_utility.py
___________________________________________________________________
Name: svn:eol-style
+ native
Modified: Products.Five/trunk/testbrowser.py
===================================================================
--- Products.Five/trunk/testbrowser.py 2007-01-08 13:04:38 UTC (rev 71797)
+++ Products.Five/trunk/testbrowser.py 2007-01-08 13:16:22 UTC (rev 71798)
@@ -1,6 +1,21 @@
+##############################################################################
+#
+# Copyright (c) 2006 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
"""Support for using zope.testbrowser from Zope2.
Mostly just copy and paste from zope.testbrowser.testing.
+
+$Id$
"""
import urllib2
Property changes on: Products.Five/trunk/testbrowser.py
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: Products.Five/trunk/tests/classes.py
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: Products.Five/trunk/tests/test_registerpackage.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/tests/test_testbrowser.py
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: Products.Five/trunk/tests/testing/pythonproduct1.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/tests/testing/pythonproduct2/Extensions/__init__.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/tests/testing/pythonproduct2/Extensions/somemodule.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/tests/testing/pythonproduct2/__init__.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/viewlet/README.txt
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/viewlet/__init__.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/viewlet/configure.zcml
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/viewlet/css_viewlet.pt
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/viewlet/directives.txt
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/viewlet/javascript_viewlet.pt
___________________________________________________________________
Name: svn:eol-style
+ native
Modified: Products.Five/trunk/viewlet/manager.py
===================================================================
--- Products.Five/trunk/viewlet/manager.py 2007-01-08 13:04:38 UTC (rev 71797)
+++ Products.Five/trunk/viewlet/manager.py 2007-01-08 13:16:22 UTC (rev 71798)
@@ -1,3 +1,20 @@
+##############################################################################
+#
+# Copyright (c) 2006 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Viewlet manager.
+
+$Id$
+"""
import Acquisition
from AccessControl.ZopeGuards import guarded_hasattr
import zope.interface
Property changes on: Products.Five/trunk/viewlet/manager.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Property changes on: Products.Five/trunk/viewlet/meta.zcml
___________________________________________________________________
Name: svn:eol-style
+ native
Modified: Products.Five/trunk/viewlet/metaconfigure.py
===================================================================
--- Products.Five/trunk/viewlet/metaconfigure.py 2007-01-08 13:04:38 UTC (rev 71797)
+++ Products.Five/trunk/viewlet/metaconfigure.py 2007-01-08 13:16:22 UTC (rev 71798)
@@ -1,3 +1,20 @@
+##############################################################################
+#
+# Copyright (c) 2006 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Viewlet ZCML directives.
+
+$Id$
+"""
import os
from zope.app.publisher.browser import viewmeta
from zope.component import zcml
Property changes on: Products.Five/trunk/viewlet/metaconfigure.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Modified: Products.Five/trunk/viewlet/tests.py
===================================================================
--- Products.Five/trunk/viewlet/tests.py 2007-01-08 13:04:38 UTC (rev 71797)
+++ Products.Five/trunk/viewlet/tests.py 2007-01-08 13:16:22 UTC (rev 71798)
@@ -13,7 +13,7 @@
##############################################################################
"""Viewlet tests
-$Id: tests.py 39461 2005-10-15 10:45:13Z srichter $
+$Id$
"""
__docformat__ = 'restructuredtext'
Property changes on: Products.Five/trunk/viewlet/tests.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Modified: Products.Five/trunk/viewlet/viewlet.py
===================================================================
--- Products.Five/trunk/viewlet/viewlet.py 2007-01-08 13:04:38 UTC (rev 71797)
+++ Products.Five/trunk/viewlet/viewlet.py 2007-01-08 13:16:22 UTC (rev 71798)
@@ -1,3 +1,20 @@
+##############################################################################
+#
+# Copyright (c) 2006 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Viewlet.
+
+$Id$
+"""
import os
from Acquisition import Explicit
from zope.viewlet import viewlet as orig_viewlet
Property changes on: Products.Five/trunk/viewlet/viewlet.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
More information about the Zope-Checkins
mailing list