1
|
<!DOCTYPE html PUBLIC "-//W3C//DTD html 4.0//EN">
|
2
|
<!--
|
3
|
* '$RCSfile$'
|
4
|
* Authors: 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
|
*
|
9
|
* '$Author: brooke $'
|
10
|
* '$Date: 2003-11-21 15:05:54 -0800 (Fri, 21 Nov 2003) $'
|
11
|
* '$Revision: 1929 $'
|
12
|
*
|
13
|
* This is an HTML document for loading an xml document into Oracle
|
14
|
*
|
15
|
* This program is free software; you can redistribute it and/or modify
|
16
|
* it under the terms of the GNU General Public License as published by
|
17
|
* the Free Software Foundation; either version 2 of the License, or
|
18
|
* (at your option) any later version.
|
19
|
*
|
20
|
* This program is distributed in the hope that it will be useful,
|
21
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
22
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
23
|
* GNU General Public License for more details.
|
24
|
*
|
25
|
* You should have received a copy of the GNU General Public License
|
26
|
* along with this program; if not, write to the Free Software
|
27
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
28
|
-->
|
29
|
<html>
|
30
|
|
31
|
<head>
|
32
|
<title>Metacat Replication Control Panel</title>
|
33
|
<link rel="stylesheet" type="text/css" href="@web-base-url@/default.css">
|
34
|
</head>
|
35
|
<body>
|
36
|
|
37
|
<table class="tabledefault">
|
38
|
<tr><td rowspan="2"><img src="@web-base-url@/images/KNBLogo.gif"></td>
|
39
|
<td colspan="7">
|
40
|
<div class="title">Metacat Replication Control Panel</div>
|
41
|
</td>
|
42
|
</tr>
|
43
|
<tr>
|
44
|
<td><a href="." class="toollink"> KNB </a></td>
|
45
|
<td><a href="data.html" class="toollink"> Data </a></td>
|
46
|
<td><a href="people.html" class="toollink"> People </a></td>
|
47
|
<td><a href="informatics" class="toollink"> Informatics </a></td>
|
48
|
<td><a href="biodiversity" class="toollink"> Biodiversity </a></td>
|
49
|
<td><a href="education" class="toollink"> Education </a></td>
|
50
|
<td><a href="software" class="toollink"> Software </a></td>
|
51
|
</tr>
|
52
|
</table>
|
53
|
|
54
|
<p> </p>
|
55
|
|
56
|
<table border="0" cellpadding="4" cellspacing="0" width="100%"
|
57
|
class="tablepanel">
|
58
|
<tr class="tablehead">
|
59
|
<td><b>Time Handler</b></td>
|
60
|
</tr>
|
61
|
<tr>
|
62
|
<td rowspan="2" width="50%">
|
63
|
<form action="@replication-path@" method="POST" target="bottom">
|
64
|
<input type="radio" name="action" value="start">Start
|
65
|
Delta T: <input value="30" size="4" name="rate"> seconds<br>
|
66
|
<input type="radio" name="action" value="stop">Stop <br><br>
|
67
|
<input type="submit" value="Submit" target="bottom">
|
68
|
</form>
|
69
|
</td>
|
70
|
</tr>
|
71
|
</table>
|
72
|
<table border="0" cellpadding="4" cellspacing="0" width="100%"
|
73
|
class="tablepanel">
|
74
|
<tr class="tablehead">
|
75
|
<td><b>Force Replication</b></td>
|
76
|
</tr>
|
77
|
<tr>
|
78
|
<td rowspan="2" width="50%">
|
79
|
<form action="@replication-path@" method="POST" target="bottom">
|
80
|
<input type="radio" name="action" value="getall"> Get All - bring all updated
|
81
|
documents from remote hosts to this server<br><br>
|
82
|
|
83
|
<input type="submit" value="Submit" target="bottom">
|
84
|
</form>
|
85
|
</td>
|
86
|
</tr>
|
87
|
</table>
|
88
|
<table border="1" cellpadding="4" cellspacing="0" width="100%"
|
89
|
class="tablepanel">
|
90
|
<tr class="tablehead">
|
91
|
<td><b>Servers</b></td>
|
92
|
</tr>
|
93
|
<tr>
|
94
|
<td rowspan="2" width="50%">
|
95
|
<form action="@replication-path@" method="POST" target="bottom">
|
96
|
<input type="hidden" name="action" value="servercontrol">
|
97
|
<input type="radio" name="subaction" value="delete"> Remove this server<br>
|
98
|
<input type="radio" name="subaction" value="add"> Add this server<br>
|
99
|
<input size="30" name="server" > <br>
|
100
|
Replicate xml doc To server (1 or 0)?: <input size="2" name="replicate"> <br>
|
101
|
Replicate data file To server (1 or 0)?: <input size="2" name="datareplicate"> <br>
|
102
|
Localhost is a hub to server (1 or 0)?: <input size="2" name="hub"> <br>
|
103
|
Download certificate from<br>
|
104
|
<input type="text" size="30" name="certificate">
|
105
|
<br><br>
|
106
|
<input type="submit" value="Submit" target="bottom">
|
107
|
</form>
|
108
|
</td>
|
109
|
</tr>
|
110
|
</table>
|
111
|
<a href="@replication-path@?action=servercontrol&subaction=list" target="bottom">
|
112
|
Refresh Server List</a>
|
113
|
</body>
|
114
|
</html>
|