Project

General

Profile

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
					}
115
				});
116
117 5656 leinfelder
			// TODO: try to select the original node after refresh with active domain
118
			//$("#" + divId).jstree("open_node", $(selectedNode));
119
			//$("#" + divId).jstree("select_node", $(selectedNode));
120
		});
121 5633 leinfelder
}
122
function initialize(source) {
123 5656 leinfelder
	// we don't want to reload the source of the filtering request
124
	// but we do want to reload the other trees for active domains
125
	// we reload all of them if no source is given - first time the page loads
126 5633 leinfelder
	if (source) {
127 5656 leinfelder
		source = $(source).attr("id");
128 5633 leinfelder
	}
129
	if (!source) {
130
		source = "";
131
	}
132
	if (source != 'activeEntities') {
133
		populateActiveDomain('activeEntities', 'org.ecoinformatics.sms.annotation.Entity');
134
	}
135
	if (source != 'activeCharacteristics') {
136
		populateActiveDomain('activeCharacteristics', 'org.ecoinformatics.sms.annotation.Characteristic');
137
	}
138
	if (source != 'activeProtocols') {
139
		populateActiveDomain('activeProtocols', 'org.ecoinformatics.sms.annotation.Protocol');
140
	}
141
	if (source != 'activeMeasurements') {
142
		populateActiveDomain('activeMeasurements', 'org.ecoinformatics.sms.annotation.Measurement');
143
	}
144
}
145 5656 leinfelder
function select(item) {
146 5633 leinfelder
147 5656 leinfelder
	// get the selected value, stored in the title attribute of the item <a> tag
148
	var value = $(item).attr("title");
149
	//alert("value: " + value);
150
151
	// get the parent div so we know what kind of class it is meant to filter
152
	// this is "the first parent of the class 'select'"
153
	var parent = $(item).parents("div.select:first");
154
	//alert("parent: " + parent);
155
156
	// set the value for the hidden input value
157
	// the input field of class "value" will hold it, this way we don't need to know the id
158
	var input = $(parent).children("input.value");
159
	$(input).val(value);
160
	//alert("input: " + input);
161
162
	// refresh the other trees for active domain after this filtering action
163
	// TODO actually do the active domain filtering when selection is made
164
	//initialize($(parent).children("div"));
165
}
166
function donothing() {}
167
--></script>
168
169 5385 leinfelder
</head>
170 5633 leinfelder
<body onload="initialize()">
171 5509 leinfelder
<script language="javascript">
172
	insertTemplateOpening("<%=CONTEXT_URL%>");
173
</script>
174 5385 leinfelder
175 5574 leinfelder
<div id="content_wrapper">
176
177 5533 leinfelder
<h2>Annotation-based search</h2>
178 5385 leinfelder
179 5633 leinfelder
<div id="error">
180
	<!-- error messages here -->
181
</div>
182
183 5509 leinfelder
<form method="POST" action="<%=SERVLET_URL%>" target="_top" id="searchForm" name="searchForm" onSubmit="return checkSearch(this)">
184
	<input name="query" type="hidden" />
185
	<input name="qformat" value="semtools" type="hidden" />
186 5533 leinfelder
	<input name="action" value="semquery" type="hidden" />
187 5509 leinfelder
188 5602 leinfelder
	<table class="group group_border">
189 5509 leinfelder
		<tr>
190 5632 leinfelder
			<th colspan="3">
191 5602 leinfelder
				<p>
192
					Locate <b>data packages</b> that have been semantically annotated within the observation model by
193
					selecting concepts from
194
					<br/>
195
					(a) existing semantic annotations
196
					<br/>
197
					(b) registered OBOE extension ontologies
198
				</p>
199
			</th>
200 5533 leinfelder
		</tr>
201 5632 leinfelder
		<!--  measurement -->
202 5533 leinfelder
		<tr>
203 5632 leinfelder
			<td colspan="3">
204
				<table class="subGroup subGroup_border onehundred_percent">
205
					<tr>
206
						<th colspan="2">
207
							Measurement
208
						</th>
209
					</tr>
210
					<tr>
211
						<td>a template that defines Entity, Characteristic, Standard, and/or Protocol</td>
212
					</tr>
213
					<tr>
214
						<td>
215 5658 leinfelder
							<input type="text" id="activeMeasurementsSearch" />
216 5656 leinfelder
							<div class="select">
217 5660 leinfelder
								<div id="activeMeasurements" style="width: 100%; height: 100px; overflow: auto">
218 5656 leinfelder
									<p>loading...</p>
219
								</div>
220
								<input type="hidden" class="value" name="activeMeasurementsValue" id="activeMeasurementsValue"/>
221
								<input type="hidden" name="activeMeasurementsClass" id="activeMeasurementsClass" value="http://ecoinformatics.org/oboe/oboe.1.0/oboe-core.owl#Measurement"/>
222
							</div>
223 5632 leinfelder
						</td>
224
					</tr>
225
				</table>
226
			</td>
227
		</tr>
228
		<tr>
229 5533 leinfelder
			<td>
230 5602 leinfelder
				<table class="subGroup subGroup_border">
231
					<tr>
232
						<th colspan="1">
233
							Entity
234
						</th>
235
					</tr>
236
					<tr>
237
						<td>Find observations of</td>
238
					</tr>
239
					<tr>
240
						<td>
241 5658 leinfelder
							<input type="text" id="activeEntitiesSearch" />
242 5656 leinfelder
							<div class="select">
243 5660 leinfelder
								<div id="activeEntities" style="width: 216px; height: 100px; overflow: auto">
244 5656 leinfelder
									<p>loading...</p>
245
								</div>
246
								<input type="hidden" class="value" name="activeEntitiesValue" id="activeEntitiesValue"/>
247
								<input type="hidden" name="activeEntitiesClass" id="activeEntitiesClass" value="http://ecoinformatics.org/oboe/oboe.1.0/oboe-core.owl#Entity"/>
248
							</div>
249 5602 leinfelder
						</td>
250
					</tr>
251
				</table>
252 5533 leinfelder
			</td>
253
			<td>
254 5602 leinfelder
				<table class="subGroup subGroup_border">
255
					<tr>
256
						<th colspan="1">
257
							Characteristic
258
						</th>
259
					</tr>
260
					<tr>
261 5632 leinfelder
						<td>with measurements of</td>
262 5602 leinfelder
					</tr>
263
					<tr>
264
						<td>
265 5658 leinfelder
							<input type="text" id="activeCharacteristicsSearch" />
266 5656 leinfelder
							<div class="select">
267 5660 leinfelder
								<div id="activeCharacteristics" style="width: 216px; height: 100px; overflow: auto">
268 5656 leinfelder
									<p>loading...</p>
269
								</div>
270
								<input type="hidden" class="value" name="activeCharacteristicsValue" id="activeCharacteristicsValue"/>
271
								<input type="hidden" name="activeCharacteristicsClass" id="activeCharacteristicsClass" value="http://ecoinformatics.org/oboe/oboe.1.0/oboe-core.owl#Characteristic"/>
272
							</div>
273 5602 leinfelder
						</td>
274
					</tr>
275
				</table>
276 5533 leinfelder
			</td>
277
			<td>
278 5602 leinfelder
				<table class="subGroup subGroup_border">
279
					<tr>
280
						<th colspan="1">
281
							Protocol
282
						</th>
283
					</tr>
284
					<tr>
285 5632 leinfelder
						<td>using procedures outlined by</td>
286 5602 leinfelder
					</tr>
287
					<tr>
288
						<td>
289 5658 leinfelder
							<input type="text" id="activeProtocolsSearch" />
290 5656 leinfelder
							<div class="select">
291 5660 leinfelder
								<div id="activeProtocols" style="width: 216px; height: 100px; overflow: auto">
292 5656 leinfelder
									<p>loading...</p>
293
								</div>
294
								<input type="hidden" class="value" name="activeProtocolsValue" id="activeProtocolsValue" />
295
								<input type="hidden" name="activeProtocolsClass" id="activeProtocolsClass" value="http://ecoinformatics.org/oboe/oboe.1.0/oboe-core.owl#Protocol"/>
296
							</div>
297 5602 leinfelder
						</td>
298
					</tr>
299
				</table>
300 5533 leinfelder
			</td>
301
		</tr>
302
		<tr>
303 5632 leinfelder
			<td colspan="3">Match All? <input type="checkbox" name="matchAll" checked="checked"/></td>
304 5509 leinfelder
		</tr>
305
		<tr>
306 5632 leinfelder
			<td colspan="3">From same Observation? <input type="checkbox" name="strict"/></td>
307 5509 leinfelder
		</tr>
308
		<tr>
309 5633 leinfelder
			<td colspan="3">
310
				<input type="submit" value="Search"/>
311
				<input type="reset" value="Clear" onclick="$('#searchForm').get(0).reset(); initialize()"/>
312
			</td>
313 5509 leinfelder
		</tr>
314 5602 leinfelder
	</table>
315
		<!--
316 5509 leinfelder
		<tr>
317 5602 leinfelder
			<td>Entity: (SBC only)</td>
318
			<td><input type="text" name="entity" class="bp_form_complete-1523-uri" size="100" /></td>
319 5509 leinfelder
		</tr>
320 5602 leinfelder
		 -->
321 5509 leinfelder
</form>
322
323
<!-- Included default search/login -->
324
<% if ( PropertyService.getProperty("spatial.runSpatialOption").equals("true") ) { %>
325
<script language="javascript">
326
	insertMap("<%=CONTEXT_URL%>");
327
</script>
328
<br/>
329
<% } %>
330
331
<script language="javascript">
332
	insertSearchBox("<%=CONTEXT_URL%>");
333
	insertLoginBox("<%=CONTEXT_URL%>");
334
</script>
335
336 5574 leinfelder
</div>
337
338 5509 leinfelder
<script language="javascript">
339
	insertTemplateClosing("<%=CONTEXT_URL%>");
340
</script>
341
342 5385 leinfelder
</body>
343
</html>