[Zope3-checkins] SVN: Zope3/trunk/ Fixed issue 338.

Stephan Richter srichter at cosmos.phy.tufts.edu
Sat Feb 26 12:35:55 EST 2005


Log message for revision 29317:
  Fixed issue 338.
  
  Also discovered and fixed a bug link in the code browser.
  
  

Changed:
  U   Zope3/trunk/doc/CHANGES.txt
  U   Zope3/trunk/src/zope/app/apidoc/ifacemodule/index.pt
  U   Zope3/trunk/src/zope/app/configure.zcml
  A   Zope3/trunk/src/zope/app/zapi/configure.zcml

-=-
Modified: Zope3/trunk/doc/CHANGES.txt
===================================================================
--- Zope3/trunk/doc/CHANGES.txt	2005-02-26 17:06:31 UTC (rev 29316)
+++ Zope3/trunk/doc/CHANGES.txt	2005-02-26 17:35:54 UTC (rev 29317)
@@ -461,6 +461,8 @@
 
     Bug Fixes
 
+      - Fixed issue #349 (zapi help missing from the online help)
+
       - Fixed issue #349 (Adapter registry doesn't notice __bases__ changes.)
 
         Thanks to "foom" for the report and the fix.

Modified: Zope3/trunk/src/zope/app/apidoc/ifacemodule/index.pt
===================================================================
--- Zope3/trunk/src/zope/app/apidoc/ifacemodule/index.pt	2005-02-26 17:06:31 UTC (rev 29316)
+++ Zope3/trunk/src/zope/app/apidoc/ifacemodule/index.pt	2005-02-26 17:35:54 UTC (rev 29317)
@@ -10,7 +10,8 @@
     Type: 
     <tal:omit-tag tal:repeat="type view/getTypes" >
       <a href=""
-          tal:attributes="href string:../${type/path}/apiindex.html"
+          tal:attributes="href 
+              string:${rootURL}/Interface/${type/path}/apiindex.html"
           tal:content="type/name"/><tal:block 
           condition="not:repeat/type/end">, </tal:block>
     </tal:omit-tag>
@@ -32,7 +33,8 @@
     <ul class="attr-list" tal:condition="bases">
       <li tal:repeat="base bases">
         <a href=""
-           tal:attributes="href string:../$base/apiindex.html"
+           tal:attributes="href 
+               string:${rootURL}/Interface/$base/apiindex.html"
            tal:content="base" />
       </li>
     </ul>

Modified: Zope3/trunk/src/zope/app/configure.zcml
===================================================================
--- Zope3/trunk/src/zope/app/configure.zcml	2005-02-26 17:06:31 UTC (rev 29316)
+++ Zope3/trunk/src/zope/app/configure.zcml	2005-02-26 17:35:54 UTC (rev 29317)
@@ -34,6 +34,7 @@
   <include package="zope.app.traversing" />
   <include package="zope.app.pagetemplate" />
   <include package=".generations" />
+  <include package=".zapi" />
 
   <!-- Views -->
   <include package="zope.app.http" />

Added: Zope3/trunk/src/zope/app/zapi/configure.zcml
===================================================================
--- Zope3/trunk/src/zope/app/zapi/configure.zcml	2005-02-26 17:06:31 UTC (rev 29316)
+++ Zope3/trunk/src/zope/app/zapi/configure.zcml	2005-02-26 17:35:54 UTC (rev 29317)
@@ -0,0 +1,9 @@
+<configure
+    xmlns="http://namespaces.zope.org/zope">
+
+  <interface
+      interface=".interfaces.IZAPI" />
+
+</configure>
+
+


Property changes on: Zope3/trunk/src/zope/app/zapi/configure.zcml
___________________________________________________________________
Name: svn:eol-style
   + native



More information about the Zope3-Checkins mailing list