Add pretty arrow images from SMW for sorttable instead of Unicode arrow characters...
[lhc/web/wiklou.git] / skins / common / ajax.js
1 // remote scripting library
2 // (c) copyright 2005 modernmethod, inc
3 var sajax_debug_mode = false;
4 var sajax_request_type = "GET";
5
6 /**
7 * if sajax_debug_mode is true, this function outputs given the message into
8 * the element with id = sajax_debug; if no such element exists in the document,
9 * it is injected.
10 */
11 function sajax_debug(text) {
12 if (!sajax_debug_mode) return false;
13
14 var e= document.getElementById('sajax_debug');
15
16 if (!e) {
17 e= document.createElement("p");
18 e.className= 'sajax_debug';
19 e.id= 'sajax_debug';
20
21 var b= document.getElementsByTagName("body")[0];
22
23 if (b.firstChild) b.insertBefore(e, b.firstChild);
24 else b.appendChild(e);
25 }
26
27 var m= document.createElement("div");
28 m.appendChild( document.createTextNode( text ) );
29
30 e.appendChild( m );
31
32 return true;
33 }
34
35 /**
36 * compatibility wrapper for creating a new XMLHttpRequest object.
37 */
38 function sajax_init_object() {
39 sajax_debug("sajax_init_object() called..")
40 var A;
41 try {
42 A=new ActiveXObject("Msxml2.XMLHTTP");
43 } catch (e) {
44 try {
45 A=new ActiveXObject("Microsoft.XMLHTTP");
46 } catch (oc) {
47 A=null;
48 }
49 }
50 if(!A && typeof XMLHttpRequest != "undefined")
51 A = new XMLHttpRequest();
52 if (!A)
53 sajax_debug("Could not create connection object.");
54
55 return A;
56 }
57
58 /**
59 * Perform an ajax call to mediawiki. Calls are handeled by AjaxDispatcher.php
60 * func_name - the name of the function to call. Must be registered in $wgAjaxExportList
61 * args - an array of arguments to that function
62 * target - the target that will handle the result of the call. If this is a function,
63 * if will be called with the XMLHttpRequest as a parameter; if it's an input
64 * element, its value will be set to the resultText; if it's another type of
65 * element, its innerHTML will be set to the resultText.
66 *
67 * Example:
68 * sajax_do_call('doFoo', [1, 2, 3], document.getElementById("showFoo"));
69 *
70 * This will call the doFoo function via MediaWiki's AjaxDispatcher, with
71 * (1, 2, 3) as the parameter list, and will show the result in the element
72 * with id = showFoo
73 */
74 function sajax_do_call(func_name, args, target) {
75 var i, x, n;
76 var uri;
77 var post_data;
78 uri = wgServer + wgScriptPath + "/index.php?action=ajax";
79 if (sajax_request_type == "GET") {
80 if (uri.indexOf("?") == -1)
81 uri = uri + "?rs=" + encodeURIComponent(func_name);
82 else
83 uri = uri + "&rs=" + encodeURIComponent(func_name);
84 for (i = 0; i < args.length; i++)
85 uri = uri + "&rsargs[]=" + encodeURIComponent(args[i]);
86 //uri = uri + "&rsrnd=" + new Date().getTime();
87 post_data = null;
88 } else {
89 post_data = "rs=" + encodeURIComponent(func_name);
90 for (i = 0; i < args.length; i++)
91 post_data = post_data + "&rsargs[]=" + encodeURIComponent(args[i]);
92 }
93 x = sajax_init_object();
94 if (!x) {
95 alert("AJAX not supported");
96 return false;
97 }
98
99 x.open(sajax_request_type, uri, true);
100 if (sajax_request_type == "POST") {
101 x.setRequestHeader("Method", "POST " + uri + " HTTP/1.1");
102 x.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
103 }
104 x.setRequestHeader("Pragma", "cache=yes");
105 x.setRequestHeader("Cache-Control", "no-transform");
106 x.onreadystatechange = function() {
107 if (x.readyState != 4)
108 return;
109
110 sajax_debug("received (" + x.status + " " + x.statusText + ") " + x.responseText);
111
112 //if (x.status != 200)
113 // alert("Error: " + x.status + " " + x.statusText + ": " + x.responseText);
114 //else
115
116 if ( typeof( target ) == 'function' ) {
117 target( x );
118 }
119 else if ( typeof( target ) == 'object' ) {
120 if ( target.tagName == 'INPUT' ) {
121 if (x.status == 200) target.value= x.responseText;
122 //else alert("Error: " + x.status + " " + x.statusText + " (" + x.responseText + ")");
123 }
124 else {
125 if (x.status == 200) target.innerHTML = x.responseText;
126 else target.innerHTML= "<div class='error'>Error: " + x.status + " " + x.statusText + " (" + x.responseText + ")</div>";
127 }
128 }
129 else {
130 alert("bad target for sajax_do_call: not a function or object: " + target);
131 }
132
133 return;
134 }
135
136 sajax_debug(func_name + " uri = " + uri + " / post = " + post_data);
137 x.send(post_data);
138 sajax_debug(func_name + " waiting..");
139 delete x;
140
141 return true;
142 }