File:  [Repository] / XMLRpcTools / zpt / manageXMLRpcServerProxy.zpt
Revision 1.5: download - view: text, annotated - select for diffs - revision graph
Fri Mar 19 11:39:52 2010 UTC (14 years, 3 months ago) by casties
Branches: MAIN
CVS tags: HEAD
added outputUnicode to eval to be able to get undecoded response (from http)

    1: <div tal:replace="structure here/manage_page_header">Header</div>
    2: <!-- ZOPE management tabs -->
    3: <h2 tal:define="manage_tabs_message options/manage_tabs_message | nothing"
    4:     tal:replace="structure here/manage_tabs">Tabs</h2>
    5: <!-- end of ZOPE management tabs -->
    6: 
    7: <h2>Add an XML-RPC server proxy</h2>
    8: 
    9: <form action="mainConfig">
   10:     <div class="form-label">
   11:     Server URL
   12:     </div>
   13:     <input tal:attributes="value here/serverUrl" name="serverUrl" size="100"/><br>
   14:     <div class="form-label">
   15:     Use XML-RPC or plain HTTP
   16:     </div>
   17:     <input type="radio" name="use_xmlrpc" value="yes" tal:attributes="checked python:getattr(here,'use_xmlrpc',True)==True"/> XML-RPC<br>
   18:     <input type="radio" name="use_xmlrpc" value="no" tal:attributes="checked python:getattr(here,'use_xmlrpc',True)!=True"/> plain HTTP<br>
   19:     <div class="form-label">
   20:     Expression of forbidden characters in RPC argument (optional)
   21:     </div>
   22:     <input tal:attributes="value here/rpc_no_arg_expr" name="rpc_no_arg_expr" size="100"/><br>
   23:     
   24:     <input type="submit" value="change">
   25: </form>
   26: 
   27: 
   28: <div tal:replace="structure here/manage_page_footer">Footer</div>

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