[Checkins] SVN: zope.app.applicationcontrol/trunk/ Update changelog to mention everything since the 3.4.1 release. Fix

Marius Gedminas marius at pov.lt
Wed Jul 30 13:47:21 EDT 2008


Log message for revision 89048:
  Update changelog to mention everything since the 3.4.1 release.  Fix
  ReStructuredText problems.
  
  

Changed:
  U   zope.app.applicationcontrol/trunk/CHANGES.txt
  U   zope.app.applicationcontrol/trunk/INSTALL.txt
  U   zope.app.applicationcontrol/trunk/README.txt

-=-
Modified: zope.app.applicationcontrol/trunk/CHANGES.txt
===================================================================
--- zope.app.applicationcontrol/trunk/CHANGES.txt	2008-07-30 17:39:41 UTC (rev 89047)
+++ zope.app.applicationcontrol/trunk/CHANGES.txt	2008-07-30 17:47:20 UTC (rev 89048)
@@ -5,6 +5,13 @@
 Version 3.4.2 (unreleased)
 --------------------------
 
+- Substitute zope.app.zapi by direct calls to its wrapped apis.
+  See http://launchpad.net/bugs/219302
+
+- Bugfix: ZopeVersion used to report an unknown version when running on a
+  machine with a locale different than English.
+  See http://launchpad.net/bugs/177733
+
 - Fixed deprecation warning in ftesting.zcml: import ZopeSecurityPolicy from
   the new location.
 

Modified: zope.app.applicationcontrol/trunk/INSTALL.txt
===================================================================
--- zope.app.applicationcontrol/trunk/INSTALL.txt	2008-07-30 17:39:41 UTC (rev 89047)
+++ zope.app.applicationcontrol/trunk/INSTALL.txt	2008-07-30 17:47:20 UTC (rev 89048)
@@ -6,32 +6,32 @@
 -------------
 
 The installation steps below assume that you have the cool new 'setuptools'
-package installed in your Python.  Here is where to get it:
+package installed in your Python.  Here is where to get it::
 
   $ wget http://peak.telecommunity.com/dist/ez_setup.py
   $ /path/to/your/python ez_setup.py # req. write access to 'site-packages'
 
-  - Docs for EasyInstall:
-    http://peak.telecommunity.com/DevCenter/EasyInstall
+- Docs for EasyInstall:
+  http://peak.telecommunity.com/DevCenter/EasyInstall
 
-  - Docs for setuptools:
-    http://peak.telecommunity.com/DevCenter/setuptools
+- Docs for setuptools:
+  http://peak.telecommunity.com/DevCenter/setuptools
 
-  - Docs for eggs:
-    http://peak.telecommunity.com/DevCenter/PythonEggs
+- Docs for eggs:
+  http://peak.telecommunity.com/DevCenter/PythonEggs
 
 
 Installing a Development Checkout
 ---------------------------------
 
-Check out the package from subversion:
+Check out the package from subversion::
 
   $ svn co svn+ssh://svn.zope.org/repos/main/zope.app.applicationcontrol/trunk \
     src/zope.app.applicationcontrol
   $ cd src/zope.app.applicationcontrol
 
 Install it as a "devlopment egg" (which also installs its "hard"
-dependencies):
+dependencies)::
 
   $ /path/to/your/python setup.py devel
 
@@ -45,27 +45,27 @@
 
 To test the package, you will also need the 'zope.testing' package, which
 can't (yet) be automatically installed.  Eventually, you should be able to
-type:
+type::
 
   $ /path/to/your/python setup.py test
 
 and have it install the "testing dependencies."  Today, the workaround
-is to install it manually:
+is to install it manually::
 
   $ /path/to/easy_install --find-links="...." zope.testing
 
-You can then run the tests (finally) from the checkout directory:
+You can then run the tests (finally) from the checkout directory::
 
   $ /path/to/your/python test.py
-    Running:
-      .............
-    Ran 13 tests with 0 failures and 0 errors in 0.094 seconds.
+  Running:
+    .............
+  Ran 13 tests with 0 failures and 0 errors in 0.094 seconds.
 
 
 Installing a Source Distribution
 --------------------------------
 
-You can also install it from a source distribution:
+You can also install it from a source distribution::
 
   $ /path/to/easy_install --find-links="...." -eb src zope.app.applicationcontrol
   $ cd src/zope.app.applicationcontrol
@@ -76,6 +76,6 @@
 -----------------------
 
 Install the package as a "binary egg" (which also installs its "hard"
-dependencies):
+dependencies)::
 
   $ /path/to/easy_install --find-links="...." zope.app.applicationcontrol

Modified: zope.app.applicationcontrol/trunk/README.txt
===================================================================
--- zope.app.applicationcontrol/trunk/README.txt	2008-07-30 17:39:41 UTC (rev 89047)
+++ zope.app.applicationcontrol/trunk/README.txt	2008-07-30 17:47:20 UTC (rev 89048)
@@ -1,3 +1,7 @@
+===========================
+zope.app.applicationcontrol
+===========================
+
 The application control instance is usually generated upon startup.
 This package provides runtime information adapter for application
 control and Zope version.  Also provide a utility with methods for
@@ -9,13 +13,13 @@
 
 - Subversion browser:
 
-  http://svn.zope.org/zope.app.applicationcontrol/
+    http://svn.zope.org/zope.app.applicationcontrol/
 
-- Read-only Subversion checkout:
+- Read-only Subversion checkout::
 
   $ svn co svn://svn.zope.org/repos/main/zope.app.applicationcontrol/trunk
 
-- Writable Subversion checkout:
+- Writable Subversion checkout::
 
   $ svn co svn+ssh://userid@svn.zope.org/repos/main/zope.app.applicationcontrol/trunk
 



More information about the Checkins mailing list