Diff for /ECHO_content/zpt/ChangeECHO_xsltForm.zpt between versions 1.2 and 1.3

version 1.2, 2005/12/13 12:45:22 version 1.3, 2006/09/11 14:43:23
Line 1 Line 1
 <h1 tal:replace="structure here/manage_page_header">Header</h1>  <h1 tal:replace="structure here/manage_page_header">Header</h1>
 <h2>Change ECHO XSL</h2>  <h2>Change ECHO XSL</h2>
 <form action="addChanges" method="post">  <form action="addChanges" method="post">
 uri of the xml file: <input size="100" name="cgiUrl" tal:attributes="value python:getattr(here,'cgiUrl','')">  <table>
   <tr>
   <td class="form-label">uri of the xml file: </td>
   <td><input size="100" name="cgiUrl" tal:attributes="value python:getattr(here,'cgiUrl','')"></td>
   </tr>
   <tr>
   <td class="form-label">Append query string to the uri above </td>
   <td tal:condition="python:getattr(here,'appendQueryString',True)"><input type="checkbox" value="yes"  name="appendQueryString" checked></td>
   <td tal:condition="not:python:getattr(here,'appendQueryString',True)"><input type="checkbox" value="no" name="appendQueryString"></td>
   </tr>
   <tr>
   <td class="form-label">If parameter "fn" is passed and contains an url then this url is used instead of above </td>
   <td tal:condition="python:getattr(here,'passURL',False)"><input type="checkbox" name="passURL" value="yes" checked></td>
   <td tal:condition="not:python:getattr(here,'passURL',False)"><input type="checkbox" value="no" name="passURL"></td>
   </tr>
   <tr>
   <td class="form-label">Caching: </td>
   <td tal:condition="python:getattr(here,'caching','yes')=='yes'"><input type="checkbox" name="caching" value="yes" checked></td>
   <td tal:condition="not:python:getattr(here,'caching','yes')=='yes'"><input type="checkbox" value="no" name="caching"></td>
   </tr>
 <br>  <br>
   
 <input type="submit" value="change">  <input type="submit" value="change">
 </form>  </form>
 <h1 tal:replace="structure here/manage_page_footer">Footer</h1>  <h1 tal:replace="structure here/manage_page_footer">Footer</h1>
   

Removed from v.1.2  
changed lines
  Added in v.1.3


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