[Zope3-checkins] SVN: Zope3/branches/ZopeX3-3.0/ Add Zwiki back; this will be a Zope X3 3.0 compatible version.

Stephan Richter srichter at cosmos.phy.tufts.edu
Sun Nov 7 08:40:54 EST 2004


Log message for revision 28371:
  Add Zwiki back; this will be a Zope X3 3.0 compatible version.
  

Changed:
  A   Zope3/branches/ZopeX3-3.0/package-includes/zwiki-configure.zcml
  A   Zope3/branches/ZopeX3-3.0/src/zwiki/
  U   Zope3/branches/ZopeX3-3.0/src/zwiki/CHANGES.txt
  A   Zope3/branches/ZopeX3-3.0/src/zwiki/DEPENDENCIES.cfg
  U   Zope3/branches/ZopeX3-3.0/src/zwiki/INSTALL.txt
  A   Zope3/branches/ZopeX3-3.0/src/zwiki/PACKAGE.cfg
  A   Zope3/branches/ZopeX3-3.0/src/zwiki/PUBLICATION.cfg
  A   Zope3/branches/ZopeX3-3.0/src/zwiki/SETUP.cfg
  A   Zope3/branches/ZopeX3-3.0/src/zwiki/zwiki-configure.zcml

-=-
Copied: Zope3/branches/ZopeX3-3.0/package-includes/zwiki-configure.zcml (from rev 28349, Zope3/trunk/package-includes/zwiki-configure.zcml)

Copied: Zope3/branches/ZopeX3-3.0/src/zwiki (from rev 27323, Zope3/trunk/src/zwiki)

Modified: Zope3/branches/ZopeX3-3.0/src/zwiki/CHANGES.txt
===================================================================
--- Zope3/trunk/src/zwiki/CHANGES.txt	2004-08-28 19:31:22 UTC (rev 27323)
+++ Zope3/branches/ZopeX3-3.0/src/zwiki/CHANGES.txt	2004-11-07 13:40:54 UTC (rev 28371)
@@ -3,7 +3,7 @@
 
   Version 0.2
 
-    - Moved from zope.app.wiki to wiki. 
+    - Moved from zope.app.wiki to zwiki. 
 
   Version 0.1.0
 

Added: Zope3/branches/ZopeX3-3.0/src/zwiki/DEPENDENCIES.cfg
===================================================================
--- Zope3/trunk/src/zwiki/DEPENDENCIES.cfg	2004-08-28 19:31:22 UTC (rev 27323)
+++ Zope3/branches/ZopeX3-3.0/src/zwiki/DEPENDENCIES.cfg	2004-11-07 13:40:54 UTC (rev 28371)
@@ -0,0 +1 @@
+zope.app
\ No newline at end of file

Modified: Zope3/branches/ZopeX3-3.0/src/zwiki/INSTALL.txt
===================================================================
--- Zope3/trunk/src/zwiki/INSTALL.txt	2004-08-28 19:31:22 UTC (rev 27323)
+++ Zope3/branches/ZopeX3-3.0/src/zwiki/INSTALL.txt	2004-11-07 13:40:54 UTC (rev 28371)
@@ -1,14 +1,11 @@
-Installation
-============
+Installation from Release
+=========================
 
-  - Since Wiki is not enabled by default, you need to include the Wiki
-    package in your products.zcml file::
+  - Follow the instructions at http://dev.zope.org/Zope3/AddonPackageInstall.
 
-    <include package="zwiki" />
+  - You need to grant the following roles to your users (for global users in
+    principals.zcml) in order to use the wiki package effectively::
 
-  - You need to define the following role declarations to your user in order
-    to use the wiki package effectively::
-
     <grant role="zwiki.Admin" principal="user" />
     <grant role="zwiki.Editor" principal="user" />
     <grant role="zwiki.User" principal="user" />

Added: Zope3/branches/ZopeX3-3.0/src/zwiki/PACKAGE.cfg
===================================================================
--- Zope3/trunk/src/zwiki/PACKAGE.cfg	2004-08-28 19:31:22 UTC (rev 27323)
+++ Zope3/branches/ZopeX3-3.0/src/zwiki/PACKAGE.cfg	2004-11-07 13:40:54 UTC (rev 28371)
@@ -0,0 +1,19 @@
+# Load the license from an external source, so we don't have to keep a
+# copy of it sitting around:
+<load>
+  LICENSE.txt  http://svn.zope.org/*checkout*/Zope3/trunk/ZopePublicLicense.txt?rev=25177
+</load>
+
+# Add a few things to the distribution root.
+<distribution>
+  README.txt
+</distribution>
+
+# Specify what is included in the component.
+<collection>
+  *.txt
+  *.py
+  *.zcml
+  browser
+  tests
+</collection>

Added: Zope3/branches/ZopeX3-3.0/src/zwiki/PUBLICATION.cfg
===================================================================
--- Zope3/trunk/src/zwiki/PUBLICATION.cfg	2004-08-28 19:31:22 UTC (rev 27323)
+++ Zope3/branches/ZopeX3-3.0/src/zwiki/PUBLICATION.cfg	2004-11-07 13:40:54 UTC (rev 28371)
@@ -0,0 +1,10 @@
+Metadata-Version: 1.0
+Name: zwiki
+Summary: ZWiki for Zope 3
+Author: Zope Corporation and Contributors
+Author-email: zope3-dev at zope.org
+License: ZPL 2.1
+Description:
+        This is a port/rewrite of the very successful Zwiki Zope 2
+        product. Features include adding, editing and removal of wiki pages,
+        reparenting, simple email subscription, full-text search and jumping.

Added: Zope3/branches/ZopeX3-3.0/src/zwiki/SETUP.cfg
===================================================================
--- Zope3/trunk/src/zwiki/SETUP.cfg	2004-08-28 19:31:22 UTC (rev 27323)
+++ Zope3/branches/ZopeX3-3.0/src/zwiki/SETUP.cfg	2004-11-07 13:40:54 UTC (rev 28371)
@@ -0,0 +1,5 @@
+# Tell zpkg how to install the ZCML slugs.
+
+<data-files zopeskel/etc/package-includes>
+  zwiki-*.zcml
+</data-files>

Added: Zope3/branches/ZopeX3-3.0/src/zwiki/zwiki-configure.zcml
===================================================================
--- Zope3/trunk/src/zwiki/zwiki-configure.zcml	2004-08-28 19:31:22 UTC (rev 27323)
+++ Zope3/branches/ZopeX3-3.0/src/zwiki/zwiki-configure.zcml	2004-11-07 13:40:54 UTC (rev 28371)
@@ -0,0 +1 @@
+<include package="zwiki" />



More information about the Zope3-Checkins mailing list