1 |
5509
|
leinfelder
|
<%@ page language="java"%>
|
2 |
|
|
<%
|
3 |
|
|
/**
|
4 |
|
|
*
|
5 |
|
|
* '$RCSfile$'
|
6 |
|
|
* Copyright: 2008 Regents of the University of California and the
|
7 |
|
|
* National Center for Ecological Analysis and Synthesis
|
8 |
|
|
* '$Author$'
|
9 |
|
|
* '$Date$'
|
10 |
|
|
* '$Revision$'
|
11 |
|
|
*
|
12 |
|
|
* This program is free software; you can redistribute it and/or modify
|
13 |
|
|
* it under the terms of the GNU General Public License as published by
|
14 |
|
|
* the Free Software Foundation; either version 2 of the License, or
|
15 |
|
|
* (at your option) any later version.
|
16 |
|
|
*
|
17 |
|
|
* This program is distributed in the hope that it will be useful,
|
18 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
19 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
20 |
|
|
* GNU General Public License for more details.
|
21 |
|
|
|
22 |
|
|
* You should have received a copy of the GNU General Public License
|
23 |
|
|
* along with this program; if not, write to the Free Software
|
24 |
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
25 |
|
|
*/
|
26 |
5385
|
leinfelder
|
%>
|
27 |
5632
|
leinfelder
|
|
28 |
5509
|
leinfelder
|
<%@ include file="../../common/common-settings.jsp"%>
|
29 |
|
|
<%@ include file="../../common/configure-check.jsp"%>
|
30 |
5604
|
leinfelder
|
|
31 |
5385
|
leinfelder
|
<html>
|
32 |
|
|
<head>
|
33 |
5509
|
leinfelder
|
<title>Semantic search</title>
|
34 |
|
|
<link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/semtools/semtools.css">
|
35 |
|
|
<script type="text/javascript"
|
36 |
|
|
src="<%=STYLE_SKINS_URL%>/semtools/search.js"></script>
|
37 |
|
|
|
38 |
|
|
<script type="text/javascript">
|
39 |
|
|
// Set defaults for this installation
|
40 |
|
|
//var BP_SEARCH_SERVER = "http://oor-01.cim3.net";
|
41 |
|
|
//var BP_SITE = "Sandbox";
|
42 |
|
|
//var BP_ORG = "OOR";
|
43 |
|
|
</script>
|
44 |
5656
|
leinfelder
|
<!--
|
45 |
|
|
<script language="Javascript" type="text/JavaScript" src="<%=STYLE_SKINS_URL%>/semtools/bioportal/form_complete.js"></script>
|
46 |
|
|
-->
|
47 |
|
|
<script language="javascript" type="text/javascript" src="<%=STYLE_SKINS_URL%>/semtools/jsTree/_lib/jquery.js"></script>
|
48 |
|
|
<script language="javascript" type="text/javascript" src="<%=STYLE_SKINS_URL%>/semtools/jsTree/_lib/jquery.cookie.js"></script>
|
49 |
|
|
<script language="javascript" type="text/javascript" src="<%=STYLE_SKINS_URL%>/semtools/jsTree/jquery.jstree.js"></script>
|
50 |
5509
|
leinfelder
|
<script language="javascript" type="text/javascript" src="<%=STYLE_SKINS_URL%>/semtools/semtools.js"></script>
|
51 |
|
|
<script language="javascript" type="text/javascript" src="<%=STYLE_COMMON_URL%>/branding.js"></script>
|
52 |
|
|
|
53 |
5656
|
leinfelder
|
<script language="Javascript" type="text/JavaScript"><!--
|
54 |
5633
|
leinfelder
|
function populateActiveDomain(divId, class) {
|
55 |
5656
|
leinfelder
|
// collect the filtering values we have so far
|
56 |
|
|
// these are hidden input fields in the form for holding the selected values
|
57 |
|
|
var entity = $("#activeEntitiesValue").val() ? $("#activeEntitiesValue").val() : "";
|
58 |
|
|
var characteristic = $("#activeCharacteristicsValue").val() ? $("#activeCharacteristicsValue").val() : "";
|
59 |
|
|
var protocol = $("#activeProtocolsValue").val() ? $("#activeProtocolsValue").val() : "";
|
60 |
|
|
var measurement = $("#activeMeasurementsValue").val() ? $("#activeMeasurementsValue").val() : "";
|
61 |
5633
|
leinfelder
|
|
62 |
5656
|
leinfelder
|
// TODO: remember the selected value for this when filtering by active domain
|
63 |
|
|
var selectedNode = $("#" + divId).jstree("get_selected", $("#" + divId));
|
64 |
|
|
var selectedNodeId = $(selectedNode).attr("id");
|
65 |
|
|
//alert(divId + " selected node: " + selectedNodeId);
|
66 |
|
|
|
67 |
|
|
// load the tree for the given div, passing in the other filtered values
|
68 |
5633
|
leinfelder
|
$("#" + divId).load(
|
69 |
5656
|
leinfelder
|
"<%=SERVLET_URL%>",
|
70 |
|
|
{
|
71 |
|
|
'action': "getactivedomain",
|
72 |
|
|
'class': class,
|
73 |
|
|
'entity': entity,
|
74 |
|
|
'characteristic': characteristic,
|
75 |
|
|
'protocol': protocol,
|
76 |
|
|
'measurement': measurement
|
77 |
|
|
},
|
78 |
|
|
// call back function when loading finishes
|
79 |
|
|
function(response, status, xhr) {
|
80 |
|
|
//alert("callback for: " + divId + " selected node: " + selectedNodeId);
|
81 |
|
|
// error
|
82 |
|
|
if (status == "error") {
|
83 |
|
|
var msg = "Sorry but there was an error: ";
|
84 |
|
|
$("#error").html(msg + xhr.status + " " + xhr.statusText);
|
85 |
|
|
}
|
86 |
|
|
|
87 |
|
|
// make it a js tree
|
88 |
|
|
$(function () {
|
89 |
|
|
$("#" + divId)
|
90 |
5660
|
leinfelder
|
//bind calls here
|
91 |
5656
|
leinfelder
|
.jstree({
|
92 |
|
|
"ui" : {
|
93 |
|
|
"select_limit" : 1,
|
94 |
|
|
"select_multiple_modifier" : "alt",
|
95 |
|
|
"selected_parent_close" : "select_parent"//,
|
96 |
|
|
//"initially_select" : [ selectedNodeId ]
|
97 |
5659
|
leinfelder
|
},
|
98 |
|
|
"themes" : {
|
99 |
|
|
"theme" : "default",
|
100 |
|
|
"dots" : true,
|
101 |
|
|
"icons" : false
|
102 |
|
|
},
|
103 |
5656
|
leinfelder
|
//"core" : { "initially_open" : [ selectedNodeId ] },
|
104 |
5658
|
leinfelder
|
"search" : { "case_insensitive" : true },
|
105 |
|
|
"plugins" : [ "themes", "html_data", "ui", "cookies", "search" ]
|
106 |
5656
|
leinfelder
|
});
|
107 |
|
|
});
|
108 |
|
|
|
109 |
5658
|
leinfelder
|
// enable searching on it
|
110 |
|
|
$("#" + divId + "Search").keyup(
|
111 |
|
|
function () {
|
112 |
|
|
if ($("#" + divId + "Search").val().length >= 3) {
|
113 |
|
|
$("#" + divId).jstree("search", $("#" + divId + "Search").val());
|
114 |
5663
|
leinfelder
|
// now prune
|
115 |
5664
|
leinfelder
|
prune(divId, "jstree-search");
|
116 |
5658
|
leinfelder
|
}
|
117 |
|
|
});
|
118 |
5664
|
leinfelder
|
|
119 |
|
|
// toggle the active domain prune
|
120 |
|
|
$("#" + divId + "Only").click(
|
121 |
|
|
function () {
|
122 |
|
|
if ($("#" + divId + "Only").is(":checked")) {
|
123 |
|
|
// prune to active
|
124 |
|
|
prune(divId, "bold");
|
125 |
|
|
} else {
|
126 |
|
|
// reset
|
127 |
|
|
prune(divId, null);
|
128 |
|
|
}
|
129 |
|
|
});
|
130 |
5658
|
leinfelder
|
|
131 |
5656
|
leinfelder
|
// TODO: try to select the original node after refresh with active domain
|
132 |
|
|
//$("#" + divId).jstree("open_node", $(selectedNode));
|
133 |
|
|
//$("#" + divId).jstree("select_node", $(selectedNode));
|
134 |
|
|
});
|
135 |
5633
|
leinfelder
|
}
|
136 |
5664
|
leinfelder
|
/**
|
137 |
|
|
* Prunes the given tree to inlcude the given matched class
|
138 |
|
|
**/
|
139 |
|
|
function prune(divId, matchClass) {
|
140 |
5663
|
leinfelder
|
|
141 |
|
|
// show all nodes (reset)
|
142 |
|
|
$("#" + divId).find("li").show();
|
143 |
|
|
|
144 |
5664
|
leinfelder
|
// done if we don't have any thing to prune
|
145 |
|
|
if (!matchClass) {
|
146 |
|
|
return;
|
147 |
|
|
}
|
148 |
|
|
|
149 |
5663
|
leinfelder
|
// get all non-matched anchor tags
|
150 |
5664
|
leinfelder
|
var nonmatches = $("#" + divId).find("a").not("." + matchClass);
|
151 |
5663
|
leinfelder
|
|
152 |
|
|
// get their parent nodes
|
153 |
|
|
nonmatches = $(nonmatches).parents("li");
|
154 |
|
|
|
155 |
|
|
// are there any matches under each parent node?
|
156 |
|
|
$(nonmatches).each(
|
157 |
|
|
function(index) {
|
158 |
|
|
// do any chidren match?
|
159 |
5664
|
leinfelder
|
var childMatches = $(this).find("a." + matchClass);
|
160 |
5663
|
leinfelder
|
if (childMatches && childMatches.length > 0) {
|
161 |
|
|
return true;
|
162 |
|
|
}
|
163 |
|
|
// parent matches?
|
164 |
5664
|
leinfelder
|
var parentMatches = $(this).parents("li").children("a." + matchClass);
|
165 |
5663
|
leinfelder
|
if (parentMatches && parentMatches.length > 0) {
|
166 |
|
|
return true;
|
167 |
|
|
}
|
168 |
|
|
// hide this node if no matches under it
|
169 |
|
|
$(this).hide();
|
170 |
|
|
});
|
171 |
|
|
}
|
172 |
5633
|
leinfelder
|
function initialize(source) {
|
173 |
5656
|
leinfelder
|
// we don't want to reload the source of the filtering request
|
174 |
|
|
// but we do want to reload the other trees for active domains
|
175 |
|
|
// we reload all of them if no source is given - first time the page loads
|
176 |
5633
|
leinfelder
|
if (source) {
|
177 |
5656
|
leinfelder
|
source = $(source).attr("id");
|
178 |
5633
|
leinfelder
|
}
|
179 |
|
|
if (!source) {
|
180 |
|
|
source = "";
|
181 |
|
|
}
|
182 |
|
|
if (source != 'activeEntities') {
|
183 |
|
|
populateActiveDomain('activeEntities', 'org.ecoinformatics.sms.annotation.Entity');
|
184 |
|
|
}
|
185 |
|
|
if (source != 'activeCharacteristics') {
|
186 |
|
|
populateActiveDomain('activeCharacteristics', 'org.ecoinformatics.sms.annotation.Characteristic');
|
187 |
|
|
}
|
188 |
|
|
if (source != 'activeProtocols') {
|
189 |
|
|
populateActiveDomain('activeProtocols', 'org.ecoinformatics.sms.annotation.Protocol');
|
190 |
|
|
}
|
191 |
|
|
if (source != 'activeMeasurements') {
|
192 |
|
|
populateActiveDomain('activeMeasurements', 'org.ecoinformatics.sms.annotation.Measurement');
|
193 |
|
|
}
|
194 |
|
|
}
|
195 |
5656
|
leinfelder
|
function select(item) {
|
196 |
5633
|
leinfelder
|
|
197 |
5656
|
leinfelder
|
// get the selected value, stored in the title attribute of the item <a> tag
|
198 |
|
|
var value = $(item).attr("title");
|
199 |
|
|
//alert("value: " + value);
|
200 |
|
|
|
201 |
|
|
// get the parent div so we know what kind of class it is meant to filter
|
202 |
|
|
// this is "the first parent of the class 'select'"
|
203 |
|
|
var parent = $(item).parents("div.select:first");
|
204 |
|
|
//alert("parent: " + parent);
|
205 |
|
|
|
206 |
|
|
// set the value for the hidden input value
|
207 |
|
|
// the input field of class "value" will hold it, this way we don't need to know the id
|
208 |
|
|
var input = $(parent).children("input.value");
|
209 |
|
|
$(input).val(value);
|
210 |
|
|
//alert("input: " + input);
|
211 |
5662
|
leinfelder
|
|
212 |
|
|
// set it in the search field
|
213 |
|
|
var treeInstance = $(item).parents("div.jstree:first");
|
214 |
|
|
var shortName = $(item).parent().attr("id");
|
215 |
|
|
$("#" + $(treeInstance).attr("id") + "Search").val(shortName)
|
216 |
5656
|
leinfelder
|
|
217 |
5665
|
leinfelder
|
// refresh the search results
|
218 |
|
|
doSearch($("#searchForm").get(0));
|
219 |
|
|
|
220 |
5656
|
leinfelder
|
// refresh the other trees for active domain after this filtering action
|
221 |
|
|
// TODO actually do the active domain filtering when selection is made
|
222 |
|
|
//initialize($(parent).children("div"));
|
223 |
|
|
}
|
224 |
5665
|
leinfelder
|
function doSearch(formObj) {
|
225 |
|
|
// set the hidden parameters based on the current state of the form
|
226 |
|
|
checkSearch(formObj);
|
227 |
|
|
|
228 |
|
|
//load the results
|
229 |
|
|
$("#searchResults").load(
|
230 |
|
|
"<%=SERVLET_URL%>" + " #content_wrapper",
|
231 |
|
|
$(formObj).serialize(),
|
232 |
|
|
// call back function when loading finishes
|
233 |
|
|
function(response, status, xhr) {
|
234 |
|
|
if (status == "error") {
|
235 |
|
|
var msg = "Sorry but there was an error performing the search: ";
|
236 |
|
|
$("#error").html(msg + xhr.status + " " + xhr.statusText);
|
237 |
|
|
}
|
238 |
|
|
});
|
239 |
|
|
|
240 |
|
|
return false;
|
241 |
|
|
|
242 |
|
|
}
|
243 |
5656
|
leinfelder
|
function donothing() {}
|
244 |
|
|
--></script>
|
245 |
|
|
|
246 |
5385
|
leinfelder
|
</head>
|
247 |
5633
|
leinfelder
|
<body onload="initialize()">
|
248 |
5509
|
leinfelder
|
<script language="javascript">
|
249 |
|
|
insertTemplateOpening("<%=CONTEXT_URL%>");
|
250 |
|
|
</script>
|
251 |
5385
|
leinfelder
|
|
252 |
5574
|
leinfelder
|
<div id="content_wrapper">
|
253 |
|
|
|
254 |
5533
|
leinfelder
|
<h2>Annotation-based search</h2>
|
255 |
5385
|
leinfelder
|
|
256 |
5633
|
leinfelder
|
<div id="error">
|
257 |
|
|
<!-- error messages here -->
|
258 |
|
|
</div>
|
259 |
|
|
|
260 |
5665
|
leinfelder
|
<form method="POST"
|
261 |
|
|
action="<%=SERVLET_URL%>"
|
262 |
|
|
target="_top"
|
263 |
|
|
id="searchForm"
|
264 |
|
|
name="searchForm"
|
265 |
|
|
onSubmit="return doSearch(this)">
|
266 |
5509
|
leinfelder
|
<input name="query" type="hidden" />
|
267 |
|
|
<input name="qformat" value="semtools" type="hidden" />
|
268 |
5665
|
leinfelder
|
<input name="includeHeader" value="false" type="hidden" />
|
269 |
5533
|
leinfelder
|
<input name="action" value="semquery" type="hidden" />
|
270 |
5509
|
leinfelder
|
|
271 |
5602
|
leinfelder
|
<table class="group group_border">
|
272 |
5509
|
leinfelder
|
<tr>
|
273 |
5632
|
leinfelder
|
<th colspan="3">
|
274 |
5602
|
leinfelder
|
<p>
|
275 |
|
|
Locate <b>data packages</b> that have been semantically annotated within the observation model by
|
276 |
|
|
selecting concepts from
|
277 |
|
|
<br/>
|
278 |
|
|
(a) existing semantic annotations
|
279 |
|
|
<br/>
|
280 |
|
|
(b) registered OBOE extension ontologies
|
281 |
|
|
</p>
|
282 |
|
|
</th>
|
283 |
5533
|
leinfelder
|
</tr>
|
284 |
5632
|
leinfelder
|
<!-- measurement -->
|
285 |
5533
|
leinfelder
|
<tr>
|
286 |
5632
|
leinfelder
|
<td colspan="3">
|
287 |
|
|
<table class="subGroup subGroup_border onehundred_percent">
|
288 |
|
|
<tr>
|
289 |
|
|
<th colspan="2">
|
290 |
|
|
Measurement
|
291 |
|
|
</th>
|
292 |
|
|
</tr>
|
293 |
|
|
<tr>
|
294 |
|
|
<td>a template that defines Entity, Characteristic, Standard, and/or Protocol</td>
|
295 |
|
|
</tr>
|
296 |
|
|
<tr>
|
297 |
|
|
<td>
|
298 |
5658
|
leinfelder
|
<input type="text" id="activeMeasurementsSearch" />
|
299 |
5664
|
leinfelder
|
Only active? <input type="checkbox" id="activeMeasurementsOnly" title="Show only active concepts"/>
|
300 |
5656
|
leinfelder
|
<div class="select">
|
301 |
5664
|
leinfelder
|
<div id="activeMeasurements" class="activeTree" style="width: 100%">
|
302 |
5656
|
leinfelder
|
<p>loading...</p>
|
303 |
|
|
</div>
|
304 |
|
|
<input type="hidden" class="value" name="activeMeasurementsValue" id="activeMeasurementsValue"/>
|
305 |
|
|
<input type="hidden" name="activeMeasurementsClass" id="activeMeasurementsClass" value="http://ecoinformatics.org/oboe/oboe.1.0/oboe-core.owl#Measurement"/>
|
306 |
|
|
</div>
|
307 |
5632
|
leinfelder
|
</td>
|
308 |
|
|
</tr>
|
309 |
|
|
</table>
|
310 |
|
|
</td>
|
311 |
|
|
</tr>
|
312 |
|
|
<tr>
|
313 |
5533
|
leinfelder
|
<td>
|
314 |
5602
|
leinfelder
|
<table class="subGroup subGroup_border">
|
315 |
|
|
<tr>
|
316 |
|
|
<th colspan="1">
|
317 |
|
|
Entity
|
318 |
|
|
</th>
|
319 |
|
|
</tr>
|
320 |
|
|
<tr>
|
321 |
|
|
<td>Find observations of</td>
|
322 |
|
|
</tr>
|
323 |
|
|
<tr>
|
324 |
|
|
<td>
|
325 |
5658
|
leinfelder
|
<input type="text" id="activeEntitiesSearch" />
|
326 |
5664
|
leinfelder
|
<input type="checkbox" id="activeEntitiesOnly" title="Show only active concepts" />
|
327 |
5656
|
leinfelder
|
<div class="select">
|
328 |
5664
|
leinfelder
|
<div id="activeEntities" class="activeTree">
|
329 |
5656
|
leinfelder
|
<p>loading...</p>
|
330 |
|
|
</div>
|
331 |
|
|
<input type="hidden" class="value" name="activeEntitiesValue" id="activeEntitiesValue"/>
|
332 |
|
|
<input type="hidden" name="activeEntitiesClass" id="activeEntitiesClass" value="http://ecoinformatics.org/oboe/oboe.1.0/oboe-core.owl#Entity"/>
|
333 |
|
|
</div>
|
334 |
5602
|
leinfelder
|
</td>
|
335 |
|
|
</tr>
|
336 |
|
|
</table>
|
337 |
5533
|
leinfelder
|
</td>
|
338 |
|
|
<td>
|
339 |
5602
|
leinfelder
|
<table class="subGroup subGroup_border">
|
340 |
|
|
<tr>
|
341 |
|
|
<th colspan="1">
|
342 |
|
|
Characteristic
|
343 |
|
|
</th>
|
344 |
|
|
</tr>
|
345 |
|
|
<tr>
|
346 |
5632
|
leinfelder
|
<td>with measurements of</td>
|
347 |
5602
|
leinfelder
|
</tr>
|
348 |
|
|
<tr>
|
349 |
|
|
<td>
|
350 |
5658
|
leinfelder
|
<input type="text" id="activeCharacteristicsSearch" />
|
351 |
5664
|
leinfelder
|
<input type="checkbox" id="activeCharacteristicsOnly" title="Show only active concepts" />
|
352 |
5656
|
leinfelder
|
<div class="select">
|
353 |
5664
|
leinfelder
|
<div id="activeCharacteristics" class="activeTree">
|
354 |
5656
|
leinfelder
|
<p>loading...</p>
|
355 |
|
|
</div>
|
356 |
|
|
<input type="hidden" class="value" name="activeCharacteristicsValue" id="activeCharacteristicsValue"/>
|
357 |
|
|
<input type="hidden" name="activeCharacteristicsClass" id="activeCharacteristicsClass" value="http://ecoinformatics.org/oboe/oboe.1.0/oboe-core.owl#Characteristic"/>
|
358 |
|
|
</div>
|
359 |
5602
|
leinfelder
|
</td>
|
360 |
|
|
</tr>
|
361 |
|
|
</table>
|
362 |
5533
|
leinfelder
|
</td>
|
363 |
|
|
<td>
|
364 |
5602
|
leinfelder
|
<table class="subGroup subGroup_border">
|
365 |
|
|
<tr>
|
366 |
|
|
<th colspan="1">
|
367 |
|
|
Protocol
|
368 |
|
|
</th>
|
369 |
|
|
</tr>
|
370 |
|
|
<tr>
|
371 |
5632
|
leinfelder
|
<td>using procedures outlined by</td>
|
372 |
5602
|
leinfelder
|
</tr>
|
373 |
|
|
<tr>
|
374 |
|
|
<td>
|
375 |
5658
|
leinfelder
|
<input type="text" id="activeProtocolsSearch" />
|
376 |
5664
|
leinfelder
|
<input type="checkbox" id="activeProtocolsOnly" title="Show only active concepts" />
|
377 |
5656
|
leinfelder
|
<div class="select">
|
378 |
5664
|
leinfelder
|
<div id="activeProtocols" class="activeTree">
|
379 |
5656
|
leinfelder
|
<p>loading...</p>
|
380 |
|
|
</div>
|
381 |
|
|
<input type="hidden" class="value" name="activeProtocolsValue" id="activeProtocolsValue" />
|
382 |
|
|
<input type="hidden" name="activeProtocolsClass" id="activeProtocolsClass" value="http://ecoinformatics.org/oboe/oboe.1.0/oboe-core.owl#Protocol"/>
|
383 |
|
|
</div>
|
384 |
5602
|
leinfelder
|
</td>
|
385 |
|
|
</tr>
|
386 |
|
|
</table>
|
387 |
5533
|
leinfelder
|
</td>
|
388 |
|
|
</tr>
|
389 |
|
|
<tr>
|
390 |
5632
|
leinfelder
|
<td colspan="3">Match All? <input type="checkbox" name="matchAll" checked="checked"/></td>
|
391 |
5509
|
leinfelder
|
</tr>
|
392 |
|
|
<tr>
|
393 |
5632
|
leinfelder
|
<td colspan="3">From same Observation? <input type="checkbox" name="strict"/></td>
|
394 |
5509
|
leinfelder
|
</tr>
|
395 |
|
|
<tr>
|
396 |
5633
|
leinfelder
|
<td colspan="3">
|
397 |
5665
|
leinfelder
|
<!-- input type="submit" value="Search"/ -->
|
398 |
5633
|
leinfelder
|
<input type="reset" value="Clear" onclick="$('#searchForm').get(0).reset(); initialize()"/>
|
399 |
|
|
</td>
|
400 |
5509
|
leinfelder
|
</tr>
|
401 |
5602
|
leinfelder
|
</table>
|
402 |
|
|
<!--
|
403 |
5509
|
leinfelder
|
<tr>
|
404 |
5602
|
leinfelder
|
<td>Entity: (SBC only)</td>
|
405 |
|
|
<td><input type="text" name="entity" class="bp_form_complete-1523-uri" size="100" /></td>
|
406 |
5509
|
leinfelder
|
</tr>
|
407 |
5602
|
leinfelder
|
-->
|
408 |
5509
|
leinfelder
|
</form>
|
409 |
|
|
|
410 |
5665
|
leinfelder
|
<div id="searchResults">
|
411 |
|
|
Search Results
|
412 |
|
|
</div>
|
413 |
|
|
|
414 |
5509
|
leinfelder
|
<!-- Included default search/login -->
|
415 |
|
|
<% if ( PropertyService.getProperty("spatial.runSpatialOption").equals("true") ) { %>
|
416 |
|
|
<script language="javascript">
|
417 |
|
|
insertMap("<%=CONTEXT_URL%>");
|
418 |
|
|
</script>
|
419 |
|
|
<br/>
|
420 |
|
|
<% } %>
|
421 |
|
|
|
422 |
|
|
<script language="javascript">
|
423 |
|
|
insertSearchBox("<%=CONTEXT_URL%>");
|
424 |
|
|
insertLoginBox("<%=CONTEXT_URL%>");
|
425 |
|
|
</script>
|
426 |
|
|
|
427 |
5574
|
leinfelder
|
</div>
|
428 |
|
|
|
429 |
5509
|
leinfelder
|
<script language="javascript">
|
430 |
|
|
insertTemplateClosing("<%=CONTEXT_URL%>");
|
431 |
|
|
</script>
|
432 |
|
|
|
433 |
5385
|
leinfelder
|
</body>
|
434 |
|
|
</html>
|