[Checkins] SVN: zope.generic/trunk/src/zope/generic/ add readme's to the api doc

Dominik Huber dominik.huber at perse.ch
Wed Apr 26 09:50:00 EDT 2006


Log message for revision 67618:
  add readme's to the api doc

Changed:
  U   zope.generic/trunk/src/zope/generic/adapter/configure.zcml
  U   zope.generic/trunk/src/zope/generic/configuration/configure.zcml
  U   zope.generic/trunk/src/zope/generic/directlyprovides/configure.zcml
  U   zope.generic/trunk/src/zope/generic/doc/configure.zcml
  U   zope.generic/trunk/src/zope/generic/factory/configure.zcml
  U   zope.generic/trunk/src/zope/generic/handler/configure.zcml
  U   zope.generic/trunk/src/zope/generic/informationprovider/configure.zcml
  U   zope.generic/trunk/src/zope/generic/keyface/configure.zcml
  U   zope.generic/trunk/src/zope/generic/operation/configure.zcml
  U   zope.generic/trunk/src/zope/generic/testing/configure.zcml
  U   zope.generic/trunk/src/zope/generic/type/configure.zcml

-=-
Modified: zope.generic/trunk/src/zope/generic/adapter/configure.zcml
===================================================================
--- zope.generic/trunk/src/zope/generic/adapter/configure.zcml	2006-04-26 13:33:11 UTC (rev 67617)
+++ zope.generic/trunk/src/zope/generic/adapter/configure.zcml	2006-04-26 13:49:59 UTC (rev 67618)
@@ -1,6 +1,15 @@
 <configure
   xmlns="http://namespaces.zope.org/zope"
+  xmlns:apidoc="http://namespaces.zope.org/apidoc"
   xmlns:generic="http://namespaces.zope.org/generic"
+  xmlns:zcml="http://namespaces.zope.org/zcml"
   i18n_domain="zope">
 
+  <apidoc:bookchapter zcml:condition="have apidoc"
+      id="zope.generic.adapter.readme"
+      title="Adapter"
+      doc_path="README.txt"
+      parent="zope.generic"
+      />
+
 </configure>

Modified: zope.generic/trunk/src/zope/generic/configuration/configure.zcml
===================================================================
--- zope.generic/trunk/src/zope/generic/configuration/configure.zcml	2006-04-26 13:33:11 UTC (rev 67617)
+++ zope.generic/trunk/src/zope/generic/configuration/configure.zcml	2006-04-26 13:49:59 UTC (rev 67618)
@@ -1,9 +1,18 @@
 <configure
   xmlns="http://namespaces.zope.org/zope"
+  xmlns:apidoc="http://namespaces.zope.org/apidoc"
   xmlns:generic="http://namespaces.zope.org/generic"
+  xmlns:zcml="http://namespaces.zope.org/zcml"
   i18n_domain="zope">
  
-   <!-- attribute configurations -->
+  <apidoc:bookchapter zcml:condition="have apidoc"
+      id="zope.generic.configuration.readme"
+      title="Configuration"
+      doc_path="README.txt"
+      parent="zope.generic"
+      />
+ 
+  <!-- attribute configurations -->
   <class class=".adapter.AttributeConfigurations">
     <require
         permission="zope.Public"

Modified: zope.generic/trunk/src/zope/generic/directlyprovides/configure.zcml
===================================================================
--- zope.generic/trunk/src/zope/generic/directlyprovides/configure.zcml	2006-04-26 13:33:11 UTC (rev 67617)
+++ zope.generic/trunk/src/zope/generic/directlyprovides/configure.zcml	2006-04-26 13:49:59 UTC (rev 67618)
@@ -1,6 +1,16 @@
 <configure
   xmlns="http://namespaces.zope.org/zope"
+  xmlns:apidoc="http://namespaces.zope.org/apidoc"
+  xmlns:generic="http://namespaces.zope.org/generic"
+  xmlns:zcml="http://namespaces.zope.org/zcml"
   i18n_domain="zope">
+ 
+  <apidoc:bookchapter zcml:condition="have apidoc"
+      id="zope.generic.directlyprovides.readme"
+      title="Directly Provides"
+      doc_path="README.txt"
+      parent="zope.generic"
+      />
 
   <subscriber
       for=".IDirectlyProvidesModifiedEvent"

Modified: zope.generic/trunk/src/zope/generic/doc/configure.zcml
===================================================================
--- zope.generic/trunk/src/zope/generic/doc/configure.zcml	2006-04-26 13:33:11 UTC (rev 67617)
+++ zope.generic/trunk/src/zope/generic/doc/configure.zcml	2006-04-26 13:49:59 UTC (rev 67618)
@@ -12,21 +12,21 @@
   <!-- Register documentation with API Doc -->
 
   <apidoc:bookchapter zcml:condition="have apidoc"
-      id="zope.generic.readme"
+      id="zope.generic.doc.readme"
       title="README"
       doc_path="README.txt"
       parent="zope.generic"
       />
 
   <apidoc:bookchapter zcml:condition="have apidoc"
-      id="zope.generic.changes"
+      id="zope.generic.doc.changes"
       title="CHANGES"
       doc_path="CHANGES.txt"
       parent="zope.generic"
       />
 
   <apidoc:bookchapter zcml:condition="have apidoc"
-      id="zope.generic.todo"
+      id="zopegeneric.doc.todo"
       title="TODO"
       doc_path="TODO.txt"
       parent="zope.generic"

Modified: zope.generic/trunk/src/zope/generic/factory/configure.zcml
===================================================================
--- zope.generic/trunk/src/zope/generic/factory/configure.zcml	2006-04-26 13:33:11 UTC (rev 67617)
+++ zope.generic/trunk/src/zope/generic/factory/configure.zcml	2006-04-26 13:49:59 UTC (rev 67618)
@@ -1,8 +1,17 @@
 <configure
   xmlns="http://namespaces.zope.org/zope"
+  xmlns:apidoc="http://namespaces.zope.org/apidoc"
   xmlns:generic="http://namespaces.zope.org/generic"
+  xmlns:zcml="http://namespaces.zope.org/zcml"
   i18n_domain="zope">
  
+  <apidoc:bookchapter zcml:condition="have apidoc"
+      id="zope.generic.factory.readme"
+      title="Factory"
+      doc_path="README.txt"
+      parent="zope.generic"
+      />
+ 
   <generic:informationProvider
       keyface="zope.generic.informationprovider.IInformationProviderInformation"
       label="Factory Information"

Modified: zope.generic/trunk/src/zope/generic/handler/configure.zcml
===================================================================
--- zope.generic/trunk/src/zope/generic/handler/configure.zcml	2006-04-26 13:33:11 UTC (rev 67617)
+++ zope.generic/trunk/src/zope/generic/handler/configure.zcml	2006-04-26 13:49:59 UTC (rev 67618)
@@ -1,6 +1,15 @@
 <configure
   xmlns="http://namespaces.zope.org/zope"
+  xmlns:apidoc="http://namespaces.zope.org/apidoc"
   xmlns:generic="http://namespaces.zope.org/generic"
+  xmlns:zcml="http://namespaces.zope.org/zcml"
   i18n_domain="zope">
+ 
+  <apidoc:bookchapter zcml:condition="have apidoc"
+      id="zope.generic.handler.readme"
+      title="Handler"
+      doc_path="README.txt"
+      parent="zope.generic"
+      />
 
 </configure>

Modified: zope.generic/trunk/src/zope/generic/informationprovider/configure.zcml
===================================================================
--- zope.generic/trunk/src/zope/generic/informationprovider/configure.zcml	2006-04-26 13:33:11 UTC (rev 67617)
+++ zope.generic/trunk/src/zope/generic/informationprovider/configure.zcml	2006-04-26 13:49:59 UTC (rev 67618)
@@ -1,8 +1,17 @@
 <configure
   xmlns="http://namespaces.zope.org/zope"
+  xmlns:apidoc="http://namespaces.zope.org/apidoc"
   xmlns:generic="http://namespaces.zope.org/generic"
+  xmlns:zcml="http://namespaces.zope.org/zcml"
   i18n_domain="zope">
  
+  <apidoc:bookchapter zcml:condition="have apidoc"
+      id="zope.generic.informationprovider.readme"
+      title="Information Provider"
+      doc_path="README.txt"
+      parent="zope.generic"
+      />
+ 
   <generic:informationProvider
       keyface=".IInformationProviderInformation"
       label="Information Provider Information"

Modified: zope.generic/trunk/src/zope/generic/keyface/configure.zcml
===================================================================
--- zope.generic/trunk/src/zope/generic/keyface/configure.zcml	2006-04-26 13:33:11 UTC (rev 67617)
+++ zope.generic/trunk/src/zope/generic/keyface/configure.zcml	2006-04-26 13:49:59 UTC (rev 67618)
@@ -1,9 +1,18 @@
 <configure
   xmlns="http://namespaces.zope.org/zope"
+  xmlns:apidoc="http://namespaces.zope.org/apidoc"
   xmlns:generic="http://namespaces.zope.org/generic"
+  xmlns:zcml="http://namespaces.zope.org/zcml"
   i18n_domain="zope">
+ 
+  <apidoc:bookchapter zcml:condition="have apidoc"
+      id="zope.generic.keyface.readme"
+      title="Keyface"
+      doc_path="README.txt"
+      parent="zope.generic"
+      />
 
-   <!-- attribute configurations -->
+  <!-- attribute configurations -->
   <class class=".adapter.KeyfaceForAttributeKeyfaced">
     <require
         permission="zope.Public"

Modified: zope.generic/trunk/src/zope/generic/operation/configure.zcml
===================================================================
--- zope.generic/trunk/src/zope/generic/operation/configure.zcml	2006-04-26 13:33:11 UTC (rev 67617)
+++ zope.generic/trunk/src/zope/generic/operation/configure.zcml	2006-04-26 13:49:59 UTC (rev 67618)
@@ -1,6 +1,15 @@
 <configure
   xmlns="http://namespaces.zope.org/zope"
+  xmlns:apidoc="http://namespaces.zope.org/apidoc"
   xmlns:generic="http://namespaces.zope.org/generic"
+  xmlns:zcml="http://namespaces.zope.org/zcml"
   i18n_domain="zope">
+ 
+  <apidoc:bookchapter zcml:condition="have apidoc"
+      id="zope.generic.operation.readme"
+      title="Operation"
+      doc_path="README.txt"
+      parent="zope.generic"
+      />
 
 </configure>

Modified: zope.generic/trunk/src/zope/generic/testing/configure.zcml
===================================================================
--- zope.generic/trunk/src/zope/generic/testing/configure.zcml	2006-04-26 13:33:11 UTC (rev 67617)
+++ zope.generic/trunk/src/zope/generic/testing/configure.zcml	2006-04-26 13:49:59 UTC (rev 67618)
@@ -1,6 +1,15 @@
 <configure
   xmlns="http://namespaces.zope.org/zope"
+  xmlns:apidoc="http://namespaces.zope.org/apidoc"
   xmlns:generic="http://namespaces.zope.org/generic"
+  xmlns:zcml="http://namespaces.zope.org/zcml"
   i18n_domain="zope">
  
+  <apidoc:bookchapter zcml:condition="have apidoc"
+      id="zope.generic.testing.readme"
+      title="Testing"
+      doc_path="README.txt"
+      parent="zope.generic"
+      />
+ 
 </configure>

Modified: zope.generic/trunk/src/zope/generic/type/configure.zcml
===================================================================
--- zope.generic/trunk/src/zope/generic/type/configure.zcml	2006-04-26 13:33:11 UTC (rev 67617)
+++ zope.generic/trunk/src/zope/generic/type/configure.zcml	2006-04-26 13:49:59 UTC (rev 67618)
@@ -1,8 +1,24 @@
 <configure
   xmlns="http://namespaces.zope.org/zope"
+  xmlns:apidoc="http://namespaces.zope.org/apidoc"
   xmlns:generic="http://namespaces.zope.org/generic"
+  xmlns:zcml="http://namespaces.zope.org/zcml"
   i18n_domain="zope">
+ 
+  <apidoc:bookchapter zcml:condition="have apidoc"
+      id="zope.generic.type.readme"
+      title="Type"
+      doc_path="README.txt"
+      parent="zope.generic"
+      />
 
+  <apidoc:bookchapter zcml:condition="have apidoc"
+      id="zope.generic.type.example"
+      title="Type (Example)"
+      doc_path="EXAMPLE.txt"
+      parent="zope.generic"
+      />
+
   <generic:informationProvider
       keyface="zope.generic.informationprovider.IInformationProviderInformation"
       label="Type Information Registry"



More information about the Checkins mailing list