Diff for /MPIWGWeb/zpt/changeMPIWGRootForm.zpt between versions 1.1 and 1.2.2.5

version 1.1, 2004/05/28 16:45:46 version 1.2.2.5, 2012/01/09 10:36:48
Line 9 Line 9
 <h1>Change MPIWGRoot</h1>  <h1>Change MPIWGRoot</h1>
 <form method="post" action="changeMPIWGRoot">  <form method="post" action="changeMPIWGRoot">
   
 <p>Title:</p>  <p>Title:<br/>
 <input tal:attributes="value python:getattr(here,'title','')" name="title"/>  <input tal:attributes="value python:getattr(here,'title','')" name="title"/>
   </p>
   <p>Default language:<br/>
   <input tal:attributes="value python:getattr(here,'lang','en')" name="lang"/>
   </p>
   
   <p>Cone Service URL:<br/>
   <input size="100" tal:attributes="value python:getattr(here,'coneServiceURL','http://virtuoso.mpiwg-berlin.mpg.de:8080/MetaDataManagerRestlet/cone/')" name="coneServiceURL"/>
   </p>
   <p>Harvester ZEO server:<br/>
   <input tal:attributes="value python:here.getHarvestCacheServer()" name="harvestServer"/>
   </p>
   <p>Harvester ZEO server port:<br/>
   <input tal:attributes="value python:here.getHarvestCachePort()" name="harvestPort"/>
   </p>
   <!--
 <p>Discipline list (seperated by CR)<br>  <p>Discipline list (seperated by CR)<br>
 <textarea name="disciplineList" cols=50 rows=20  tal:content="python:getattr(here,'disciplineList','')" ></textarea>  <textarea name="disciplineList" cols=50 rows=20  tal:content="python:getattr(here,'disciplineList','')" ></textarea>
 </p>  </p>
 <p>Themes List (seperated by CR)<br>  <p>Themes List (seperated by CR)<br>
 <textarea name="themesList" cols=50 rows=20 tal:content="python:getattr(here,'themesList','')"></textarea>  <textarea name="themesList" cols=50 rows=20 tal:content="python:getattr(here,'themesList','')"></textarea>
 </p>  </p>
   -->
   
   
   <p>
   <div class="form-element">
       
       <select name="connection_id">
        
        <tal:block tal:repeat="id python:here.SQLConnectionIDs()[0]">
                   <option  tal:condition="python:getattr(here,'connection_id','')==id"  tal:attributes="value id" selected tal:content="id"/>
                   <option  tal:condition="not:python:getattr(here,'connection_id','')==id"  tal:attributes="value id" tal:content="id"/>
               </tal:block>
       </select>
       </div>
   
       <p class="form-label">Autocommit</p>
       <p>
         <input type="checkbox" name="autocommit" tal:attributes="checked here/autocommit | nothing"/> autocommit (don't use when you want transactions)
       </p>
 <input type="submit">  <input type="submit">
 </form>  </form>
 </div>  </div>

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


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