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 497 2000-10-06 01:50:50Z 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
<link rel="stylesheet" type="text/css" href="@html-path@/style/rowcol.css">
17
</head>
18
<body class="emlbody">
19
<b>MetaCat XML Loader</b>
20
<p>
21
Upload, Change, or Delete an XML document using this form.
22
</p>
23
<form action="@servlet-path@" target="right" method="POST">
24
  <strong>1. Choose an action: </strong>
25
  <input type="radio" name="action" value="insert" checked> Insert
26
  <input type="radio" name="action" value="update"> Update
27
  <input type="radio" name="action" value="delete"> Delete
28
  <br />
29
  <strong>2. Provide a Document ID: </strong>
30
  <input type="text" name="docid"> (Optional for Insert)
31
  <br />
32
  <strong>2. Provide XML text (not needed for Delete): </strong>
33
  <br />
34
  <textarea name="doctext" cols="55" rows="15"></textarea>
35
  <br />
36
  <input type="submit" value="Process Action">
37
</form>
38
<p />
39
</body>
40
</html>
(4-4/15)