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
<link rel="stylesheet" type="text/css" href="@html-path@/style/rowcol.css">
16
</head>
17
<body class="emlbody">
18
<h1>MARINE Query</h1>
19
<p>
20
Query engine for MARINE formatted data.
21
</p>
22
<table border="2" align="top">
23
<tr>
24
<td align="center" valign="top" width="300">
25

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

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

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

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

    
76
</body>
77
</html>
(11-11/27)