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)

<div tal:replace="structure here/manage_page_header">Header</div>
<!-- ZOPE management tabs -->
<h2 tal:define="manage_tabs_message options/manage_tabs_message | nothing"
    tal:replace="structure here/manage_tabs">Tabs</h2>
<!-- end of ZOPE management tabs -->

<h2>Add an XML-RPC server proxy</h2>

<form action="mainConfig">
    <div class="form-label">
    Server URL
    </div>
    <input tal:attributes="value here/serverUrl" name="serverUrl" size="100"/><br>
    <div class="form-label">
    Use XML-RPC or plain HTTP
    </div>
    <input type="radio" name="use_xmlrpc" value="yes" tal:attributes="checked python:getattr(here,'use_xmlrpc',True)==True"/> XML-RPC<br>
    <input type="radio" name="use_xmlrpc" value="no" tal:attributes="checked python:getattr(here,'use_xmlrpc',True)!=True"/> plain HTTP<br>
    <div class="form-label">
    Expression of forbidden characters in RPC argument (optional)
    </div>
    <input tal:attributes="value here/rpc_no_arg_expr" name="rpc_no_arg_expr" size="100"/><br>
    
    <input type="submit" value="change">
</form>


<div tal:replace="structure here/manage_page_footer">Footer</div>

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