1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
function loadXMLDoc(filename)
{
if (window.ActiveXObject)
{
xhttp = new ActiveXObject("Msxml2.XMLHTTP");
}
else
{
xhttp = new XMLHttpRequest();
}
xhttp.open("GET", filename, false);
try {
xhttp.responseType = "msxml-document"
} catch(err) {} // Helping IE11
xhttp.send("");
return xhttp.responseXML;
}
function getParameterByName(name, url) {
if (!url) {
url = window.location.href;
}
name = name.replace(/[\[\]]/g, "\\$&");
var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)");
var results = regex.exec(url);
if (!results) {
return null;
}
if (!results[2]) {
return '';
}
return decodeURIComponent(results[2].replace(/\+/g, " "));
}
function displayResult(file, moduleName, language, system)
{
var xml = loadXMLDoc(file);
var xsl = loadXMLDoc('online_transform.xsl');
var xsltProcessor;
var resultDocument;
var bookmarkHTML;
var urlVars = getUrlVars(file);
var module = urlVars["DbPAR"];
moduleName = moduleName || module;
var language = urlVars["Language"];
var system = urlVars["System"];
var usedb = urlVars["UseDB"];
document.getElementById("DisplayArea").innerHTML= null;
document.getElementById("BottomLeft").innerHTML= null;
document.getElementById("TopRight").innerHTML= null;
if (window.ActiveXObject || xhttp.responseType == "msxml-document") {
// code for IE
ex = xml.transformNode(xsl);
document.getElementById("DisplayArea").innerHTML = ex;
}
else if (document.implementation && document.implementation.createDocument) {
// code for Chrome, Firefox, Opera, etc.
xsltProcessor = new XSLTProcessor();
if (module){xsltProcessor.setParameter(null, "appl", module);}
if (language){xsltProcessor.setParameter(null, "Language", language);}
if (system){xsltProcessor.setParameter(null, "System", system);}
$(document).on('click', '#BottomLeft a, #DisplayArea a', function(e) {
e.preventDefault();
$('#search-bar').val('');
var xml = loadXMLDoc($(this).attr('href'));
var resultDocument = xsltProcessor.transformToFragment(xml, document);
$("#DisplayArea").html($(resultDocument).find('#DisplayArea').html());
$("#TopRight").html('<p class="bug">Contents displayed is: '+$(this).attr('href')+'</p>');
return false;
});
xsltProcessor.importStylesheet(xsl);
resultDocument = xsltProcessor.transformToFragment(xml, document);
$("#DisplayArea").html($(resultDocument).find('#DisplayArea').html());
// Handle bookmar panel
$("#BottomLeft").load('bookmark_'+moduleName+'.html');
$("#TopRight").html('<p class="bug">Contents displayed is: '+$(this).attr('href')+'</p>');
}
}
var debouncer = null;
$(document).ready(function() {
$('#search-bar').keyup(function() {
if(debouncer) {
clearTimeout(debouncer);
}
debouncer = setTimeout(function(){
$("#BottomLeft ul li" ).show();
if($('#search-bar').val()) {
$("#BottomLeft ul a:not(:contains('" + $('#search-bar').val() + "'))" ).parent().hide();
}
}, 500);
});
});
//http://papermashup.com/read-url-get-variables-withjavascript/
function getUrlVars(file) {
var vars = {};
var parts = file.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m,key,value) {vars[key] = value;});
//var parts = window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m,key,value) {vars[key] = value;});
return vars;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
|