Diff for /ECHO_content/zpt/ChangeECHO_navigation.zpt between versions 1.1 and 1.5

version 1.1, 2004/02/09 11:45:46 version 1.5, 2012/01/03 13:02:30
Line 1 Line 1
 <html>  <h1 tal:replace="structure python:here.decode(here.manage_page_header())">Header</h1>
 <body>  <!-- ZOPE management tabs -->
 <h2>Change Navigation structure</h2>   <h2 tal:define="manage_tabs_message options/manage_tabs_message | nothing"
       tal:replace="structure python:here.manage_tabs()">Tabs</h2>
   <h1 tal:replace="structure here/manage_page_header">Header</h1>
 <form method="post" action="ECHO_navigationConfig">  <form method="post" action="ECHO_navigationConfig">
   <h2>Parameters</h2>
   <p>Path to the Storage manager (OSAS_Storage Product):</p>
   <input type="text" tal:attributes="value here/getStorageManagerURL" name="storageManagerURL" size="100"/>
   
   <p>Basis URL of the XML fulltext provider: </p>
   <input type="text" tal:attributes="value here/getFullTextBasisUrl" name="fullTextBasisUrl" size="100"/>
   
   <h2>Change Navigation structure</h2>
   
   
 <b>Title</b><input name="title" tal:attributes="value here/title"><br>  <b>Title</b><input name="title" tal:attributes="value here/title"><br>
 <b>Path to the stored Hierarchy</b><input name="pathToHierarchy" tal:attributes="value here/pathToHierarchy"><br>  <b>Path to the stored Hierarchy</b><input name="pathToHierarchy" tal:attributes="value here/pathToHierarchy"><br>
   <b>Object classes to be displayed in the navigation tree:</b><br>
   <tal:block tal:repeat="type here/displayableMetaTypes">
   <input tal:condition="python: type in here.displayedMetaTypes" type="checkbox" name="displayedMetaTypes" checked tal:attributes="value type">
   <input tal:condition="not:python: type in here.displayedMetaTypes" type="checkbox" name="displayedMetaTypes" tal:attributes="value type">
   <span tal:replace="type"/><br>
   </tal:block>
       
    
 <input type="submit">  <input type="submit">
   
 </form>  </form>
 </body>  <h1 tal:replace="structure here/manage_page_footer">Footer</h1>
 </html>  

Removed from v.1.1  
changed lines
  Added in v.1.5


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>