Revision 2390
Added by sgarg over 19 years ago
lib/style/common/templates/entryForm.tmpl | ||
---|---|---|
13 | 13 |
parent.insertBefore(newParaContainer, addParaButton); |
14 | 14 |
} |
15 | 15 |
|
16 |
function createTextField(name, size) { |
|
17 |
var newField=document.createElement("input"); |
|
18 |
newField.setAttribute("type", "text"); |
|
19 |
newField.setAttribute("name", name); |
|
20 |
newField.setAttribute("size", size); |
|
21 |
|
|
22 |
return newField; |
|
23 |
} |
|
24 |
|
|
25 |
function createTextRow(count, varName, labelText) { |
|
26 |
var textField=createTextField(varName + count, "30"); |
|
27 |
var row = createRow(count, textField, labelText); |
|
28 |
return row; |
|
29 |
} |
|
30 |
|
|
31 |
function createRow(count, elem, labelText){ |
|
32 |
var textTD = document.createElement("td"); |
|
33 |
textTD.setAttribute("colSpan", "5"); |
|
34 |
textTD.appendChild(elem); |
|
35 |
|
|
36 |
var labelTD = document.createElement("td"); |
|
37 |
labelTD.setAttribute("align", "right"); |
|
38 |
|
|
39 |
var labelSpan = document.createElement("span"); |
|
40 |
labelSpan.className = 'label'; |
|
41 |
|
|
42 |
var label = document.createTextNode(labelText); |
|
43 |
labelSpan.appendChild(label); |
|
44 |
labelTD.appendChild(labelSpan); |
|
45 |
|
|
46 |
var TR = document.createElement("tr"); |
|
47 |
TR.className='sectbody'; |
|
48 |
TR.appendChild(labelTD); |
|
49 |
TR.appendChild(textTD); |
|
50 |
|
|
51 |
return TR; |
|
52 |
} |
|
53 |
|
|
54 |
function createHRRow() { |
|
55 |
var hrCell = document.createElement("td"); |
|
56 |
hrCell.setAttribute("colSpan", "7"); |
|
57 |
var hr = document.createElement("hr"); |
|
58 |
hr.setAttribute("width", "85%"); |
|
59 |
hrCell.appendChild(hr); |
|
60 |
|
|
61 |
var hrTR = document.createElement("tr"); |
|
62 |
hrTR.className = 'sectbody'; |
|
63 |
hrTR.appendChild(hrCell); |
|
64 |
|
|
65 |
return hrTR; |
|
66 |
} |
|
67 |
|
|
16 | 68 |
function addTaxon() { |
17 | 69 |
var taxaCountField = document.getElementById("taxaCount"); |
18 | 70 |
var taxaCount = taxaCountField.getAttribute("value"); |
19 | 71 |
taxaCount++; |
20 | 72 |
taxaCountField.setAttribute("value", taxaCount); |
21 |
var taxonRow = createTaxonRow(taxaCount); |
|
73 |
|
|
74 |
var hrRow = createHRRow(); |
|
75 |
var taxonRankRow = createTextRow(taxaCount, "taxonRankName","Taxon Rank"); |
|
76 |
var taxonNameRow = createTextRow(taxaCount, "taxonRankValue","Taxon Name"); |
|
77 |
|
|
22 | 78 |
var taxonRowMarker = document.getElementById("addtaxarow"); |
23 | 79 |
var parent = taxonRowMarker.parentNode; |
24 |
parent.insertBefore(taxonRow, taxonRowMarker); |
|
25 |
} |
|
26 | 80 |
|
27 |
function createTaxonRow(taxaCount) { |
|
28 |
var rankField=createTextField("taxonRankName" + taxaCount, "30"); |
|
29 |
var rankCell = document.createElement("td"); |
|
30 |
rankCell.appendChild(rankField); |
|
31 |
var taxonField=createTextField("taxonRankValue" + taxaCount, "30"); |
|
32 |
var taxonCell = document.createElement("td"); |
|
33 |
taxonCell.appendChild(taxonField); |
|
34 |
var taxonRow = document.createElement("tr"); |
|
35 |
taxonRow.appendChild(rankCell); |
|
36 |
taxonRow.appendChild(taxonCell); |
|
37 |
|
|
38 |
return taxonRow; |
|
81 |
parent.insertBefore(hrRow, taxonRowMarker); |
|
82 |
parent.insertBefore(taxonRankRow, taxonRowMarker); |
|
83 |
parent.insertBefore(taxonNameRow, taxonRowMarker); |
|
39 | 84 |
} |
40 | 85 |
|
41 |
function createTextField(name, size) { |
|
42 |
var newField=document.createElement("input"); |
|
43 |
newField.setAttribute("type", "text"); |
|
44 |
newField.setAttribute("name", name); |
|
45 |
newField.setAttribute("size", size); |
|
46 | 86 |
|
47 |
return newField; |
|
48 |
} |
|
49 |
|
|
50 | 87 |
function addKeyword() { |
51 | 88 |
var keyCountField = document.getElementById("keyCount"); |
52 | 89 |
var keyCount = keyCountField.getAttribute("value"); |
53 | 90 |
keyCount++; |
54 | 91 |
keyCountField.setAttribute("value", keyCount); |
55 |
var keyRow = createKeywordRow(keyCount); |
|
92 |
|
|
93 |
var hrRow = createHRRow(); |
|
94 |
var keyRow = createTextRow(keyCount,"keyword", "Keyword"); |
|
95 |
var keyTypeSelect = createKeyTypeSelect("kwType" + keyCount); |
|
96 |
var keyTypeRow = createRow(keyCount, keyTypeSelect, "Keyword Type"); |
|
97 |
var keyThRow = createKeywordThesaurusRow("kwTh" + keyCount); |
|
98 |
|
|
56 | 99 |
var keyRowMarker = document.getElementById("addkeyrow"); |
57 | 100 |
var parent = keyRowMarker.parentNode; |
101 |
|
|
102 |
parent.insertBefore(hrRow, keyRowMarker); |
|
58 | 103 |
parent.insertBefore(keyRow, keyRowMarker); |
104 |
parent.insertBefore(keyTypeRow, keyRowMarker); |
|
105 |
parent.insertBefore(keyThRow, keyRowMarker); |
|
106 |
|
|
59 | 107 |
} |
60 | 108 |
|
61 |
function createKeywordRow(keyCount) { |
|
62 |
var nameField=createTextField("keyword" + keyCount, "30"); |
|
63 |
var nameCell = document.createElement("td"); |
|
64 |
nameCell.appendChild(nameField); |
|
65 |
|
|
66 |
var keyTypeField=createKeyTypeSelect("kwType" + keyCount); |
|
67 |
var keyTypeCell = document.createElement("td"); |
|
68 |
keyTypeCell.appendChild(keyTypeField); |
|
69 |
|
|
70 |
var keyThField=createKeyThSelect("kwTh" + keyCount); |
|
71 |
var keyThCell = document.createElement("td"); |
|
72 |
keyThCell.appendChild(keyThField); |
|
73 |
|
|
74 |
var keyRow = document.createElement("tr"); |
|
75 |
keyRow.appendChild(nameCell); |
|
76 |
keyRow.appendChild(keyTypeCell); |
|
77 |
keyRow.appendChild(keyThCell); |
|
78 |
|
|
79 |
return keyRow; |
|
109 |
function createKeywordThesaurusRow(name) { |
|
110 |
var keyRowTemplate = document.getElementById("keyThRow"); |
|
111 |
var newField = keyRowTemplate.cloneNode(true); |
|
112 |
var nodes = newField.getElementsByTagName("input"); |
|
113 |
nodes.item(0).setAttribute("name", name); |
|
114 |
nodes.item(1).setAttribute("name", name); |
|
115 |
return newField; |
|
80 | 116 |
} |
81 | 117 |
|
82 | 118 |
function createKeyTypeSelect(name) { |
83 | 119 |
var newField=document.createElement("select"); |
84 | 120 |
newField.setAttribute("name", name); |
85 | 121 |
var option1=document.createElement("option"); |
86 |
var text1=document.createTextNode("none");
|
|
122 |
var text1=document.createTextNode("None");
|
|
87 | 123 |
option1.appendChild(text1); |
88 | 124 |
newField.appendChild(option1); |
89 | 125 |
var option2=document.createElement("option"); |
90 |
var text2=document.createTextNode("theme");
|
|
126 |
var text2=document.createTextNode("Theme");
|
|
91 | 127 |
option2.appendChild(text2); |
92 | 128 |
newField.appendChild(option2); |
93 | 129 |
var option3=document.createElement("option"); |
94 |
var text3=document.createTextNode("place");
|
|
130 |
var text3=document.createTextNode("Place");
|
|
95 | 131 |
option3.appendChild(text3); |
96 | 132 |
newField.appendChild(option3) |
97 | 133 |
var option4=document.createElement("option"); |
98 |
var text4=document.createTextNode("stratum");
|
|
134 |
var text4=document.createTextNode("Stratum");
|
|
99 | 135 |
option4.appendChild(text4); |
100 | 136 |
newField.appendChild(option4); |
101 | 137 |
var option5=document.createElement("option"); |
102 |
var text5=document.createTextNode("temporal");
|
|
138 |
var text5=document.createTextNode("Temporal");
|
|
103 | 139 |
option5.appendChild(text5); |
104 | 140 |
newField.appendChild(option5); |
105 | 141 |
var option6=document.createElement("option"); |
106 |
var text6=document.createTextNode("taxonomic");
|
|
142 |
var text6=document.createTextNode("Taxonomic");
|
|
107 | 143 |
option6.appendChild(text6); |
108 | 144 |
newField.appendChild(option6); |
109 | 145 |
|
110 | 146 |
return newField; |
111 | 147 |
} |
112 | 148 |
|
113 |
function createKeyThSelect(name) { |
|
114 |
var newField=document.createElement("select"); |
|
115 |
newField.setAttribute("name", name); |
|
116 |
var option1=document.createElement("option"); |
|
117 |
var text1=document.createTextNode("none"); |
|
118 |
option1.appendChild(text1); |
|
119 |
newField.appendChild(option1); |
|
120 |
var option2=document.createElement("option"); |
|
121 |
var text2=document.createTextNode("GCMD"); |
|
122 |
option2.appendChild(text2); |
|
123 |
newField.appendChild(option2); |
|
124 |
|
|
125 |
return newField; |
|
126 |
} |
|
127 |
|
|
128 | 149 |
function addAdditionalPeople() { |
129 | 150 |
var aoCountField = document.getElementById("aoCount"); |
130 | 151 |
var aoCount = aoCountField.getAttribute("value"); |
131 | 152 |
aoCount++; |
132 | 153 |
aoCountField.setAttribute("value", aoCount); |
133 |
var aoRow = createAORow(aoCount); |
|
154 |
|
|
155 |
var aoHRRow = createHRRow(); |
|
156 |
var aoFirstNameRow = createTextRow(aoCount, "origNamefirst", "First Name"); |
|
157 |
var aoLastNameRow = createTextRow(aoCount, "origNamelast", "Last Name"); |
|
158 |
|
|
159 |
var role = createRoleTypeSelect("origRole" + aoCount); |
|
160 |
var aoRoleRow = createRow(aoCount, role, "Role"); |
|
161 |
|
|
134 | 162 |
var aoRowMarker = document.getElementById("addaorow"); |
135 | 163 |
var parent = aoRowMarker.parentNode; |
136 |
parent.insertBefore(aoRow, aoRowMarker); |
|
164 |
|
|
165 |
parent.insertBefore(aoHRRow, aoRowMarker) |
|
166 |
parent.insertBefore(aoFirstNameRow, aoRowMarker); |
|
167 |
parent.insertBefore(aoLastNameRow, aoRowMarker); |
|
168 |
parent.insertBefore(aoRoleRow, aoRowMarker); |
|
137 | 169 |
} |
138 | 170 |
|
139 |
function createAORow(aoCount) { |
|
140 |
var nameField=createTextField("origNamefirst" + aoCount, "30"); |
|
141 |
var nameCell = document.createElement("td"); |
|
142 |
nameCell.appendChild(nameField); |
|
143 |
|
|
144 |
var namelastField=createTextField("origNamelast" + aoCount, "30"); |
|
145 |
var namelastCell = document.createElement("td"); |
|
146 |
namelastCell.appendChild(namelastField); |
|
147 |
|
|
148 |
var roleField=createRoleTypeSelect("origRole" + aoCount); |
|
149 |
var roleCell = document.createElement("td"); |
|
150 |
roleCell.appendChild(roleField); |
|
151 |
|
|
152 |
var aoRow = document.createElement("tr"); |
|
153 |
aoRow.appendChild(nameCell); |
|
154 |
aoRow.appendChild(namelastCell); |
|
155 |
aoRow.appendChild(roleCell); |
|
156 |
|
|
157 |
return aoRow; |
|
158 |
} |
|
159 |
|
|
160 | 171 |
function createRoleTypeSelect(name) { |
161 | 172 |
var newField=document.createElement("select"); |
162 | 173 |
newField.setAttribute("name", name); |
... | ... | |
186 | 197 |
var cnf=document.getElementById("contactNameFirst"); |
187 | 198 |
var onf=document.getElementById("origNameFirst"); |
188 | 199 |
cnf.value = onf.value; |
200 |
cnf.disabled = "true"; |
|
189 | 201 |
|
190 | 202 |
var cnl=document.getElementById("contactNameLast"); |
191 | 203 |
var onl=document.getElementById("origNameLast"); |
192 | 204 |
cnl.value = onl.value; |
205 |
cnl.disabled = "true"; |
|
193 | 206 |
|
194 | 207 |
var cno=document.getElementById("contactNameOrg"); |
195 | 208 |
var ono=document.getElementById("origNameOrg"); |
196 | 209 |
cno.value = ono.value; |
210 |
cno.disabled = "true"; |
|
197 | 211 |
|
198 | 212 |
var ce=document.getElementById("contactEmail"); |
199 | 213 |
var oe=document.getElementById("origEmail"); |
200 | 214 |
ce.value = oe.value; |
215 |
ce.disabled = "true"; |
|
201 | 216 |
|
202 | 217 |
var cp=document.getElementById("contactPhone"); |
203 | 218 |
var op=document.getElementById("origPhone"); |
204 | 219 |
cp.value = op.value; |
220 |
cp.disabled = "true"; |
|
205 | 221 |
|
206 | 222 |
var cf=document.getElementById("contactFAX"); |
207 | 223 |
var of=document.getElementById("origFAX"); |
208 | 224 |
cf.value = of.value; |
225 |
cf.disabled = "true"; |
|
209 | 226 |
|
210 | 227 |
var cd=document.getElementById("contactDelivery"); |
211 | 228 |
var od=document.getElementById("origDelivery"); |
212 | 229 |
cd.value = od.value; |
230 |
cd.disabled = "true"; |
|
213 | 231 |
|
214 | 232 |
var cc=document.getElementById("contactCity"); |
215 | 233 |
var oc=document.getElementById("origCity"); |
216 | 234 |
cc.value = oc.value; |
235 |
cc.disabled = "true"; |
|
217 | 236 |
|
218 | 237 |
var cs=document.getElementById("contactState"); |
219 | 238 |
var os=document.getElementById("origState"); |
239 |
cs.options[os.selectedIndex].selected=true; |
|
240 |
cs.disabled = "true"; |
|
220 | 241 |
|
221 | 242 |
var cso=document.getElementById("contactStateOther"); |
222 | 243 |
var oso=document.getElementById("origStateOther"); |
223 | 244 |
cso.value = oso.value; |
245 |
cso.disabled = "true"; |
|
224 | 246 |
|
225 | 247 |
var cz=document.getElementById("contactZip"); |
226 | 248 |
var oz=document.getElementById("origZip"); |
227 | 249 |
cz.value = oz.value; |
250 |
cz.disabled = "true"; |
|
228 | 251 |
|
229 | 252 |
var cC=document.getElementById("contactCountry"); |
230 | 253 |
var oC=document.getElementById("origCountry"); |
231 | 254 |
cC.value = oC.value; |
255 |
cC.disabled = "true"; |
|
232 | 256 |
|
233 | 257 |
} else { |
234 | 258 |
var cnf=document.getElementById("contactNameFirst"); |
235 | 259 |
cnf.value = ""; |
260 |
cnf.removeAttribute("disabled"); |
|
236 | 261 |
|
237 | 262 |
var cnl=document.getElementById("contactNameLast"); |
238 | 263 |
cnl.value = ""; |
264 |
cnl.removeAttribute("disabled"); |
|
239 | 265 |
|
240 | 266 |
var cno=document.getElementById("contactNameOrg"); |
241 | 267 |
cno.value = ""; |
268 |
cno.removeAttribute("disabled"); |
|
242 | 269 |
|
243 | 270 |
var ce=document.getElementById("contactEmail"); |
244 | 271 |
ce.value = ""; |
272 |
ce.removeAttribute("disabled"); |
|
245 | 273 |
|
246 | 274 |
var cp=document.getElementById("contactPhone"); |
247 | 275 |
cp.value = ""; |
276 |
cp.removeAttribute("disabled"); |
|
248 | 277 |
|
249 | 278 |
var cf=document.getElementById("contactFAX"); |
250 | 279 |
cf.value = ""; |
280 |
cf.removeAttribute("disabled"); |
|
251 | 281 |
|
252 | 282 |
var cd=document.getElementById("contactDelivery"); |
253 | 283 |
cd.value = ""; |
284 |
cd.removeAttribute("disabled"); |
|
254 | 285 |
|
255 | 286 |
var cc=document.getElementById("contactCity"); |
256 | 287 |
cc.value = ""; |
288 |
cc.removeAttribute("disabled"); |
|
257 | 289 |
|
290 |
var cs=document.getElementById("contactState"); |
|
291 |
cs.options[0].selected = true; |
|
292 |
cs.removeAttribute("disabled"); |
|
293 |
|
|
258 | 294 |
var cso=document.getElementById("contactStateOther"); |
259 | 295 |
cso.value = ""; |
296 |
cso.removeAttribute("disabled"); |
|
260 | 297 |
|
261 | 298 |
var cz=document.getElementById("contactZip"); |
262 | 299 |
cz.value = ""; |
300 |
cz.removeAttribute("disabled"); |
|
263 | 301 |
|
264 | 302 |
var cC=document.getElementById("contactCountry"); |
265 | 303 |
cC.value = ""; |
304 |
cC.removeAttribute("disabled"); |
|
266 | 305 |
} |
267 | 306 |
} |
268 | 307 |
|
269 | 308 |
</script> |
270 | 309 |
|
271 | 310 |
[% IF form != 're_entry' %] |
272 |
<p><span class="regtext">Use this page to submit a <span class="emphasis">new</span> data set description for |
|
273 |
inclusion in the registry.</span></p> |
|
274 |
<p> </p> |
|
275 |
<p><span class="regtext">Please have a look at the |
|
311 |
|
|
312 |
|
|
313 |
<table width="760" cellpadding="3" cellspacing="0"> |
|
314 |
|
|
315 |
<tr><td align="left"><span class="regtext">Use this page to submit a <span class="label">new</span> data set description for |
|
316 |
inclusion in the registry.</span></td></tr> |
|
317 |
<tr><td></td></tr> |
|
318 |
<tr><td align="left"><span class="regtext">Please have a look at the |
|
276 | 319 |
<a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide" target="guide"> |
277 | 320 |
<span class="boldlink">Guide on How to Complete Data Registry Entries</span></a> |
278 | 321 |
before you start filling in this catalog form. Also, use your browser's |
279 | 322 |
Reload/Refresh function to make sure you see the latest version of this |
280 |
page.</span> |
|
281 |
</p> |
|
282 |
<p> </p> |
|
283 |
<p align="left"><span class="regtext">Fields in <span class="redbold">red</span> are required.</span> |
|
284 |
</p> |
|
285 |
<p> </p> |
|
286 |
<p align="left"><span class="regtext">If you have any questions, comments or problems |
|
323 |
page.</span></td></tr> |
|
324 |
<tr><td></td></tr> |
|
325 |
<tr><td align="left"><span class="regtext">If you have any questions, comments or problems |
|
287 | 326 |
regarding this form, please contact [% adminname %] at |
288 | 327 |
<a href="mailto:[% recipient %]"><span class="italic">[% recipient %]</span></a></span>. |
289 |
</p>
|
|
328 |
</td></tr><tr><td></td></tr>
|
|
290 | 329 |
[% ELSE %] |
291 |
<p><span class="regtext">Use this page to edit the data set description that you submitted earlier to the registry.<br>The ID of this data set is: <span class="boldlink"><a href="@servlet-path@?action=read&qformat=[% cfg %]&docid=[% docid %]">[% docid %]</a></span></span></p> |
|
292 |
<p> </p> |
|
293 |
<p><span class="regtext">Please have a look at the |
|
330 |
<table width="760" cellpadding="3" cellspacing="0"> |
|
331 |
<tr><td align="left"><span class="regtext">Use this page to edit the data set description that you submitted earlier to the registry.<br>The ID of this data set is: <span class="boldlink"><a href="@servlet-path@?action=read&qformat=[% cfg %]&docid=[% docid %]">[% docid %]</a></span></span></td></tr> |
|
332 |
<tr><td></td></tr> |
|
333 |
<tr><td align="left"><span class="regtext">Please have a look at the |
|
294 | 334 |
<a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide" target="guide"> |
295 | 335 |
<span class="boldlink">Guide on How to Complete Data Registry Entries</span></a> |
296 |
for help with filling of this catalog form.</span> |
|
297 |
</p> |
|
298 |
<p> </p> |
|
299 |
<p align="left"><span class="regtext">Fields in <span class="redbold">red</span> are required.</span> |
|
300 |
</p> |
|
301 |
<p> </p> |
|
302 |
<p align="left"><span class="regtext">If you have any questions, comments or problems |
|
336 |
for help with filling of this catalog form.</span></td</tr> |
|
337 |
<tr><td></td></tr> |
|
338 |
<tr><td align="left"><span class="regtext">If you have any questions, comments or problems |
|
303 | 339 |
regarding this form, please contact [% adminname %] at |
304 | 340 |
<a href="mailto:[% recipient %]"><span class="italicized">[% recipient %]</span></a>.</span> |
305 |
</p>
|
|
341 |
</td></tr>
|
|
306 | 342 |
[% END %] |
307 |
<!-- |
|
308 |
</td></tr> |
|
309 |
</table> |
|
310 |
--> |
|
311 |
<p> </p> |
|
343 |
<tr><td align="left"><span class="label">* Denotes a required field.</span></td></tr> |
|
344 |
<tr><td></td></tr> |
|
345 |
|
|
346 |
<tr><td></td></tr> |
|
347 |
|
|
348 |
</table> |
|
349 |
|
|
350 |
|
|
312 | 351 |
<form action="@cgi-prefix@/register-dataset.cgi" method="post"> |
313 | 352 |
<input type="hidden" name="cfg" value="[% cfg %]"> |
314 | 353 |
<input type="hidden" name="docid" value="[% docid %]"> |
... | ... | |
324 | 363 |
<input type="hidden" name="hasTaxonomic" value="[% hasTaxonomic %]"> |
325 | 364 |
<input type="hidden" name="hasMethod" value="[% hasMethod %]"> |
326 | 365 |
<input type="hidden" name="temporalRequired" value="[% temporalRequired %]"> |
327 |
<input type="hidden" name="spatialRequired" value="[% spatialRequired %]>" |
|
328 |
<p align="left"> |
|
329 |
<span class="label">BASIC INFORMATION </span><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#BasicInformation" target="guide"><span class="smalltext">(What's this?)</span></a> |
|
330 |
</p> |
|
331 |
<table class="tables"> |
|
332 |
<COLGROUP align="right" width="175"> |
|
333 |
<COLGROUP align="left" width="585"> |
|
334 |
<tr><td><td> |
|
335 |
<tr><td colspan="2" align="left"><span class="label">Name of Person completing this form</span> |
|
336 |
<tr><td align="right"><span class="required">First Name</span><td><input type="TEXT" name="providerGivenName" size="30" value="[%providerGivenName%]"> |
|
337 |
<tr><td align="right"><span class="required">Last Name</span><td><input type="TEXT" name="providerSurName" size="30" value="[%providerSurName%]"> |
|
338 |
<tr><td><td> |
|
339 |
[% IF showSiteList == 'true' %] |
|
340 |
<tr><td align="right"><span class="required">[% usite %] Name</span><td><select name="site"> |
|
366 |
<input type="hidden" name="spatialRequired" value="[% spatialRequired %]"> |
|
367 |
|
|
368 |
<table class="tables" cellpadding="8" cellspacing="0"> |
|
369 |
<tr class="sectheader"><td class="borderbottom" colspan="5" align="left"> BASIC INFORMATION - Name of Person completing this form</td> |
|
370 |
<td class="borderbottom" align="right"><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#DataSetOriginator" target="guide"><img src="@systemidserver@@html-path@/style/images/question_mark.gif" alt="What's this?" border="0"></a></td></tr> |
|
371 |
<tr class="sectbody"><td align="right"><span class="label">*First Name</span><td colspan="5"><input type="TEXT" name="providerGivenName" size="30" value="[%providerGivenName%]"> |
|
372 |
</td></tr> |
|
373 |
<tr class="sectbody"><td align="right"><span class="label">*Last Name</span><td colspan="5"><input type="TEXT" name="providerSurName" size="30" value="[%providerSurName%]"> |
|
374 |
</td></tr> |
|
375 |
|
|
376 |
<tr class="sectbody"><td align="right"><span class="label">*Data Set Title</span></td><td colspan="5"><input type="TEXT" name="title" value="[%title%]" size="60"> |
|
377 |
</td></tr> |
|
378 |
|
|
379 |
[% IF showSiteList == 'true' %] |
|
380 |
<tr class="sectbody"><td align="right"><span class="label">[% usite %] Name</span></td> |
|
381 |
<td colspan="5"><select name="site"> |
|
341 | 382 |
[% IF form == 're_entry' %] |
342 | 383 |
<option selected>[%site%]</option> |
343 | 384 |
[% ELSE %] |
... | ... | |
346 | 387 |
[% FOREACH site = siteList %] |
347 | 388 |
<option>[% site %]</option> |
348 | 389 |
[% END %] |
349 |
</select></tr> |
|
390 |
</select></td></tr>
|
|
350 | 391 |
[% END %] |
351 |
<tr><td align="right"><span class="required">Data Set Title</span><td><input type="TEXT" name="title" value="[%title%]" size="60"> |
|
352 |
[% IF showWgList == 'true' %] |
|
353 |
<tr><td align="right"><span class="required">NCEAS Project(s):</span>
|
|
354 |
<td><select name="wg" multiple="multiple" size="5"> |
|
392 |
|
|
393 |
[% IF showWgList == 'true' %]
|
|
394 |
<tr class="sectbody"><td align="right"><span class="label">*NCEAS Project(s):</span></td>
|
|
395 |
<td colspan="5"><select name="wg" multiple="multiple" size="5">
|
|
355 | 396 |
[% FOREACH project = projects %] |
356 | 397 |
[% SET pname = $project.3 %] |
357 | 398 |
[% IF pname.length > 50 %] |
... | ... | |
367 | 408 |
[% END %] |
368 | 409 |
<option value="[% value %]" [% sel %]>[% label %]</option> |
369 | 410 |
[% END %] |
370 |
</select> |
|
411 |
</select></td></tr>
|
|
371 | 412 |
[% END %] |
372 | 413 |
[% IF showOrganization == 'true' %] |
373 |
<tr><td align="right"><span class="label">Organization Name</span>
|
|
374 |
<td><input type="TEXT" name="site" size="60" value="[%site%]">
|
|
414 |
<tr class="sectbody"><td align="right"><span class="label">Organization Name</span></td>
|
|
415 |
<td colspan="5"><input type="TEXT" name="site" size="60" value="[%site%]"></td></tr>
|
|
375 | 416 |
[% END %] |
376 |
</tr> |
|
377 |
<tr><td><td></tr> |
|
378 |
</table> |
|
379 |
<p align="left"> |
|
380 |
<span class="label">PRINCIPAL DATA SET OWNER </span><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#DataSetOriginator" target="guide"><span class="smalltext">(What's this?)</span></a> |
|
381 |
</p> |
|
382 |
<table class="tables"> |
|
383 |
<COLGROUP align="right" width="175"> |
|
384 |
<COLGROUP align="left" width="585"> |
|
385 |
<tr><td><td> |
|
386 |
<tr><td align="right"><span class="required">First Name</span> |
|
387 |
<td><input type="TEXT" name="origNamefirst0" size="30" id="origNameFirst" value="[%origNamefirst0%]"> |
|
388 |
<tr><td align="right"><span class="required">Last Name</span> |
|
389 |
<td><input type="TEXT" name="origNamelast0" size="30" id="origNameLast" value="[%origNamelast0%]"> |
|
390 |
<tr><td align="right"><span class="label">Organization Name</span> |
|
391 |
<td><input type="TEXT" name="origNameOrg" size="60" id="origNameOrg" value="[%origNameOrg%]"> |
|
392 |
<tr><td align="right"><span class="label">E-Mail</span> |
|
393 |
<td><input type="TEXT" name="origEmail" size="30" id="origEmail" value="[%origEmail%]"> |
|
394 |
<tr><td align="right"><span class="label">Phone</span> |
|
395 |
<td><input type="TEXT" name="origPhone" size="30" id="origPhone" value="[%origPhone%]"> |
|
396 |
<tr><td align="right"><span class="label">FAX</span> |
|
397 |
<td><input type="TEXT" name="origFAX" size="30" id="origFAX" value="[%origFAX%]"> |
|
398 |
<tr><td align="right"><span class="label">Street information (number, street, unit, etc., comma-separated)</span> |
|
399 |
<td><textarea rows="3" cols="30" id="origDelivery" name="origDelivery">[%origDelivery%]</textarea> |
|
400 |
<tr><td align="right"><span class="label">City</span> |
|
401 |
<td><input type="TEXT" name="origCity" id="origCity" value="[%origCity%]" size="30"> |
|
402 |
<tr><td align="right"><span class="label">State</span> |
|
403 |
<td><select name="origState" id="origState"> |
|
417 |
|
|
418 |
<tr class="sectheader"><td class="topbottom" colspan="5" align="left">PRINCIPAL DATA SET OWNER </td> |
|
419 |
<td class="topbottom" align="right"><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#DataSetOriginator" target="guide"><img src="@systemidserver@@html-path@/style/images/question_mark.gif" alt="What's this?" border="0"></a> |
|
420 |
</td></tr> |
|
421 |
<tr class="sectbody"><td align="right"><span class="label">*First Name</span></td> |
|
422 |
<td colspan="5"><input type="TEXT" name="origNamefirst0" size="30" id="origNameFirst" value="[%origNamefirst0%]"></td></tr> |
|
423 |
<tr class="sectbody"><td align="right"><span class="label">*Last Name</span></td> |
|
424 |
<td colspan="5"><input type="TEXT" name="origNamelast0" size="30" id="origNameLast" value="[%origNamelast0%]"></td></tr> |
|
425 |
<tr class="sectbody"><td align="right"><span class="label">Organization Name</span></td> |
|
426 |
<td colspan="5"><input type="TEXT" name="origNameOrg" size="60" id="origNameOrg" value="[%origNameOrg%]"></td></tr> |
|
427 |
<tr class="sectbody"><td align="right"><span class="label">E-Mail</span></td> |
|
428 |
<td colspan="5"><input type="TEXT" name="origEmail" size="30" id="origEmail" value="[%origEmail%]"></td></tr> |
|
429 |
<tr class="sectbody"><td align="right"><span class="label">Phone</span></td> |
|
430 |
<td colspan="5"><input type="TEXT" name="origPhone" size="30" id="origPhone" value="[%origPhone%]"></td></tr> |
|
431 |
<tr class="sectbody"><td align="right"><span class="label">FAX</span></td> |
|
432 |
<td colspan="5"><input type="TEXT" name="origFAX" size="30" id="origFAX" value="[%origFAX%]"></td></tr> |
|
433 |
<tr class="sectbody"><td valign="top" align="right"><span class="label">Street<br>Information</td> |
|
434 |
<td colspan="5"><textarea rows="3" cols="30" id="origDelivery" name="origDelivery">[%origDelivery%]</textarea><br><span class="smalltext">(number, street, unit, etc.; comma-separated)</span> |
|
435 |
</td></tr> |
|
436 |
<tr class="sectbody"><td align="right"><span class="label">City</span></td> |
|
437 |
<td colspan="5"><input type="TEXT" name="origCity" id="origCity" value="[%origCity%]" size="30"></td></tr> |
|
438 |
<tr class="sectbody"><td align="right"><span class="label">State</span></td> |
|
439 |
<td colspan="5"><select name="origState" id="origState"> |
|
404 | 440 |
[% IF form == 're_entry' %] |
405 | 441 |
<option selected>[%origState%]</option> |
406 | 442 |
[% ELSE %] |
... | ... | |
465 | 501 |
<option>West Virginia</option> |
466 | 502 |
<option>Wisconsin</option> |
467 | 503 |
<option>Wyoming</option> |
468 |
</select> |
|
469 |
<tr><td align="right"><span class="label">Other State or Province</span> |
|
470 |
<td><input type="TEXT" name="origStateOther" size="30" id="origStateOther" value="[%origStateOther%]"> |
|
471 |
<tr><td align="right"><span class="label">Postal Code</span> |
|
472 |
<td><input type="TEXT" name="origZIP" id="origZip" value="[%origZIP%]" size="30"> |
|
473 |
<tr><td align="right"><span class="label">Country</span> |
|
474 |
<td><input type="TEXT" name="origCountry" size="30" id="origCountry" value="[%origCountry%]"> |
|
475 |
</tr> |
|
476 |
<tr><td><td></tr> |
|
477 |
</table> |
|
478 |
<p><span class="label"> |
|
479 |
ASSOCIATED PARTIES <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#AdditionalOriginators" |
|
480 |
target="guide"><span class="smalltext">(What's this?)</span></a></span> |
|
481 |
</p> |
|
482 |
[% numAO = 1 %] |
|
504 |
</select></td></tr> |
|
505 |
<tr class="sectbody"><td align="right"><span class="label">Other State/Province</span></td> |
|
506 |
<td colspan="5"><input type="TEXT" name="origStateOther" size="30" id="origStateOther" value="[%origStateOther%]"></td></tr> |
|
507 |
<tr class="sectbody"><td align="right"><span class="label">Postal Code</span></td> |
|
508 |
<td colspan="5"><input type="TEXT" name="origZIP" id="origZip" value="[%origZIP%]" size="30"></td></tr> |
|
509 |
<tr class="sectbody"><td align="right"><span class="label">Country</span></td> |
|
510 |
<td colspan="5"><input type="TEXT" name="origCountry" size="30" id="origCountry" value="[%origCountry%]"></td></tr> |
|
511 |
|
|
512 |
<tr class="sectheader"><td class="topbottom" colspan="5" align="left"><span class="label">ASSOCIATED PARTIES</span></td> |
|
513 |
<td class="topbottom" align="right"><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#AdditionalOriginators" |
|
514 |
target="guide"><img src="@systemidserver@@html-path@/style/images/question_mark.gif" alt="What's this?" border="0"></a></td></tr> |
|
515 |
|
|
516 |
[% numAO = 1 %] |
|
483 | 517 |
[% IF aoCount > 0 %] |
484 | 518 |
[% numAO = aoCount %] |
485 | 519 |
[% END %] |
486 | 520 |
<input type="hidden" name="aoCount" value="[%numAO%]" |
487 | 521 |
id="aoCount"> |
488 |
<table class="tables"> |
|
489 |
<tr><td><td><td></tr> |
|
490 |
<tr> |
|
491 |
<td width="33%" valign="TOP"> |
|
492 |
<p><span class="label">First Name</span></p> |
|
493 |
</td> |
|
494 |
<td width="33%" valign="TOP"> |
|
495 |
<p><span class="label">Last Name</span></p> |
|
496 |
</td> |
|
497 |
<td width="33%" valign="TOP"> |
|
498 |
<p><span class="label">Role</span></p> |
|
499 |
</td> |
|
500 |
</tr> |
|
501 |
[% cnt = 1 %] |
|
502 |
[% WHILE cnt <= numAO%] |
|
503 |
<tr> |
|
504 |
<td> |
|
522 |
|
|
523 |
[% cnt = 1 %] |
|
524 |
[% WHILE cnt <= numAO%] |
|
525 |
<tr class="sectbody"><td align="right"><span class="label">First Name</span></td> |
|
526 |
<td colspan="5"> |
|
505 | 527 |
[% SET key = "origNamefirst${cnt}" %] |
506 |
<input name="origNamefirst[%cnt%]" value="[%$key%]" size="30"> |
|
507 |
</td> |
|
508 |
<td> |
|
528 |
<input name="origNamefirst[%cnt%]" value="[%$key%]" size="30"></td></tr> |
|
529 |
|
|
530 |
<tr class="sectbody"><td align="right"><span class="label">Last Name</span></td> |
|
531 |
<td colspan="5"> |
|
509 | 532 |
[% SET key = "origNamelast${cnt}" %] |
510 |
<input name="origNamelast[%cnt%]" value="[%$key%]" size="30"> |
|
511 |
</td> |
|
512 |
<td> |
|
533 |
<input name="origNamelast[%cnt%]" value="[%$key%]" size="30"></td></tr> |
|
534 |
|
|
535 |
<tr class="sectbody"><td align="right"><span class="label">Role</span></td> |
|
536 |
<td colspan="5"> |
|
513 | 537 |
[% SET origR = "origRole${cnt}" %] |
514 | 538 |
<select name="origRole[%cnt%]"> |
515 | 539 |
[% IF form == 're_entry' && $origR != ""%] |
... | ... | |
524 | 548 |
</tr> |
525 | 549 |
[% cnt = cnt + 1 %] |
526 | 550 |
[% END %] |
527 |
<tr><td><td><td></tr> |
|
528 |
<tr id="addaorow"> |
|
529 |
<td> |
|
530 |
<input type="button" value="Add Associated Party" id="addaobutton1" |
|
531 |
onClick="addAdditionalPeople()"> |
|
532 |
</td> |
|
533 |
</tr> |
|
534 |
<tr><td><td><td></tr> |
|
535 |
</table> |
|
536 |
<p align="left"><span class="label">DATA SET ABSTRACT </span><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#DataSetAbstract" |
|
537 |
target="guide"><span class="smalltext">(What's this?)</span></a> |
|
538 |
</p> |
|
539 |
<table class="tables"> |
|
540 |
<tr><td></tr> |
|
541 |
<tr><td><span class="required">Data Set Abstract</span> |
|
542 |
<p align="left"><textarea rows="6" cols="60" name="abstract">[%abstract%]</textarea></p></tr> |
|
543 |
<tr><td></tr> |
|
544 |
</table> |
|
551 |
|
|
552 |
<tr class="sectbody" id="addaorow"> |
|
553 |
<td></td> |
|
554 |
<td colspan="5"> <input type="button" value="Add Associated Party" id="addaobutton1" |
|
555 |
onClick="addAdditionalPeople()"></td></tr> |
|
556 |
|
|
557 |
|
|
558 |
<tr class="sectheader"><td class="topbottom" colspan="5" align="left"><span class="label">DATA SET ABSTRACT</span></td> |
|
559 |
<td class="topbottom" align="right"><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#DataSetAbstract" |
|
560 |
target="guide"><img src="@systemidserver@@html-path@/style/images/question_mark.gif" alt="What's this?" border="0"></td></tr> |
|
561 |
|
|
562 |
<tr class="sectbody"><td align="right" valign="top"><span class="label">*Data Set Abstract</span></td> |
|
563 |
<td colspan="5"><textarea rows="6" cols="60" name="abstract">[%abstract%]</textarea></td></tr> |
|
564 |
|
|
565 |
|
|
545 | 566 |
[% IF hasKeyword == 'true' %] |
546 |
<p align="left"><span class="label"> |
|
547 |
KEYWORD INFORMATION <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#KeywordInformation" |
|
548 |
target="guide"><span class="smalltext">(What's this?)</span></a></span></p> |
|
549 |
<p align="left"><span class="regtext">(for example keywords, have a look at the keyword thesaurus for the <a href= |
|
567 |
<tr class="sectheader"><td class="topbottom" colspan="5" align="left"><span class="label">KEYWORD INFORMATION - for samples, see <a href= |
|
550 | 568 |
"http://gcmd.nasa.gov/Resources/valids/gcmd_parameters.html" target="nasa"><span class= |
551 |
"greenbold">NASA Global Change Master Directory (GCMD)</span></a>)</span></p> |
|
569 |
"boldlink">NASA Global Change Master Directory (GCMD).</span></a></span></td> |
|
570 |
<td class="topbottom" align="right"><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#KeywordInformation" |
|
571 |
target="guide"><img src="@systemidserver@@html-path@/style/images/question_mark.gif" alt="What's this?" border="0"></a></td></tr> |
|
572 |
|
|
552 | 573 |
[% numKey = 1 %] |
553 | 574 |
[% IF keyCount > 0 %] |
554 | 575 |
[% numKey = keyCount %] |
555 | 576 |
[% END %] |
556 | 577 |
<input type="hidden" name="keyCount" value="[%numKey%]" |
557 | 578 |
id="keyCount"> |
558 |
<table class="tables"> |
|
559 |
<tr><td><td><td></tr> |
|
560 |
<tr> |
|
561 |
<td width="33%" valign="TOP"> |
|
562 |
<p><span class="label">Keyword</span></p> |
|
563 |
</td> |
|
564 |
<td width="33%" valign="TOP"> |
|
565 |
<p><span class="label">Keyword Type</span></p> |
|
566 |
</td> |
|
567 |
<td width="33%" valign="TOP"> |
|
568 |
<p><span class="label">Keyword Thesaurus</span></p> |
|
569 |
</td> |
|
570 |
</tr> |
|
571 |
[% cnt = 1 %] |
|
579 |
|
|
580 |
[% cnt = 1 %] |
|
572 | 581 |
[% WHILE cnt <= numKey %] |
573 |
<tr>
|
|
574 |
<td>
|
|
582 |
<tr class="sectbody"><td align="right"><span class="label">Keyword</span></td>
|
|
583 |
<td colspan="5">
|
|
575 | 584 |
[% SET key = "keyword${cnt}" %] |
576 |
<input name="keyword[%cnt%]" value="[%$key%]" size="30"> |
|
577 |
</td> |
|
578 |
|
|
579 |
<td>
|
|
585 |
<input name="keyword[%cnt%]" value="[%$key%]" size="30"></td></tr>
|
|
586 |
|
|
587 |
<tr class="sectbody"><td align="right"><span class="label">Keyword Type</span></td> |
|
588 |
<td colspan="5">
|
|
580 | 589 |
[% SET keyT = "kwType${cnt}" %] |
581 | 590 |
<select name="kwType[%cnt%]"> |
582 | 591 |
[% IF form == 're_entry' && $keyT !="" %] |
583 | 592 |
<option selected>[%$keyT%]</option> |
584 | 593 |
[% END %] |
585 |
<option>none</option> |
|
586 |
<option>theme</option> |
|
587 |
<option>place</option> |
|
588 |
<option>stratum</option> |
|
589 |
<option>temporal</option> |
|
590 |
<option>taxonomic</option> |
|
591 |
</select> |
|
592 |
</td> |
|
593 |
|
|
594 |
<td> |
|
595 |
[% SET keyTh = "kwTh${cnt}" %] |
|
594 |
<option>None</option> |
|
595 |
<option>Theme</option> |
|
596 |
<option>Place</option> |
|
597 |
<option>Stratum</option> |
|
598 |
<option>Temporal</option> |
|
599 |
<option>Taxonomic</option> |
|
600 |
</select></td></tr> |
|
601 |
|
|
602 |
<tr id="keyThRow" class="sectbody"><td align="right"><span class="label">Keyword Thesaurus</span></td> |
|
603 |
<td colspan="5"> |
|
604 |
|
|
605 |
|
|
606 |
<!--[% SET keyTh = "kwTh${cnt}" %] |
|
596 | 607 |
<select name="kwTh[%cnt%]"> |
597 | 608 |
[% IF form == 're_entry' && $keyTh != "none" && $keyTh != "" %] |
598 | 609 |
<option selected>[%$keyTh%]</option> |
599 | 610 |
[% END %] |
600 |
<option>none</option>
|
|
611 |
<option>None</option>
|
|
601 | 612 |
<option>GCMD</option> |
602 |
</select> |
|
603 |
</td> |
|
604 |
</tr> |
|
613 |
</select> --> |
|
614 |
|
|
615 |
|
|
616 |
<input type="radio" name="kwTh[%cnt%]" value="none"><span class="regtext">None </span> |
|
617 |
<input type="radio" name="kwTh[%cnt%]" value="GCMD"><span class="regtext">GCMD </span> |
|
618 |
|
|
619 |
|
|
620 |
</td></tr> |
|
621 |
|
|
605 | 622 |
[% cnt = cnt + 1 %] |
606 | 623 |
[% END %] |
607 |
<tr><td><td><td></tr> |
|
608 |
<tr id="addkeyrow"> |
|
609 |
<td> |
|
610 |
<input type="button" value="Add Keyword" id="addkeybutton1" |
|
611 |
onClick="addKeyword()"> |
|
612 |
</td> |
|
613 |
</tr> |
|
614 |
<tr><td><td><td></tr> |
|
615 |
</table> |
|
624 |
|
|
625 |
<tr id="addkeyrow" class="sectbody"><td></td><td colspan="5" align="left"> |
|
626 |
<input type="button" value="Add Keyword" id="addkeybutton1" |
|
627 |
onClick="addKeyword()"></td></tr> |
|
628 |
|
|
616 | 629 |
[% END %] |
617 | 630 |
|
618 | 631 |
[% IF hasTemporal == 'true' %] |
619 | 632 |
|
620 |
<p align="left"><span class="label"> |
|
621 |
TEMPORAL COVERAGE OF DATA <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#TemporalCoverageOfData" |
|
622 |
target="guide"><span class="smalltext">(What's this?)</span></a> |
|
623 |
</span></p> |
|
624 |
<table class="tables"> |
|
625 |
<tr><td><td><td></tr> |
|
626 |
<tr> |
|
627 |
<td valign="TOP" colspan="3"> |
|
628 |
<p><span class="label">Beginning Date of Data Set:</span></p> |
|
629 |
</td> |
|
630 |
</tr> |
|
631 |
<tr><td><td><td></tr> |
|
632 |
<tr> |
|
633 |
<td width="33%" valign="TOP"> |
|
634 |
<p> |
|
633 |
<tr class="sectheader"><td class="topbottom" colspan="5" align="left"><span class="label"> |
|
634 |
TEMPORAL COVERAGE OF DATA</span></td> |
|
635 |
<td class="topbottom" align="right"><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#TemporalCoverageOfData" |
|
636 |
target="guide"><img src="@systemidserver@@html-path@/style/images/question_mark.gif" alt="What's this?" border="0"></a></td></tr> |
|
637 |
|
|
638 |
<tr class="sectbody"><td> |
|
639 |
<td align="left"><span class="label">Start Date</span></td><td></td> |
|
640 |
<td align="left" colspan="3"><span class="label">Stop Date</span></td></tr> |
|
641 |
|
|
642 |
<tr class="sectbody"> |
|
643 |
<td align="right"> |
|
635 | 644 |
[% IF temporalRequired == 'true' %] |
636 |
<span class="required">Year (YYYY)</span>
|
|
645 |
<span class="label">*Year (yyyy)</span>
|
|
637 | 646 |
[% ELSE %] |
638 |
<span class="label">Year (YYYY)</span> |
|
639 |
[% END %] |
|
640 |
<input type="TEXT" name="beginningYear" value="[%beginningYear%]" size="8" maxlength="4"></p> |
|
641 |
</td> |
|
642 |
<td width="33%" valign="TOP"> |
|
643 |
<p> |
|
644 |
[% IF temporalRequired == 'true' %] |
|
645 |
<span class="required">Month (MM)</span> |
|
647 |
<span class="label">Year (yyyy)</span> |
|
648 |
[% END %]</td> |
|
649 |
<td align="left"><input type="TEXT" name="beginningYear" value="[%beginningYear%]" size="8" maxlength="4"></td> |
|
650 |
<td align="right"><span class="label">Year (yyyy)</span></td> |
|
651 |
<td colspan="3" align="left"><input type="TEXT" name="endingYear" value="[%endingYear%]" size="8" maxlength="4"></td> |
|
652 |
</tr> |
|
653 |
|
|
654 |
|
|
655 |
<tr class="sectbody"> |
|
656 |
<td align="right"> |
|
657 |
[% IF temporalRequired == 'true' %] |
|
658 |
<span class="label">*Month</span> |
|
646 | 659 |
[% ELSE %] |
647 |
<span class="label">Month (MM)</span>
|
|
648 |
[% END %] |
|
649 |
<select name="beginningMonth"> |
|
660 |
<span class="label">Month</span> |
|
661 |
[% END %]</td>
|
|
662 |
<td align="left"><select name="beginningMonth">
|
|
650 | 663 |
[% IF form == 're_entry' && beginningMonth != ""%] |
651 | 664 |
<option selected>[%beginningMonth%]</option> |
652 | 665 |
[% END %] |
... | ... | |
654 | 667 |
<option>04</option> <option>05</option> <option>06</option> <option>07</option> |
655 | 668 |
<option>08</option> <option>09</option> <option>10</option> <option>11</option> |
656 | 669 |
<option>12</option> |
657 |
</select></p> |
|
658 |
</td> |
|
659 |
<td width="33%" valign="TOP"> |
|
660 |
<p> |
|
670 |
</select></td> |
|
671 |
|
|
672 |
<td align="right"><span class="label">Month</span></td> |
|
673 |
<td align="left" colspan="3"> <select name="endingMonth"> |
|
674 |
[% IF form == 're_entry' && endingMonth != ""%] |
|
675 |
<option selected>[%endingMonth%]</option> |
|
676 |
[% END %] |
|
677 |
<option>00</option> <option>01</option> <option>02</option> <option>03</option> |
|
678 |
<option>04</option> <option>05</option> <option>06</option> <option>07</option> |
|
679 |
<option>08</option> <option>09</option> <option>10</option> <option>11</option> |
|
680 |
<option>12</option> |
|
681 |
</select></td></tr> |
|
682 |
|
|
683 |
|
|
684 |
<tr class="sectbody"> |
|
685 |
<td align="right"> |
|
661 | 686 |
[% IF temporalRequired == 'true' %] |
662 |
<span class="required">Day (DD)</span>
|
|
687 |
<span class="label">*Day</span>
|
|
663 | 688 |
[% ELSE %] |
664 |
<span class="label">Day (DD)</span> |
|
665 |
[% END %] |
|
666 |
<select name="beginningDay"> |
|
689 |
<span class="label">Day</span> |
|
690 |
[% END %]</td> |
|
691 |
|
|
692 |
<td align="left"><select name="beginningDay"> |
|
667 | 693 |
[% IF form == 're_entry' && beginningDay != ""%] |
668 | 694 |
<option selected>[%beginningDay%]</option> |
669 | 695 |
[% END %] |
... | ... | |
675 | 701 |
<option>20</option> <option>21</option> <option>22</option> <option>23</option> |
676 | 702 |
<option>24</option> <option>25</option> <option>26</option> <option>27</option> |
677 | 703 |
<option>28</option> <option>29</option> <option>30</option> <option>31</option> |
678 |
</select></p> |
|
679 |
</td> |
|
680 |
</tr> |
|
681 |
<tr><td><td><td></tr> |
|
682 |
<tr> |
|
683 |
<td valign="TOP" colspan="3"> |
|
684 |
<p><span class="label">Ending Date of Data Set (provide no ending date |
|
685 |
at all if your data set is open-ended):</span></p> |
|
686 |
</td> |
|
687 |
</tr> |
|
688 |
<tr><td><td><td></tr> |
|
689 |
<tr> |
|
690 |
<td width="33%" valign="TOP"> |
|
691 |
<p> |
|
692 |
<span class="label">Year (YYYY)</span> |
|
693 |
<input type="TEXT" name="endingYear" value="[%endingYear%]" size="8" maxlength="4"> |
|
694 |
</p> |
|
695 |
</td> |
|
696 |
<td width="33%" valign="TOP"> |
|
697 |
<p> |
|
698 |
<span class="label">Month (MM)</span> |
|
699 |
<select name="endingMonth"> |
|
700 |
[% IF form == 're_entry' && endingMonth != ""%] |
|
701 |
<option selected>[%endingMonth%]</option> |
|
702 |
[% END %] |
|
703 |
<option>00</option> <option>01</option> <option>02</option> <option>03</option> |
|
704 |
<option>04</option> <option>05</option> <option>06</option> <option>07</option> |
|
705 |
<option>08</option> <option>09</option> <option>10</option> <option>11</option> |
|
706 |
<option>12</option> |
|
707 |
</select> |
|
708 |
</p> |
|
709 |
</td> |
|
710 |
<td width="33%" valign="TOP"> |
|
711 |
<p> |
|
712 |
<span class="label">Day (DD)</span> |
|
713 |
<select name="endingDay"> |
|
704 |
</select></td> |
|
705 |
|
|
706 |
<td align="right"><span class="label">Day</span></td> |
|
707 |
<td align="left" colspan="3"><select name="endingDay"> |
|
714 | 708 |
[% IF form == 're_entry' && endingDay != ""%] |
715 | 709 |
<option selected>[%endingDay%]</option> |
716 | 710 |
[% END %] |
... | ... | |
722 | 716 |
<option>20</option> <option>21</option> <option>22</option> <option>23</option> |
723 | 717 |
<option>24</option> <option>25</option> <option>26</option> <option>27</option> |
724 | 718 |
<option>28</option> <option>29</option> <option>30</option> <option>31</option> |
725 |
</select> |
|
726 |
</p>
|
|
727 |
</td> |
|
728 |
</tr>
|
|
729 |
<tr><td><td><td></tr>
|
|
730 |
</table>
|
|
731 |
[% END %]
|
|
732 |
|
|
733 |
[% IF hasSpatial == 'true' %] |
|
734 |
<p align="left">
|
|
735 |
<span class="label">SPATIAL COVERAGE OF DATA </span><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#SpatialCoverageOfData" target="guide"><span class="smalltext">(What's this?)</span></a> |
|
736 |
</p>
|
|
737 |
<table class="tables">
|
|
738 |
<tr><td><td><td><td></tr>
|
|
739 |
<tr> |
|
740 |
<td valign="top" colspan="4">
|
|
741 |
[% IF spatialRequired == 'true' %] |
|
742 |
<p><span class="required">Geographic Description</span></p>
|
|
719 |
</select></td></tr>
|
|
720 |
[% END %]
|
|
721 |
|
|
722 |
<tr class="sectbody">
|
|
723 |
<td></td><td align="left" colspan="5">
|
|
724 |
<span class="label">Note: </span><span class="regtext">Leave "Stop Date" blank if your data set is open-ended.</span>
|
|
725 |
</td></tr>
|
|
726 |
|
|
727 |
|
|
728 |
[% IF hasSpatial == 'true' %]
|
|
729 |
|
|
730 |
<tr class="sectheader"><td class="topbottom" colspan="5" align="left"><span class="label">SPATIAL COVERAGE OF DATA</span></td>
|
|
731 |
<td class="topbottom" align="right"><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#SpatialCoverageOfData" target="guide"><img src="@systemidserver@@html-path@/style/images/question_mark.gif" alt="What's this?" border="0"></a>
|
|
732 |
</td></tr>
|
|
733 |
|
|
734 |
<tr class="sectbody">
|
|
735 |
[% IF spatialRequired == 'true' %]
|
|
736 |
<td align="right" valign="top"><span class="label">*Geographic Description</span></td>
|
|
743 | 737 |
[% ELSE %] |
744 |
<p><span class="label">Geographic Description</span></p>
|
|
738 |
<td align="right" valign="top"><span class="label">Geographic Description</span></td>
|
|
745 | 739 |
[% END %] |
746 |
<p><span class="regtext">Enter a general description of the geographic area in which the data were collected. |
|
747 |
This can be a simple place name (e.g., Santa Barbara) or a fuller description.</span></p> |
|
748 |
<textarea rows="3" cols="60" name="geogdesc">[% geogdesc %]</textarea> |
|
749 |
</td> |
|
750 |
</tr> |
|
751 |
<tr><td><td><td><td></tr> |
|
752 |
<tr> |
|
753 |
<td valign="TOP" colspan="4"> |
|
754 |
<p><span class="label">Coordinates (in Degrees, Minutes and Seconds; at |
|
755 |
least 1 lat./long. pair is required):</span></p> |
|
756 |
<p><span class="regtext">Enter the first lat./long. pair only to indicate |
|
757 |
a point location. Enter both coordinate pairs to indicate a bounding |
|
758 |
box. In case of a bounding box, the first coordinate pair is the |
|
759 |
northwest corner and the second coordinate pair is the southeast |
|
760 |
corner of the bounding box.</span></p> |
|
761 |
</td> |
|
762 |
</tr> |
|
763 |
<tr><td><td><td><td></tr> |
|
740 |
<td align="left" colspan="5"><textarea rows="3" cols="60" name="geogdesc">[% geogdesc %]</textarea></td></tr> |
|
741 |
<tr class="sectbody"><td><td colspan="4"><span class="regtext">General description of the geographic area in which the data were collected. |
|
742 |
It can be a simple place name (e.g., Santa Barbara) or a fuller description.</span></td><td> |
|
743 |
</td></tr> |
|
744 |
<tr class="sectbody"><td class="topbottom" align="center" colspan="6"><span class="label">COORDINATES</span></td></tr> |
|
745 |
|
|
746 |
|
|
764 | 747 |
[% IF showSiteList == 'true' %] |
765 |
<tr> |
|
766 |
<td valign="TOP" colspan="4"> |
|
767 |
<input class="required" |
|
768 |
type="CHECKBOX" name="useSiteCoord" [%useSiteCoord%]> |
|
748 |
<tr class="sectbody"><td align="left" valign="top" colspan="6"> |
|
749 |
<input class="label" type="CHECKBOX" name="useSiteCoord" [%useSiteCoord%]> |
|
769 | 750 |
<span class="regtext">Use [% lsite %] coordinates. (This indicates that the data were |
770 | 751 |
collected at the [% lsite %]. If you check this box, you don't need |
771 | 752 |
to fill in the lat./long. fields below).</span> |
772 |
</td> |
|
773 |
</tr> |
|
753 |
</td></tr> |
|
774 | 754 |
[% END %] |
775 |
<tr><td><td><td><td></tr> |
|
776 |
<tr> |
|
777 |
<td width="25%" valign="TOP"> |
|
755 |
|
|
756 |
<tr class="sectbody"> |
|
757 |
<td width="190"></td><td width="100" align="left"><span class="label">Degrees</span></td> |
|
758 |
<td width="110" align="left"><span class="label">Minutes</span></td> |
|
759 |
<td width="70" align="left"><span class="label">Seconds</span></td> |
|
760 |
<td width="200"></td><td width="90"</td></tr> |
|
761 |
|
|
762 |
|
|
763 |
<tr class="sectbody"> |
|
764 |
<td align="right"> |
|
778 | 765 |
[% IF spatialRequired == 'true' %] |
779 |
<span class="required">Latitude</span>
|
|
766 |
<span class="label">*Latitude</span>
|
|
780 | 767 |
[% ELSE %] |
781 | 768 |
<span class="label">Latitude</span> |
782 |
[% END %] |
|
783 |
</td> |
|
784 |
<td width="20%" valign="TOP"><span class="label"> |
|
785 |
North/South</span> |
|
786 |
</td> |
|
787 |
<td width="25%" valign="TOP"> |
|
788 |
[% IF spatialRequired == 'true' %] |
|
789 |
<span class="required">Longitude</span> |
|
790 |
[% ELSE %] |
|
791 |
<span class="label">Longitude</span> |
|
792 |
[% END %] |
|
793 |
</td> |
|
794 |
<td width="30%" valign="TOP"><span class="label"> |
|
795 |
West/East</span> |
|
796 |
</td> |
|
797 |
</tr> |
|
798 |
<tr> |
|
799 |
<td width="20%" valign="TOP"> |
|
800 |
<input type="TEXT" name="latDeg1" value="[%latDeg1%]" size="3" maxlength="3"> |
|
801 |
<input type="TEXT" name="latMin1" value="[%latMin1%]" size="2" maxlength="2"> |
|
802 |
<input type="TEXT" name="latSec1" value="[%latSec1%]" size="2" maxlength="2"> |
|
803 |
</td> |
|
804 |
<td width="20%" valign="TOP"> |
|
805 |
<select name="hemisphLat1"> |
|
769 |
[% END %]</td> |
|
770 |
<td> |
|
771 |
<input type="TEXT" name="latDeg1" value="[%latDeg1%]" size="3" maxlength="3"></td> |
|
772 |
<td> <input type="TEXT" name="latMin1" value="[%latMin1%]" size="2" maxlength="2"></td> |
|
773 |
<td> <input type="TEXT" name="latSec1" value="[%latSec1%]" size="2" maxlength="2"></td> |
|
774 |
|
|
775 |
<td Align="left" colspan="2"> |
|
776 |
|
|
777 |
|
|
778 |
|
|
779 |
<!-- <select name="hemisphLat1"> |
|
806 | 780 |
[% IF form == 're_entry' && hemisphLat1 != ""%] |
807 | 781 |
<option selected>[%hemisphLat1%]</option> |
808 | 782 |
[% END %] |
809 | 783 |
<option>N</option> |
810 | 784 |
<option>S</option> |
811 |
</select> |
|
812 |
</td> |
|
813 |
<td width="20%" valign="TOP"> |
|
814 |
<input type="TEXT" name="longDeg1" value="[%longDeg1%]" size="3" maxlength="3"> |
|
815 |
<input type="TEXT" name="longMin1" value="[%longMin1%]" size="2" maxlength="2"> |
|
816 |
<input type="TEXT" name="longSec1" value="[%longSec1%]" size="2" maxlength="2"> |
|
817 |
</td> |
|
818 |
<td width="40%" valign="TOP"> |
|
819 |
<select name="hemisphLong1"> |
|
785 |
</select> --> |
|
786 |
|
|
787 |
<input type="radio" name="hemisphLat1" value="N"><span class="regtext">North </span> |
|
788 |
<input type="radio" name="hemisphLat1" value="S"><span class="regtext">South </span> |
|
789 |
</td></tr> |
|
790 |
|
|
791 |
|
|
792 |
<tr class="sectbody"> |
|
793 |
<td align="right"> |
|
794 |
[% IF spatialRequired == 'true' %] |
|
795 |
<span class="label">*Longitude</span> |
|
796 |
[% ELSE %] |
|
797 |
<span class="label">Longitude</span> |
|
798 |
[% END %]</td> |
|
799 |
|
|
800 |
<td> <input type="TEXT" name="longDeg1" value="[%longDeg1%]" size="3" maxlength="3"></td> |
|
801 |
<td> <input type="TEXT" name="longMin1" value="[%longMin1%]" size="2" maxlength="2"></td> |
|
802 |
<td> <input type="TEXT" name="longSec1" value="[%longSec1%]" size="2" maxlength="2"></td> |
|
803 |
|
|
804 |
|
|
805 |
<td align="left" colspan="2"> |
|
806 |
|
|
807 |
<!-- <select name="hemisphLong1"> |
|
820 | 808 |
[% IF form == 're_entry' && hemisphLong1 != ""%] |
821 | 809 |
<option selected>[%hemisphLong1%]</option> |
822 | 810 |
[% END %] |
823 | 811 |
<option>W</option> |
824 | 812 |
<option>E</option> |
825 |
</select> |
|
826 |
</td> |
|
827 |
</tr> |
|
828 |
<tr><td><td><td><td></tr> |
|
829 |
<tr> |
|
830 |
<td valign="TOP" colspan="4"><p><span class="regtext"> |
|
831 |
The second lat./long. pair, if provided, indicates |
|
832 |
the southeast corner of a bounding box.</span></p> |
|
833 |
</td> |
|
834 |
</tr> |
|
835 |
<tr> |
|
836 |
<td width="25%" valign="TOP"><span class="label"> |
|
837 |
Latitude</span> |
|
838 |
</td> |
|
839 |
<td width="20%" valign="TOP"><span class="label"> |
|
840 |
North/South</span> |
|
841 |
</td> |
|
842 |
<td width="25%" valign="TOP"><span class="label"> |
|
843 |
Longitude</span> |
|
844 |
</td> |
|
845 |
<td width="30%" valign="TOP"><span class="label"> |
|
846 |
West/East</span> |
|
847 |
</td> |
|
848 |
</tr> |
|
849 |
<tr> |
|
850 |
<td width="20%" valign="TOP"> |
|
851 |
<input type="TEXT" name="latDeg2" value="[%latDeg2%]" size="3" maxlength="3"> |
|
852 |
<input type="TEXT" name="latMin2" value="[%latMin2%]" size="2" maxlength="2"> |
|
853 |
<input type="TEXT" name="latSec2" value="[%latSec2%]" size="2" maxlength="2"> |
|
854 |
</td> |
|
855 |
<td width="20%" valign="TOP"> |
|
856 |
<select name="hemisphLat2"> |
|
813 |
</select> --> |
|
814 |
|
|
815 |
|
|
816 |
<input type="radio" name="hemisphLong1" value="W"><span class="regtext">West </span> |
|
817 |
<input type="radio" name="hemisphLong1" value="E"><span class="regtext">East </span> |
|
818 |
|
|
819 |
|
|
820 |
</td></tr> |
|
821 |
|
|
822 |
|
|
823 |
<tr class="sectbody"><td><td colspan="4" align="left"><span class="regtext">If only this first lat/long is entered, this indicates a point location. If both lat/long pairs are entered, then this first pair represents the northwest corner of a bounding box.</span> |
|
824 |
</td><td></td></tr> |
|
825 |
|
|
826 |
<tr class="sectbody"> |
|
827 |
<td align="right"><span class="label">Latitude</span></td> |
|
828 |
<td ><input type="TEXT" name="latDeg2" value="[%latDeg2%]" size="3" maxlength="3"></td> |
|
829 |
<td><input type="TEXT" name="latMin2" value="[%latMin2%]" size="2" maxlength="2"></td> |
|
830 |
<td><input type="TEXT" name="latSec2" value="[%latSec2%]" size="2" maxlength="2"></td> |
|
831 |
|
|
832 |
<td align="left" colspan="2"> |
|
833 |
|
|
834 |
<!-- <select name="hemisphLat2"> |
|
857 | 835 |
[% IF form == 're_entry' && hemisphLat2 != ""%] |
858 | 836 |
<option selected>[%hemisphLat2%]</option> |
859 | 837 |
[% END %] |
860 | 838 |
<option>N</option> |
861 | 839 |
<option>S</option> |
862 |
</select> |
|
863 |
</td> |
|
864 |
<td width="20%" valign="TOP"> |
|
865 |
<input type="TEXT" name="longDeg2" value="[%longDeg2%]" size="3" maxlength="3"> |
|
866 |
<input type="TEXT" name="longMin2" value="[%longMin2%]" size="2" maxlength="2"> |
|
867 |
<input type="TEXT" name="longSec2" value="[%longSec2%]" size="2" maxlength="2"> |
|
868 |
</td> |
|
869 |
<td width="40%" valign="TOP"> |
|
870 |
<select name="hemisphLong2"> |
|
871 |
[% IF form == 're_entry' && hemisphLong2 != ""%] |
|
840 |
</select> --> |
|
841 |
|
|
842 |
<input type="radio" name="hemisphLat2" value="N"><span class="regtext">North </span> |
|
843 |
<input type="radio" name="hemisphLat2" value="S"><span class="regtext">South </span> |
|
844 |
|
|
845 |
</td></tr> |
|
846 |
|
|
847 |
<tr class="sectbody"><td align="right"><span class="label">Longitude</span></td> |
|
848 |
<td> <input type="TEXT" name="longDeg2" value="[%longDeg2%]" size="3" maxlength="3"></td> |
|
849 |
<td> <input type="TEXT" name="longMin2" value="[%longMin2%]" size="2" maxlength="2"></td> |
|
850 |
<td> <input type="TEXT" name="longSec2" value="[%longSec2%]" size="2" maxlength="2"></td> |
|
851 |
|
|
852 |
|
|
853 |
|
|
854 |
|
|
855 |
<td align="left" colspan="2"> |
|
856 |
|
|
857 |
<!-- <select name="hemisphLong2"> |
|
858 |
[% IF form == 're_entry' && hemisphLong2 != ""%] |
|
872 | 859 |
<option selected>[%hemisphLong2%]</option> |
873 | 860 |
[% END %] |
874 | 861 |
<option>W</option> |
875 | 862 |
<option>E</option> |
876 |
</select> |
|
877 |
</td> |
|
878 |
</tr> |
|
879 |
<tr><td><td><td><td></tr> |
|
880 |
</table> |
|
881 |
[% END %] |
|
863 |
</select> --> |
|
864 |
|
|
865 |
<input type="radio" name="hemisphLong2" value="W"><span class="regtext">West </span> |
|
866 |
<input type="radio" name="hemisphLong2" value="E"><span class="regtext">East </span> |
|
867 |
|
|
868 |
</td></tr> |
|
869 |
<tr class="sectbody"><td></td> |
|
870 |
<td align="left" colspan="4"><span class="regtext"> |
|
871 |
If entered, this lat/long pair represents the southeast corner of a bounding box.</span> |
|
872 |
</td><td></td></tr> |
|
873 |
|
|
874 |
[% END %] |
|
882 | 875 |
|
883 | 876 |
[% IF hasTaxonomic == 'true' %] |
884 |
<p align="left"> |
|
885 |
<span class="label">TAXONOMIC COVERAGE OF DATA </span><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#TaxonomicCoverage" target="guide"><span class="smalltext">(What's this?)</span></a> |
|
886 |
</p> |
|
887 |
<table class="tables"> |
|
888 |
<tr><td><td></tr> |
|
889 |
<tr> |
|
890 |
<td colspan="2"> |
|
891 |
<p><span class="label">List the taxa associated with this set of data.</span></p> |
|
892 |
<p><span class="regtext">The Taxon Rank should indicate the level in the taxonomic |
|
893 |
hierarchy (e.g., Phylum or Species) and the Taxonomic Name should |
|
894 |
be the scientific name for the organism at that level |
|
895 |
(e.g., <span class="italicized">Ursus arctos</span>).</span></p> |
|
896 |
[% numTaxa = 1 %] |
|
877 |
|
|
878 |
<tr class="sectheader"><td class="topbottom" colspan="5" align="left"> |
|
879 |
<span class="label">TAXONOMIC COVERAGE OF DATA</span></td> |
|
880 |
<td class="topbottom" align="right"><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#TaxonomicCoverage" target="guide"><img src="@systemidserver@@html-path@/style/images/question_mark.gif" alt="What's this?" border="0"></span></a> |
|
881 |
[% numTaxa = 1 %] |
|
897 | 882 |
[% IF taxaCount > 0 %] |
898 | 883 |
[% numTaxa = taxaCount %] |
899 | 884 |
[% END %] |
900 | 885 |
<input type="hidden" name="taxaCount" value="[%numTaxa%]" |
901 | 886 |
id="taxaCount"> |
902 |
</td> |
|
903 |
</tr> |
|
904 |
<tr> |
|
905 |
<td width="33%"><span class="label">Taxon Rank</span></td> |
|
906 |
<td width="66%"><span class="label">Taxon Name</span></td> |
|
907 |
</tr> |
|
908 |
[% cnt = 1 %] |
|
887 |
</td></tr> |
|
888 |
|
|
889 |
|
|
890 |
<tr class="sectbody"> |
|
891 |
<td align="right"><span class="label">Taxon Rank</span></td> |
|
892 |
[% cnt = 1 %] |
|
909 | 893 |
[% WHILE cnt <= numTaxa %] |
910 |
<tr> |
|
911 |
<td width="33%"> |
|
894 |
<td align="left" colspan="5"> |
|
912 | 895 |
[% SET trn = "taxonRankName${cnt}" %] |
913 |
<input name="taxonRankName[%cnt%]" value="[% $trn %]" size="30"> |
|
914 |
</td> |
|
915 |
<td width="66%"> |
|
916 |
[% SET trv = "taxonRankValue${cnt}" %] |
|
917 |
<input name="taxonRankValue[%cnt%]" value="[% $trv %]" size="30"> |
|
918 |
</td> |
|
919 |
</tr> |
|
896 |
<input name="taxonRankName[%cnt%]" value="[% $trn %]" size="30"> <span class="label"><span class="regtext">(e.g., Phylum or Species)</span> |
|
897 |
</td></tr> |
|
898 |
|
|
899 |
<tr class="sectbody"> |
|
900 |
<td align="right"><span class="label">Taxon Name</span></td> |
|
901 |
<td align="left" colspan="5"> |
|
902 |
[% SET trv = "taxonRankValue${cnt}" %] |
|
903 |
<input name="taxonRankValue[%cnt%]" value="[% $trv %]" size="30"> <span class="regtext">(e.g., <span class="italicized">Ursus arctos</span>).</span> |
|
904 |
</td></tr> |
|
920 | 905 |
[% cnt = cnt + 1 %] |
921 | 906 |
[% END %] |
922 |
<tr><td><td></tr> |
|
923 |
<tr id="addtaxarow"> |
|
924 |
<td> |
|
925 |
<input type="button" value="Add taxon" id="addtaxabutton1" |
|
926 |
onClick="addTaxon()"> |
|
927 |
</td> |
|
928 |
</tr> |
|
929 |
<tr><td><td></tr> |
|
930 |
<tr><td><td></tr> |
|
931 |
<tr> |
|
932 |
<td colspan="2"> |
|
933 |
<p><span class="label">Taxonomic Authority</span></p> |
|
934 |
<p><span class="regtext">List the source(s) used for identifying and naming taxa in this |
|
935 |
list. These sources should provide comprehensive information about |
|
936 |
the taxonomic concepts indicated by the names listed.</span></p> |
|
937 |
<textarea rows="3" cols="30" name="taxaAuth">[% taxaAuth %]</textarea> |
|
938 |
</td> |
|
939 |
</tr> |
|
940 |
<tr><td><td></tr> |
|
941 |
</table> |
|
942 |
[% END %] |
|
907 |
|
|
908 |
<tr class="sectbody" id="addtaxarow"> |
|
909 |
<td></td><td colspan="5" align="left"> |
|
910 |
<input type="button" value="Add Taxon" id="addtaxabutton1" |
|
911 |
onClick="addTaxon()"></td> </tr> |
|
912 |
|
|
913 |
<tr class="sectbody"> |
|
914 |
<td valign="top" align="right"><span class="label">Taxonomic Authority</span></td> |
|
915 |
<td align="left" colspan="5"><textarea rows="3" cols="30" name="taxaAuth">[% taxaAuth %]</textarea></td></tr> |
|
916 |
<tr class="sectbody"><td><td colspan="4"><span class="regtext">List the source(s) used for identifying and naming taxa. These sources should provide |
|
917 |
comprehensive information about the taxonomic concepts listed.</span></td><td></td></tr> |
|
918 |
|
|
919 |
[% END %] |
|
943 | 920 |
|
944 | 921 |
[% IF hasMethod == 'true' %] |
945 |
<p align="left"> |
|
946 |
<span class="label">METHODS </span><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#Methods" target="guide"><span class="smalltext">(What's this?)</span></a> |
|
947 |
</p> |
|
948 |
<table class="tables"> |
|
949 |
<tr><td><td><td></tr> |
|
950 |
<tr> |
|
951 |
<td valign="top" colspan="3"> |
|
952 |
<p><span class="label">Data Collection Methods</span></p> |
|
953 |
</td> |
|
954 |
</tr> |
|
955 |
<tr> |
|
956 |
<td valign="top"> |
|
957 |
<p><span class="label">Title of Method </span><input type="text" name="methodTitle" value="[%methodTitle%]" size="60"></p> |
|
958 |
<p><span class="label">Method Description</span></p> |
|
922 |
|
|
923 |
<tr class="sectheader"><td class="topbottom" colspan="5" align="left"> |
|
924 |
<span class="label">DATA COLLECTION METHODS</span></td> |
|
925 |
<td class="topbottom" align="right"><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#Methods" target="guide"><img src="@systemidserver@@html-path@/style/images/question_mark.gif" alt="What's this?" border="0"></span></a> |
|
926 |
</td></tr> |
|
927 |
|
|
928 |
<tr class="sectbody"> |
|
929 |
<td align="right"><span class="label">Method Title</span></td> |
|
930 |
<td colspan="5" align="left"><input type="text" name="methodTitle" value="[%methodTitle%]" size="60"></td></tr> |
|
931 |
|
|
932 |
<tr class="sectbody"><td valign="top" align="right"><span class="label">Method Description</span> |
|
959 | 933 |
[% IF methodPara.size < 1 %] |
960 |
<textarea rows="6" cols="60" name="methodPara"></textarea></td></tr> |
|
934 |
<td colspan="5" align="left"><textarea rows="6" cols="60" name="methodPara"></textarea></td></tr>
|
|
961 | 935 |
[% END %] |
962 | 936 |
[% FOREACH para = methodPara %] |
963 |
<tr><td><textarea rows="6" cols="60" name="methodPara">[% para %]</textarea></tr>
|
|
937 |
<textarea rows="6" cols="60" name="methodPara">[% para %]</textarea></td></tr>
|
|
964 | 938 |
[% END %] |
965 |
<tr><td> |
|
966 |
<input type="button" value="Add paragraph" id="addparabutton1" |
|
967 |
onClick="addParagraph()"> |
|
968 |
<tr><td><td></tr> |
|
969 |
<tr><td><p><span class="label">Description of Study Extent</span></p> |
|
970 |
<p><span class="regtext">Describe the temporal, spatial and taxonomic extent of the study, |
|
939 |
|
|
940 |
<tr class="sectbody"><td class="borderbottom"></td><td class="borderbottom" colspan="5" align="left"> |
|
941 |
<input type="button" value="Add Paragraph to Method Description" id="addparabutton1" |
|
942 |
onClick="addParagraph()"></td></tr> |
|
943 |
|
|
944 |
<tr class="sectbody"><td valign="top" align="right"><span class="label">Extent of Study Description</span></td> |
|
945 |
<td colspan="5" align="left"><textarea rows="6" cols="60" name="studyExtentDescription">[% studyExtentDescription %]</textarea></td></tr> |
|
946 |
|
|
947 |
<tr class="sectbody"><td class="borderbottom"><td class="borderbottom" colspan="4"><span class="regtext">Describe the temporal, spatial and taxonomic extent of the study, |
|
971 | 948 |
supplementing the information on coverage provided above. For example, |
972 | 949 |
if the temporal coverage of the data is 1990-2000, you might provide |
973 | 950 |
details about any years that were missed or the months in which sampling |
974 |
occurred.</span></p>
|
|
975 |
<textarea rows="6" cols="60" name="studyExtentDescription">[% studyExtentDescription %]</textarea></td></tr> |
|
976 |
<tr><td><p><span class="label">Sampling Description</span></p>
|
|
977 |
<p><span class="regtext">Describe the sampling design of the study. For example, you might
|
|
978 |
describe the way in which treatments were assigned to sampling units.</span></p> |
|
979 |
<textarea rows="6" cols="60" name="samplingDescription">[% samplingDescription %]</textarea>
|
|
980 |
</td></tr> |
|
981 |
<tr><td><td></tr> |
|
982 |
</table> |
|
983 |
[% END %] |
|
984 |
<p align="left"> |
|
985 |
<span class="label">DATA SET CONTACT </span><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#DataSetContactAddress" target="guide"><span class="smalltext">(What's this?)</span></a> |
|
986 |
</p>
|
|
987 |
<table class="tables">
|
|
988 |
<COLGROUP align="right" width="175">
|
|
989 |
<COLGROUP align="left" width="585">
|
|
990 |
<tr><td><td></tr> |
|
991 |
<tr><td valign="TOP" align="left" colspan="2">
|
|
951 |
occurred.</span></td><td class="borderbottom"></td></tr>
|
|
952 |
|
|
953 |
<tr class="sectbody"><td valign="top" align="right"><span class="label">Sampling Description</span></td>
|
|
954 |
<td colspan="5" align="left"><textarea rows="6" cols="60" name="samplingDescription">[% samplingDescription %]</textarea></td></tr>
|
|
955 |
|
|
956 |
<tr class="sectbody"><td><td colspan="4"><span class="regtext">Describe the sampling design of the study. For example, you might
|
|
957 |
describe the way in which treatments were assigned to sampling units.</span></td><td></td></tr>
|
|
958 |
|
|
959 |
|
|
960 |
[% END %]
|
|
961 |
|
|
962 |
|
|
963 |
<tr class="sectheader"><td class="topbottom" colspan="5" align="left">
|
|
964 |
<span class="label">DATA SET CONTACT</span></td>
|
|
965 |
<td class="topbottom" align="right"><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#DataSetContactAddress" target="guide"><img src="@systemidserver@@html-path@/style/images/question_mark.gif" alt="What's this?" border="0"></a>
|
|
966 |
</td></tr>
|
|
967 |
|
|
968 |
<tr class="sectbody"><td valign="top" align="left" colspan="6">
|
|
992 | 969 |
<input type="CHECKBOX" name="useOrigAddress" onClick="copyContact()" id="copyCheckBox" [%useOrigAddress%]> |
993 | 970 |
<span class="regtext">Use the same name and address as the <span class="label">PRINCIPAL DATA SET OWNER</span> above (if you check this box, |
994 |
you don't need to fill in the name and address fields below).</span></td> |
|
995 |
</tr> |
|
996 |
<tr><td><td></tr> |
|
997 |
<tr> |
|
998 |
<td align="right"><span class="required">First Name</span> |
|
999 |
<td><input type="TEXT" name="origNamefirstContact" id="contactNameFirst" value="[%origNamefirstContact%]" size="30"> |
|
1000 |
<tr> |
|
1001 |
<td align="right"><span class="required">Last Name</span> |
|
1002 |
<td><input type="TEXT" name="origNamelastContact" id="contactNameLast" value="[%origNamelastContact%]" size="30"> |
|
1003 |
<tr> |
|
971 |
you don't need to fill in the name and address fields below).</span></td></tr> |
|
972 |
<tr class="sectbody"> |
|
973 |
<td align="right"><span class="label">*First Name</span></td> |
|
974 |
<td colspan="5"><input type="TEXT" name="origNamefirstContact" id="contactNameFirst" value="[%origNamefirstContact%]" size="30"></td></tr> |
|
975 |
<tr class="sectbody"> |
|
976 |
<td align="right"><span class="label">*Last Name</span> |
|
977 |
<td colspan="5"><input type="TEXT" name="origNamelastContact" id="contactNameLast" value="[%origNamelastContact%]" size="30"></td></tr> |
|
978 |
<tr class="sectbody"> |
|
1004 | 979 |
<td align="right"><span class="label">Organization Name</span> |
1005 |
<td><input type="TEXT" name="origNameOrgContact" id="contactNameOrg" value="[%origNameOrgContact%]" size="60">
|
|
1006 |
<tr> |
|
980 |
<td colspan="5"><input type="TEXT" name="origNameOrgContact" id="contactNameOrg" value="[%origNameOrgContact%]" size="60"></td></tr>
|
|
981 |
<tr class="sectbody">
|
|
1007 | 982 |
<td align="right"><span class="label">E-Mail</span> |
1008 |
<td><input type="TEXT" name="origEmailContact" id="contactEmail" value="[%origEmailContact%]" size="30">
|
|
1009 |
<tr> |
|
983 |
<td colspan="5"><input type="TEXT" name="origEmailContact" id="contactEmail" value="[%origEmailContact%]" size="30"></td></tr>
|
|
984 |
<tr class="sectbody">
|
|
1010 | 985 |
<td align="right"><span class="label">Phone</span> |
1011 |
<td><input type="TEXT" name="origPhoneContact" id="contactPhone" value="[%origPhoneContact%]" size="30">
|
|
1012 |
<tr>
|
|
986 |
<td colspan="5"><input type="TEXT" name="origPhoneContact" id="contactPhone" value="[%origPhoneContact%]" size="30"></td></tr>
|
|
987 |
<tr class="sectbody">
|
|
1013 | 988 |
<td align="right"><span class="label">FAX</span> |
1014 |
<td><input type="TEXT" name="origFAXContact" id="contactFAX" value="[%origFAXContact%]" size="30"> |
|
1015 |
<tr> |
|
1016 |
<td align="right"><span class="label">Street information (number, street, unit, etc., comma-separated)</span> |
|
1017 |
<td><textarea rows="3" cols="30" name="origDeliveryContact" id="contactDelivery">[%origDeliveryContact%]</textarea> |
|
1018 |
<tr> |
|
989 |
<td colspan="5"><input type="TEXT" name="origFAXContact" id="contactFAX" value="[%origFAXContact%]" size="30"></td></tr> |
|
990 |
<tr class="sectbody"><td valign="top" align="right"><span class="label">Street<br>Information</td> |
|
991 |
<td colspan="5"><textarea rows="3" cols="30" name="origDeliveryContact" id="contactDelivery">[%origDeliveryContact%]</textarea><br><span class="smalltext">(number, street, unit, etc.; comma-separated)</span></td></tr> |
|
992 |
<tr class="sectbody"> |
|
1019 | 993 |
<td align="right"><span class="label">City</span> |
1020 |
<td><input type="TEXT" name="origCityContact" id="contactCity" value="[%origCityContact%]" size="30">
|
|
1021 |
<tr> |
|
994 |
<td colspan="5"><input type="TEXT" name="origCityContact" id="contactCity" value="[%origCityContact%]" size="30"></td></tr>
|
|
995 |
<tr class="sectbody">
|
|
1022 | 996 |
<td align="right"><span class="label">State</span> |
1023 |
<td><select id="contactState" name="origStateContact"> |
|
997 |
<td colspan="5"><select id="contactState" name="origStateContact">
|
|
1024 | 998 |
[% IF form == 're_entry' %] |
1025 | 999 |
<option>[%origStateContact%]</option> |
1026 | 1000 |
[% ELSE %] |
... | ... | |
1085 | 1059 |
<option>West Virginia</option> |
1086 | 1060 |
<option>Wisconsin</option> |
1087 | 1061 |
<option>Wyoming</option> |
1088 |
</select> |
|
1089 |
<tr> |
|
1090 |
<td align="right"><span class="label">Other State or Province</span>
|
|
1091 |
<td><input type="TEXT" name="origStateOtherContact" id="contactStateOther" value="[%origStateOtherContact%]" size="30">
|
|
1092 |
<tr> |
|
1062 |
</select></td></tr>
|
|
1063 |
<tr class="sectbody">
|
|
1064 |
<td align="right"><span class="label">Other State/Province</span>
|
|
1065 |
<td colspan="5"><input type="TEXT" name="origStateOtherContact" id="contactStateOther" value="[%origStateOtherContact%]" size="30"></td></tr>
|
|
1066 |
<tr class="sectbody">
|
|
1093 | 1067 |
<td align="right"><span class="label">Postal Code</span> |
1094 |
<td><input type="TEXT" name="origZIPContact" size="30" id="contactZip" value="[%origZIPContact%]">
|
|
1095 |
<tr> |
|
1068 |
<td colspan="5"><input type="TEXT" name="origZIPContact" size="30" id="contactZip" value="[%origZIPContact%]"></td></tr>
|
|
1069 |
<tr class="sectbody">
|
|
1096 | 1070 |
<td align="right"><span class="label">Country</span> |
1097 |
<td><input type="TEXT" name="origCountryContact" id="contactCountry" value="[%origCountryContact%]" size="30"> |
|
1098 |
<tr><td><td></tr> |
|
1099 |
</table> |
|
1100 |
<p align="left"> |
|
1101 |
<span class="label">DISTRIBUTION INFORMATION </span><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#DistributionIinformation" target="guide"><span class="smalltext">(What's this?)</span></a> |
|
1102 |
</p> |
|
1103 |
<table class="tables"> |
|
1104 |
<tr><td></tr> |
|
1105 |
<tr><td><span class="label">Dataset Name or Identifier (important) </span><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#Site-specificCode" |
|
1106 |
target="guide"><span class="smalltext">(What's this?)</span></a> |
|
1107 |
<tr><td><input type="TEXT" name="identifier" value="[%identifier%]" size="60"> |
|
1108 |
<tr><td></tr> |
Also available in: Unified diff
Changes made in entry form based on recommendations from Laura Downey
(Commit done for Veronique Connolly by Saurabh Garg)