[Checkins] SVN: zwiki/trunk/ - reST fixes

Baiju M baiju.m.mail at gmail.com
Wed Nov 28 08:32:19 EST 2007


Log message for revision 82008:
   - reST fixes
   - moved CHANGES.txt to toplevel
   - The next version will be 0.3.0
  

Changed:
  A   zwiki/trunk/CHANGES.txt
  U   zwiki/trunk/README.txt
  U   zwiki/trunk/TODO.txt
  D   zwiki/trunk/VERSION.txt
  U   zwiki/trunk/setup.py
  D   zwiki/trunk/src/zwiki/CHANGES.txt
  U   zwiki/trunk/src/zwiki/README.txt

-=-
Copied: zwiki/trunk/CHANGES.txt (from rev 82007, zwiki/trunk/src/zwiki/CHANGES.txt)
===================================================================
--- zwiki/trunk/CHANGES.txt	                        (rev 0)
+++ zwiki/trunk/CHANGES.txt	2007-11-28 13:32:18 UTC (rev 82008)
@@ -0,0 +1,52 @@
+Change History
+==============
+
+
+0.3.0 (2007-??-??)
+------------------
+
+Feature Changes
+~~~~~~~~~~~~~~~
+
+  - `code-block` directive support added by:
+    
+     - including Pygments in setup.py
+
+     - registration of the directive in file
+       pygments_code_block_directive.py
+
+     - addition of pygments_default.css to the `wiki` skin
+
+     (by darrylcousins)
+
+  - Preview while editing a page
+
+
+0.2.5
+-----
+
+  - Added translations.
+
+
+0.2
+---
+
+  - Moved from zope.app.wiki to wiki. 
+
+
+0.1.0
+-----
+
+  - Since Indices and ObjectHub are not part of Zope X3.0, I removed the
+    index-based search and replaced it by a very primitive one.
+
+  - Removed old disgusting comment support, and made the wiki page a
+    container which can contain comments.
+
+  - Fixed browser views according to the new implementations.
+
+
+0.0.1
+-----
+
+  - Initial version of Zope3 Wiki

Modified: zwiki/trunk/README.txt
===================================================================
--- zwiki/trunk/README.txt	2007-11-28 12:02:46 UTC (rev 82007)
+++ zwiki/trunk/README.txt	2007-11-28 13:32:18 UTC (rev 82008)
@@ -1,9 +1,8 @@
 ZWiki for Zope 3
 ================
 
-This product is a port/rewrite of the famous Zope 2 product Zwiki. At
-the current stage only the most basic Wiki functionalities are
-implemented and much more work needs to be done.
+This wiki project is a port/rewrite of the famous Zope 2 product
+called ZWiki.  At the current stage only the most basic Wiki
+functionalities are implemented and much more work needs to be done.
 
 For more details see: src/zwiki/README.txt
-

Modified: zwiki/trunk/TODO.txt
===================================================================
--- zwiki/trunk/TODO.txt	2007-11-28 12:02:46 UTC (rev 82007)
+++ zwiki/trunk/TODO.txt	2007-11-28 13:32:18 UTC (rev 82008)
@@ -2,15 +2,24 @@
 ====
 
 
-- Save older versions of pages
-- Check why `handle_save_action` and `handle_preview_action`
-  in `zwiki.browser.wikipage.EditWikiPage` is called two times.
-- full i18n support, now some strings are not i18ned
-- fix [[Test Link]] problem
+General
+-------
 
+  - Save older versions of pages
 
+  - Check why `handle_save_action` and `handle_preview_action`
+    in `zwiki.browser.wikipage.EditWikiPage` is called two times.
 
+  - full i18n support, now some strings are not i18ned
+
+  - fix [[Test Link]] problem in code area
+    eg:-
+       This will not work::
+
+           [[Test Link]]
+
 Rendering/Views
+---------------
 
   - Create custom HTMLDocument class for rendering the STX and ReST in Wiki
     style.
@@ -24,6 +33,7 @@
 
 
 Other Features
+--------------
 
   - Make use of Traverser features; i.e. create links that include
     parents...

Deleted: zwiki/trunk/VERSION.txt
===================================================================
--- zwiki/trunk/VERSION.txt	2007-11-28 12:02:46 UTC (rev 82007)
+++ zwiki/trunk/VERSION.txt	2007-11-28 13:32:18 UTC (rev 82008)
@@ -1 +0,0 @@
-Zope3 Wiki 0.2.5

Modified: zwiki/trunk/setup.py
===================================================================
--- zwiki/trunk/setup.py	2007-11-28 12:02:46 UTC (rev 82007)
+++ zwiki/trunk/setup.py	2007-11-28 13:32:18 UTC (rev 82008)
@@ -22,44 +22,45 @@
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-setup(name = 'zwiki',
-      version = '0.3dev',
-      url = 'http://svn.zope.org/zwiki/trunk',
-      license = 'ZPL 2.1',
-      description = 'A Zope 3 wiki',
-      author = 'Zope Corporation and Contributors',
-      author_email = 'zope3-dev at zope.org',
-      long_description=(
-        read('README.txt')
+setup(
+    name='zwiki',
+    version='0.3.0',
+    url='http://svn.zope.org/zwiki/trunk',
+    license='ZPL 2.1',
+    description='A Zope 3 Wiki',
+    author='Zope Corporation and Contributors',
+    author_email='zope-dev at zope.org',
+    long_description=(
+        read('src', 'zwiki', 'README.txt')
         + '\n' +
+        read('CHANGES.txt')
+        + '\n' +
         'Download\n'
-        '**********************\n'
+        '========\n'
         ),
- 
-      packages = find_packages('src'),
-      package_dir = {'': 'src'},
+    packages=find_packages('src'),
+    package_dir={'': 'src'},
 
-      tests_require = ['zope.testing'],
-      install_requires = ['setuptools',
-                          'zope.schema',
-                          'zope.sendmail',
-                          'zope.formlib',
-                          'zope.cachedescriptors',
-                          'zope.app.zcmlfiles',
-                          'zope.app.twisted',
-                          'zope.app.securitypolicy',
-                          'zope.app.layers',
-                          'zope.app.zptpage',
-                          'zope.app.skins',
-                          'zope.app.renderer',
-                          'zope.app.apidoc',
-                          'Pygments',
-                          ],
-      extras_require = dict(test=['zope.app.testing',
-                                  'zope.testbrowser',
-                                  'zope.app.securitypolicy',
-                                  'zope.app.zcmlfiles']),
-
-      include_package_data = True,
-      zip_safe = False,
-      )
+    install_requires=['setuptools',
+                      'zope.schema',
+                      'zope.sendmail',
+                      'zope.formlib',
+                      'zope.cachedescriptors',
+                      'zope.app.zcmlfiles',
+                      'zope.app.twisted',
+                      'zope.app.securitypolicy',
+                      'zope.app.layers',
+                      'zope.app.zptpage',
+                      'zope.app.skins',
+                      'zope.app.renderer',
+                      'zope.app.apidoc',
+                      'Pygments',
+                      ],
+    extras_require=dict(test=['zope.app.testing',
+                              'zope.testbrowser',
+                              'zope.app.securitypolicy',
+                              'zope.app.zcmlfiles',
+                              ]),
+    include_package_data=True,
+    zip_safe=False,
+    )

Deleted: zwiki/trunk/src/zwiki/CHANGES.txt
===================================================================
--- zwiki/trunk/src/zwiki/CHANGES.txt	2007-11-28 12:02:46 UTC (rev 82007)
+++ zwiki/trunk/src/zwiki/CHANGES.txt	2007-11-28 13:32:18 UTC (rev 82008)
@@ -1,34 +0,0 @@
-CHANGES
-
-  2007-08-24: darrylcousins
-
-    - `code-block` directive support added by:
-    
-     * including Pygments in setup.py
-     * registration of the directive in file pygments_code_block_directive.py
-     * addition of pygments_default.css to the `wiki` skin
-
-    - TODO: fix browser test for the directive
-
-  Version 0.2.5
-
-    - Added translations.
-
-  Version 0.2
-
-    - Moved from zope.app.wiki to wiki. 
-
-  Version 0.1.0
-
-    - Since Indices and ObjectHub are not part of Zope X3.0, I removed the
-      index-based search and replaced it by a very primitive one.
-
-    - Removed old disgusting comment support, and made the wiki page a
-      container which can contain comments.
-
-    - Fixed browser views according to the new implementations.
-
-
-  Version 0.0.1
-
-    - Initial version of Zope3 Wiki

Modified: zwiki/trunk/src/zwiki/README.txt
===================================================================
--- zwiki/trunk/src/zwiki/README.txt	2007-11-28 12:02:46 UTC (rev 82007)
+++ zwiki/trunk/src/zwiki/README.txt	2007-11-28 13:32:18 UTC (rev 82008)
@@ -1,16 +1,17 @@
 ZWiki for Zope 3
-================
+****************
 
 This product is a port/rewrite of the famous Zope 2 product Zwiki. At
 the current stage only the most basic Wiki functionalities are
 implemented and much more work needs to be done.
 
+.. contents::
 
 Features
---------
+========
 
 Rendering
-~~~~~~~~~
+---------
 
   - Plain Text
 
@@ -20,7 +21,7 @@
 
 
 Wiki
-~~~~
+----
 
   - Table of Contents
 
@@ -30,7 +31,7 @@
 
 
 Wiki Page
-~~~~~~~~~
+---------
 
   - Proper rendering of Wiki Links
 
@@ -48,7 +49,7 @@
 
 
 Miscellaneous
-~~~~~~~~~~~~~
+-------------
 
   - Somewhat sophisticated rendering mechanism. New source types and
     their render methods can now be configured (added) via ZCML.
@@ -56,8 +57,9 @@
   - A fully independent skin called 'wiki'; Note that this skin will
     be only useful in the context of a Wiki Page.
 
+
 Installation
-------------
+============
 
  1. First checkout zwiki source from here::
 



More information about the Checkins mailing list