[Checkins] SVN: zope.app.apidoc/trunk/src/zope/app/apidoc/codemodule/browser/ fix tests: ISite and IPossibleSite are moved to zope.location

Baiju M baiju.m.mail at gmail.com
Thu Aug 30 01:27:07 EDT 2007


Log message for revision 79371:
  fix tests: ISite and IPossibleSite are moved to zope.location
  

Changed:
  U   zope.app.apidoc/trunk/src/zope/app/apidoc/codemodule/browser/README.txt
  U   zope.app.apidoc/trunk/src/zope/app/apidoc/codemodule/browser/introspector.txt

-=-
Modified: zope.app.apidoc/trunk/src/zope/app/apidoc/codemodule/browser/README.txt
===================================================================
--- zope.app.apidoc/trunk/src/zope/app/apidoc/codemodule/browser/README.txt	2007-08-30 03:33:43 UTC (rev 79370)
+++ zope.app.apidoc/trunk/src/zope/app/apidoc/codemodule/browser/README.txt	2007-08-30 05:27:07 UTC (rev 79371)
@@ -505,8 +505,8 @@
   >>> ifaces = inspect.getDirectlyProvidedInterfaces()
   >>> ifaces.sort()
   >>> ifaces
-  ['zope.app.component.interfaces.ISite',
-   'zope.app.folder.interfaces.IRootFolder']
+  ['zope.app.folder.interfaces.IRootFolder',
+   'zope.location.interfaces.ISite']
 
 The ``getProvidedInterfaces()`` and ``getBases()`` method simply forwards its
 request to the class documentation view. Thus the next method is
@@ -528,7 +528,7 @@
   >>> pprint(list(inspect.getMethods()))
     [...
      {'doc': u'',
-      'interface': 'zope.app.component.interfaces.IPossibleSite',
+      'interface': 'zope.location.interfaces.IPossibleSite',
       'name': 'getSiteManager',
       'read_perm': None,
       'signature': '()',
@@ -541,7 +541,7 @@
       'signature': '()',
       'write_perm': None},
      {'doc': u'',
-      'interface': 'zope.app.component.interfaces.IPossibleSite',
+      'interface': 'zope.location.interfaces.IPossibleSite',
       'name': 'setSiteManager',
       'read_perm': None,
       'signature': '(sm)',

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	2007-08-30 03:33:43 UTC (rev 79370)
+++ zope.app.apidoc/trunk/src/zope/app/apidoc/codemodule/browser/introspector.txt	2007-08-30 05:27:07 UTC (rev 79371)
@@ -31,8 +31,8 @@
 directly provides the ``ISite`` and ``IRootFolder`` interface, so we should
 see those:
 
-    >>> browser.getLink('zope.app.component.interfaces.ISite').url
-    '.../++apidoc++/Interface/zope.app.component.interfaces.ISite/index.html'
+    >>> 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'
@@ -48,8 +48,8 @@
     >>> browser.getLink('persistent.interfaces.IPersistent').url
     '.../++apidoc++/Interface/persistent.interfaces.IPersistent/index.html'
 
-    >>> browser.getLink('zope.app.component.interfaces.IPossibleSite').url
-    '.../Interface/zope.app.component.interfaces.IPossibleSite/index.html'
+    >>> browser.getLink('zope.location.interfaces.IPossibleSite').url
+    '.../Interface/zope.location.interfaces.IPossibleSite/index.html'
 
     >>> browser.getLink('zope.app.container.interfaces.IContained').url
     '...doc++/Interface/zope.app.container.interfaces.IContained/index.html'



More information about the Checkins mailing list