[Zope3-checkins] SVN: Zope3/branches/ZopeX3-3.0/src/zope/app/ Convert more text files to ReST.

Fred L. Drake, Jr. fred at zope.com
Fri Jul 16 14:26:20 EDT 2004


Log message for revision 26586:
  Convert more text files to ReST.


Changed:
  U   Zope3/branches/ZopeX3-3.0/src/zope/app/README.txt
  U   Zope3/branches/ZopeX3-3.0/src/zope/app/locales/TRANSLATE.txt
  U   Zope3/branches/ZopeX3-3.0/src/zope/app/tree/CHANGES.txt
  U   Zope3/branches/ZopeX3-3.0/src/zope/app/tree/README.txt
  U   Zope3/branches/ZopeX3-3.0/src/zope/app/tree/TODO.txt


-=-
Modified: Zope3/branches/ZopeX3-3.0/src/zope/app/README.txt
===================================================================
--- Zope3/branches/ZopeX3-3.0/src/zope/app/README.txt	2004-07-16 18:04:58 UTC (rev 26585)
+++ Zope3/branches/ZopeX3-3.0/src/zope/app/README.txt	2004-07-16 18:26:20 UTC (rev 26586)
@@ -1,7 +1,8 @@
 Zope application server
+-----------------------
 
-This package, the zope.app package, contains the packages and other
-modules that are specific to the Zope application server. These
-packages and modules are not usable outside of Zope. If there's
-something in zope.app you want to use elsewhere, let us know and we
-can talk about abstracting some of it up out of zope.app.
+This package, the `zope.app` package, contains the packages and other
+modules that are specific to the Zope application server.  These
+packages and modules are not usable outside of Zope.  If there's
+something in `zope.app` you want to use elsewhere, let us know and we
+can talk about abstracting some of it up out of `zope.app`.

Modified: Zope3/branches/ZopeX3-3.0/src/zope/app/locales/TRANSLATE.txt
===================================================================
--- Zope3/branches/ZopeX3-3.0/src/zope/app/locales/TRANSLATE.txt	2004-07-16 18:04:58 UTC (rev 26585)
+++ Zope3/branches/ZopeX3-3.0/src/zope/app/locales/TRANSLATE.txt	2004-07-16 18:26:20 UTC (rev 26586)
@@ -1,31 +1,33 @@
+===================================================
 Internationalization (I18n) and Localization (L10n)
-=====================================================
+===================================================
 
-  Creating/Updating Message Catalog Template (POT) Files
-  -----------------------------------------------------
 
-    1. Execute i18nextract.py from ZOPE/utilities directory::
+Creating/Updating Message Catalog Template (POT) Files
+------------------------------------------------------
 
-        python2.3 i18nextract.py
+1. Execute i18nextract.py from Zope's utilities/ directory::
 
+     python2.3 i18nextract.py
 
-  Updating Message Catalog (PO) Files
-  -----------------------------------
 
-    1. For each language do simply::
+Updating Message Catalog (PO) Files
+------------------------------------
 
-        msgmerge -U de/LC_MESSAGES/zope.po zope.pot
+1. For each language do simply::
 
-    2. Translate the updated PO file. 
-       Note: KBabel is a great tool for this task!
+     msgmerge -U de/LC_MESSAGES/zope.po zope.pot
 
+2. Translate the updated PO file. 
+   Note: KBabel is a great tool for this task!
 
-  Compiling Message Catalogs (PO) to binary (MO) Files
-  ----------------------------------------------------
 
-    1. Go to the right directory, such as 
-       'zope/app/locales/de/LC_MESSAGES'.
+Compiling Message Catalogs (PO) to binary (MO) Files
+----------------------------------------------------
 
-    2. Run the following command::
+1. Go to the right directory, such as
+   zope/app/locales/de/LC_MESSAGES.
 
-        msgfmt -o zope.mo zope.po
+2. Run the following command::
+
+     msgfmt -o zope.mo zope.po

Modified: Zope3/branches/ZopeX3-3.0/src/zope/app/tree/CHANGES.txt
===================================================================
--- Zope3/branches/ZopeX3-3.0/src/zope/app/tree/CHANGES.txt	2004-07-16 18:04:58 UTC (rev 26585)
+++ Zope3/branches/ZopeX3-3.0/src/zope/app/tree/CHANGES.txt	2004-07-16 18:26:20 UTC (rev 26586)
@@ -1,3 +1,4 @@
+=======
 CHANGES
 =======
 
@@ -2,46 +3,50 @@
 v1.2 (2004-02-19) -- 'Scruffy'
+------------------------------
 
-  - Moved to zope.app.tree
+- Moved to `zope.app.tree`
 
-  - It is now called 'ZopeTree' again. Hoorray!
+- It is now called 'ZopeTree' again.  Hoorray!
 
-  - Refactored browser stuff into its own browser subpackage.
+- Refactored browser stuff into its own browser subpackage.
 
-  - Separated the handling of tree state from the cookie functionality
-    to provide a base class for views based on other tree state sources.
+- Separated the handling of tree state from the cookie functionality
+  to provide a base class for views based on other tree state sources.
 
 v1.1 (2004-02-16) -- 'Zapp'
+---------------------------
 
-  - Added support for displaying lines in a tree (Stephan Richter)
+- Added support for displaying lines in a tree (Stephan Richter)
 
-    + Changes in Node.getFlatDict() to provide more data. Removed
-     'depth' from node info, but added 'row-state' and
-     'last-level-node'. Changed interface and test accordingly.
+  - Changes in `Node.getFlatDict()` to provide more data.  Removed
+    'depth' from node info, but added 'row-state' and
+    'last-level-node'.  Changed interface and test accordingly.
 
-    + Updated templates for StaticTree skin and example. Note that
-      third party templates from 1.0.x will not work anymore and must be
-      updated as well!
+  - Updated templates for `StaticTree` skin and example.  Note that
+    third party templates from 1.0.x will not work anymore and must be
+    updated as well!
 
 v1.0.1 (2004-01-16) -- 'Nibbler'
+--------------------------------
 
-  - Added last remaining pieces for unit tests
+- Added last remaining pieces for unit tests
 
-  - Updated documentation
+- Updated documentation
 
-  - Rounded some rough edges in the skin
+- Rounded some rough edges in the skin
 
-  - Integrated it into the Zope3 distribution below the zope.products
-    package
+- Integrated it into the Zope3 distribution below the `zope.products`
+  package
 
 v1.0 (2003-11-24) -- 'Lur'
+--------------------------
 
-  - Ported to Zope 3
+- Ported to Zope 3
 
-  - Renamed it to 'statictree'
+- Renamed it to 'statictree'
 
-  - Much more unit tests
+- Much more unit tests
 
-  - Added filter functionality
+- Added filter functionality
 
-  - Provided sample implementations as well as an alternate
-    rotterdam-like skin using the static tree
+- Provided sample implementations as well as an alternate
+  rotterdam-like skin using the static tree

Modified: Zope3/branches/ZopeX3-3.0/src/zope/app/tree/README.txt
===================================================================
--- Zope3/branches/ZopeX3-3.0/src/zope/app/tree/README.txt	2004-07-16 18:04:58 UTC (rev 26585)
+++ Zope3/branches/ZopeX3-3.0/src/zope/app/tree/README.txt	2004-07-16 18:26:20 UTC (rev 26586)
@@ -8,9 +8,9 @@
 ZopeTree is a port of Philipp's Zope2 product ZopeTree. ZopeTree was
 meant to be a light-weight and easy-to-use static tree implementation,
 mainly designed for use in ZPTs. It was originally written because
-Zope2's ZTUtils.Tree was found to be too complicated and inflexible.
+Zope2's `ZTUtils.Tree` was found to be too complicated and inflexible.
 
-The ZTUtils package has not been ported to Zope3. Parts of it, like
+The `ZTUtils` package has not been ported to Zope3. Parts of it, like
 batching, have found their way into Zope3, though. Only support for
 static tree generation is not in the core.
 
@@ -19,7 +19,7 @@
 -------------
 
 Using the skin
---------------
+~~~~~~~~~~~~~~
 
 ZopeTree comes with a pre-defined skin, StaticTree. It looks just
 like Zope3's default skin, Rotterdam, except that it displays a static
@@ -27,18 +27,21 @@
 tree.
 
 Using predefined views on objects
----------------------------------
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 ZopeTree comes with several predefined views:
 
-- cookie_tree: simple view using cookies for tree state storage.
+`cookie_tree`
+  simple view using cookies for tree state storage.
 
-- folder_cookie_tree: same as above, however only showing folders.
+`folder_cookie_tree`
+  same as above, however only showing folders.
 
-- site_cookie_tree: same as above, with the nearest site as root node.
+`site_cookie_tree`
+  same as above, with the nearest site as root node.
 
-- root_cookie_tree: same as above, with the root container as root
-  node.
+`root_cookie_tree`
+  same as above, with the root container as root node.
 
 The example page template(s) in the browser package give an idea how
 to use these views for HTML templating.
@@ -47,7 +50,7 @@
 -------------
 
 The best way to customize ZopeTree is to define your own view for
-objects (usually *). If you want to use the cookie functionality,
+objects (usually '*'). If you want to use the cookie functionality,
 simply extend the cookie browser view::
 
   from zope.app.tree.filters import OnlyInterfacesFilter
@@ -78,14 +81,16 @@
 License and Copyright
 ---------------------
 
-This product is released under the terms of the Zope Public License
-(ZPL) v2.0. See the 'ZopePublicLicense.txt' file at the root of your
+This product is released under the terms of the `Zope Public License
+(ZPL) v2.1`__. See the `ZopePublicLicense.txt` file at the root of your
 Zope distribution.
 
 Copyright (c) 2003 Philipp "philiKON" von Weitershausen
 Copyright (c) 2004 Zope Corporation and Contributors
 
+.. __: http://www.zope.org/Resources/ZPL/ZPL-2.1
 
+
 Credits
 -------
 

Modified: Zope3/branches/ZopeX3-3.0/src/zope/app/tree/TODO.txt
===================================================================
--- Zope3/branches/ZopeX3-3.0/src/zope/app/tree/TODO.txt	2004-07-16 18:04:58 UTC (rev 26585)
+++ Zope3/branches/ZopeX3-3.0/src/zope/app/tree/TODO.txt	2004-07-16 18:26:20 UTC (rev 26586)
@@ -1,5 +1,6 @@
-
+====
 TODO
+====
 
 for v1.3
 



More information about the Zope3-Checkins mailing list