Project

General

Profile

1
<!--
2
  *  '$RCSfile$'
3
  *      Authors: Matt Jones
4
  *    Copyright: 2000 Regents of the University of California and the
5
  *               National Center for Ecological Analysis and Synthesis
6
  *  For Details: http://www.nceas.ucsb.edu/
7
  *
8
  *   '$Author: leinfelder $'
9
  *     '$Date: 2007-10-30 08:47:22 -0700 (Tue, 30 Oct 2007) $'
10
  * '$Revision: 3541 $'
11
  * 
12
  * This is an HTML document for displaying metadata catalog tools
13
  *
14
  * This program is free software; you can redistribute it and/or modify
15
  * it under the terms of the GNU General Public License as published by
16
  * the Free Software Foundation; either version 2 of the License, or
17
  * (at your option) any later version.
18
  *
19
  * This program is distributed in the hope that it will be useful,
20
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22
  * GNU General Public License for more details.
23
  *
24
  * You should have received a copy of the GNU General Public License
25
  * along with this program; if not, write to the Free Software
26
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
27
-->
28
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
29
<html>
30
<head>
31
<title>FIRST Assessment Metadata Repository</title>
32
<link rel="stylesheet" type="text/css"
33
	href="@systemidserver@@style-skins-path@/first/first.css">
34
<script language="JavaScript" type="text/JavaScript"
35
	src="@systemidserver@@style-skins-path@/first/first.js"></script>
36
<script language="JavaScript" type="text/JavaScript"
37
	src="@systemidserver@@style-common-path@/branding.js"></script>
38
<script language="Javascript">
39
        function trim(stringToTrim) {
40
                return stringToTrim.replace(/^\s*/, '').replace(/\s*$/,'');
41
        }
42

    
43
        function checkSearch(submitFormObj) {
44
			var searchString = trim(submitFormObj.searchstring.value);
45
 			var checkBox = document.getElementById("searchAll");
46

    
47
			if (searchString=="") {
48
				if (confirm("Show *all* data?")) {
49
					searchString = "%";
50
				} 
51
				else {
52
          			return false;
53
				}
54
			}
55

    
56
			if(!checkBox.checked && searchString!="%"){
57
				submitFormObj.query.value = "<pathquery version=\"1.2\">"
58
                                                      +"<querytitle>Web-Search</querytitle>"
59
                                                      
60
                                                      +"<returndoctype>edml://ecoinformatics.org/edml</returndoctype>"
61
                                                      
62
                                                      +"<returnfield>qtimetadata/qtimetadatafield/fieldlabel</returnfield>"
63
                                                      +"<returnfield>qtimetadata/qtimetadatafield/fieldentry</returnfield>"
64
                                                      +"<returnfield>assessment/duration</returnfield>"
65
                                                      +"<returnfield>assessment/@assessmentTitle</returnfield>"
66
                                                      +"<returnfield>assessment/@assessmentId</returnfield>"
67
                                                      +"<returnfield>lom/general/title/string</returnfield>"
68
                                                      +"<returnfield>lom/general/keyword/string</returnfield>"
69
                                                      +"<returnfield>individualName/surName</returnfield>"
70
                                                      +"<returnfield>organizationName</returnfield>"
71
                                                      
72
                                                      +"<querygroup operator=\"INTERSECT\">"
73
                                                           +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
74
                                                                   +"<value>%</value>"
75
                                                                   +"<pathexpr>organizationName</pathexpr>"
76
                                                           +"</queryterm>"
77
                                                           +"<querygroup operator=\"UNION\">"
78
                                                                   +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
79
                                                                           +"<value>" + searchString + "</value>"
80
                                                                           +"<pathexpr>assessment/@title</pathexpr>"
81
                                                                   +"</queryterm>"
82
                                                                   +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
83
                                                                           +"<value>" + searchString + "</value>"
84
                                                                           +"<pathexpr>surName</pathexpr>"
85
                                                                   +"</queryterm>"
86
                                                                   +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
87
                                                                           +"<value>" + searchString + "</value>"
88
                                                                           +"<pathexpr>givenName</pathexpr>"
89
                                                                   +"</queryterm>"
90
                                                                   +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
91
                                                                           +"<value>" + searchString + "</value>"
92
                                                                           +"<pathexpr>lom/general/keyword/string</pathexpr>"
93
                                                                   +"</queryterm>"
94
                                                           +"</querygroup>"
95
                                                     +"</querygroup>"
96
                                             +"</pathquery>";
97
                } else {
98
                        queryTermString = "";
99
                        if(searchString != "%"){
100
							queryTermString = "<queryterm searchmode=\"contains\" casesensitive=\"false\">"
101
								+"<value>" + searchString + "</value>"
102
								+"</queryterm>";
103
                        }
104
                        submitFormObj.query.value = "<pathquery version=\"1.2\">"
105
                                                           +"<querytitle>Web-Search</querytitle>"
106
                                                                                                                      
107
                                                           +"<returndoctype>edml://ecoinformatics.org/edml</returndoctype>"
108
                                                           
109
                                                           +"<returnfield>qtimetadata/qtimetadatafield/fieldlabel</returnfield>"
110
                                                           +"<returnfield>qtimetadata/qtimetadatafield/fieldentry</returnfield>"
111
                                                           +"<returnfield>assessment/duration</returnfield>"
112
                                                           +"<returnfield>assessment/@assessmentTitle</returnfield>"
113
                                                           +"<returnfield>assessment/@assessmentId</returnfield>"
114
                                                           +"<returnfield>lom/general/title/string</returnfield>"
115
                                                           +"<returnfield>lom/general/keyword/string</returnfield>"
116
                                                           +"<returnfield>individualName/surName</returnfield>"
117
                                                           +"<returnfield>organizationName</returnfield>"
118
                                                           
119
                                                           +"<querygroup operator=\"INTERSECT\">"
120
                                                                +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
121
                                                                        +"<value>%</value>"
122
                                                                        +"<pathexpr>organizationName</pathexpr>"
123
                                                                +"</queryterm>"
124
                                                                + queryTermString
125
                                                           +"</querygroup>"
126
                                                    +"</pathquery>";
127

    
128
                }
129
                return true;
130
        }
131

    
132
        function searchAll(){
133
                var checkBox = document.getElementById("searchCheckBox");
134
                if(checkBox.checked == true){
135
                        alert("You have selected to search all possible existing fields. This search will take longer.");
136
                }
137
        }
138
   </script>
139
</head>
140
<body>
141
<script language="JavaScript">
142
          insertTemplateOpening();
143
          insertSearchBox();
144
      </script>
145

    
146
<table width="760" border="0" cellspacing="0" cellpadding="0">
147
	<!--DWLayoutTable-->
148
	<tr>
149
		<td>
150
			<p class="intro">
151
				Welcome to the FIRST Assessment Repository. 
152
				The repository contains detailed information on assessment tools used
153
				[primarily] in biological and ecological science courses.
154
				Records herein adhere to a standard educational metadata specification 
155
				and enable educators to explore effective teaching models and techniques.
156
			</p>
157
			<p class="intro">	
158
				The aim is to associate outcome measures (i.e. student test scores) with the particular concepts
159
				on which the student is being tested and also associate the specific instructional techniques employed 
160
				when presenting that material to the student.
161
			</p>
162
				
163
			<p class="intro">
164
				The repository relies primarily on data collected from and submitted by
165
				professors and instructors.  While this system is still in active development,
166
				a quick search should reveal the depth, flexibility, and utility of the model. 
167
				And, of course, feedback is strongly encouraged and greatly appreciated.
168
			</p>
169
			<p class="intro">
170
				Information about the FIRST Project and it's activities is currently available through the 
171
				<a href="http://www.first2.org/">FIRST II</a> site.
172
				
173
			<p class="intro">
174
				If you have any questions, comments or problems,
175
				please contact the repository developer and administrator at
176
				<a	href="mailto:leinfelder@nceas.ucsb.edu">leinfelder@nceas.ucsb.edu</a>
177
			</p>
178
			
179
			<br />
180
			<table class="tables" cellpadding="8" cellspacing="0">
181
				<tr class="sectheader">
182
					<td class="borderbottom" align="left">
183
						<p align="center">Search assessments and courses</p>
184
					</td>
185
				</tr>
186
				<tr class="sectbody"></tr>
187
	
188
				<tr>
189
					<td colspan="2" align="left">
190
						<form method="POST" action="@servlet-path@" target="_top"
191
							onSubmit="return checkSearch(this)">
192
							<span class="searchresultsdividerPale"> 
193
								<input value="UNION" name="operator" type="hidden"> &nbsp; 
194
								<input size="14" name="searchstring" type="text" value="" id="searchBox"> 
195
								<input name="query" type="hidden"> 
196
								<input name="qformat" value="first" type="hidden"> 
197
								<input name="enableediting"	value="false" type="hidden"> 
198
								<input type="hidden" name="action" value="squery"> 
199
								<input value="Search" type="submit">
200
							</span>
201
						</form>
202
						<form>
203
							<input name="search" type="radio" checked>
204
							Search Titles, Keywords, Instructors (Quicker) 
205
							<br/>
206
							<input name="search" type="radio" id="searchAll"> 
207
							Search all fields (Slower) 
208
							<br />
209
						</form>
210
						<div align="center">
211
							<p align="left">This tool allows you to search for assessments.
212
							When you type text in the box and click on
213
							the "Search" button, the search will only be conducted within the
214
							course and assessment titles and descriptions, instructor name, and keyword fields. 
215
							Checking the "Search All Fields" box will search on these and all other existing fields. 
216
							<br />
217
							<br />
218
							You can use the '%' character as a wildcard in your searches (e.g.,
219
							'%biology%' would locate any phrase with the word biology embedded within it).
220
							</p>
221
						</div>
222
					</td>
223
				</tr>
224
				<tr>
225
					<td class="borderbottom">
226
						<div align="center">
227
							<a href="@servlet-path@?action=query&amp;operator=INTERSECT&amp;anyfield=%25&amp;organizationName=%25&amp;qformat=first&amp;enableediting=false&amp;returndoctype=edml://ecoinformatics.org/edml&amp;returnfield=assessment/@assessmentTitle&amp;returnfield=assessment/@assessmentTitle&amp;returnfield=lom/general/title/string&amp;returnfield=lom/general/keyword/string&amp;returnfield=individualName/surName&amp;returnfield=organizationName">
228
							Browse existing FIRST assessments
229
							</a> 
230
							<br />
231
						</div>
232
					</td>
233
				</tr>
234
			</table>
235
			<br />
236
			<br />
237
	
238
			<p class="intro">
239
			This repository is an effort of the <a href="http://www.nceas.ucsb.edu">National Center for Ecological
240
			Analysis and Synthesis (NCEAS)</a> and is based on software developed by
241
			the <a href="http://knb.ecoinformatics.org">Knowledge Network for
242
			Biocomplexity (KNB)</a>, and houses metadata that are compliant with 
243
			[the currently-under-development] Educational Metadata Language (EdML [name subject to change]).</p>
244

    
245
		</td>
246
	</tr>
247
</table>
248

    
249
<script language="JavaScript">          
250
    insertTemplateClosing();
251
</script>
252
</body>
253
</html>
(10-10/10)