[z3-checkins] r5208 - z3/Five/trunk
philikon at codespeak.net
philikon at codespeak.net
Mon Jun 21 19:26:08 MEST 2004
Author: philikon
Date: Mon Jun 21 19:26:07 2004
New Revision: 5208
Modified:
z3/Five/trunk/__init__.py (contents, props changed)
z3/Five/trunk/api.py (contents, props changed)
z3/Five/trunk/browser.py (contents, props changed)
z3/Five/trunk/fiveconfigure.py (contents, props changed)
z3/Five/trunk/fivedirectives.py (contents, props changed)
z3/Five/trunk/interfaces.py (contents, props changed)
z3/Five/trunk/metaconfigure.py (contents, props changed)
z3/Five/trunk/monkey.py (contents, props changed)
z3/Five/trunk/viewable.py (contents, props changed)
z3/Five/trunk/viewattribute.py (contents, props changed)
z3/Five/trunk/zcml.py (contents, props changed)
Log:
License header and docstrings everywhere.
Modified: z3/Five/trunk/__init__.py
==============================================================================
--- z3/Five/trunk/__init__.py (original)
+++ z3/Five/trunk/__init__.py Mon Jun 21 19:26:07 2004
@@ -1,3 +1,15 @@
+##############################################################################
+#
+# Copyright (c) 2004 Five Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
+"""Initialize the Five product
+
+$Id$
+"""
import Acquisition
import monkey
Modified: z3/Five/trunk/api.py
==============================================================================
--- z3/Five/trunk/api.py (original)
+++ z3/Five/trunk/api.py Mon Jun 21 19:26:07 2004
@@ -6,5 +6,9 @@
# License (ZPL) v2.1. See COPYING.txt for more information.
#
##############################################################################
+"""Convenience package for short imports
+
+$Id$
+"""
from browser import BrowserView
from viewable import Viewable
Modified: z3/Five/trunk/browser.py
==============================================================================
--- z3/Five/trunk/browser.py (original)
+++ z3/Five/trunk/browser.py Mon Jun 21 19:26:07 2004
@@ -1,3 +1,15 @@
+##############################################################################
+#
+# Copyright (c) 2004 Five Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
+"""Provide basic browser functionality
+
+$Id$
+"""
import Acquisition
from AccessControl import ClassSecurityInfo, getSecurityManager
from zExceptions import Unauthorized
Modified: z3/Five/trunk/fiveconfigure.py
==============================================================================
--- z3/Five/trunk/fiveconfigure.py (original)
+++ z3/Five/trunk/fiveconfigure.py Mon Jun 21 19:26:07 2004
@@ -1,4 +1,14 @@
+##############################################################################
+#
+# Copyright (c) 2004 Five Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
"""Five specific directives.
+
+$Id$
"""
import os
from zope.interface import classImplements, Interface
Modified: z3/Five/trunk/fivedirectives.py
==============================================================================
--- z3/Five/trunk/fivedirectives.py (original)
+++ z3/Five/trunk/fivedirectives.py Mon Jun 21 19:26:07 2004
@@ -1,3 +1,15 @@
+##############################################################################
+#
+# Copyright (c) 2004 Five Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
+"""Five ZCML directive schemas
+
+$Id$
+"""
from zope.interface import Interface
from zope.configuration.fields import GlobalObject, Tokens
Modified: z3/Five/trunk/interfaces.py
==============================================================================
--- z3/Five/trunk/interfaces.py (original)
+++ z3/Five/trunk/interfaces.py Mon Jun 21 19:26:07 2004
@@ -1,3 +1,15 @@
+##############################################################################
+#
+# Copyright (c) 2004 Five Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
+"""Five interfaces
+
+$Id$
+"""
from zope.interface import Interface
# nothing in here for now
Modified: z3/Five/trunk/metaconfigure.py
==============================================================================
--- z3/Five/trunk/metaconfigure.py (original)
+++ z3/Five/trunk/metaconfigure.py Mon Jun 21 19:26:07 2004
@@ -13,7 +13,7 @@
##############################################################################
"""Generic Components ZCML Handlers
-$Id: metaconfigure.py,v 1.5 2004/06/02 08:44:01 faassen Exp $
+$Id$
"""
from zope.component import getService, getServices
from zope.component.servicenames import Adapters
Modified: z3/Five/trunk/monkey.py
==============================================================================
--- z3/Five/trunk/monkey.py (original)
+++ z3/Five/trunk/monkey.py Mon Jun 21 19:26:07 2004
@@ -1,4 +1,15 @@
+##############################################################################
+#
+# Copyright (c) 2004 Five Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
+"""Bad monkey!
+$Id$
+"""
def monkeyPatch():
"""Trigger all monkey patches needed to make Five work.
Modified: z3/Five/trunk/viewable.py
==============================================================================
--- z3/Five/trunk/viewable.py (original)
+++ z3/Five/trunk/viewable.py Mon Jun 21 19:26:07 2004
@@ -1,3 +1,15 @@
+##############################################################################
+#
+# Copyright (c) 2004 Five Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
+"""Machinery for making things viewable through Five views
+
+$Id$
+"""
from webdav.NullResource import NullResource
from zope.component import getView, ComponentLookupError
from zope.interface import implements
Modified: z3/Five/trunk/viewattribute.py
==============================================================================
--- z3/Five/trunk/viewattribute.py (original)
+++ z3/Five/trunk/viewattribute.py Mon Jun 21 19:26:07 2004
@@ -1,3 +1,15 @@
+##############################################################################
+#
+# Copyright (c) 2004 Five Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
+"""View attribute machinery
+
+$Id$
+"""
import Acquisition
from AccessControl import getSecurityManager
from zExceptions import Unauthorized
Modified: z3/Five/trunk/zcml.py
==============================================================================
--- z3/Five/trunk/zcml.py (original)
+++ z3/Five/trunk/zcml.py Mon Jun 21 19:26:07 2004
@@ -1,3 +1,15 @@
+##############################################################################
+#
+# Copyright (c) 2004 Five Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
+"""ZCML machinery
+
+$Id$
+"""
from zope.configuration import xmlconfig
import Products
More information about the z3-checkins
mailing list