File:  [Repository] / zogiLib / zpt / changeZogiLibForm.zpt
Revision 1.7: download - view: text, annotated - select for diffs - revision graph
Thu Jul 22 17:19:22 2004 UTC (19 years, 11 months ago) by casties
Branches: MAIN
CVS tags: HEAD
fixed frame-name-handling with javascript (will not work without JS currently)

<html>
  <h2>Change the Zogilib Entries</h2>
  <form method="post" action="changeZogiLib">
    <table>
      <tr>
	<td>Title</td><td><input size=50 name="title" tal:attributes="value here/title"></td>
      </tr>
      <tr>
	<td>Base URL of digilib server</td><td><input size=100 name="dlServerUrl" tal:attributes="value here/dlServerUrl"></td>
      </tr>
      <tr>
	<td><i>Local path to the images (optional)</i></td><td><input size=100 name="localFileBase" tal:attributes="value here/localFileBase"></td>
      </tr>
      <tr>
	<td><i>Prefix -- name of the local instance (optional)</i></td><td><input size=100 name="basePath" tal:attributes="value here/basePath"></td>
      </tr>
      <tr>
	<td><i>Window target name (optional)</i></td><td><input size=100 name="dlTarget" tal:attributes="value here/dlTarget"></td>
      </tr>
     </table>

     <h3>Select Template</h3>
     <input tal:condition="python:here.layout=='book'" type="radio" value="book" name="version" checked/>
     <input tal:condition="not:python:here.layout=='book'" type="radio" value="book" name="version"/>
	Book Template
     <input tal:condition="not:python:here.layout=='image'" type="radio" value="image" name="version"/>
     <input tal:condition="python:here.layout=='image'" type="radio" value="image" name="version" checked/>
     Image Template
   <input tal:condition="python:here.layout=='metaData'" type="radio" value="metaData" name="version" checked/>
   <input tal:condition="not:python:here.layout=='metaData'" type="radio" value="metaData" name="version"/>
     Metadata Template
	
     <p><input type="submit" value="submit" /></p>
  </form>
</html>

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