[Zope3-checkins] CVS: Zope3/src/zope/app/apidoc/classmodule -
module_index.pt:1.2
Stephan Richter
srichter at cosmos.phy.tufts.edu
Mon Mar 29 21:00:43 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/apidoc/classmodule
In directory cvs.zope.org:/tmp/cvs-serv12198/src/zope/app/apidoc/classmodule
Modified Files:
module_index.pt
Log Message:
Changed the module overview to also handle functions.
=== Zope3/src/zope/app/apidoc/classmodule/module_index.pt 1.1 => 1.2 ===
--- Zope3/src/zope/app/apidoc/classmodule/module_index.pt:1.1 Sun Mar 28 18:40:28 2004
+++ Zope3/src/zope/app/apidoc/classmodule/module_index.pt Mon Mar 29 21:00:40 2004
@@ -25,13 +25,17 @@
<td tal:repeat="column view/getEntries"><ul>
<li tal:repeat="entry column">
<a href=""
- tal:condition="entry/module"
+ tal:condition="entry/ismodule"
tal:attributes="href string:./${entry/name}/index.html"
tal:content="entry/name" />
<a href=""
- tal:condition="not:entry/module"
+ tal:condition="entry/isclass"
tal:attributes="href string:./${entry/name}/index.html"
tal:content="structure string:<b>${entry/name}</b>" />
+ <a href=""
+ tal:condition="entry/isfunction"
+ tal:attributes="href string:./${entry/name}/index.html"
+ tal:content="structure string:<i>${entry/name}</i>" />
</li>
</ul></td>
More information about the Zope3-Checkins
mailing list