[Checkins] SVN: zope.app.apidoc/trunk/s - savepoint.txt moved out of the tests directory, follow.

Christian Theune ct at gocept.com
Fri Jan 30 12:35:26 EST 2009


Log message for revision 95598:
  - savepoint.txt moved out of the tests directory, follow.
  - Fix UI changes in tests depending on the new zope.site module.
  

Changed:
  U   zope.app.apidoc/trunk/setup.py
  U   zope.app.apidoc/trunk/src/zope/app/apidoc/bookmodule/book.zcml
  U   zope.app.apidoc/trunk/src/zope/app/apidoc/codemodule/browser/introspector.txt

-=-
Modified: zope.app.apidoc/trunk/setup.py
===================================================================
--- zope.app.apidoc/trunk/setup.py	2009-01-30 17:34:31 UTC (rev 95597)
+++ zope.app.apidoc/trunk/setup.py	2009-01-30 17:35:26 UTC (rev 95598)
@@ -67,6 +67,7 @@
     tests_require = ['zope.testing'],
     install_requires = [
         'setuptools',
+        'ZODB3>=3.8.0',
         'zope.annotation',
         'zope.app.appsetup',
         'zope.app.basicskin',

Modified: zope.app.apidoc/trunk/src/zope/app/apidoc/bookmodule/book.zcml
===================================================================
--- zope.app.apidoc/trunk/src/zope/app/apidoc/bookmodule/book.zcml	2009-01-30 17:34:31 UTC (rev 95597)
+++ zope.app.apidoc/trunk/src/zope/app/apidoc/bookmodule/book.zcml	2009-01-30 17:35:26 UTC (rev 95598)
@@ -233,7 +233,7 @@
         id="savepoints"
         title="Savepoints"
         parent="transaction"
-        doc_path="tests/savepoint.txt"
+        doc_path="savepoint.txt"
         />
     <bookchapter
         id="doom"

Modified: zope.app.apidoc/trunk/src/zope/app/apidoc/codemodule/browser/introspector.txt
===================================================================
--- zope.app.apidoc/trunk/src/zope/app/apidoc/codemodule/browser/introspector.txt	2009-01-30 17:34:31 UTC (rev 95597)
+++ zope.app.apidoc/trunk/src/zope/app/apidoc/codemodule/browser/introspector.txt	2009-01-30 17:35:26 UTC (rev 95598)
@@ -16,8 +16,8 @@
 
 The page starts with telling you the class/type
 
-    >>> browser.getLink('zope.app.folder.folder.Folder').url
-    'http://localhost/++apidoc++/Code/zope/app/folder/folder/Folder/index.html'
+    >>> browser.getLink('zope.site.folder.Folder').url
+    'http://localhost/++apidoc++/Code/zope/site/folder/Folder/index.html'
 
 and the name of the object:
 
@@ -34,16 +34,16 @@
     >>> browser.getLink('zope.location.interfaces.ISite').url
     '.../++apidoc++/Interface/zope.location.interfaces.ISite/index.html'
 
-    >>> browser.getLink('zope.app.folder.interfaces.IRootFolder').url
-    '...apidoc++/Interface/zope.app.folder.interfaces.IRootFolder/index.html'
+    >>> browser.getLink('zope.site.interfaces.IRootFolder').url
+    '...apidoc++/Interface/zope.site.interfaces.IRootFolder/index.html'
 
 The next two section, the implemented interfaces and the base classes, are not
 instance specific pieces of information, but they are still nice to see at
 this point. For example, a ``Folder`` instance provides the following
 interfaces:
 
-    >>> browser.getLink('zope.app.folder.interfaces.IFolder').url
-    '.../++apidoc++/Interface/zope.app.folder.interfaces.IFolder/index.html'
+    >>> browser.getLink('zope.site.interfaces.IFolder').url
+    '.../++apidoc++/Interface/zope.site.interfaces.IFolder/index.html'
 
     >>> browser.getLink('persistent.interfaces.IPersistent').url
     '.../++apidoc++/Interface/persistent.interfaces.IPersistent/index.html'
@@ -56,15 +56,9 @@
 
 The base classes of the ``Folder`` are as follows:
 
-    >>> browser.getLink('persistent.Persistent').url
-    'http://localhost/++apidoc++/Code/persistent/Persistent/index.html'
+    >>> browser.getLink('zope.site.site.SiteManagerContainer').url
+    '...apidoc++/Code/zope/site/site/SiteManagerContainer/index.html'
 
-    >>> browser.getLink('zope.app.component.site.SiteManagerContainer').url
-    '...apidoc++/Code/zope/app/component/site/SiteManagerContainer/index.html'
-
-    >>> browser.getLink('zope.container.contained.Contained').url
-    '.../++apidoc++/Code/zope/container/contained/Contained/index.html'
-
 Now that we described the component and class level of the object, the view
 dives into some details. First it lists the attributes/properties of the
 object, including the value of the attribute. This is information can be very



More information about the Checkins mailing list