[Zope3-checkins] CVS: Zope3/src/zope/app/apidoc/classmodule - module_index.pt:1.1 browser.pt:NONE

Stephan Richter srichter at cosmos.phy.tufts.edu
Sun Mar 28 18:40:29 EST 2004


Update of /cvs-repository/Zope3/src/zope/app/apidoc/classmodule
In directory cvs.zope.org:/tmp/cvs-serv22571/src/zope/app/apidoc/classmodule

Added Files:
	module_index.pt 
Removed Files:
	browser.pt 
Log Message:


Chose better name for module details page template.




=== Added File Zope3/src/zope/app/apidoc/classmodule/module_index.pt ===
<html metal:use-macro="views/apidoc_macros/details">
<body metal:fill-slot="contents">

  <h1 class="details-header">Zope 3 Class Browser</h1>

  <p class="breadcrumbs">
    <span tal:repeat="entry view/getBreadCrumbs">
      <a href="" 
         tal:attributes="href string:${entry/url}/index.html"
         tal:content="entry/name" />
      <tal:omit-tag condition="not: repeat/entry/end">/</tal:omit-tag>
    </span>
  </p>

  <div class="highlight"
       tal:define="doc view/getDoc"
       tal:condition="doc"
       tal:content="structure doc">
    Module Documentation
  </div>


  <table width="100%" valign="top"><tr>
   
  <td tal:repeat="column view/getEntries"><ul>
    <li tal:repeat="entry column">
      <a href=""
         tal:condition="entry/module"
         tal:attributes="href string:./${entry/name}/index.html"
         tal:content="entry/name" />
      <a href=""
         tal:condition="not:entry/module"
         tal:attributes="href string:./${entry/name}/index.html"
         tal:content="structure string:<b>${entry/name}</b>" />
    </li>
  </ul></td>

  </tr></table>

</body>
</html>
=== Removed File Zope3/src/zope/app/apidoc/classmodule/browser.pt ===




More information about the Zope3-Checkins mailing list