Project

General

Profile

1
<!--
2
  * loadxml.html
3
  *
4
  *      Authors: Matt Jones
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
  *      Created: 2000 April 5
9
  *    File Info: '$Id: loadxml.html 348 2000-08-14 20:43:27Z jones $'
10
  * 
11
  * This is an HTML document for loading an xml document into Oracle
12
-->
13
<html>
14
<head>
15
<title>MetaCat</title>
16
</head>
17
<body bgcolor="white">
18
<b>MetaCat XML Loader</b>
19
<p>
20
Upload, Change, or Delete an XML document using this form.
21
</p>
22
<form action="@servlet-path@" target="right" method="POST">
23
  <strong>1. Choose an action: </strong>
24
  <input type="radio" name="action" value="insert" checked> Insert
25
  <input type="radio" name="action" value="update"> Update
26
  <input type="radio" name="action" value="delete"> Delete
27
  <br />
28
  <strong>2. Provide a Document ID: </strong>
29
  <input type="text" name="docid"> (Optional for Insert)
30
  <br />
31
  <strong>2. Provide XML text (not needed for Delete): </strong>
32
  <br />
33
  <textarea name="doctext" cols="55" rows="15"></textarea>
34
  <br />
35
  <input type="submit" value="Process Action">
36
</form>
37
<p />
38
</body>
39
</html>
(4-4/15)