source: products/XMLRPCMethod/XMLRPCMethod-1-1/dtml/methodAdd.dtml @ 1591

Last change on this file since 1591 was 19, checked in by myroslav, 18 years ago

Layout changes, typos corrected

  • Property svn:eol-style set to native
File size: 1.9 KB
Line 
1<dtml-var manage_page_header>
2
3<dtml-var "manage_form_title(this(), _,
4           form_title='Add XML-RPC Method',
5           help_product='XMLRPCMethod',
6           help_topic='XMLRPC-Method_Add.stx'
7           )">
8
9<p class="form-help">
10XML-RPC Methods allow you to add functionality to Zope by calling functions
11on other webservers with the XML-RPC protocol
12The <em>method name</em> should name a callable method of the URL.
13</p>
14
15<form action="manage_addXMLRPCMethod" method="post">
16<table cellspacing="0" cellpadding="2" border="0">
17  <tr>
18    <td align="left" valign="top">
19    <div class="form-label">
20    Id
21    </div>
22    </td>
23    <td align="left" valign="top">
24    <input type="text" name="id" size="40" />
25    </td>
26  </tr>
27  <tr>
28    <td align="left" valign="top">
29    <div class="form-optional">
30    Title
31    </div>
32    </td>
33    <td align="left" valign="top">
34    <input type="text" name="title" size="40" />
35    </td>
36  </tr>
37  <tr>
38    <td align="left" valign="top">
39    <div class="form-label">
40    URL
41    </div>
42    </td>
43    <td align="left" valign="top">
44    <input type="text" name="remoteurl" size="40" /><br>
45    http://<i>user</i>:<i>password</i>@<i>hostname</i>/<i>path</i>
46    </td>
47  </tr>
48  <tr>
49    <td align="left" valign="top">
50    <div class="form-label">
51    Method Name
52    </div>
53    </td>
54    <td align="left" valign="top">
55    <input type="text" name="function" size="40" />
56    </td>
57  </tr>
58  <tr>
59    <td align="left" valign="top">
60    <div class="form-label">
61    Timeout
62    </div>
63    </td>
64    <td align="left" valign="top">
65    <input type="text" name="timeout:float" size="5" value="2.5" /> seconds
66    </td>
67  </tr>
68  <tr>
69    <td align="left" valign="top">
70    </td>
71    <td align="left" valign="top">
72    <div class="form-element">
73    <input class="form-element" type="submit" name="submit"
74     value=" Add " />
75    </div>
76    </td>
77  </tr>
78</table>
79</form>
80
81<dtml-var manage_page_footer>
Note: See TracBrowser for help on using the repository browser.