[CMF-checkins] CVS: CMF/CMFWiki/Extensions - Install.py:1.4
Tres Seaver
tseaver@zope.com
Thu, 1 Aug 2002 15:05:45 -0400
Update of /cvs-repository/CMF/CMFWiki/Extensions
In directory cvs.zope.org:/tmp/cvs-serv13736/CMFWiki/Extensions
Modified Files:
Install.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/CMFWiki/Extensions/Install.py 1.3 => 1.4 ===
-"""
+##############################################################################
+#
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (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
+#
+##############################################################################
+""" CMFWiki Installation script
+
This file is an installation script for CMFWiki. It's meant to be
used as an External Method. To use, add an external method to the
root of the CMF Site that you want CMF Wiki registered in with the
@@ -13,8 +26,9 @@
and click the 'Try it' tab. The install function will execute and give
information about the steps it took to register and install the CMF Wiki
into the CMF Site instance.
+
+$Id$
"""
-__version__='$Revision$'[11:-2]
from Products.CMFCore.TypesTool import ContentFactoryMetadata
from Products.CMFCore.DirectoryView import addDirectoryViews