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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
|
/*
@licstart The following is the entire license notice for the
JavaScript code in this file.
Copyright (C) 1997-2017 by Dimitri van Heesch
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
@licend The above is the entire license notice
for the JavaScript code in this file
*/
function SearchBox(name, resultsPath, inFrame, label)
{
this.searchLabel = label;
this.DOMSearchField = function()
{ return document.getElementById("MSearchField"); }
this.DOMSearchBox = function()
{ return document.getElementById("MSearchBox"); }
this.OnSearchFieldFocus = function(isActive)
{
if (isActive)
{
this.DOMSearchBox().className = 'MSearchBoxActive';
var searchField = this.DOMSearchField();
if (searchField.value == this.searchLabel)
{
searchField.value = '';
}
}
else
{
this.DOMSearchBox().className = 'MSearchBoxInactive';
this.DOMSearchField().value = this.searchLabel;
}
}
}
function trim(s) {
return s?s.replace(/^\s\s*/, '').replace(/\s\s*$/, ''):'';
}
function getURLParameter(name) {
return decodeURIComponent((new RegExp('[?|&]'+name+
'='+'([^&;]+?)(&|#|;|$)').exec(location.search)
||[,""])[1].replace(/\+/g, '%20'))||null;
}
var entityMap = {
"&": "&",
"<": "<",
">": ">",
'"': '"',
"'": ''',
"/": '/'
};
function escapeHtml(s) {
return String(s).replace(/[&<>"'\/]/g, function (s) {
return entityMap[s];
});
}
function searchFor(query,page,count) {
$.getJSON(serverUrl+"?cb=?",
{
n:count,
p:page,
q:query
},
function(data) {
var results = $('#searchresults');
$('#MSearchField').val(query);
if (data.hits>0) {
if (data.hits==1) {
results.html('<p>'+searchResultsText[1]+'</p>');
} else {
results.html('<p>'+searchResultsText[2].replace(/\$num/,data.hits)+'</p>');
}
var r='<table>';
$.each(data.items, function(i,item){
var prefix = tagMap[item.tag];
if (prefix) prefix+='/'; else prefix='';
r+='<tr class="searchresult">'+
'<td align="right">'+(data.first+i+1)+'.</td>'+
'<td>'+escapeHtml(item.type)+' '+
'<a href="'+escapeHtml(prefix+item.url)+
'">'+escapeHtml(item.name)+'</a>';
if (item.type=="source") {
var l=item.url.match(/[1-9][0-9]*$/);
if (l) r+=' at line '+parseInt(l[0]);
}
r+='</td>';
for (var i=0;i<item.fragments.length;i++)
{
r+='<tr><td></td><td>'+item.fragments[i]+'</td></tr>';
}
r+='</tr>';
});
r+='</table>';
if (data.pages>1) // write multi page navigation bar
{
r+='<div class="searchpages">';
if (data.page>0)
{
r+='<span class="pages"><a href="javascript:searchFor(\''+escapeHtml(query)+'\','+(page-1).toString()+','+count.toString()+')">«</a></span> ';
}
var firstPage = data.page-5;
var lastPage = data.page+5;
if (firstPage<0)
{
lastPage-=firstPage;
firstPage=0;
}
if (lastPage>data.pages)
{
lastPage=data.pages;
}
for(var i=firstPage;i<lastPage;i++)
{
if (i==data.page)
{
r+='<span class="pages"><b>'+(i+1).toString()+'</b></span> ';
}
else
{
r+='<span class="pages"><a href="javascript:searchFor(\''+escapeHtml(query)+'\','+i.toString()+','+count.toString()+')">'+(i+1).toString()+'</a></span> ';
}
}
if (data.page+1<data.pages)
{
r+='<span class="pages"><a href="javascript:searchFor(\''+escapeHtml(query)+'\','+(page+1).toString()+','+count.toString()+')">»</a></span>';
}
r+='</div>';
}
results.append(r);
} else {
results.html('<p>'+searchResultsText[0]+'</p>');
}
});
}
/* @license-end */
|