[z3-checkins] r10227 - in z3/CMFonFive/trunk: . Extensions tests
regebro at codespeak.net
regebro at codespeak.net
Fri Apr 1 18:51:45 MEST 2005
Author: regebro
Date: Fri Apr 1 18:51:45 2005
New Revision: 10227
Added:
z3/CMFonFive/trunk/CHANGES (contents, props changed)
z3/CMFonFive/trunk/COPYING.txt (contents, props changed)
z3/CMFonFive/trunk/HISTORY (contents, props changed)
z3/CMFonFive/trunk/README.txt (contents, props changed)
z3/CMFonFive/trunk/VERSION (contents, props changed)
Modified:
z3/CMFonFive/trunk/Extensions/install.py (contents, props changed)
z3/CMFonFive/trunk/__init__.py (contents, props changed)
z3/CMFonFive/trunk/browser.py (contents, props changed)
z3/CMFonFive/trunk/fiveactionstool.py (contents, props changed)
z3/CMFonFive/trunk/interfaces.py (contents, props changed)
z3/CMFonFive/trunk/metadirectives.py (contents, props changed)
z3/CMFonFive/trunk/tests/__init__.py (props changed)
z3/CMFonFive/trunk/tests/test_interfaces.py (props changed)
Log:
Copyright notices and stuff.
Added: z3/CMFonFive/trunk/CHANGES
==============================================================================
--- (empty file)
+++ z3/CMFonFive/trunk/CHANGES Fri Apr 1 18:51:45 2005
@@ -0,0 +1 @@
+Initial release.
\ No newline at end of file
Added: z3/CMFonFive/trunk/COPYING.txt
==============================================================================
--- (empty file)
+++ z3/CMFonFive/trunk/COPYING.txt Fri Apr 1 18:51:45 2005
@@ -0,0 +1,27 @@
+Five is distributed under the provisions of the Zope Public License
+(ZPL) v2.1. See doc/ZopePublicLicense.txt for the license text.
+
+Copyright (C) 2005 Five Contributors. See CREDITS.txt for a list of
+Five contributors.
+
+Five contains source code derived from:
+
+- Zope 3, copyright (C) 2001-2005 by Zope Corporation. Code that
+ falls under this copyright is prefixed with the following header:
+
+ Copyright (c) 2001-2004 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.
+
+- metaclass.py is derived from PEAK, copyright (C) 1996-2004 by
+ Phillip J. Eby and Tyler C. Sarna. PEAK may be used under the same
+ terms as Zope.
+
+- TrustedExecutables. Dieter Mauer kindly allow licensing this under the
+ ZPL 2.1.
\ No newline at end of file
Modified: z3/CMFonFive/trunk/Extensions/install.py
==============================================================================
--- z3/CMFonFive/trunk/Extensions/install.py (original)
+++ z3/CMFonFive/trunk/Extensions/install.py Fri Apr 1 18:51:45 2005
@@ -15,7 +15,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
# 02111-1307, USA.
#
-# $Id: install.py,v 1.36 2004/03/16 15:35:00 regebro Exp $
+# $Id$
from zLOG import LOG, INFO, DEBUG
from Products.CMFCore.utils import getToolByName, _marker
@@ -85,7 +85,7 @@
self.log('Verifying action provider %s' % action_provider)
atool = self.getTool('portal_actions')
if action_provider in atool.listActionProviders():
- self.log(' Already correctly installed')
+ self.logOK()
else:
atool.addActionProvider(action_provider)
self.log(' Installed')
Added: z3/CMFonFive/trunk/HISTORY
==============================================================================
--- (empty file)
+++ z3/CMFonFive/trunk/HISTORY Fri Apr 1 18:51:45 2005
@@ -0,0 +1 @@
+
Added: z3/CMFonFive/trunk/README.txt
==============================================================================
--- (empty file)
+++ z3/CMFonFive/trunk/README.txt Fri Apr 1 18:51:45 2005
@@ -0,0 +1,35 @@
+CMFonFive
+=========
+CMFonFive is a product that provides integration between CMF and Five,
+making it ossible to write Five products tht run on CMF.
+
+* http://www.zope.org/Products/CMF/
+* http://codespeak.net/z3/five/
+
+
+CMFonFive has two main parts:
+* A set of interface definitions for many parts of CMF.
+* A portal_fiveactions tool that enables you to create actions and action
+ menus in CMF by the browser:menu and browser:menuItem ZCML statements.
+
+
+Requirements
+------------
+* CMF 1.4 or 1.5.
+* Five 0.3
+
+
+Installation
+------------
+The interface suppert needs no installation. If you want the menuItem
+support, you simply create a Five Actions Tool in your CMF site, and set
+that tool up as an action provider in the portal_actions tool.
+
+CMFonFive has support for CMFQuickInstaller, so if you have that installed
+you can use that to do the above installation.
+
+
+Contributors
+------------
+* Tres Seaver (tseaver at zope.com)
+* Lennart Regebro (regebro at nuxeo.com)
Added: z3/CMFonFive/trunk/VERSION
==============================================================================
--- (empty file)
+++ z3/CMFonFive/trunk/VERSION Fri Apr 1 18:51:45 2005
@@ -0,0 +1,5 @@
+# NUXEO PRODUCT CONFIGURATION FILE
+# do not edit this file
+PKG_NAME=CMFonFive
+PKG_VERSION=0.0.0
+PKG_RELEASE=1
Modified: z3/CMFonFive/trunk/__init__.py
==============================================================================
--- z3/CMFonFive/trunk/__init__.py (original)
+++ z3/CMFonFive/trunk/__init__.py Fri Apr 1 18:51:45 2005
@@ -1,3 +1,11 @@
+##############################################################################
+#
+# Copyright (c) 2005 CMFonFive 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.
+#
+###########################################################################
""" Bridge CMF to Five.
$Id$
Modified: z3/CMFonFive/trunk/browser.py
==============================================================================
--- z3/CMFonFive/trunk/browser.py (original)
+++ z3/CMFonFive/trunk/browser.py Fri Apr 1 18:51:45 2005
@@ -1,3 +1,11 @@
+##############################################################################
+#
+# Copyright (c) 2005 CMFonFive 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.
+#
+###########################################################################
""" Browser view classes for CMF content.
$Id$
Modified: z3/CMFonFive/trunk/fiveactionstool.py
==============================================================================
--- z3/CMFonFive/trunk/fiveactionstool.py (original)
+++ z3/CMFonFive/trunk/fiveactionstool.py Fri Apr 1 18:51:45 2005
@@ -1,6 +1,14 @@
-""" Basic portal discussion access tool.
+##############################################################################
+#
+# Copyright (c) 2005 CMFonFive 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 actions tool.
-$Id: DiscussionTool.py,v 1.21 2004/08/12 15:07:40 jens Exp $
+$Id$
"""
from AccessControl import ClassSecurityInfo
Modified: z3/CMFonFive/trunk/interfaces.py
==============================================================================
--- z3/CMFonFive/trunk/interfaces.py (original)
+++ z3/CMFonFive/trunk/interfaces.py Fri Apr 1 18:51:45 2005
@@ -1,3 +1,11 @@
+##############################################################################
+#
+# Copyright (c) 2005 CMFonFive 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.
+#
+###########################################################################
""" Zope3 interface shims for CMF.
$Id$
Modified: z3/CMFonFive/trunk/metadirectives.py
==============================================================================
--- z3/CMFonFive/trunk/metadirectives.py (original)
+++ z3/CMFonFive/trunk/metadirectives.py Fri Apr 1 18:51:45 2005
@@ -1,3 +1,11 @@
+##############################################################################
+#
+# Copyright (c) 2005 CMFonFive 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.
+#
+###########################################################################
""" Meta directives from CMFonFive
"""
More information about the z3-checkins
mailing list