72
72
var hist = new History();
74
function make_query_string(pagename, args)
81
// vals can be an array, to make multiple args with the same name
82
// To handle this, make non-array objects into an array, then loop
83
if (!(vals instanceof Array))
85
for each (val in vals)
96
qs += encodeURI(key) + "=" + encodeURI(val);
74
102
function make_post_body(args)
99
131
var inp = document.getElementById('inputText');
100
132
var digest = hex_md5(inp.value + magic);
101
133
var xmlhttp = new XMLHttpRequest();
102
135
xmlhttp.open("POST", "chat", false);
103
136
xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
104
137
xmlhttp.send(make_post_body({"digest":digest, "text":inp.value}))
105
138
var res = JSON.parse(xmlhttp.responseText);
106
var output = document.getElementById("output");
139
var output = document.getElementById("output")
108
141
var pre = document.createElement("pre");
109
142
pre.setAttribute("class", "inputMsg");
110
143
pre.appendChild(document.createTextNode(inp.value + "\n"));
111
144
output.appendChild(pre);
113
if (res.hasOwnProperty('okay'))
116
// print out the output (res.okay[0])
149
// print out the output (res[0])
117
150
var pre = document.createElement("pre");
118
151
pre.setAttribute("class", "outputMsg");
119
pre.appendChild(document.createTextNode(res.okay[0]));
152
pre.appendChild(document.createTextNode(res[0]));
120
153
output.appendChild(pre);
121
// print out the return value (res.okay[1])
154
// print out the return value (res[1])
124
157
var pre = document.createElement("pre");
125
158
pre.setAttribute("class", "outputMsg");
126
pre.appendChild(document.createTextNode(res.okay[1] + "\n"));
159
pre.appendChild(document.createTextNode(res[1] + "\n"));
127
160
output.appendChild(pre);
129
162
// set the prompt to >>>
130
163
var prompt = document.getElementById("prompt");
131
164
prompt.replaceChild(document.createTextNode(">>> "), prompt.firstChild);
133
else if (res.hasOwnProperty('exc'))
136
// print out the error message (res.exc)
169
// print out the error message (res[2])
137
170
var pre = document.createElement("pre");
138
171
pre.setAttribute("class", "errorMsg");
139
pre.appendChild(document.createTextNode(res.exc));
172
pre.appendChild(document.createTextNode(res[2]));
140
173
output.appendChild(pre);
142
else if (res.hasOwnProperty('more'))
144
177
// Need more input, so set the prompt to ...
145
178
var prompt = document.getElementById("prompt");
146
179
prompt.replaceChild(document.createTextNode("... "), prompt.firstChild);
149
// assert res.hasOwnProperty('input')
150
var prompt = document.getElementById("prompt");
151
prompt.replaceChild(document.createTextNode("+++ "), prompt.firstChild);
155
183
function catch_input(key)