aboutsummaryrefslogtreecommitdiffstats
path: root/tools/ws.htm
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2007-10-11 00:10:41 +0000
committerrvelices <rv-github@modusoptimus.com>2007-10-11 00:10:41 +0000
commit36e0e6e8f1a455367f363048fc1825aebbd67eee (patch)
tree35a00477557663dbf05d3d5ae28c14ac0fac7d69 /tools/ws.htm
parent5aafffb22b39c7347e261e2a7f56ba541e5f079e (diff)
- changed htmlentities to htmlspecialchars in comments.php (utf-8 issue)
- web service explorer in utf-8 - removed warning in function load_language - feature: show_queries also shows number of selected rows or number of affected rows git-svn-id: http://piwigo.org/svn/trunk@2134 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'tools/ws.htm')
-rw-r--r--tools/ws.htm13
1 files changed, 7 insertions, 6 deletions
diff --git a/tools/ws.htm b/tools/ws.htm
index fe2b5840b..25eb21fe4 100644
--- a/tools/ws.htm
+++ b/tools/ws.htm
@@ -2,6 +2,7 @@
<html>
<head>
<title>PWG web service explorer</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript" src="prototype.js" ></script>
<script type="text/javascript">
@@ -169,7 +170,7 @@ function fillNewMethod(method)
var isOptional = method.params[i].optional;
var acceptArray = method.params[i].acceptArray;
var defaultValue = method.params[i].defaultValue == null ? '' : method.params[i].defaultValue;
-
+
row.insertCell(0).innerHTML = method.params[i].name;
row.insertCell(1).innerHTML = '<span title="parameter is '+(isOptional ? 'optional':'required') +'">'+(isOptional ? '?':'*')+'</span>'
+ (method.params[i].acceptArray ? ' <span title="parameter can be an array; use | (pipe) character to split values">[ ]</span>':'');
@@ -333,7 +334,7 @@ a:hover {
<table>
<tr style="vertical-align:top">
-
+
<td>
<div id="methodDescription"></div>
<table>
@@ -346,7 +347,7 @@ a:hover {
</select>
</td>
</tr>
-
+
<tr>
<td>Response format:</td>
<td>
@@ -364,7 +365,7 @@ a:hover {
<a href="#" onclick="return pwgInvokeMethod(true)">Invoke (new Window)</a>
</p>
</td>
-
+
<td>
<table id="methodParams" border="1" cellspacing="0" cellpadding="2px">
@@ -380,10 +381,10 @@ a:hover {
</tbody>
</table>
</td>
-
+
</tr>
</table>
-
+
<div style="display:none;">
<!-- hiddenForm for POST -->
<form method="post" action="" target="invokeFrame" id="invokeForm">