[Zope3-checkins] CVS: zopeproducts/zwiki - INSTALL.txt:1.2 TODO.txt:1.9 interfaces.py:1.6

Stephan Richter srichter@cbu.edu
Wed, 9 Apr 2003 11:17:10 -0400


Update of /cvs-repository/zopeproducts/zwiki
In directory cvs.zope.org:/tmp/cvs-serv17101

Modified Files:
	INSTALL.txt TODO.txt interfaces.py 
Log Message:
Added restructured text (reST) support as source type. 

Note: **You must install the CVS version of docutils to make it work for 
        you!**


=== zopeproducts/zwiki/INSTALL.txt 1.1 => 1.2 ===
--- zopeproducts/zwiki/INSTALL.txt:1.1	Sun Apr  6 21:47:51 2003
+++ zopeproducts/zwiki/INSTALL.txt	Wed Apr  9 11:16:39 2003
@@ -10,3 +10,6 @@
   - add the following line to products.zml file::
 
      <include package='zopeproducts.zwiki' />
+
+  - If you want restructured text support, you need to install the **CVS**
+    version of docutils, which you can retrieve from http://docutils.fs.net.
\ No newline at end of file


=== zopeproducts/zwiki/TODO.txt 1.8 => 1.9 ===
--- zopeproducts/zwiki/TODO.txt:1.8	Wed Apr  9 10:33:57 2003
+++ zopeproducts/zwiki/TODO.txt	Wed Apr  9 11:16:39 2003
@@ -7,7 +7,7 @@
 
     - Add test for findChildren.
 
-    - Add tests for plain text and STX formatter.
+    - Add tests for plain text, STX, and ReST formatter.
 
 
   Rendering/Views
@@ -17,7 +17,8 @@
     - Create a custom skin, so that we are not relying on the standard Zope 3
       skin.
 
-    - Create custom HTMLDocument class for rendering the STX in Wiki style.
+    - Create custom HTMLDocument class for rendering the STX and ReST in Wiki
+      style.
 
     - Make sure WebDAV work.
 


=== zopeproducts/zwiki/interfaces.py 1.5 => 1.6 ===
--- zopeproducts/zwiki/interfaces.py:1.5	Wed Apr  9 00:52:27 2003
+++ zopeproducts/zwiki/interfaces.py	Wed Apr  9 11:16:39 2003
@@ -118,3 +118,8 @@
     implementation of this interface should always derive from unicode or
     behave like a unicode class."""
 
+class IReStructuredTextSource(Interface):
+    """Marker interface for a restructured text source. Note that an
+    implementation of this interface should always derive from unicode or
+    behave like a unicode class."""
+