summaryrefslogtreecommitdiff
path: root/httemplate/elements/xmlhttp.html
diff options
context:
space:
mode:
authorivan <ivan>2005-10-24 11:56:35 +0000
committerivan <ivan>2005-10-24 11:56:35 +0000
commitfbff7663ff6fb115bcd4dae2eb991b90339bf68d (patch)
tree6c7586521f4a8fd5ab20d57f9263ada018380a5f /httemplate/elements/xmlhttp.html
parentcccd0b7cd38a88c131e19981be38434f87abe194 (diff)
fix rate plan editing with new xmlhttp progressbar - use POST instead of GET. also optimize SQL on rate search screen
Diffstat (limited to 'httemplate/elements/xmlhttp.html')
-rw-r--r--httemplate/elements/xmlhttp.html77
1 files changed, 49 insertions, 28 deletions
diff --git a/httemplate/elements/xmlhttp.html b/httemplate/elements/xmlhttp.html
index 41965ace2..1199b69be 100644
--- a/httemplate/elements/xmlhttp.html
+++ b/httemplate/elements/xmlhttp.html
@@ -2,11 +2,11 @@
my ( %opt ) = @_;
my $url = $opt{'url'};
- #my $action = exists $opt{'action'} ? $opt{'action'} : 'GET';
+ my $method = exists($opt{'method'}) ? $opt{'method'} : 'GET';
#my @subs = @{ $opt{'subs'};
- $url .= ( ($url =~ /\?/) ? '&' : '?' ).
- 'sub=';
+ $url .= ( ($url =~ /\?/) ? '&' : '?' )
+ if $method eq 'GET';
%>
@@ -33,43 +33,64 @@
<% foreach my $func ( @{$opt{'subs'}} ) {
- my $furl = $url . uri_escape($func);
+ my $furl = $url;
$furl =~ s/\"/\\\\\"/; #javascript escape
%>
function <%=$func%>() {
- // count args; build URL
- var url = "<%=$furl%>";
- var a = <%=$func%>.arguments;
- var args;
- var len;
- if ( a && typeof a == 'object' && a[0].constructor == Array ) {
- args = a[0];
+ // count args; build URL
+ var url = "<%=$furl%>";
+ var a = <%=$func%>.arguments;
+
+ var args;
+ var len;
+ var content = 'sub=<%= uri_escape($func) %>';
+ if ( a && typeof a == 'object' && a[0].constructor == Array ) {
+ args = a[0];
len = args.length
- } else {
+ } else {
args = a;
len = args.length - 1;
- }
- for (var i = 0; i < len; i++)
- url = url + "&arg=" + escape(args[i]);
- url = url.replace( /[+]/g, '%2B'); // fix the unescaped plus signs
- var xmlhttp = rs_init_object();
- xmlhttp.open("GET", url, true);
- xmlhttp.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
- xmlhttp.onreadystatechange = function() {
- if (xmlhttp.readyState != 4)
- return;
- //rs_debug("received " + x.responseText);
-
- if (xmlhttp.status != 200) {
- alert(xmlhttp.status + " status connecting to " + url);
- } else {
+ }
+ for (var i = 0; i < len; i++)
+ content = content + "&arg=" + escape(args[i]);
+ content = content.replace( /[+]/g, '%2B'); // fix unescaped plus signs
+
+ if ( '<%=$method%>' == 'GET' ) {
+ url = url + content;
+ }
+
+ //alert('<%=$method%> ' + url);
+
+ var xmlhttp = rs_init_object();
+ xmlhttp.open("<%=$method%>", url, true);
+
+ xmlhttp.onreadystatechange = function() {
+ if (xmlhttp.readyState != 4)
+ return;
+
+ if (xmlhttp.status != 200) {
+ alert(xmlhttp.status + " status connecting to " + url);
+ } else {
var data = xmlhttp.responseText;
+ //alert('received response: ' + data);
a[a.length-1](data);
}
}
- xmlhttp.send(null);
+
+ if ( '<%=$method%>' == 'POST' ) {
+
+ xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
+ xmlhttp.send(content);
+
+ } else {
+
+ xmlhttp.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
+ xmlhttp.send(null);
+
+ }
+
//rs_debug("x_$func_name url = " + url);
//rs_debug("x_$func_name waiting..");
}