Project

General

Profile

1
<!--
2
  * marinetest.html 
3
  * Test MetaCat MARINE UI    
4
  * Author: Chad Berkley       
5
  * Copyright: 2000 Regents of the University of California and the
6
  *               National Center for Ecological Analysis and Synthesis
7
  * For Details: http://www.nceas.ucsb.edu/
8
  * Date: 6/23/00 
9
  *  
10
-->
11

    
12
<html>
13
<head>
14
<title>Test MetaCat MARINE Interface</title>
15
</head>
16
<body bgcolor="white">
17
<h1>MARINE Query</h1>
18
<p>
19
Query engine for MARINE formatted data.
20
</p>
21
<table border="2" align="top">
22
<tr>
23
<td align="center" valign="top" width="300">
24

    
25
<h2>Structured Query</h2>
26
<hr>
27
<form
28
action="http://alpha.nceas.ucsb.edu/servlets/marineServlet" target="bottom" method="POST">
29

    
30
  <h3>Originator:</h3>
31
  First Name: <input type = "text" name = "given_name"><br>
32
  Last Name: <input type = "text" name = "surname"><br>
33
  Email Address: <input type = "text" name = "email"><br>
34
  Postal Code: <input type = "text" name = "postal_code"><br>
35
  <hr>
36
  <h3>Other Resource Information</h3>
37
  Organization: <input type = "text" name = "party_org"><br>
38
  Keywords: <input type = "text" name = "keyword"><br>
39
  Title: <input type = "text" name = "title"><br>
40
  <input type="hidden" name="query" value="">
41
<!--  <input type="hidden" name="qformat" value="html"> -->
42
  <input type="hidden" name="action" value="squery">
43
  <input type="hidden" name="doctype" value="ANY">
44
  Output Type:
45
  <select name = "qformat">
46
    <option value="html">HTML</option>
47
    <option value="xml">XML</option>
48
  </select><br>
49
  Boolean Operator:
50
  <select name = "operator">
51
    <option value="UNION">OR</option>
52
    <option value="INTERSECT">AND</option>
53
  </select><br>
54
  <input type="submit" value="Query">
55
</form>
56

    
57
</td>
58
<td align="center" valign = "top" width="300">
59
<h2>Free Text Query</h2>
60
<hr>
61
<form
62
action="http://alpha.nceas.ucsb.edu/servlets/marineServlet" target="bottom" method="POST">
63
Keywords: <input type="text" name="query"><br> 
64
  <input type="hidden" name="qformat" value="html">
65
  <input type="hidden" name="action" value="query">
66
  <input type="hidden" name="doctype" value="ANY">
67
  <input type="submit" value="Query">
68
</form>
69

    
70
</td>
71
</tr>
72
</table>
73
</form>
74

    
75
</body>
76
</html>
(11-11/28)