1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
<?cs include "header.cs"?>
<?cs include "macros.cs"?>
<div id="ctxtnav" class="nav"></div>
<div id="content" class="wiki">
<h2>XML-RPC exported functions</h2>
<div id="searchable">
<dl>
<?cs each:namespace = xmlrpc.functions ?>
<dt><h3 id=xmlrpc.<?cs var:namespace.namespace ?>><?cs var:namespace.namespace ?> - <?cs var:namespace.description ?></h3></dt>
<dd>
<table class="listing tickets">
<thead>
<tr>
<th>Function</th>
<th>Description</th>
<th><nobr>Permission required</nobr></th>
</tr>
</thead>
<?cs set idx = #0 ?>
<tbody>
<?cs each:function = namespace.methods ?>
<tr class="color3-<?cs if idx % #2 == 0 ?>even<?cs else ?>odd<?cs /if ?>" style="">
<td><nobr><?cs var:function.0?></nobr></td><td><?cs var:function.1?></td><td><?cs var:function.2 ?></td>
</tr>
<?cs set idx = idx + #1 ?>
<?cs /each ?>
</tbody>
</table>
</dd>
<?cs /each ?>
</dl>
</div>
<script type="text/javascript">
addHeadingLinks(document.getElementById("searchable"));
</script>
</div>
<?cs include:"footer.cs"?>
|