[927] | 1 | // Copyright 2012 Georg-August-Universität Göttingen, Germany |
---|
| 2 | // |
---|
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
---|
| 4 | // you may not use this file except in compliance with the License. |
---|
| 5 | // You may obtain a copy of the License at |
---|
| 6 | // |
---|
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
---|
| 8 | // |
---|
| 9 | // Unless required by applicable law or agreed to in writing, software |
---|
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
---|
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
---|
| 12 | // See the License for the specific language governing permissions and |
---|
| 13 | // limitations under the License. |
---|
| 14 | |
---|
[858] | 15 | /** |
---|
| 16 | * AutoQUEST - HTML Monitor |
---|
| 17 | * |
---|
| 18 | * Description: This script records the interactions done by an user on an |
---|
| 19 | * HTML-Website and sends them to a server. It does not register actions on |
---|
| 20 | * Flash, Java, or other special inputs. This script is tested on Firefox |
---|
| 21 | * 15.0.1. |
---|
| 22 | * |
---|
| 23 | * To insert it on your HTML-side, you need to write <script |
---|
| 24 | * language="JavaScript" type="text/javascript" src="autoquest-htmlmonitor.js"></script> in the |
---|
| 25 | * head and change the src-attribute to the location, you have chosen for this |
---|
| 26 | * script. |
---|
| 27 | * |
---|
| 28 | * To change the recorded events, edit the action config array. If you want to change |
---|
| 29 | * the server where the data is send to, rewrite the destination variable. The |
---|
| 30 | * records are send to the server, JSON-formatted, if there are 10 inputs or the |
---|
| 31 | * user changes/closes the site. |
---|
| 32 | * |
---|
| 33 | * Authors: Simon Leidenbach, Simon Reuss, Patrick Harms |
---|
| 34 | * |
---|
| 35 | * Version: 0.1 |
---|
| 36 | */ |
---|
| 37 | |
---|
| 38 | /** |
---|
| 39 | * the server to send the recorded data to |
---|
| 40 | */ |
---|
[879] | 41 | var autoquestDestination; |
---|
[858] | 42 | |
---|
| 43 | /** |
---|
[881] | 44 | * an ID that is more or less unique for the client |
---|
| 45 | */ |
---|
| 46 | var autoquestClientId; |
---|
| 47 | |
---|
| 48 | /** |
---|
[858] | 49 | * the maximum number of recorded events to be put into one package sent to the server |
---|
| 50 | */ |
---|
[879] | 51 | var autoquestPackageSize = 10; |
---|
[858] | 52 | |
---|
| 53 | /** |
---|
| 54 | * this variable defines the tags for which event handling shall be added, as well as the |
---|
| 55 | * event handling action to be monitored |
---|
| 56 | */ |
---|
[879] | 57 | var autoquestActionConfig = [ |
---|
[944] | 58 | { "tag": "a", "actions": [ "onclick", |
---|
| 59 | "onfocus" ] }, |
---|
| 60 | //{ "tag": "abbr", "actions": [ ] }, |
---|
| 61 | //{ "tag": "address", "actions": [ ] }, |
---|
| 62 | //{ "tag": "applet", "actions": [ ] }, |
---|
| 63 | { "tag": "area", "actions": [ "onclick", |
---|
| 64 | "onfocus" ] }, |
---|
| 65 | //{ "tag": "article", "actions": [ ] }, |
---|
| 66 | //{ "tag": "aside", "actions": [ ] }, |
---|
| 67 | { "tag": "audio", "actions": [ "onplaying", |
---|
| 68 | "onpause", |
---|
| 69 | "ontimeupdate" ] }, |
---|
| 70 | { "tag": "b", "actions": [ "onclick" ] }, |
---|
| 71 | //{ "tag": "bdi", "actions": [ ] }, |
---|
| 72 | //{ "tag": "bdo", "actions": [ ] }, |
---|
| 73 | //{ "tag": "blockquote", "actions": [ ] }, |
---|
[1073] | 74 | { "tag": "body", "actions": [ "onclick", |
---|
[944] | 75 | "onpagehide", |
---|
| 76 | "onpageshow", |
---|
[1073] | 77 | "onscroll", |
---|
[944] | 78 | "onundo" ] }, |
---|
| 79 | { "tag": "button", "actions": [ "onclick", |
---|
| 80 | "onfocus" ] }, |
---|
| 81 | { "tag": "canvas", "actions": [ "onclick" ] }, |
---|
| 82 | //{ "tag": "caption", "actions": [ ] }, |
---|
| 83 | { "tag": "cite", "actions": [ "onclick" ] }, |
---|
| 84 | { "tag": "code", "actions": [ "onclick" ] }, |
---|
| 85 | //{ "tag": "col", "actions": [ ] }, |
---|
| 86 | //{ "tag": "colgroup", "actions": [ ] }, |
---|
| 87 | { "tag": "command", "actions": [ "onclick", |
---|
| 88 | "onfocus" ] }, |
---|
| 89 | //{ "tag": "datalist", "actions": [ ] }, |
---|
| 90 | { "tag": "dd", "actions": [ "onclick" ] }, |
---|
| 91 | { "tag": "del", "actions": [ "onclick" ] }, |
---|
| 92 | //{ "tag": "details", "actions": [ ] }, |
---|
| 93 | { "tag": "dfn", "actions": [ "onclick" ] }, |
---|
| 94 | { "tag": "div", "actions": [ "onclick" ] }, |
---|
| 95 | //{ "tag": "dl", "actions": [ ] }, |
---|
| 96 | { "tag": "dt", "actions": [ "onclick" ] }, |
---|
| 97 | { "tag": "em", "actions": [ "onclick" ] }, |
---|
| 98 | { "tag": "embed", "actions": [ "onclick" ] }, |
---|
| 99 | //{ "tag": "fieldset", "actions": [ ] }, |
---|
| 100 | //{ "tag": "figcaption", "actions": [ ] }, |
---|
| 101 | //{ "tag": "figure", "actions": [ ] }, |
---|
| 102 | //{ "tag": "footer", "actions": [ ] }, |
---|
[999] | 103 | { "tag": "form", "actions": [ "onreset", |
---|
| 104 | "onsubmit" ] }, |
---|
[944] | 105 | //{ "tag": "header", "actions": [ ] }, |
---|
| 106 | //{ "tag": "hgroup", "actions": [ ] }, |
---|
| 107 | { "tag": "h1", "actions": [ "onclick" ] }, |
---|
| 108 | { "tag": "h2", "actions": [ "onclick" ] }, |
---|
| 109 | { "tag": "h3", "actions": [ "onclick" ] }, |
---|
| 110 | { "tag": "h4", "actions": [ "onclick" ] }, |
---|
| 111 | { "tag": "h5", "actions": [ "onclick" ] }, |
---|
| 112 | { "tag": "h6", "actions": [ "onclick" ] }, |
---|
| 113 | //{ "tag": "hr", "actions": [ ] }, |
---|
| 114 | { "tag": "i", "actions": [ "onclick" ] }, |
---|
| 115 | //{ "tag": "iframe", "actions": [ ] }, |
---|
[999] | 116 | { "tag": "img", "actions": [ "onabort", |
---|
| 117 | "onclick" ] }, |
---|
[944] | 118 | { "tag": "input_text", "actions": [ "onchange", |
---|
[999] | 119 | "onfocus", |
---|
| 120 | "onselect" ] }, |
---|
[992] | 121 | { "tag": "input_password", "actions": [ "onchange", |
---|
| 122 | "onfocus" ] }, |
---|
| 123 | { "tag": "input_checkbox", "actions": [ "onchange", |
---|
| 124 | "onclick", |
---|
| 125 | "onfocus" ] }, |
---|
| 126 | { "tag": "input_radio", "actions": [ "onchange", |
---|
| 127 | "onclick", |
---|
| 128 | "onfocus" ] }, |
---|
| 129 | { "tag": "input_submit", "actions": [ "onclick", |
---|
| 130 | "onfocus" ] }, |
---|
| 131 | { "tag": "input_reset", "actions": [ "onclick", |
---|
| 132 | "onfocus" ] }, |
---|
| 133 | { "tag": "input_file", "actions": [ "onclick", |
---|
| 134 | "onfocus" ] }, |
---|
| 135 | { "tag": "input_image", "actions": [ "onclick", |
---|
| 136 | "onfocus" ] }, |
---|
| 137 | { "tag": "input_button", "actions": [ "onclick", |
---|
| 138 | "onfocus" ] }, |
---|
[944] | 139 | { "tag": "input", "actions": [ "onchange", |
---|
| 140 | "onfocus" ] }, |
---|
| 141 | { "tag": "ins", "actions": [ "onclick" ] }, |
---|
| 142 | { "tag": "kbd", "actions": [ "onclick" ] }, |
---|
| 143 | { "tag": "keygen", "actions": [ "onchange", |
---|
| 144 | "onfocus" ] }, |
---|
| 145 | //{ "tag": "label", "actions": [ ] }, |
---|
| 146 | //{ "tag": "legend", "actions": [ ] }, |
---|
| 147 | { "tag": "li", "actions": [ "onclick" ] }, |
---|
| 148 | //{ "tag": "map", "actions": [ ] }, |
---|
| 149 | { "tag": "mark", "actions": [ "onclick" ] }, |
---|
| 150 | { "tag": "menu", "actions": [ "onclick" ] }, |
---|
| 151 | { "tag": "meter", "actions": [ "onclick" ] }, |
---|
| 152 | //{ "tag": "nav", "actions": [ ] }, |
---|
| 153 | //{ "tag": "noscript", "actions": [ ] }, |
---|
| 154 | { "tag": "object", "actions": [ "onclick" ] }, |
---|
| 155 | //{ "tag": "ol", "actions": [ ] }, |
---|
| 156 | //{ "tag": "optgroup", "actions": [ ] }, |
---|
| 157 | //{ "tag": "option", "actions": [ ] }, |
---|
| 158 | { "tag": "output", "actions": [ "onclick" ] }, |
---|
| 159 | { "tag": "p", "actions": [ "onclick" ] }, |
---|
| 160 | //{ "tag": "param", "actions": [ ] }, |
---|
| 161 | //{ "tag": "pre", "actions": [ ] }, |
---|
| 162 | { "tag": "progress", "actions": [ "onclick" ] }, |
---|
| 163 | { "tag": "q", "actions": [ "onclick" ] }, |
---|
| 164 | //{ "tag": "rp", "actions": [ ] }, |
---|
| 165 | //{ "tag": "rt", "actions": [ ] }, |
---|
| 166 | //{ "tag": "ruby", "actions": [ ] }, |
---|
| 167 | { "tag": "s", "actions": [ "onclick" ] }, |
---|
| 168 | { "tag": "samp", "actions": [ "onclick" ] }, |
---|
| 169 | //{ "tag": "section", "actions": [ ] }, |
---|
| 170 | { "tag": "select", "actions": [ "onchange", |
---|
| 171 | "onfocus" ] }, |
---|
| 172 | { "tag": "small", "actions": [ "onclick" ] }, |
---|
| 173 | //{ "tag": "source", "actions": [ ] }, |
---|
| 174 | { "tag": "span", "actions": [ "onclick" ] }, |
---|
| 175 | { "tag": "strong", "actions": [ "onclick" ] }, |
---|
| 176 | //{ "tag": "sub", "actions": [ ] }, |
---|
| 177 | //{ "tag": "summary", "actions": [ ] }, |
---|
| 178 | //{ "tag": "sup", "actions": [ ] }, |
---|
| 179 | //{ "tag": "table", "actions": [ ] }, |
---|
| 180 | //{ "tag": "tbody", "actions": [ ] }, |
---|
| 181 | { "tag": "td", "actions": [ "onclick" ] }, |
---|
| 182 | { "tag": "textarea", "actions": [ "onchange", |
---|
[999] | 183 | "onfocus", |
---|
| 184 | "onselect" ] }, |
---|
[944] | 185 | //{ "tag": "tfoot", "actions": [ ] }, |
---|
| 186 | { "tag": "th", "actions": [ "onclick" ] }, |
---|
| 187 | //{ "tag": "thead", "actions": [ ] }, |
---|
| 188 | { "tag": "time", "actions": [ "onclick" ] }, |
---|
| 189 | //{ "tag": "tr", "actions": [ ] }, |
---|
| 190 | //{ "tag": "track", "actions": [ ] }, |
---|
| 191 | { "tag": "u", "actions": [ "onclick" ] }, |
---|
| 192 | //{ "tag": "ul", "actions": [ ] }, |
---|
| 193 | { "tag": "var", "actions": [ "onclick" ] }, |
---|
| 194 | { "tag": "video", "actions": [ "onplaying", |
---|
| 195 | "onpause", |
---|
[1020] | 196 | "ontimeupdate" ] } |
---|
[944] | 197 | //{ "tag": "wbr", "actions": [ ] }, |
---|
[858] | 198 | ]; |
---|
| 199 | |
---|
| 200 | /** |
---|
| 201 | * a possibility to trace, what is going on |
---|
| 202 | */ |
---|
[879] | 203 | var autoquestDoLog = false; |
---|
[858] | 204 | |
---|
[869] | 205 | /** |
---|
[1020] | 206 | * stores the structure of the GUI of the current page |
---|
| 207 | */ |
---|
| 208 | var autoquestGUIModel; |
---|
| 209 | |
---|
| 210 | /** |
---|
[869] | 211 | * stores events, which were recorded but not sent to the server yet |
---|
| 212 | */ |
---|
[879] | 213 | var autoquestRecordedEvents = []; |
---|
[858] | 214 | |
---|
| 215 | /** |
---|
[999] | 216 | * stores the interval for sending data of inactive browser windows |
---|
| 217 | */ |
---|
| 218 | var autoquestSendInterval; |
---|
| 219 | |
---|
| 220 | /** |
---|
[869] | 221 | * automatically executed to initialize the event handling |
---|
[858] | 222 | */ |
---|
| 223 | (function() { |
---|
| 224 | initEventHandling(); |
---|
| 225 | }()); |
---|
| 226 | |
---|
| 227 | |
---|
| 228 | /** |
---|
| 229 | * initializes the event handling after the document is loaded completely |
---|
| 230 | */ |
---|
| 231 | function initEventHandling() { |
---|
| 232 | if (document.body) { |
---|
| 233 | if (document.readyState !== "complete") { |
---|
| 234 | // if the document is not loaded yet, try to add further event handling later |
---|
| 235 | setTimeout(initEventHandling, 200); |
---|
| 236 | } |
---|
[999] | 237 | else if (!autoquestSendInterval) { |
---|
[1021] | 238 | log("adding event handling attributes"); |
---|
| 239 | determineDestination(); |
---|
| 240 | autoquestGUIModel = |
---|
| 241 | addEventHandlingAndGetJSONRepresentation(document.documentElement, ""); |
---|
| 242 | |
---|
[1073] | 243 | addDefaultEventHandling(); |
---|
| 244 | |
---|
[999] | 245 | // recall sending data each 100 seconds to ensure, that for browser windows staying |
---|
| 246 | // open the data will be send, as well. |
---|
| 247 | autoquestSendInterval = setTimeout(sendRequest, 100000); |
---|
| 248 | } |
---|
[858] | 249 | } |
---|
| 250 | else { |
---|
| 251 | setTimeout(initEventHandling, 200); |
---|
| 252 | } |
---|
| 253 | } |
---|
| 254 | |
---|
| 255 | /** |
---|
[879] | 256 | * traverses the DOM-structure of the HTML-site and determines the URL of this script. Based on |
---|
| 257 | * this URL, it calculates the destination to which the traced interactions must be sent |
---|
| 258 | */ |
---|
| 259 | function determineDestination() { |
---|
| 260 | var scriptElements = document.getElementsByTagName("script"); |
---|
| 261 | var i; |
---|
| 262 | var index; |
---|
| 263 | |
---|
| 264 | for (i = 0; i < scriptElements.length; i++) { |
---|
| 265 | if ((scriptElements[i].type === "text/javascript") && (scriptElements[i].src)) { |
---|
| 266 | index = scriptElements[i].src.lastIndexOf("script/autoquest-htmlmonitor.js"); |
---|
| 267 | if (index > -1) { |
---|
| 268 | autoquestDestination = scriptElements[i].src.substring(0, index - 1); |
---|
| 269 | log("using destination " + autoquestDestination); |
---|
| 270 | } |
---|
| 271 | } |
---|
| 272 | } |
---|
| 273 | } |
---|
| 274 | |
---|
| 275 | /** |
---|
| 276 | * traverses the DOM-structure of the HTML-site and adds event handling attributes to each |
---|
[1020] | 277 | * relevant node. Furthermore returns a JSON representation of the node including the children |
---|
[858] | 278 | * |
---|
[869] | 279 | * @param node the node of the DOM structure that shall be adapted and whose children shall |
---|
| 280 | * be traversed |
---|
| 281 | * @param parentPath the path to the parent node of the provided node within the DOM-structure of |
---|
| 282 | * the HTML-site |
---|
[858] | 283 | */ |
---|
[1020] | 284 | function addEventHandlingAndGetJSONRepresentation(node, parentPath) { |
---|
[944] | 285 | var nodePath; |
---|
[858] | 286 | var i; |
---|
[1020] | 287 | var jsonRepresentation = null; |
---|
| 288 | var childRepresentation; |
---|
| 289 | var childRepresentations = null; |
---|
[858] | 290 | |
---|
| 291 | if (node.nodeType === Node.ELEMENT_NODE) { |
---|
[1020] | 292 | jsonRepresentation = "{\"tagName\":\"" + getTagName(node) + "\","; |
---|
[944] | 293 | |
---|
[1020] | 294 | if ((node.id) && (node.id !== "")) { |
---|
[1069] | 295 | jsonRepresentation += "\"htmlId\":\"" + node.id + "\""; |
---|
[1020] | 296 | } |
---|
| 297 | else { |
---|
| 298 | jsonRepresentation += "\"index\":\"" + getNodeIndex(node) + "\""; |
---|
| 299 | } |
---|
| 300 | |
---|
| 301 | addEventHandling(node, parentPath); |
---|
| 302 | |
---|
| 303 | if (node.childNodes.length > 0) { |
---|
| 304 | nodePath = getNodePath(node, parentPath); |
---|
| 305 | |
---|
| 306 | for (i = 0; i < node.childNodes.length; i++) { |
---|
| 307 | childRepresentation = |
---|
| 308 | addEventHandlingAndGetJSONRepresentation(node.childNodes[i], nodePath); |
---|
| 309 | |
---|
| 310 | if (childRepresentation) { |
---|
| 311 | if (!childRepresentations) { |
---|
| 312 | childRepresentations = childRepresentation; |
---|
[858] | 313 | } |
---|
| 314 | else { |
---|
[1020] | 315 | childRepresentations += "," + childRepresentation; |
---|
[858] | 316 | } |
---|
| 317 | } |
---|
| 318 | } |
---|
[1020] | 319 | |
---|
| 320 | if (childRepresentations) { |
---|
| 321 | jsonRepresentation += ",\"children\":[" + childRepresentations + "]"; |
---|
| 322 | } |
---|
[858] | 323 | } |
---|
[944] | 324 | |
---|
[1020] | 325 | jsonRepresentation += "}"; |
---|
| 326 | } |
---|
| 327 | |
---|
| 328 | return jsonRepresentation; |
---|
| 329 | } |
---|
| 330 | |
---|
| 331 | /** |
---|
[1022] | 332 | * adds event handling functionality to the provided node. Calls |
---|
| 333 | * {@link #addEventHandlingWithJQuery(node,parentPath)} or |
---|
| 334 | * {@link #addEventHandlingWithoutJQuery(node,parentPath)} depending on the fact if jQuery is |
---|
| 335 | * available and must therefore be used, or not. |
---|
| 336 | * |
---|
| 337 | * @param node the node of the DOM structure that shall be equipped with event handling |
---|
| 338 | * @param parentPath the path to the parent node of the provided node within the DOM-structure of |
---|
| 339 | * the HTML-site |
---|
[1020] | 340 | */ |
---|
| 341 | function addEventHandling(node, parentPath) { |
---|
| 342 | if (typeof jQuery === 'undefined') { |
---|
| 343 | addEventHandlingWithoutJQuery(node, parentPath); |
---|
| 344 | } |
---|
| 345 | else { |
---|
| 346 | addEventHandlingWithJQuery(node, parentPath); |
---|
| 347 | } |
---|
| 348 | } |
---|
| 349 | |
---|
| 350 | /** |
---|
[1022] | 351 | * adds event handling functionality to the provided node using onxxx attributes |
---|
| 352 | * |
---|
| 353 | * @param node the node of the DOM structure that shall be equipped with event handling |
---|
| 354 | * @param parentPath the path to the parent node of the provided node within the DOM-structure of |
---|
| 355 | * the HTML-site |
---|
[1020] | 356 | */ |
---|
| 357 | function addEventHandlingWithoutJQuery(node, parentPath) { |
---|
| 358 | var nodePath = getNodePath(node, parentPath); |
---|
| 359 | var tagName = getTagName(node); |
---|
| 360 | var i; |
---|
| 361 | var k; |
---|
| 362 | |
---|
| 363 | for (i = 0; i < autoquestActionConfig.length; i++) { |
---|
| 364 | if (tagName === autoquestActionConfig[i].tag.toLowerCase()) { |
---|
| 365 | for (k = 0; k < autoquestActionConfig[i].actions.length; k++) { |
---|
| 366 | adaptEventHandlingAttribute(node, nodePath, autoquestActionConfig[i].actions[k]); |
---|
| 367 | } |
---|
[944] | 368 | } |
---|
[858] | 369 | } |
---|
| 370 | } |
---|
| 371 | |
---|
| 372 | /** |
---|
[1022] | 373 | * adds event handling functionality to the provided node using jQuery attributes. If the node |
---|
| 374 | * already used onxxx attributes, these are extended instead of using jQuery. |
---|
| 375 | * |
---|
| 376 | * @param node the node of the DOM structure that shall be equipped with event handling |
---|
| 377 | * @param parentPath the path to the parent node of the provided node within the DOM-structure of |
---|
| 378 | * the HTML-site |
---|
[1020] | 379 | */ |
---|
| 380 | function addEventHandlingWithJQuery(node, parentPath) { |
---|
| 381 | var nodePath = getNodePath(node, parentPath); |
---|
| 382 | var tagName = getTagName(node); |
---|
| 383 | var action; |
---|
| 384 | var i; |
---|
| 385 | var k; |
---|
| 386 | |
---|
| 387 | for (i = 0; i < autoquestActionConfig.length; i++) { |
---|
| 388 | if (tagName === autoquestActionConfig[i].tag.toLowerCase()) { |
---|
| 389 | for (k = 0; k < autoquestActionConfig[i].actions.length; k++) { |
---|
| 390 | action = autoquestActionConfig[i].actions[k]; |
---|
| 391 | if (jQuery(node).attr(action)) { |
---|
| 392 | // if there is an event handling attribute although jquery is present |
---|
| 393 | // edit this attribute accordingly |
---|
| 394 | adaptEventHandlingAttribute(node, nodePath, action); |
---|
| 395 | } |
---|
| 396 | else { |
---|
[1073] | 397 | registerEventHandler(node, nodePath, action); |
---|
[1020] | 398 | } |
---|
| 399 | } |
---|
| 400 | } |
---|
| 401 | } |
---|
| 402 | } |
---|
| 403 | |
---|
| 404 | /** |
---|
[1022] | 405 | * adapts the event handling attributed provided by the action parameter so that it calls |
---|
[1073] | 406 | * the {@link #handleEvent(node, action, path, event)} function in the case the event occurs. |
---|
[1022] | 407 | * Either the method creates an appropriate onxxx attribute on the node if there is none, or it |
---|
| 408 | * adds a call to the function as first thing called by the onxxx attribute. |
---|
| 409 | * |
---|
| 410 | * @param node the node of the DOM structure that shall be equipped with event handling |
---|
[1073] | 411 | * @param nodePath the path to the node within the DOM-structure of the HTML-site |
---|
[1022] | 412 | * @param action the event for which event handling shall be enabled |
---|
[1020] | 413 | */ |
---|
| 414 | function adaptEventHandlingAttribute(node, nodePath, action) { |
---|
| 415 | var value = "handleEvent(this, '" + action + "', '" + nodePath + "', event);"; |
---|
| 416 | var oldValue; |
---|
| 417 | |
---|
| 418 | if (!node.getAttribute(action)) { |
---|
| 419 | node.setAttribute(action, value); |
---|
| 420 | } |
---|
| 421 | else { |
---|
| 422 | oldValue = node.getAttribute(action); |
---|
| 423 | if (oldValue.indexOf(value) < 0) { |
---|
| 424 | node.setAttribute(action, value + ' ' + oldValue); |
---|
| 425 | } |
---|
| 426 | } |
---|
| 427 | } |
---|
| 428 | |
---|
| 429 | /** |
---|
[1073] | 430 | * registers an event handler using jQuery for the provided action on the given object so that it |
---|
| 431 | * calls the {@link #handleJQueryEvent(event)} function in the case the event occurs. |
---|
| 432 | * |
---|
| 433 | * @param node the node of the DOM structure that shall be equipped with event handling |
---|
| 434 | * @param nodePath the path to the node within the DOM-structure of the HTML-site |
---|
| 435 | * @param action the event for which event handling shall be enabled |
---|
| 436 | */ |
---|
| 437 | function registerEventHandler(node, nodePath, action) { |
---|
| 438 | var parameters = { action : action, path : nodePath}; |
---|
| 439 | if (jQuery(node).on) { |
---|
| 440 | jQuery(node).on(action.substring(2), parameters, handleJQueryEvent); |
---|
| 441 | } |
---|
| 442 | else { |
---|
| 443 | jQuery(node).bind(action.substring(2), parameters, handleJQueryEvent); |
---|
| 444 | } |
---|
| 445 | } |
---|
| 446 | |
---|
| 447 | /** |
---|
| 448 | * adds default event handling functionality for receiving load, unload, and other document |
---|
| 449 | * relevant events. The registration for events is done depending on the availability of jQuery. |
---|
| 450 | * If jQuery is available and must therefore be used, then the registration is done on the window |
---|
| 451 | * object. Otherwise, the appropriate attributes of the document's body tag are changed |
---|
| 452 | */ |
---|
| 453 | function addDefaultEventHandling() { |
---|
| 454 | var body; |
---|
| 455 | |
---|
| 456 | if (typeof jQuery === 'undefined') { |
---|
| 457 | body = document.getElementsByTagName("body").item(0); |
---|
| 458 | adaptEventHandlingAttribute(body, "/html[0]/body[0]", "onbeforeunload"); |
---|
| 459 | adaptEventHandlingAttribute(body, "/html[0]/body[0]", "onload"); |
---|
| 460 | adaptEventHandlingAttribute(body, "/html[0]/body[0]", "onunload"); |
---|
| 461 | //adaptEventHandlingAttribute(body, "/html[0]/body[0]", "onerror"); |
---|
| 462 | } |
---|
| 463 | else { |
---|
| 464 | registerEventHandler(window, "/html[0]/body[0]", "onbeforeunload"); |
---|
| 465 | registerEventHandler(window, "/html[0]/body[0]", "onload"); |
---|
| 466 | registerEventHandler(window, "/html[0]/body[0]", "onunload"); |
---|
| 467 | //registerEventHandler(body, "/html[0]/body[0]", "onerror"); |
---|
| 468 | } |
---|
| 469 | } |
---|
| 470 | |
---|
| 471 | /** |
---|
[869] | 472 | * generates a path through the DOM-structure of the HTML-site depending on a node and the path |
---|
| 473 | * to its parent node. The result is the parent path plus a path element for the provided node. |
---|
[944] | 474 | * The first part of the path element generated for the node is the tag name returned by |
---|
| 475 | * {@link #getTagName(node)}. If the node has an id, it becomes the second part of the path |
---|
| 476 | * element. If the node does not have an id, the method calculates the index of the node within |
---|
| 477 | * all children of the same type within the parent node. This index becomes then the second part |
---|
| 478 | * of the path element generated for the node. |
---|
[858] | 479 | * |
---|
[869] | 480 | * @param node the node of the DOM structure for which the path shall be created |
---|
| 481 | * @param parentPath the path to the parent node of the provided node |
---|
| 482 | * |
---|
| 483 | * @returns a path in the DOM-structure of the HTML-site including the parent path an a path |
---|
| 484 | * element for the provided node |
---|
[858] | 485 | */ |
---|
| 486 | function getNodePath(node, parentPath) { |
---|
[1020] | 487 | var nodePath = parentPath + "/" + getTagName(node); |
---|
[858] | 488 | |
---|
| 489 | if ((node.id) && (node.id !== "")) { |
---|
[1082] | 490 | nodePath += "(htmlId=" + node.id + ")"; |
---|
[858] | 491 | } |
---|
| 492 | else { |
---|
[1020] | 493 | nodePath += "[" + getNodeIndex(node) + "]"; |
---|
[858] | 494 | } |
---|
| 495 | |
---|
| 496 | return nodePath; |
---|
| 497 | } |
---|
| 498 | |
---|
| 499 | /** |
---|
[1023] | 500 | * called to handle events caused by the jQuery event handling mechanism. Forwards the event to |
---|
| 501 | * {@link #handleEvent(node, eventName, nodePath, event)} |
---|
| 502 | * |
---|
| 503 | * @param the event to be handled |
---|
[1020] | 504 | */ |
---|
| 505 | function handleJQueryEvent(event) { |
---|
| 506 | handleEvent(this, event.data.action, event.data.path, event); |
---|
| 507 | } |
---|
| 508 | |
---|
| 509 | /** |
---|
[869] | 510 | * handles an event that happened on a node. This method is called by the event handling attributes |
---|
| 511 | * of the nodes. These attributes are generated by the |
---|
| 512 | * {@link #addEventHandlingAttributes(node,parentPath)} function. It creates a new Event object and |
---|
[944] | 513 | * adds it to the list of <code>autoquestRecordedEvents</code>. If this list achieves the maximum |
---|
[879] | 514 | * <code>autoquestPackageSize</code> the events in the list are sent to the server asynchronously |
---|
| 515 | * through calling {@link #sendRequest()}. |
---|
[858] | 516 | * |
---|
[944] | 517 | * @param node the node that fired the event |
---|
[869] | 518 | * @param eventName the name of the event, e.g. onscroll |
---|
| 519 | * @param nodePath the path to the node in the HTML DOM on which the event occurred |
---|
| 520 | * @param event the HTML event that occured |
---|
[858] | 521 | */ |
---|
[944] | 522 | function handleEvent(node, eventName, nodePath, event) { |
---|
| 523 | var eventType; |
---|
| 524 | var eventObj = null; |
---|
| 525 | var tagName; |
---|
| 526 | |
---|
[879] | 527 | if (!autoquestDestination) { |
---|
| 528 | // do nothing if we have no destination to send data to |
---|
| 529 | return; |
---|
| 530 | } |
---|
| 531 | |
---|
[944] | 532 | log("handling event " + eventName + " on " + node); |
---|
[858] | 533 | |
---|
[944] | 534 | eventType = eventName.toLowerCase(); |
---|
| 535 | |
---|
| 536 | if (autoquestRecordedEvents.length > 0) { |
---|
| 537 | eventObj = autoquestRecordedEvents[autoquestRecordedEvents.length - 1]; |
---|
| 538 | |
---|
| 539 | // check if an event showed up several times either for the same or for a parent GUI element |
---|
| 540 | if ((eventObj.type === eventName) && (eventObj.nodePath.indexOf(nodePath) === 0)) { |
---|
| 541 | // the event is of the same type. |
---|
| 542 | if (eventObj.nodePath.length > nodePath.length) { |
---|
| 543 | // the same event showed up for the parent GUI element. This must not be handled. |
---|
| 544 | // So ignore it |
---|
| 545 | log("discarding event " + eventName + " on " + node + |
---|
| 546 | " as it is already handled by a child"); |
---|
| 547 | return; |
---|
| 548 | } |
---|
| 549 | else if (eventName !== "onscroll") { |
---|
| 550 | // we have the same event on the same element. If it is an onscroll, we should |
---|
| 551 | // reuse it. But it is not an onscroll. So we ignore the existing event. |
---|
| 552 | eventObj = null; |
---|
| 553 | } |
---|
| 554 | } |
---|
| 555 | else { |
---|
| 556 | // the event is not of an equal type as the previous one. So we will not reuse it |
---|
| 557 | eventObj = null; |
---|
| 558 | } |
---|
| 559 | } |
---|
[858] | 560 | |
---|
[944] | 561 | if (!eventObj) { |
---|
| 562 | // create a new event and add it to the list |
---|
[858] | 563 | eventObj = new Event(eventType, nodePath); |
---|
[944] | 564 | log("storing event " + eventName); |
---|
| 565 | autoquestRecordedEvents.push(eventObj); |
---|
[858] | 566 | } |
---|
[944] | 567 | |
---|
| 568 | // now add further event parameters |
---|
[858] | 569 | if ((eventType === "onclick") || (eventType === "ondblclick")) { |
---|
| 570 | eventObj.setClickCoordinates(getEventCoordinates(event)); |
---|
| 571 | } |
---|
| 572 | |
---|
[944] | 573 | tagName = getTagName(node); |
---|
| 574 | |
---|
| 575 | if ("input_password" !== tagName) { |
---|
| 576 | if ((eventType === "onkeypress") || |
---|
| 577 | (eventType === "onkeydown") || |
---|
| 578 | (eventType === "onkeyup")) |
---|
| 579 | { |
---|
| 580 | eventObj.setKey(event.keyCode); |
---|
| 581 | } |
---|
[1020] | 582 | else if (eventType === "onchange") { |
---|
[944] | 583 | if ((tagName.indexOf("input") === 0) || |
---|
| 584 | (tagName === "textarea") || |
---|
| 585 | (tagName === "keygen")) |
---|
| 586 | { |
---|
| 587 | eventObj.setSelectedValue(node.value); |
---|
| 588 | } |
---|
| 589 | else if (tagName === "select") { |
---|
| 590 | eventObj.setSelectedValue(node.options.item(node.options.selectedIndex)); |
---|
| 591 | } |
---|
| 592 | } |
---|
[858] | 593 | } |
---|
| 594 | |
---|
| 595 | if (eventType === "onscroll") { |
---|
[944] | 596 | eventObj.setScrollPosition(getScrollCoordinates(node)); |
---|
[858] | 597 | } |
---|
| 598 | |
---|
[879] | 599 | if (autoquestRecordedEvents.length >= autoquestPackageSize) { |
---|
| 600 | log("initiating sending events"); |
---|
[875] | 601 | setTimeout(sendRequest, 100); |
---|
[858] | 602 | } |
---|
[999] | 603 | else if ((eventType === "onunload") || (eventType === "onbeforeunload")) { |
---|
[879] | 604 | log("initiating sending events"); |
---|
| 605 | sendRequest(); |
---|
| 606 | } |
---|
[858] | 607 | |
---|
| 608 | } |
---|
| 609 | |
---|
| 610 | /** |
---|
[944] | 611 | * determines a tag name of a node. If the node is an input element, the tag name includes the |
---|
| 612 | * type of element. Otherwise the method simply returns the tag name. |
---|
| 613 | * |
---|
| 614 | * @param node the node for which the name must be determined |
---|
| 615 | * |
---|
| 616 | * @return the name as described |
---|
| 617 | */ |
---|
| 618 | function getTagName(node) { |
---|
| 619 | var tagName = null; |
---|
| 620 | |
---|
| 621 | if (node.tagName) { |
---|
| 622 | tagName = node.tagName.toLowerCase(); |
---|
| 623 | if ("input" === tagName) { |
---|
| 624 | if (node.type && (node.type !== "")) { |
---|
| 625 | tagName += "_" + node.type; |
---|
| 626 | } |
---|
| 627 | else { |
---|
| 628 | tagName += "_text"; |
---|
| 629 | } |
---|
| 630 | } |
---|
| 631 | } |
---|
| 632 | |
---|
| 633 | return tagName; |
---|
| 634 | } |
---|
| 635 | |
---|
| 636 | /** |
---|
[1020] | 637 | * determines the index of a node considering all nodes of the parent having the same name. If the |
---|
| 638 | * node has no parent, the method returns index 0. |
---|
| 639 | * |
---|
| 640 | * @param node the node for which the index must be determined |
---|
| 641 | * |
---|
| 642 | * @return the index as described |
---|
| 643 | */ |
---|
| 644 | function getNodeIndex(node) { |
---|
| 645 | var i; |
---|
| 646 | var index = 0; |
---|
| 647 | |
---|
| 648 | if (node.parentNode) { |
---|
| 649 | for (i = 0; i < node.parentNode.childNodes.length; i++) { |
---|
| 650 | if (node.parentNode.childNodes[i].tagName === node.tagName) { |
---|
| 651 | // if === also returns true if the nodes are not identical but only equal, |
---|
| 652 | // this may fail. |
---|
| 653 | if (node.parentNode.childNodes[i] === node) { |
---|
| 654 | break; |
---|
| 655 | } |
---|
[1073] | 656 | index++; |
---|
[1020] | 657 | } |
---|
| 658 | } |
---|
| 659 | |
---|
| 660 | } |
---|
| 661 | |
---|
| 662 | return index; |
---|
| 663 | } |
---|
| 664 | |
---|
| 665 | /** |
---|
[869] | 666 | * sends the collected data to the server, named in the destination-variable. For this it generates |
---|
[879] | 667 | * a JSON formatted message and uses Ajax and the <code>autoquestDestination</code> to send it to |
---|
| 668 | * the server |
---|
[858] | 669 | */ |
---|
| 670 | function sendRequest() { |
---|
[1020] | 671 | var eventList = autoquestRecordedEvents; |
---|
[858] | 672 | var message; |
---|
| 673 | var clientId; |
---|
| 674 | var i = 0; |
---|
| 675 | var request; |
---|
| 676 | |
---|
[1020] | 677 | if (eventList.length > 1) { |
---|
[879] | 678 | log("creating message"); |
---|
[858] | 679 | |
---|
[944] | 680 | // put the last event into the new list to allow for checks for reoccurence of the same |
---|
| 681 | // event |
---|
| 682 | autoquestRecordedEvents = [ eventList.pop() ]; |
---|
| 683 | |
---|
[858] | 684 | message = "{\"message\":{\"clientInfos\":{"; |
---|
| 685 | |
---|
| 686 | log("reading client id"); |
---|
[881] | 687 | clientId = getClientId(); |
---|
[858] | 688 | if ((clientId) && (clientId !== "")) { |
---|
| 689 | message += "\"clientId\":\"" + clientId + "\","; |
---|
| 690 | } |
---|
| 691 | |
---|
| 692 | log("adding other infos"); |
---|
| 693 | message += "\"userAgent\":\"" + navigator.userAgent + "\","; |
---|
| 694 | message += "\"title\":\"" + document.title + "\","; |
---|
| 695 | message += "\"url\":\"" + document.URL + "\"},"; |
---|
| 696 | |
---|
[1020] | 697 | message += "\"guiModel\":" + autoquestGUIModel + ","; |
---|
[858] | 698 | |
---|
| 699 | message += "\"events\":["; |
---|
| 700 | |
---|
| 701 | for (i = 0; i < eventList.length; i++) { |
---|
| 702 | if (i > 0) { |
---|
| 703 | message += ","; |
---|
| 704 | } |
---|
| 705 | message += eventList[i].toJSON(); |
---|
| 706 | } |
---|
| 707 | |
---|
| 708 | message += "]}}"; |
---|
| 709 | |
---|
| 710 | request = null; |
---|
| 711 | |
---|
| 712 | // Mozilla |
---|
| 713 | if (window.XMLHttpRequest) { |
---|
| 714 | request = new XMLHttpRequest(); |
---|
| 715 | } |
---|
| 716 | // IE |
---|
| 717 | else if (window.ActiveXObject) { |
---|
| 718 | request = new ActiveXObject("Microsoft.XMLHTTP"); |
---|
| 719 | } |
---|
| 720 | |
---|
[881] | 721 | request.open("POST", autoquestDestination, false); |
---|
| 722 | request.setRequestHeader("Content-Type", "application/json"); |
---|
[858] | 723 | |
---|
| 724 | log("sending " + message); |
---|
| 725 | request.send(message); |
---|
| 726 | } |
---|
| 727 | } |
---|
| 728 | |
---|
| 729 | /** |
---|
[944] | 730 | * determines the scroll coordinates of the scrolled element |
---|
| 731 | * |
---|
| 732 | * @param node the element that was scrolled |
---|
| 733 | * |
---|
| 734 | * @returns the coordinates of the scrolling as an array with x and y coordinate |
---|
| 735 | */ |
---|
| 736 | function getScrollCoordinates(node) { |
---|
| 737 | if (node.scrollLeft || node.scrollTop) { |
---|
| 738 | return [node.scrollLeft, node.scrollTop]; |
---|
| 739 | } |
---|
| 740 | else if ((node === window) && window.pageYOffset) { |
---|
| 741 | return [window.pageXOffset, window.pageYOffset]; |
---|
| 742 | } |
---|
| 743 | else if ((node == document) || (node == document.body) || (node == document.documentElement)) { |
---|
| 744 | if (document.body && (document.body.scrollLeft || document.body.scrollTop)) { |
---|
| 745 | return [document.body.scrollLeft, document.body.scrollTop]; |
---|
| 746 | } |
---|
| 747 | else if (document.documentElement && |
---|
| 748 | (document.documentElement.scrollLeft || document.documentElement.scrollTop)) |
---|
| 749 | { |
---|
| 750 | return [document.documentElement.scrollLeft, document.documentElement.scrollTop]; |
---|
| 751 | } |
---|
| 752 | } |
---|
| 753 | |
---|
| 754 | return [-1, -1]; |
---|
| 755 | } |
---|
| 756 | |
---|
| 757 | /** |
---|
[869] | 758 | * determines the coordinates of an onclick or ondblclick event. If the coordinates to not come |
---|
| 759 | * with the provided event, they are determined based on the surrounding object |
---|
| 760 | * |
---|
| 761 | * @param event the event to extract the coordinates of |
---|
| 762 | * |
---|
| 763 | * @returns the coordinates of the event as an array with x and y coordinate |
---|
[858] | 764 | */ |
---|
| 765 | function getEventCoordinates(event) { |
---|
| 766 | if (event.layerX) { |
---|
| 767 | return [event.layerX, event.layerY]; |
---|
| 768 | } |
---|
| 769 | else if (event.offsetX) { |
---|
| 770 | return [event.offsetX, event.offsetY]; |
---|
| 771 | } |
---|
| 772 | |
---|
| 773 | var obj = event.target || event.srcElement; |
---|
| 774 | var objOffset = getPageOffset(obj); |
---|
| 775 | |
---|
| 776 | return [(event.clientX - objOffset[0]), (event.clientY - objOffset[1])]; |
---|
| 777 | } |
---|
| 778 | |
---|
| 779 | /** |
---|
| 780 | * determines the page offset of an object using the parent objects offset |
---|
| 781 | */ |
---|
| 782 | function getPageOffset(object) { |
---|
| 783 | var top = 0; |
---|
| 784 | var left = 0; |
---|
| 785 | var obj = object; |
---|
| 786 | |
---|
| 787 | while (obj.offsetParent) { |
---|
| 788 | left += obj.offsetLeft; |
---|
| 789 | top += obj.offsetTop; |
---|
| 790 | obj = obj.offsetParent; |
---|
| 791 | } |
---|
| 792 | |
---|
| 793 | return [left, top]; |
---|
| 794 | } |
---|
| 795 | |
---|
| 796 | /** |
---|
[881] | 797 | * generates a client id based on several information retrieved from the environment. The client |
---|
| 798 | * id is not always unique |
---|
[858] | 799 | * |
---|
[881] | 800 | * @returns the client id |
---|
[858] | 801 | */ |
---|
[881] | 802 | function getClientId() { |
---|
| 803 | var clientIdStr; |
---|
| 804 | var clientId; |
---|
| 805 | var i = 0; |
---|
[858] | 806 | |
---|
[881] | 807 | if (!autoquestClientId) { |
---|
| 808 | // create something like a more or less unique checksum. |
---|
| 809 | clientIdStr = |
---|
| 810 | navigator.appCodeName + navigator.appName + navigator.appVersion + |
---|
| 811 | navigator.cookieEnabled + navigator.language + navigator.platform + |
---|
| 812 | navigator.userAgent + navigator.javaEnabled() + window.location.protocol + |
---|
| 813 | window.location.host + new Date().getTimezoneOffset(); |
---|
[858] | 814 | |
---|
[881] | 815 | clientId = clientIdStr.length; |
---|
| 816 | |
---|
| 817 | for (i = 0; i < clientIdStr.length; i++) { |
---|
| 818 | clientId += clientIdStr.charCodeAt(i); |
---|
| 819 | } |
---|
[858] | 820 | |
---|
[881] | 821 | autoquestClientId = clientId; |
---|
[858] | 822 | } |
---|
| 823 | |
---|
[881] | 824 | return autoquestClientId; |
---|
[858] | 825 | } |
---|
| 826 | |
---|
| 827 | /** |
---|
[869] | 828 | * performs a simple logging by adding a specific div to the HTML |
---|
| 829 | * |
---|
| 830 | * @param text the text to be logged |
---|
[858] | 831 | */ |
---|
| 832 | function log(text) { |
---|
[879] | 833 | if (autoquestDoLog) { |
---|
[858] | 834 | var loggingInfo = document.getElementById("loggingInfoParagraph"); |
---|
| 835 | |
---|
| 836 | if (!loggingInfo) { |
---|
| 837 | var div = document.createElement("div"); |
---|
| 838 | div.setAttribute("style", "z-index:1000000; background-color:#afa; " + |
---|
[1020] | 839 | "border:1px black solid; position:absolute; top:10px; right:10px; " + |
---|
| 840 | "width:350px; height:auto; font-size:8pt; font-family:Helvetica"); |
---|
[858] | 841 | |
---|
| 842 | loggingInfo = document.createElement("div"); |
---|
| 843 | loggingInfo.id = "loggingInfoParagraph"; |
---|
| 844 | div.appendChild(loggingInfo); |
---|
| 845 | |
---|
| 846 | var body = document.getElementsByTagName("body")[0]; |
---|
| 847 | if (!body) { |
---|
| 848 | alert("could not enable logging"); |
---|
| 849 | } |
---|
| 850 | else { |
---|
| 851 | body.appendChild(div); |
---|
| 852 | } |
---|
| 853 | } |
---|
| 854 | |
---|
| 855 | loggingInfo.appendChild(document.createTextNode(text)); |
---|
| 856 | loggingInfo.appendChild(document.createElement("br")); |
---|
| 857 | } |
---|
| 858 | } |
---|
| 859 | |
---|
[869] | 860 | /** |
---|
| 861 | * this class represents a single event |
---|
| 862 | * |
---|
| 863 | * @param type the type of the event |
---|
| 864 | * @param nodePath the path through the HTML DOM to the event target |
---|
| 865 | */ |
---|
[858] | 866 | function Event(type, nodePath) { |
---|
| 867 | this.type = type; |
---|
| 868 | this.nodePath = nodePath; |
---|
| 869 | this.time = new Date().getTime(); |
---|
| 870 | |
---|
| 871 | this.setClickCoordinates = function(coordinates) { |
---|
| 872 | this.clickCoordinates = coordinates; |
---|
| 873 | }; |
---|
| 874 | |
---|
| 875 | this.setKey = function(key) { |
---|
| 876 | this.key = key; |
---|
| 877 | }; |
---|
| 878 | |
---|
[944] | 879 | this.setSelectedValue = function(value) { |
---|
[999] | 880 | this.selectedValue = encodeText(value); |
---|
[944] | 881 | }; |
---|
| 882 | |
---|
[858] | 883 | this.setScrollPosition = function(scrollPosition) { |
---|
[944] | 884 | this.scrollPosition = scrollPosition; |
---|
[858] | 885 | }; |
---|
| 886 | |
---|
| 887 | this.toJSON = function() { |
---|
| 888 | var eventInJSON = |
---|
| 889 | "{\"path\":\"" + this.nodePath + "\",\"time\":" + this.time + ",\"eventType\":\"" + |
---|
| 890 | this.type + "\""; |
---|
| 891 | |
---|
| 892 | if ((this.clickCoordinates) && (!isNaN(this.clickCoordinates[0]))) { |
---|
| 893 | eventInJSON += ",\"coordinates\":[" + this.clickCoordinates + "]"; |
---|
| 894 | } |
---|
| 895 | |
---|
| 896 | if (this.key) { |
---|
| 897 | eventInJSON += ",\"key\":" + this.key; |
---|
| 898 | } |
---|
| 899 | |
---|
[944] | 900 | if (this.selectedValue) { |
---|
| 901 | eventInJSON += ",\"selectedValue\":\"" + this.selectedValue + "\""; |
---|
[858] | 902 | } |
---|
[944] | 903 | |
---|
| 904 | if ("onscroll" === this.type) { |
---|
| 905 | eventInJSON += ",\"scrollPosition\":[" + this.scrollPosition + "]"; |
---|
| 906 | } |
---|
[858] | 907 | |
---|
| 908 | eventInJSON += "}"; |
---|
| 909 | |
---|
| 910 | return eventInJSON; |
---|
| 911 | }; |
---|
[999] | 912 | |
---|
| 913 | function encodeText(text) { |
---|
| 914 | return text.replace(/\\/g, "\\\\").replace(/\"/g, "\\\""); |
---|
| 915 | }; |
---|
[858] | 916 | } |
---|