Revision 2413
Added by sgarg over 19 years ago
lib/style/common/templates/entryForm.tmpl | ||
---|---|---|
851 | 851 |
evt = (evt) ? evt : ((window.event) ? window.event : null); |
852 | 852 |
if(evt) { |
853 | 853 |
var elem = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null); |
854 |
|
|
855 |
// hack so that this works on safari... |
|
856 |
if(elem.nodeName != 'A'){ |
|
857 |
elem=elem.parentNode; |
|
858 |
} |
|
854 | 859 |
elem.removeChild(elem.firstChild); |
855 |
|
|
856 | 860 |
var node = document.getElementById(_node); |
857 | 861 |
if(nodeBit){ |
858 | 862 |
elem.appendChild(document.createTextNode("Show")); |
859 |
if (navigator.userAgent.toLowerCase().indexOf('msie')!= -1 && document.all){ |
|
860 |
node.style.setAttribute("display", "none"); |
|
861 |
} else { |
|
862 |
node.setAttribute("style", "display:none"); |
|
863 |
} |
|
863 |
node.className="hide"; |
|
864 | 864 |
return 0; |
865 | 865 |
} else { |
866 | 866 |
elem.appendChild(document.createTextNode("Hide")); |
867 |
if (navigator.userAgent.toLowerCase().indexOf('msie')!= -1 && document.all){ |
|
868 |
node.style.removeAttribute("display"); |
|
869 |
} else { |
|
870 |
node.removeAttribute("style"); |
|
871 |
} |
|
867 |
node.className="tables"; |
|
872 | 868 |
return 1; |
873 | 869 |
} |
874 | 870 |
} |
... | ... | |
1019 | 1015 |
<tr><td></td></tr> |
1020 | 1016 |
<tr><td align="left"><span class="regtext">If you have any questions, comments or problems |
1021 | 1017 |
regarding this form, please contact [% adminname %] at |
1022 |
<a href="mailto:[% recipient %]"><span class="italic">[% recipient %]</span></a></span>.
|
|
1018 |
<a href="mailto:[% recipient %]"><span class="boldlink">[% recipient %]</span></a></span>.
|
|
1023 | 1019 |
</td></tr><tr><td></td></tr> |
1024 | 1020 |
[% ELSE %] |
1025 |
<table width="760" cellpadding="3" cellspacing="0"> |
|
1026 |
<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> |
|
1021 |
|
|
1022 |
|
|
1023 |
<table class="intro" cellpadding="3" cellspacing="0"> |
|
1024 |
<tr><td align="left"><span class="regtext">Use this page to edit the data set description that you submitted earlier to the registry. |
|
1025 |
[%IF docid !=''%] |
|
1026 |
<br>The ID of this data set is: <span class="boldlink"><a href="@servlet-path@?action=read&qformat=[% cfg %]&docid=[% docid %]">[% docid %]</a> |
|
1027 |
</span> |
|
1028 |
[%END%] |
|
1029 |
</span></td></tr> |
|
1027 | 1030 |
<tr><td></td></tr> |
1028 | 1031 |
<tr><td align="left"><span class="regtext">Please have a look at the |
1029 | 1032 |
<a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide" target="guide"> |
1030 |
<span class="boldlink">Guide on How to Complete Data Registry Entries</span></a>
|
|
1031 |
for help with filling of this catalog form.</span></td</tr>
|
|
1033 |
<span class="boldlink">Guide for Completing the Data Registry Form</span></a>
|
|
1034 |
for help with filling in this form.</span></td</tr>
|
|
1032 | 1035 |
<tr><td></td></tr> |
1033 | 1036 |
<tr><td align="left"><span class="regtext">If you have any questions, comments or problems |
1034 | 1037 |
regarding this form, please contact [% adminname %] at |
1035 |
<a href="mailto:[% recipient %]"><span class="italicized">[% recipient %]</span></a>.</span>
|
|
1036 |
</td></tr> |
|
1038 |
<a href="mailto:[% recipient %]"><span class="boldling">[% recipient %]</span></a>.</span>
|
|
1039 |
</td></tr><tr><td></td></tr>
|
|
1037 | 1040 |
[% END %] |
1041 |
|
|
1042 |
|
|
1038 | 1043 |
<tr><td align="left"><span class="label">*Denotes a required field.</span></td></tr> |
1039 | 1044 |
<tr><td></td></tr> |
1040 | 1045 |
|
... | ... | |
1061 | 1066 |
<input type="hidden" name="spatialRequired" value="[% spatialRequired %]"> |
1062 | 1067 |
|
1063 | 1068 |
<table class="tables" cellpadding="5" cellspacing="0"> |
1064 |
<tr class="sectheader"><td colspan="5" align="left"> BASIC INFORMATION - name of person completing this form.
|
|
1065 |
<a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#DataSetOriginator" target="guide">
|
|
1069 |
<tr class="sectheader"><td colspan="5" align="left"><span class="label">BASIC INFORMATION
|
|
1070 |
<a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#BasicInformation" target="guide">
|
|
1066 | 1071 |
<span class="smalltext">(What's this?)</span></a></td> |
1067 | 1072 |
<td class="rightCol"><span><a onClick="basicInfoBit=swap(event, 'basicInfoTable', basicInfoBit)" style="cursor:pointer">Hide</a></span></td> |
1068 | 1073 |
</tr> |
... | ... | |
1079 | 1084 |
|
1080 | 1085 |
[% IF showSiteList == 'true' %] |
1081 | 1086 |
<tr class="sectbody" id="sitelist"><td class="rightCol"><span class="label">*[% usite %] Name</span></td> |
1082 |
<td colspan="5"><select name="site"> |
|
1087 |
<td colspan="5"><select name="site" class="longwidth">
|
|
1083 | 1088 |
[% IF form == 're_entry' %] |
1084 | 1089 |
<option selected>[%site%]</option> |
1085 | 1090 |
[% ELSE %] |
... | ... | |
1315 | 1320 |
|
1316 | 1321 |
[% IF hasKeyword == 'true' %] |
1317 | 1322 |
<table class="tables" cellpadding="5" cellspacing="0"> |
1318 |
<tr class="sectheader"><td colspan="5" align="left"><span class="label">KEYWORD - for samples, see <a href= |
|
1319 |
"http://gcmd.nasa.gov/Resources/valids/gcmd_parameters.html" target="nasa"><span class= |
|
1320 |
"boldlink">NASA Global Change Master Directory (GCMD)</span></a><span class="label">. </span><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#KeywordInformation" |
|
1323 |
<tr class="sectheader"><td colspan="5" align="left"><span class="label">KEYWORD INFORMATION <span class="label"> </span><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#KeywordInformation" |
|
1321 | 1324 |
target="guide"><span class="smalltext">(What's this?)</span></a></td> |
1322 | 1325 |
<td class="rightCol"><span><a onClick="keywordBit=swap(event, 'keywordTable', keywordBit)" style="cursor:pointer">Hide</a></span></td> |
1323 | 1326 |
</tr> |
1324 | 1327 |
</table> |
1325 | 1328 |
|
1326 | 1329 |
<table class="tables" cellpadding="5" cellspacing="0" id="keywordTable"> |
1327 |
<tr class="sectbody"> |
|
1330 |
<tr class="sectbody"><td><td colspan="5" align="left"><span class="regtext">For samples, see <a href= |
|
1331 |
"http://gcmd.nasa.gov/Resources/valids/gcmd_parameters.html" target="nasa"><span class= |
|
1332 |
"boldlink">NASA Global Change Master Directory (GCMD)</a>.</span> |
|
1333 |
|
|
1334 |
<tr class="sectbody"> |
|
1328 | 1335 |
<td class="rightCol"><span class="label">Keyword</span></td> |
1329 | 1336 |
<td colspan="5"> |
1330 | 1337 |
<input name="keyword" id="keyword" class="shortwidth"></td></tr> |
... | ... | |
1709 | 1716 |
</table> |
1710 | 1717 |
|
1711 | 1718 |
<table class="tables" cellpadding="5" cellspacing="0" id="taxonomicTable"> |
1712 |
<tr class="sectbody"><td><td colspan="5" align="left"><span class="regtext">See the <a href= |
|
1719 |
<tr class="sectbody"><td></td> |
|
1720 |
<td colspan="5" align="left"><span class="regtext">See the <a href= |
|
1713 | 1721 |
"http://darwin.zoology.gla.ac.uk/~rpage/MyToL/www/index.php" target="_blank">Glasgow Taxonomic Name Server</a> or the <a href= |
1714 | 1722 |
"http://www.itis.usda.gov/" target="_blank">Integrated Taxonomic Information System</a> for correct spelling of taxonomic names.</td></tr> |
1715 | 1723 |
|
1716 | 1724 |
<tr class="sectbody"> |
1717 |
<td class="rightCol"><span class="label">Taxon Rank</span></td> |
|
1725 |
<td class="rightCol"><span class="label">Taxonomic Rank</span></td>
|
|
1718 | 1726 |
<td align="left" colspan="5"> |
1719 | 1727 |
<input name="taxonRank" id="taxonRank" class="shortwidth"> <span class="label"><span class="regtext">(e.g., Species)</span> |
1720 | 1728 |
</td> |
1721 | 1729 |
</tr> |
1722 | 1730 |
|
1723 | 1731 |
<tr class="sectbody"> |
1724 |
<td class="rightCol"><span class="label">Taxon Name</span></td> |
|
1732 |
<td class="rightCol"><span class="label">Taxonomic Name</span></td>
|
|
1725 | 1733 |
<td align="left" colspan="5"> |
1726 | 1734 |
<input name="taxonName" id="taxonName" class="shortwidth"> <span class="label"><span class="regtext">(e.g., <i>Ursus arctos</i>)</span> |
1727 | 1735 |
</td> |
... | ... | |
1776 | 1784 |
[% cnt = cnt + 1 %] |
1777 | 1785 |
[% END %] |
1778 | 1786 |
|
1779 |
<tr class="sectbody" id="addtaxarow"> |
|
1780 |
<td style="border-top: 1px solid black;" valign="top" align="right" ><span class="label">Taxonomic Reference</span></td> |
|
1781 |
<td style="border-top: 1px solid black;" align="left" colspan="5"><textarea rows="3" cols="30" name="taxaAuth">[% taxaAuth %]</textarea></td></tr> |
|
1782 |
<tr class="sectbody"><td><td colspan="4"><span class="regtext">List the source(s) used for identifying and naming taxa (e.g., name of a field guide, key, or nomenclature revision).</span></td><td></td></tr> |
|
1787 |
<tr class="sectbody" id="addtaxarow"> |
|
1788 |
<td class="bordertop" valign="top" align="right" ><span class="label">Taxonomic Reference</span></td> |
|
1789 |
<td class="bordertop" align="left" colspan="5"><textarea rows="3" cols="30" name="taxaAuth">[% taxaAuth %]</textarea></td> |
|
1790 |
</tr> |
|
1791 |
<tr class="sectbody"> |
|
1792 |
<td></td> |
|
1793 |
<td colspan="5"><span class="regtext">List the source(s) used for identifying and naming taxa (e.g., name of a <br>field guide, key, or |
|
1794 |
nomenclature revision).</span></td> |
|
1795 |
</tr> |
|
1783 | 1796 |
</table> |
1784 | 1797 |
[% END %] |
1785 | 1798 |
|
... | ... | |
1796 | 1809 |
|
1797 | 1810 |
<tr class="sectbody"> |
1798 | 1811 |
<td class="rightCol"><span class="label">Method Title</span></td> |
1799 |
<td colspan="5" align="left"><input type="text" name="methodTitle" value="[%methodTitle%]" size="60"></td></tr>
|
|
1812 |
<td colspan="5" align="left"><input type="text" name="methodTitle" value="[%methodTitle%]" class="longwidth"></td></tr>
|
|
1800 | 1813 |
|
1801 | 1814 |
<tr class="sectbody"><td valign="top" class="rightCol"><span class="label">Method Description</span> |
1802 | 1815 |
<td colspan="5" align="left"> |
... | ... | |
1808 | 1821 |
[% END %] |
1809 | 1822 |
</td></tr> |
1810 | 1823 |
|
1811 |
<tr class="sectbody" id="addparabutton1"><td class="borderbottom"></td><td class="borderbottom" colspan="5" align="left"> |
|
1824 |
<tr class="sectbody" id="addparabutton1"> |
|
1825 |
<td ></td> |
|
1826 |
<td colspan="5" align="left"> |
|
1812 | 1827 |
<input type="button" value="Add Paragraph to Method Description" |
1813 | 1828 |
onClick="addParagraph()"></td></tr> |
1814 | 1829 |
|
1815 | 1830 |
|
1816 |
<tr class="sectbody"><td valign="top" align="right"><span class="label">Extent of Study Description</span></td> |
|
1817 |
<td colspan="5" align="left"><textarea rows="6" cols="60" name="studyExtentDescription">[% studyExtentDescription %]</textarea></td></tr> |
|
1831 |
<tr class="sectbody"> |
|
1832 |
<td valign="top" align="right" class="bordertop"> |
|
1833 |
<span class="label">Extent of Study Description</span> |
|
1834 |
</td> |
|
1835 |
<td colspan="5" align="left" class="bordertop"><textarea rows="6" cols="60" name="studyExtentDescription">[% studyExtentDescription %]</textarea></td> |
|
1836 |
</tr> |
|
1818 | 1837 |
|
1819 |
<tr class="sectbody"><td class="borderbottom"><td class="borderbottom" colspan="4"><span class="regtext">Describe the temporal, spatial and taxonomic extent of the study, |
|
1820 |
supplementing the information on coverage provided above. For example, |
|
1821 |
if the temporal coverage of the data is 1990-2000, you might provide |
|
1822 |
details about any years that were missed or the months in which sampling |
|
1823 |
occurred.</span></td><td class="borderbottom"></td></tr> |
|
1838 |
<tr class="sectbody"> |
|
1839 |
<td> |
|
1840 |
</td> |
|
1841 |
<td colspan="5"><span class="regtext"> |
|
1842 |
Describe the temporal, spatial and taxonomic extent of the study,<br> |
|
1843 |
supplementing the information on coverage provided above. <br> |
|
1844 |
For example, if the temporal coverage of the data is 1990-2000, you<br> |
|
1845 |
might provide details about any years that were missed or the months<br> |
|
1846 |
in which sampling occurred.</span> |
|
1847 |
</td> |
|
1848 |
</tr> |
|
1824 | 1849 |
|
1825 |
<tr class="sectbody"><td valign="top" align="right"><span class="label">Sampling Description</span></td> |
|
1826 |
<td colspan="5" align="left"><textarea rows="6" cols="60" name="samplingDescription">[% samplingDescription %]</textarea></td></tr> |
|
1850 |
<tr class="sectbody"><td class="bordertop" valign="top" align="right"><span class="label">Sampling Description</span></td>
|
|
1851 |
<td colspan="5" align="left" class="bordertop" ><textarea rows="6" cols="60" name="samplingDescription">[% samplingDescription %]</textarea></td></tr>
|
|
1827 | 1852 |
|
1828 |
<tr class="sectbody"><td><td colspan="4"><span class="regtext">Describe the sampling design of the study. For example, you might |
|
1829 |
describe the way in which treatments were assigned to sampling units.</span></td><td></td></tr> |
|
1853 |
<tr class="sectbody"><td><td colspan="5"><span class="regtext"> |
|
1854 |
Describe the sampling design of the study. For example, you might <br> |
|
1855 |
describe the way in which treatments were assigned to sampling units.</span></td></tr> |
|
1830 | 1856 |
|
1831 | 1857 |
</table> |
1832 | 1858 |
[% END %] |
... | ... | |
1956 | 1982 |
<tr class="sectbody"><td class="rightCol"><span class="label">Data Set Identifier</span></td> |
1957 | 1983 |
<td colspan="5"><input type="TEXT" name="identifier" value="[%identifier%]" class="longwidth"></td></tr> |
1958 | 1984 |
<tr class="sectbody"><td valign="top" align="right"><span class="label">Note:</span></td> |
1959 |
<td colspan="4" align="left"><span class="regtext">If available, please enter a name or number that uniquely identifies and describes concisely the data set. |
|
1960 |
Alternatively, provide other pertinent information that can identify and locate the data set within your site's data management system.</span></td><td></td></tr> |
|
1985 |
<td colspan="4" align="left"><span class="regtext"> |
|
1986 |
If available, please enter a name or number that uniquely identifies and<br> |
|
1987 |
describes concisely the data set. Alternatively, provide other pertinent<br> |
|
1988 |
information that can identify and locate the data set within your site's<br> |
|
1989 |
data management system.</span></td><td></td></tr> |
|
1961 | 1990 |
|
1962 | 1991 |
<tr class="sectbody"> |
1963 | 1992 |
<td class="rightCol"><span class="label">*Data Medium</span></td> |
... | ... | |
2033 | 2062 |
|
2034 | 2063 |
<table class="tables" cellpadding="5" cellspacing="0"> |
2035 | 2064 |
<tr class="sectheader"><td colspan="6" align="left"></td></tr> |
2036 |
<tr class="sectheader"><td colspan="6" align="center"><input type="SUBMIT" onClick="sortInputTags()" value="Submit Data Set Description" name="SUBMIT"> |
|
2065 |
<tr class="sectheader"><td colspan="6" align="center" class="borderbottom"><input type="SUBMIT" onClick="sortInputTags()" value="Submit Data Set Description" name="SUBMIT">
|
|
2037 | 2066 |
|
2038 | 2067 |
|
2039 | 2068 |
<!-- <span> </span><input type="RESET" value="Reset Form" name="RESET"></td></tr>--> |
2040 |
|
|
2041 |
<tr class="sectheader"><td colspan="6" align="left" class="borderbottom"></td></tr> |
|
2042 | 2069 |
</table> |
2043 | 2070 |
<p></p> |
2044 | 2071 |
|
lib/style/common/templates/confirmData.tmpl | ||
---|---|---|
31 | 31 |
[% usite = 'Station' %] |
32 | 32 |
[% END %] |
33 | 33 |
|
34 |
<table class="intro" cellpadding="3" cellspacing="0"> |
|
35 |
<tr><td align="left"><span class="regtext"> |
|
36 |
Please review the information that you entered in the [% orgabbrev %] |
|
37 |
Data Registry Form. If the information below is correct, provide your username, organization, and password at the bottom of this page, and submit the information. |
|
38 |
If you need to edit something, click on the edit button that is provided at the bottom of this page.<span></td></tr> |
|
34 | 39 |
|
35 |
<p>Please confirm the data that you entered in [% orgabbrev %] |
|
36 |
Data Registry Form. If you want to edit anything please press the change button |
|
37 |
on the bottom of the page.You can also take a printout of this page for your record.</p> |
|
40 |
<tr><td align="left"><span class="regtext">You can print this page for your record.<span></td></tr> |
|
41 |
</table> |
|
38 | 42 |
|
39 |
<p>You can look at |
|
40 |
<a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide" target="guide"> |
|
41 |
Guide on How to Complete Data Registry Entries</a></b> |
|
42 |
for further assistance.</p> |
|
43 |
|
|
44 |
<p> </p> |
|
45 |
<hr> |
|
46 |
<a name="BasicInformation"></a> |
|
47 |
<p><b><font size="4" color="#0000ff">BASIC INFORMATION </font> |
|
43 |
<table class="intro" cellpadding="3" cellspacing="0"> |
|
44 |
<tr><td align="left"> |
|
45 |
<hr><a name="BasicInformation"></a> |
|
46 |
<p><span class="sectionnames">BASIC INFORMATION</span> |
|
48 | 47 |
</p> |
49 |
|
|
50 |
<p><b><font size="-1">Name of Person completing this form</font></b> |
|
48 |
<p><span class="label">First Name:</span> [%providerGivenName%] |
|
51 | 49 |
</p> |
52 |
<p><b><font size="-1">First Name:</font></b> [%providerGivenName%]
|
|
50 |
<p><span class="label">Last Name:</span> [%providerSurName%]
|
|
53 | 51 |
</p> |
54 |
|
|
55 |
<p><b><font size="-1">Last Name:</font></b> [%providerSurName%] |
|
52 |
<p><span class="label">Data Set Title:</span> [%title%] |
|
56 | 53 |
</p> |
57 | 54 |
|
55 |
|
|
56 |
|
|
58 | 57 |
[% IF cfg == 'nceas' %] |
59 | 58 |
[% FOREACH group = wg %] |
60 |
<p><b><font size="-1">NCEAS Project:</font></b> [%group%] </p>
|
|
59 |
<p><span class="label">NCEAS Project:</span> [%group%] </p>
|
|
61 | 60 |
[% END %] |
61 |
|
|
62 | 62 |
[% ELSE %] |
63 |
<p><b><font size="-1">[% usite %] Name:</font></b> [%site%] |
|
64 |
</p> |
|
63 |
[% IF cfg == 'esa' %] |
|
64 |
<p><span class="label">Organization Name:</span> [%site%]</p> |
|
65 |
[% ELSE %] |
|
66 |
<p><span class="label">[% usite %] Name:</span> [%site%]</p> |
|
67 |
[% END %] |
|
65 | 68 |
[% END %] |
66 | 69 |
|
67 |
<p><b><font size="-1">Data Set Title:</font></b> [%title%] |
|
68 |
</p> |
|
69 | 70 |
<hr> |
70 | 71 |
<a name="DataSetOriginator"></a> |
71 |
<p><b><font size="4" color="#0000ff">PRINCIPAL DATA SET OWNER</font>
|
|
72 |
<p><span class="sectionnames">PRINCIPAL DATA SET OWNER</span>
|
|
72 | 73 |
|
73 |
<!-- <p><b><font size="-1">Originator's Role:</font></b> [%origRole0%] |
|
74 |
</p> --> |
|
75 |
|
|
76 |
<p><b><font size="-1">First Name:</font></b> [%origNamefirst0%] |
|
74 |
<p><span class="label">First Name:</span> [%origNamefirst0%] |
|
77 | 75 |
</p> |
78 | 76 |
|
79 |
<p><b><font size="-1">Last Name:</font></b> [%origNamelast0%]
|
|
77 |
<p><span class="label">Last Name:</span> [%origNamelast0%]
|
|
80 | 78 |
</p> |
81 | 79 |
|
82 |
<p><b><font size="-1">Organization Name:</font></b> [%origNameOrg%]
|
|
80 |
<p><span class="label">Organization Name:</span> [%origNameOrg%]
|
|
83 | 81 |
</p> |
84 | 82 |
|
85 |
<p><b><font size="-1">E-Mail:</font></b> [%origEmail%]
|
|
83 |
<p><span class="label">E-Mail:</span> [%origEmail%]
|
|
86 | 84 |
</p> |
87 | 85 |
|
88 |
<p><b><font size="-1">Phone:</font></b> [%origPhone%]
|
|
86 |
<p><span class="label">Phone:</span> [%origPhone%]
|
|
89 | 87 |
</p> |
90 | 88 |
|
91 |
<p><b><font size="-1">FAX:</font></b> [%origFAX%]
|
|
89 |
<p><span class="label">FAX:</span> [%origFAX%]
|
|
92 | 90 |
</p> |
93 | 91 |
|
94 |
<p><b><font size="-1">Delivery Information:</font></b>
|
|
92 |
<p><span class="label">Street Information:</span>
|
|
95 | 93 |
[%origDelivery%] |
96 | 94 |
</p> |
97 | 95 |
|
98 |
<p><b><font size="-1">City:</font></b> [%origCity%]
|
|
96 |
<p><span class="label">City:</span> [%origCity%]
|
|
99 | 97 |
</p> |
100 | 98 |
|
101 |
<p><b><font size="-1">State:</font></b> [%origState%]
|
|
99 |
<p><span class="label">State:</span> [%origState%]
|
|
102 | 100 |
</p> |
103 | 101 |
|
104 |
<p><b><font size="-1">Other State:</font></b> [%origStateOther%]
|
|
102 |
<p><span class="label">Other State/Province:</span> [%origStateOther%]
|
|
105 | 103 |
</p> |
106 | 104 |
|
107 |
<p><b><font size="-1">ZIP:</font></b> [%origZIP%]
|
|
105 |
<p><span class="label">Postal Code:</span> [%origZIP%]
|
|
108 | 106 |
</p> |
109 | 107 |
|
110 |
<p><b><font size="-1">Country:</font></b> [%origCountry%]
|
|
108 |
<p><span class="label">Country:</span> [%origCountry%]
|
|
111 | 109 |
</p> |
112 | 110 |
|
113 | 111 |
<hr> |
114 | 112 |
<a name="AdditionalOriginators"></a> |
115 |
<p><b><font size="4" color="#0000ff">ADDITIONAL ORIGINATORS</font></b>
|
|
113 |
<p><span class="sectionnames">ASSOCIATED PARTIES</span>
|
|
116 | 114 |
|
117 | 115 |
[% numAO = 0 %] |
118 | 116 |
[% IF aoCount > 0 %] |
... | ... | |
122 | 120 |
<table cellspacing="0" border="0" cellpadding="9" width="760"> |
123 | 121 |
<tr> |
124 | 122 |
<td width="21%" valign="TOP"> |
125 |
<p><font size="-1"><b>First Name</b></font></p>
|
|
123 |
<span class="label">First Name</span>
|
|
126 | 124 |
</td> |
127 | 125 |
<td width="21%" valign="TOP"> |
128 |
<p><font size="-1"><b>Last Name</b></font></p>
|
|
126 |
<span class="label">Last Name</span>
|
|
129 | 127 |
</td> |
130 | 128 |
<td width="58%" valign="TOP"> |
131 |
<p><font size="-1"><b>Role</b></font></p>
|
|
129 |
<span class="label">Role</span>
|
|
132 | 130 |
</td> |
133 | 131 |
</tr> |
134 | 132 |
[% cnt = 1 %] |
... | ... | |
153 | 151 |
|
154 | 152 |
<hr> |
155 | 153 |
<a name="DataSetAbstract"></a> |
156 |
<p><b><font size="4" color="#0000ff">DATA SET ABSTRACT</font></b><br> [%abstract%]
|
|
154 |
<p><span class="sectionnames">DATA SET ABSTRACT</span><br> [%abstract%]
|
|
157 | 155 |
</p> |
158 | 156 |
[% IF hasKeyword == 'true' %] |
159 | 157 |
<hr> |
160 | 158 |
<a name="KeywordInformation"></a> |
161 |
<p><b><font size="4" color="#0000ff">KEYWORD INFORMATION</font></b>
|
|
159 |
<p><span class="sectionnames">KEYWORD INFORMATION</span>
|
|
162 | 160 |
|
163 | 161 |
[% numKey = 0 %] |
164 | 162 |
[% IF keyCount > 0 %] |
... | ... | |
167 | 165 |
|
168 | 166 |
<table cellspacing="0" border="0" cellpadding="9" width="760"> |
169 | 167 |
<tr> |
170 |
<td width="21%" valign="TOP"> |
|
171 |
<p><font size="-1"><b>Keyword</b></font></p>
|
|
168 |
<td width="21%" align="left" valign="TOP">
|
|
169 |
<span class="label">Keyword</span>
|
|
172 | 170 |
</td> |
173 |
<td width="21%" valign="TOP"> |
|
174 |
<p><font size="-1"><b>Keyword Type</b></font></p>
|
|
171 |
<td width="21%" align="left" valign="TOP">
|
|
172 |
<span class="label">Keyword Type</span>
|
|
175 | 173 |
</td> |
176 |
<td width="58%" valign="TOP"> |
|
177 |
<p><font size="-1"><b>Keyword Thesaurus</b></font></p>
|
|
174 |
<td width="58%" align="left" valign="TOP">
|
|
175 |
<span class="label">Keyword Thesaurus</span>
|
|
178 | 176 |
</td> |
179 | 177 |
</tr> |
180 | 178 |
[% cnt = 1 %] |
... | ... | |
183 | 181 |
[% SET keyType = "kwType${cnt}" %] |
184 | 182 |
[% SET keyTh = "kwTh${cnt}" %] |
185 | 183 |
<tr> |
186 |
<td width="21%" valign="TOP"> |
|
184 |
<td width="21%" align="left" valign="TOP">
|
|
187 | 185 |
[% $key %] |
188 | 186 |
</td> |
189 |
<td width="21%" valign="TOP"> |
|
187 |
<td width="21%" align="left" valign="TOP">
|
|
190 | 188 |
[% $keyType %] |
191 | 189 |
</td> |
192 |
<td width="58%" valign="TOP"> |
|
190 |
<td width="58%" align="left" valign="TOP">
|
|
193 | 191 |
[% $keyTh %] |
194 | 192 |
</td> |
195 | 193 |
</tr> |
196 | 194 |
[% cnt = cnt + 1 %] |
197 | 195 |
[% END %] |
198 |
</table>
|
|
196 |
</table> |
|
199 | 197 |
[% END %] |
200 | 198 |
|
201 | 199 |
[% IF hasTemporal == 'true' %] |
202 | 200 |
<hr> |
203 | 201 |
<a name="TemporalCoverageOfData"></a> |
204 |
<p><b><font size="4" color="#0000ff">TEMPORAL COVERAGE OF DATA</font></b>
|
|
202 |
<p><span class="sectionnames">TEMPORAL COVERAGE OF DATA</span>
|
|
205 | 203 |
|
206 |
<p><b><font size="-1">Beginning Date of Data Set:</font></b> [%beginningMonth%] [%beginningDay%] [%beginningYear%]
|
|
204 |
<p><span class="label">Start Date:</span> [%beginningMonth%] [%beginningDay%] [%beginningYear%]
|
|
207 | 205 |
</p> |
208 | 206 |
|
209 |
<p><b><font size="-1">Ending Date of Data Set:</font></b> [%endingMonth%] [%endingDay%] [%endingYear%]
|
|
207 |
<p><span class="label">Stop Date:</span> [%endingMonth%] [%endingDay%] [%endingYear%]
|
|
210 | 208 |
</p> |
211 | 209 |
[% END %] |
212 | 210 |
|
213 | 211 |
[% IF hasSpatial == 'true' %] |
214 | 212 |
<hr> |
215 | 213 |
<a name="SpatialCoverageOfData"></a> |
216 |
<p><b><font size="4" color="#0000ff">SPATIAL COVERAGE OF DATA</font></b>
|
|
214 |
<p><span class="sectionnames">SPATIAL COVERAGE OF DATA</span>
|
|
217 | 215 |
|
218 | 216 |
|
219 | 217 |
<table cellspacing="0" border="0" cellpadding="9" width="760"> |
... | ... | |
224 | 222 |
</tr> |
225 | 223 |
<tr> |
226 | 224 |
<td valign="TOP" colspan="4"> |
227 |
<p><font size="-1"><b>Coordinates (in Degrees, Minutes and Seconds):</b></font></p>
|
|
225 |
<p><span class="label">Coordinates (in Degrees, Minutes and Seconds):</span></p>
|
|
228 | 226 |
</td> |
229 | 227 |
</tr> |
228 |
|
|
230 | 229 |
<tr> |
231 |
<td valign="TOP" colspan="4" class="tablepanel"><font size="-1"> |
|
232 |
Use station coordinates: [%useSiteCoord%] |
|
233 |
</td> |
|
234 |
</tr> |
|
235 |
<tr> |
|
236 | 230 |
<td valign="TOP" colspan="4"> |
237 |
<p><font size="-1"><b>The first lat./long. pair:</b></font></p>
|
|
231 |
<p><span class="label">The first lat/long pair:</span></p>
|
|
238 | 232 |
</td> |
239 | 233 |
</tr> |
240 | 234 |
<tr> |
241 | 235 |
<td width="18%" valign="TOP"> |
242 |
<p><font size="-1"><b><font color="#ff0000"> </font>Latitude</b></font></p>
|
|
236 |
<p><span class="label"> Latitude</span></p>
|
|
243 | 237 |
</td> |
244 | 238 |
<td width="20%" valign="TOP"> |
245 |
<p><font size="-1"> North/South</font></p>
|
|
239 |
<p><span class="label"> North/South</span></p>
|
|
246 | 240 |
</td> |
247 | 241 |
<td width="20%" valign="TOP"> |
248 |
<p><font size="-1"><b><font color="#ff0000"> </font>Longitude</b></font></p>
|
|
242 |
<p><span class="label"> Longitude</span></p>
|
|
249 | 243 |
</td> |
250 | 244 |
<td width="42%" valign="TOP"> |
251 |
<p><font size="-1"> West/East</font></p>
|
|
245 |
<p><span class="label"> West/East</span></p>
|
|
252 | 246 |
</td> |
253 | 247 |
</tr> |
254 | 248 |
<tr> |
... | ... | |
275 | 269 |
</tr> |
276 | 270 |
<tr> |
277 | 271 |
<td valign="TOP" colspan="4"> |
278 |
<p><font size="-1"><b>The second lat./long. pair:</b></font></p>
|
|
272 |
<p><span class="label">The second lat/long pair:</span></p>
|
|
279 | 273 |
</td> |
280 | 274 |
</tr> |
281 | 275 |
<tr> |
282 | 276 |
<td width="18%" valign="TOP"> |
283 |
<p><font size="-1"><b>Latitude</b></font></p>
|
|
277 |
<p><span class="label">Latitude</span></p>
|
|
284 | 278 |
</td> |
285 | 279 |
<td width="20%" valign="TOP"> |
286 |
<p><font size="-1"> North/South</font></p>
|
|
280 |
<p><sapn class="label"> North/South</span></p>
|
|
287 | 281 |
</td> |
288 | 282 |
<td width="20%" valign="TOP"> |
289 |
<p><font size="-1"><b>Longitude</b></font></p>
|
|
283 |
<p><span class="label">Longitude</span></p>
|
|
290 | 284 |
</td> |
291 | 285 |
<td width="42%" valign="TOP"> |
292 |
<p><font size="-1">West/East</font></p>
|
|
286 |
<p><sapn class="label">West/East</span></p>
|
|
293 | 287 |
</td> |
294 | 288 |
</tr> |
295 | 289 |
<tr> |
... | ... | |
324 | 318 |
[% END %] |
325 | 319 |
<hr> |
326 | 320 |
<a name="Taxonomic Coverage"></a> |
327 |
<p><b><font size="4" color="#0000ff">TAXONOMIC COVERAGE</font></b></p>
|
|
321 |
<p><span class="sectionnames">TAXONOMIC COVERAGE OF DATA</span></p>
|
|
328 | 322 |
[% cnt = 1 %] |
329 | 323 |
[% WHILE cnt <= numTaxa %] |
330 | 324 |
[% SET trn = "taxonRankName${cnt}" %] |
331 | 325 |
[% SET trv = "taxonRankValue${cnt}" %] |
332 |
<p><b><font size="-1">Taxon:</font></b> [% $trn %]: [% $trv %]</p>
|
|
326 |
<p><span class="label">Taxon:</span> [% $trn %]: [% $trv %]</p>
|
|
333 | 327 |
[% cnt = cnt + 1 %] |
334 | 328 |
[% END %] |
335 |
<p><b><font size="-1">Authority:</font></b> [% taxaAuth %]</p>
|
|
329 |
<p><span class="label">Taxonomic Reference:</span> [% taxaAuth %]</p>
|
|
336 | 330 |
[% END %] |
337 | 331 |
|
338 | 332 |
[% IF hasMethod == 'true' %] |
339 | 333 |
<hr> |
340 | 334 |
<a name="Methods"></a> |
341 |
<p><b><font size="4" color="#0000ff">METHODS</font></b></p>
|
|
342 |
<p><b><font size="-1">Method Title:</font></b> [%methodTitle%]</p>
|
|
335 |
<p><span class="sectionnames">DATA COLLECTION METHODS</span></p>
|
|
336 |
<p><span class="label">Method Title:</span> [%methodTitle%]</p>
|
|
343 | 337 |
[% FOREACH para = methodPara %] |
344 |
<p><b><font size="-1">Paragraph:</font></b> [%para%] </p>
|
|
338 |
<p><span class="label">Paragraph:</span> [%para%] </p>
|
|
345 | 339 |
[% END %] |
346 |
<p><b><font size="-1">Study Extent:</font></b> [%studyExtentDescription%]</p>
|
|
347 |
<p><b><font size="-1">Sampling Description:</font></b> [%samplingDescription%]</p>
|
|
340 |
<p><span class="label">Extent of Study Description:</span> [%studyExtentDescription%]</p>
|
|
341 |
<p><span class="label">Sampling Description:</span> [%samplingDescription%]</p>
|
|
348 | 342 |
[% END %] |
349 | 343 |
|
350 | 344 |
<hr> |
351 | 345 |
<a name="DataSetContactAddress"></a> |
352 |
<p><b><font size="4" color="#0000ff">DATA SET CONTACT ADDRESS</font></b>
|
|
346 |
<p><span class="sectionnames">DATA SET CONTACT</span>
|
|
353 | 347 |
|
354 |
<p><b><font size="-1">First Name:</font></b> [%origNamefirstContact%]
|
|
348 |
<p><span class="label">First Name:</span> [%origNamefirstContact%]
|
|
355 | 349 |
</p> |
356 | 350 |
|
357 |
<p><b><font size="-1">Last Name:</font></b> [%origNamelastContact%]
|
|
351 |
<p><span class="label">Last Name:</span> [%origNamelastContact%]
|
|
358 | 352 |
</p> |
359 | 353 |
|
360 |
<p><b><font size="-1">Organization Name:</font></b> [%origNameOrgContact%]
|
|
354 |
<p><span class="label">Organization Name:</span> [%origNameOrgContact%]
|
|
361 | 355 |
</p> |
362 | 356 |
|
363 |
<p><b><font size="-1">E-Mail:</font></b> [%origEmailContact%]
|
|
357 |
<p><span class="label">E-Mail:</span> [%origEmailContact%]
|
|
364 | 358 |
</p> |
365 | 359 |
|
366 |
<p><b><font size="-1">Phone:</font></b> [%origPhoneContact%]
|
|
360 |
<p><span class="label">Phone:</span> [%origPhoneContact%]
|
|
367 | 361 |
</p> |
368 | 362 |
|
369 |
<p><b><font size="-1">FAX:</font></b> [%origFAXContact%]
|
|
363 |
<p><span class="label">FAX:</span> [%origFAXContact%]
|
|
370 | 364 |
</p> |
371 | 365 |
|
372 |
<p><b><font size="-1">Delivery Information:</font></b>
|
|
366 |
<p><span class="label">Street Information:</span>
|
|
373 | 367 |
[%origDeliveryContact%] |
374 | 368 |
</p> |
375 | 369 |
|
376 |
<p><b><font size="-1">City:</font></b> [%origCityContact%]
|
|
370 |
<p><span class="label">City:</span> [%origCityContact%]
|
|
377 | 371 |
</p> |
378 | 372 |
|
379 |
<p><b><font size="-1">State:</font></b> [%origStateContact%]
|
|
373 |
<p><span class="label">State:</span> [%origStateContact%]
|
|
380 | 374 |
</p> |
381 | 375 |
|
382 |
<p><b><font size="-1">Other State:</font></b> [%origStateOtherContact%]
|
|
376 |
<p><span class="label">Other State/Province:</span> [%origStateOtherContact%]
|
|
383 | 377 |
</p> |
384 | 378 |
|
385 |
<p><b><font size="-1">ZIP:</font></b> [%origZIPContact%]
|
|
379 |
<p><span class="label">Postal Code:</span> [%origZIPContact%]
|
|
386 | 380 |
</p> |
387 | 381 |
|
388 |
<p><b><font size="-1">Country:</font></b> [%origCountryContact%]
|
|
382 |
<p><span class="label">Country:</span> [%origCountryContact%]
|
|
389 | 383 |
</p> |
390 | 384 |
|
391 | 385 |
|
392 | 386 |
<hr> |
393 | 387 |
<a name="DistributionIinformation"></a> |
394 |
<p><b><font size="4" color="#0000ff">DISTRIBUTION INFORMATION</font></b>
|
|
388 |
<p><span class="sectionnames">DISTRIBUTION INFORMATION</span>
|
|
395 | 389 |
|
396 | 390 |
<a name=Site-specificCode></a> |
397 |
<p><b><font size="-1">Dataset Name or Identifier</font>:</b> [%identifier%]
|
|
391 |
<p><span class="label">Data Set Identifier:</span> [%identifier%]
|
|
398 | 392 |
</p> |
399 | 393 |
|
400 |
<p><b><font size="-1">Data Medium</font>:</b> [%dataMedium%]
|
|
394 |
<p><span class="label">Data Medium:</span> [%dataMedium%] <span class="label">Other Data Medium</span>: [%dataMediumOther%]
|
|
401 | 395 |
</p> |
402 | 396 |
|
403 |
<p><b><font size="-1">Other Data Medium</font></b>: [%dataMediumOther%] |
|
404 |
</p> |
|
405 | 397 |
|
406 |
<p><b><font size="-1">Use Constraints:</font></b> [%useConstraints%]
|
|
398 |
<p><span class="label">Usage Constraints:</span> [%useConstraints%] <span class="label">Other Usage Constraints:</span> [%useConstraintsOther%]
|
|
407 | 399 |
</p> |
408 | 400 |
|
409 |
<p><b><font size="-1">Other Use Constraints:</font></b> [%useConstraintsOther%] |
|
410 |
</p> |
|
411 | 401 |
|
412 |
<p><b><font size="-1">URL</font></b>: [%url%]
|
|
402 |
<p><span class="label">URL</span>: [%url%]
|
|
413 | 403 |
</p> |
414 |
|
|
415 |
<hr> |
|
416 |
<a name="AdditionalInformation"></a> |
|
417 |
<p><b><font size="4" color="#0000ff">Additional Information/Remarks:</font></b> <br> [%addComments%] |
|
404 |
<p><span class="label">Additional Information:</span> [%addComments%] |
|
418 | 405 |
</p> |
419 | 406 |
<hr> |
420 | 407 |
|
... | ... | |
541 | 528 |
<input type="hidden" name="studyExtentDescription" value="[%studyExtentDescription%]"> |
542 | 529 |
<input type="hidden" name="samplingDescription" value="[%samplingDescription%]"> |
543 | 530 |
|
544 |
<table cellspacing="0" border="0" cellpadding="9" width="800" bgcolor="#C6d6e7"> |
|
545 |
<tr> |
|
546 |
<td> |
|
547 |
<font color="#FF0000" size="-1">NOTE: You must enter your username |
|
531 |
</td><tr></table> |
|
532 |
|
|
533 |
|
|
534 |
<table class="intro" cellspacing="0" border="0" cellpadding="9"> |
|
535 |
<tr><td class="sectbody"><span class="sectionnames">SIGN IN</span></td></tr> |
|
536 |
<tr><td class="sectbody"><span class="label"><u>NOTE:</u> You must enter your username |
|
548 | 537 |
and password. This is for the protection of your metadata. The |
549 | 538 |
username and password will prevent any unauthorized person from |
550 | 539 |
modifying your metadata. If you do not have an account, click <a |
551 |
target="ldap" href="@cgi-prefix@/ldapweb.cgi?cfg=[% cfg %]">here</a>. |
|
540 |
target="ldap" href="@cgi-prefix@/ldapweb.cgi?cfg=[% cfg %]">here</a>.
|
|
552 | 541 |
If you don't remember your password, you can |
553 |
have it reset and emailed to you <a target="ldap"
|
|
554 |
href="@cgi-prefix@/ldapweb.cgi?stage=resetpass&cfg=[% cfg %]">here.
|
|
555 |
</a> If you want to change your password, click <a target="ldap"
|
|
556 |
href="@cgi-prefix@/ldapweb.cgi?stage=changepass&cfg=[% cfg %]">here.
|
|
557 |
</a></font>
|
|
558 |
<table cellspacing="0" border="0" cellpadding="9" width="360" bgcolor="#C6d6e7" align="left">
|
|
542 |
have it reset and e-mailed to you by clicking <a target="ldap"
|
|
543 |
href="@cgi-prefix@/ldapweb.cgi?stage=initresetpass&cfg=[% cfg %]">here</a>. If you want to
|
|
544 |
change your password, click <a target="ldap" |
|
545 |
href="@cgi-prefix@/ldapweb.cgi?stage=initchangepass&cfg=[% cfg %]">here</a>.
|
|
546 |
</span>
|
|
547 |
<table cellspacing="0" border="0" cellpadding="9" width="360" align="left"> |
|
559 | 548 |
<tr> |
560 | 549 |
<td> |
561 |
<font size="-1"><b>
|
|
550 |
<span class="label">
|
|
562 | 551 |
Username: |
563 |
</b></font> |
|
564 |
</td> |
|
552 |
</span></td> |
|
565 | 553 |
<td> |
566 |
<input type="TEXT" name="username"> |
|
567 |
</td> |
|
568 |
</tr> |
|
554 |
<input type="TEXT" name="username"></td></tr> |
|
569 | 555 |
<tr> |
570 | 556 |
<td> |
571 |
<font size="-1"><b>
|
|
557 |
<span class="label">
|
|
572 | 558 |
Organization: |
573 |
</b></font> |
|
574 |
</td> |
|
559 |
</span></td> |
|
575 | 560 |
<td> |
576 | 561 |
<select name="organization"> |
577 | 562 |
<option value="unaffiliated">unaffiliated</option> |
... | ... | |
581 | 566 |
<option value="OBFS">OBFS</option> |
582 | 567 |
<option value="KU">KU</option> |
583 | 568 |
<option value="UCNRS">UCNRS</option> |
584 |
</select> |
|
585 |
</td> |
|
586 |
</tr> |
|
569 |
</select></td></tr> |
|
587 | 570 |
<tr> |
588 | 571 |
<td> |
589 |
<font size="-1"><b>
|
|
572 |
<span class="label">
|
|
590 | 573 |
Password: |
591 |
</b></font> |
|
592 |
</td> |
|
574 |
</span></td> |
|
593 | 575 |
<td> |
594 | 576 |
<input type="PASSWORD" name="password"> |
595 |
</td> |
|
596 |
</tr> |
|
577 |
</td></tr> |
|
597 | 578 |
</table> |
598 |
</td> |
|
599 |
</tr> |
|
579 |
</td></tr> |
|
600 | 580 |
</table> |
601 |
<p> |
|
602 |
<hr> |
|
603 |
</p> |
|
604 |
<table cellspacing="0" border="0" cellpadding="9" width="800" bgcolor="#C6d6e7"> |
|
605 |
<tr> |
|
606 |
<td> |
|
607 |
<font size="-1"><b>Is the above data correct??</b></font> |
|
581 |
<p> </p> |
|
582 |
|
|
583 |
|
|
584 |
<table class="intro" cellspacing="0" cellpadding="3" > |
|
585 |
<tr><td align="left"> |
|
586 |
<p><span class="label">Is the information above correct?</span></p> |
|
608 | 587 |
<p> |
609 | 588 |
<input type="SUBMIT" value=" Yes, submit " name="dataCorrect"> |
610 | 589 |
<input type="SUBMIT" value="No, go back to editing" name="dataWrong"> |
611 | 590 |
</p> |
612 |
</td> |
|
613 |
</tr> |
|
591 |
</td></tr> |
|
614 | 592 |
</table> |
615 | 593 |
</form> |
616 | 594 |
<p> </p> |
lib/style/common/templates/genericResponse.tmpl | ||
---|---|---|
1 | 1 |
[% INCLUDE "genericHeader.tmpl" %] |
2 | 2 |
|
3 | 3 |
[% IF status == 'success' %] |
4 |
<h2>Success</h2> |
|
4 |
|
|
5 |
<table class="intro" cellpadding="8" cellspacing="0"> |
|
6 |
|
|
7 |
<tr><td align="left"><span class="emphasis">Success</span></td></tr> |
|
5 | 8 |
[% IF function == 'deleted' %] |
6 |
<p>Your entry has been [% function %]. Thank you.</p>
|
|
9 |
<tr><td align="left"><span class="regtext">Your data set description has been [% function %]. Thank you.</span></td></tr>
|
|
7 | 10 |
[%ELSE%] |
8 |
<p>Your entry has been [% function %]. Thank you.</p> |
|
9 |
<p>You can the see the entry by clicking |
|
10 |
<a href="@servlet-path@?action=read&qformat=[% cfg %]&docid=[% docid %]">here</a> or the Search button above. |
|
11 |
<!-- <p>The entry will be reviewed by the [% orgabbrev %] Data Registry |
|
12 |
Manager and then will be added to the registry. You |
|
13 |
should expect to see the entry within a few days.</p> --> |
|
14 |
|
|
11 |
<tr><td align="left"><span class="regtext">Your data set description has been [% function %]. Thank you.</span></td></tr> |
|
12 |
<tr><td align="left"><span class="regtext">You can see the data set description by clicking |
|
13 |
<a href="@servlet-path@?action=read&qformat=[% cfg %]&docid=[% docid %]">here</a>.</span></td></tr> |
|
15 | 14 |
[%END%] |
15 |
</table> |
|
16 | 16 |
[% ELSE %] |
17 |
[% IF function == 'cancel' %] |
|
17 |
[% IF function == 'cancel' %]
|
|
18 | 18 |
|
19 |
[% ELSE %] |
|
20 |
<h2>Failure</h2> |
|
19 |
[% ELSE %] |
|
20 |
<table class="intro" cellpadding="8" cellspacing="0"> |
|
21 |
<tr><td align="left"><span class="emphasis">Failure</span></td></tr> |
|
21 | 22 |
|
22 |
<p>An error occurred. Most likely some required fields |
|
23 |
were missing. Please check the list of errors below and |
|
24 |
click here to return to the previous form to fill in all |
|
25 |
required fields and submit the form again.</p> |
|
26 |
|
|
27 |
<ul> |
|
28 |
[% FOREACH parameter = invalidParams %] |
|
29 |
<li class="emphasis">[% parameter %]</li> |
|
30 |
[% END %] |
|
31 |
</ul> |
|
32 |
|
|
33 |
<ul> |
|
34 |
[% FOREACH msg = errorMessages %] |
|
35 |
<li class="emphasis">[% msg %]</li> |
|
36 |
[% END %] |
|
37 |
</ul> |
|
23 |
<tr><td align="left"><span class="regtext">An error occurred. Please check the list of errors below: </span></td></tr> |
|
24 |
<tr><td align="left"> |
|
25 |
<ul> |
|
26 |
[% FOREACH parameter = invalidParams %] |
|
27 |
<li class="label">[% parameter %]</li> |
|
28 |
[% END %] |
|
29 |
</ul></td></tr> |
|
30 |
<tr><td align="left"> |
|
31 |
<ul> |
|
32 |
[% FOREACH msg = errorMessages %] |
|
33 |
<li class="label">[% msg %]</li> |
|
34 |
[% END %] |
|
35 |
</ul></td></tr> |
|
36 |
</table> |
|
37 |
[% END %] |
|
38 | 38 |
[% END %] |
39 |
[% END %] |
|
40 |
|
|
41 |
<p> </p> |
|
42 |
[% IF function == 'deleted' || function == 'cancel' %] |
|
43 |
<p>For a new entry, click on 'Register New Dataset' in the toolbar above. |
|
44 |
Otherwise, use the toolbar links above to navigate.</p> |
|
39 |
[% IF status == 'login_failure' %] |
|
40 |
<table class="intro" cellpadding="8" cellspacing="0"> |
|
41 |
<tr><td align="left"><span class="regtext">Click <a href = "javascript:history.back()">here</a> to return |
|
42 |
to the previous page, and enter the correct username, organization, and password.</td></tr> |
|
43 |
</table> |
|
45 | 44 |
[% ELSE %] |
46 |
[% IF status == 'success' %] |
|
47 |
<p>For a new entry, or to make changes to the entry just submitted, |
|
48 |
use the return function in your browser to go back. |
|
49 |
Otherwise, use the toolbar links above to navigate.</p> |
|
50 |
[% ELSE %] |
|
51 |
[% IF status != 'failure_no_resubmit' %] |
|
52 |
<form name="editForm" action="@cgi-prefix@/register-dataset.cgi" method="post"> |
|
53 |
<input type="hidden" name="cfg" value="[% cfg %]"> |
|
54 |
<input type="hidden" name="docid" value="[% docid %]"> |
|
55 |
<input type="hidden" name="stage" value="confirmed"> |
|
56 |
<input type="hidden" name="dataWrong" value="No, go back to editing"> |
|
57 |
<input type="hidden" name="showSiteList" value="[% showSiteList %]"> |
|
58 |
<input type="hidden" name="showWgList" value="[% showWgList %]"> |
|
59 |
<input type="hidden" name="showOrganization" value="[% showOrganization %]"> |
|
60 |
<input type="hidden" name="lsite" value="[% lsite %]"> |
|
61 |
<input type="hidden" name="usite" value="[% usite %]"> |
|
62 |
<input type="hidden" name="hasKeyword" value="[% hasKeyword %]"> |
|
63 |
<input type="hidden" name="hasTemporal" value="[% hasTemporal %]"> |
|
64 |
<input type="hidden" name="hasSpatial" value="[% hasSpatial %]"> |
|
65 |
<input type="hidden" name="hasTaxonomic" value="[% hasTaxonomic %]"> |
|
66 |
<input type="hidden" name="hasMethod" value="[% hasMethod %]"> |
|
67 |
<input type="hidden" name="temporalRequired" value="[% temporarlRequired %]"> |
|
68 |
<input type="hidden" name="spatialRequired" value="[% spatialRequired %]"> |
|
69 |
<input type="hidden" name="providerGivenName" value="[%providerGivenName%]"> |
|
70 |
<input type="hidden" name="providerSurName" value="[%providerSurName%]"> |
|
71 |
<input type="hidden" name="site" value="[%site%]"> |
|
72 |
[% IF cfg == 'nceas' %] |
|
73 |
[% FOREACH group = wg %] |
|
74 |
<input type="hidden" name="wg" value="[%group%]"> |
|
75 |
[% END %] |
|
76 |
[% END %] |
|
77 |
<input type="hidden" name="identifier" value="[%identifier%]"> |
|
78 |
<input type="hidden" name="title" value="[%title%]"> |
|
79 |
<input type="hidden" name="origNamefirst0" value="[%origNamefirst0%]"> |
|
80 |
<input type="hidden" name="origNamelast0" value="[%origNamelast0%]"> |
|
81 |
<input type="hidden" name="origNameOrg" value="[%origNameOrg%]"> |
|
82 |
<input type="hidden" name="origRole0" value="[%origRole0%]"> |
|
83 |
<input type="hidden" name="origDelivery" value="[%origDelivery%]"> |
|
84 |
<input type="hidden" name="origCity" value="[%origCity%]"> |
|
85 |
<input type="hidden" name="origState" value="[%origState%]"> |
|
86 |
<input type="hidden" name="origStateOther" value="[%origStateOther%]"> |
|
87 |
<input type="hidden" name="origZIP" value="[%origZIP%]"> |
|
88 |
<input type="hidden" name="origCountry" value="[%origCountry%]"> |
|
89 |
<input type="hidden" name="origPhone" value="[%origPhone%]"> |
|
90 |
<input type="hidden" name="origFAX" value="[%origFAX%]"> |
|
91 |
<input type="hidden" name="origEmail" value="[%origEmail%]"> |
|
92 |
<input type="hidden" name="useOrigAddress" value="[%useOrigAddress%]"> |
|
93 |
<input type="hidden" name="origNamefirstContact" value="[%origNamefirstContact%]"> |
|
94 |
<input type="hidden" name="origNamelastContact" value="[%origNamelastContact%]"> |
|
95 |
<input type="hidden" name="origNameOrgContact" value="[%origNameOrgContact%]"> |
|
96 |
<input type="hidden" name="origDeliveryContact" value="[%origDeliveryContact%]"> |
|
97 |
<input type="hidden" name="origCityContact" value="[%origCityContact%]"> |
|
98 |
<input type="hidden" name="origStateContact" value="[%origStateContact%]"> |
|
99 |
<input type="hidden" name="origStateOtherContact" value="[%origStateOtherContact%]"> |
|
100 |
<input type="hidden" name="origZIPContact" value="[%origZIPContact%]"> |
|
101 |
<input type="hidden" name="origCountryContact" value="[%origCountryContact%]"> |
|
102 |
<input type="hidden" name="origPhoneContact" value="[%origPhoneContact%]"> |
|
103 |
<input type="hidden" name="origFAXContact" value="[%origFAXContact%]"> |
|
104 |
<input type="hidden" name="origEmailContact" value="[%origEmailContact%]"> |
|
105 |
<input type="hidden" name="aoCount" value="[%aoCount%]"> |
|
45 |
[% IF function == 'deleted' || function == 'cancel' %] |
|
46 |
<table class="intro" cellpadding="8" cellspacing="0"> |
|
47 |
[% IF status != 'success' %] |
|
48 |
<tr><td align="left"><span class="regtext">Click <a href = "javascript:history.back()">here</a> to return |
|
49 |
to the previous page, and enter the correct username, organization, and password.</td></tr> |
|
50 |
[%ELSE%] |
|
51 |
<tr><td align="left"><span class="regtext">To register a new data set, click <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]" target="_top">here</a>. |
|
52 |
Otherwise, use the toolbar links above to navigate.</span></td></tr> |
|
53 |
[%END%] |
|
54 |
</table> |
|
55 |
[% ELSE %] |
|
56 |
[% IF status == 'success' %] |
|
57 |
<table class="intro" cellpadding="8" cellspacing="0"> |
|
58 |
<tr><td align="left"><span class="regtext">To register a new data set, click <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]" target="_top">here</a>. |
|
59 |
Otherwise, use the toolbar links above to navigate.</span></td></tr> |
|
60 |
</table> |
|
61 |
[% ELSE %] |
|
62 |
[% IF status != 'failure_no_resubmit' %] |
|
63 |
<form name="editForm" action="@cgi-prefix@/register-dataset.cgi" method="post"> |
|
64 |
<input type="hidden" name="cfg" value="[% cfg %]"> |
|
65 |
<input type="hidden" name="docid" value="[% docid %]"> |
|
66 |
<input type="hidden" name="stage" value="confirmed"> |
|
67 |
<input type="hidden" name="dataWrong" value="No, go back to editing"> |
|
68 |
<input type="hidden" name="showSiteList" value="[% showSiteList %]"> |
|
69 |
<input type="hidden" name="showWgList" value="[% showWgList %]"> |
|
70 |
<input type="hidden" name="showOrganization" value="[% showOrganization %]"> |
|
71 |
<input type="hidden" name="lsite" value="[% lsite %]"> |
|
72 |
<input type="hidden" name="usite" value="[% usite %]"> |
|
73 |
<input type="hidden" name="hasKeyword" value="[% hasKeyword %]"> |
|
74 |
<input type="hidden" name="hasTemporal" value="[% hasTemporal %]"> |
|
75 |
<input type="hidden" name="hasSpatial" value="[% hasSpatial %]"> |
|
76 |
<input type="hidden" name="hasTaxonomic" value="[% hasTaxonomic %]"> |
|
77 |
<input type="hidden" name="hasMethod" value="[% hasMethod %]"> |
|
78 |
<input type="hidden" name="temporalRequired" value="[% temporalRequired %]"> |
|
79 |
<input type="hidden" name="spatialRequired" value="[% spatialRequired %]"> |
|
80 |
<input type="hidden" name="providerGivenName" value="[%providerGivenName%]"> |
|
81 |
<input type="hidden" name="providerSurName" value="[%providerSurName%]"> |
|
82 |
<input type="hidden" name="site" value="[%site%]"> |
|
83 |
[% IF cfg == 'nceas' %] |
|
84 |
[% FOREACH group = wg %] |
|
85 |
<input type="hidden" name="wg" value="[%group%]"> |
|
86 |
[% END %] |
|
87 |
[% END %] |
|
88 |
<input type="hidden" name="identifier" value="[%identifier%]"> |
|
89 |
<input type="hidden" name="title" value="[%title%]"> |
|
90 |
<input type="hidden" name="origNamefirst0" value="[%origNamefirst0%]"> |
|
91 |
<input type="hidden" name="origNamelast0" value="[%origNamelast0%]"> |
|
92 |
<input type="hidden" name="origNameOrg" value="[%origNameOrg%]"> |
|
93 |
<input type="hidden" name="origRole0" value="[%origRole0%]"> |
|
94 |
<input type="hidden" name="origDelivery" value="[%origDelivery%]"> |
|
95 |
<input type="hidden" name="origCity" value="[%origCity%]"> |
|
96 |
<input type="hidden" name="origState" value="[%origState%]"> |
|
97 |
<input type="hidden" name="origStateOther" value="[%origStateOther%]"> |
|
98 |
<input type="hidden" name="origZIP" value="[%origZIP%]"> |
|
99 |
<input type="hidden" name="origCountry" value="[%origCountry%]"> |
|
100 |
<input type="hidden" name="origPhone" value="[%origPhone%]"> |
|
101 |
<input type="hidden" name="origFAX" value="[%origFAX%]"> |
|
102 |
<input type="hidden" name="origEmail" value="[%origEmail%]"> |
|
103 |
<input type="hidden" name="useOrigAddress" value="[%useOrigAddress%]"> |
|
104 |
<input type="hidden" name="origNamefirstContact" value="[%origNamefirstContact%]"> |
|
105 |
<input type="hidden" name="origNamelastContact" value="[%origNamelastContact%]"> |
|
106 |
<input type="hidden" name="origNameOrgContact" value="[%origNameOrgContact%]"> |
|
107 |
<input type="hidden" name="origDeliveryContact" value="[%origDeliveryContact%]"> |
|
108 |
<input type="hidden" name="origCityContact" value="[%origCityContact%]"> |
|
109 |
<input type="hidden" name="origStateContact" value="[%origStateContact%]"> |
|
110 |
<input type="hidden" name="origStateOtherContact" value="[%origStateOtherContact%]"> |
|
111 |
<input type="hidden" name="origZIPContact" value="[%origZIPContact%]"> |
|
112 |
<input type="hidden" name="origCountryContact" value="[%origCountryContact%]"> |
|
113 |
<input type="hidden" name="origPhoneContact" value="[%origPhoneContact%]"> |
|
114 |
<input type="hidden" name="origFAXContact" value="[%origFAXContact%]"> |
|
115 |
<input type="hidden" name="origEmailContact" value="[%origEmailContact%]"> |
|
116 |
<input type="hidden" name="aoCount" value="[%aoCount%]"> |
|
106 | 117 |
|
107 |
[% numAO = 0 %] |
|
108 |
[% IF aoCount > 0 %] |
|
109 |
[% numAO = aoCount %] |
|
118 |
[% numAO = 0 %] |
|
119 |
[% IF aoCount > 0 %] |
|
120 |
[% numAO = aoCount %] |
|
121 |
[% END %] |
|
122 |
[% cnt = 1 %] |
|
123 |
[% WHILE cnt <= numAO %] |
|
124 |
[% SET origNamefirst = "origNamefirst${cnt}" %] |
|
125 |
[% SET origNamelast = "origNamelast${cnt}" %] |
|
126 |
[% SET origRole = "origRole${cnt}" %] |
|
127 |
<input type="hidden" name="[% origNamefirst %]" value="[% $origNamefirst%]"> |
|
128 |
<input type="hidden" name="[% origNamelast %]" value="[% $origNamelast%]"> |
|
129 |
<input type="hidden" name="[% origRole %]" value="[% $origRole%]"> |
|
130 |
[% cnt = cnt + 1 %] |
|
131 |
[% END %] |
|
132 |
|
|
133 |
<input type="hidden" name="abstract" value="[%abstract%]"> |
|
134 |
<input type="hidden" name="keyCount" value="[%keyCount%]"> |
|
135 |
[% numKey = 0 %] |
|
136 |
[% IF keyCount > 0 %] |
|
137 |
[% numKey = keyCount %] |
|
138 |
[% END %] |
|
139 |
[% cnt = 1 %] |
|
140 |
[% WHILE cnt <= numKey %] |
|
141 |
[% SET kyd = "keyword${cnt}" %] |
|
142 |
[% SET keyType = "kwType${cnt}" %] |
|
143 |
[% SET keyTh = "kwTh${cnt}" %] |
|
144 |
<input type="hidden" name="[% kyd %]" value="[% $kyd %]"> |
|
145 |
<input type="hidden" name="[% keyType %]" value="[% $keyType %]"> |
|
146 |
<input type="hidden" name="[% keyTh %]" value="[% $keyTh %]"> |
|
147 |
[% cnt = cnt + 1 %] |
|
148 |
[% END %] |
|
149 |
<input type="hidden" name="addComments" value="[%addComments%]"> |
|
150 |
<input type="hidden" name="useConstraints" value="[%useConstraints%]"> |
|
151 |
<input type="hidden" name="useConstraintsOther" value="[%useConstraintsOther%]"> |
|
152 |
<input type="hidden" name="url" value="[%url%]"> |
|
153 |
<input type="hidden" name="dataMedium" value="[%dataMedium%]"> |
|
154 |
<input type="hidden" name="dataMediumOther" value="[%dataMediumOther%]"> |
|
155 |
<input type="hidden" name="beginningYear" value="[%beginningYear%]"> |
|
156 |
<input type="hidden" name="beginningMonth" value="[%beginningMonth%]"> |
|
157 |
<input type="hidden" name="beginningDay" value="[%beginningDay%]"> |
|
158 |
<input type="hidden" name="endingYear" value="[%endingYear%]"> |
|
159 |
<input type="hidden" name="endingMonth" value="[%endingMonth%]"> |
|
160 |
<input type="hidden" name="endingDay" value="[%endingDay%]"> |
|
161 |
<input type="hidden" name="geogdesc" value="[%geogdesc%]"> |
|
162 |
<input type="hidden" name="useSiteCoord" value="[%useSiteCoord%]"> |
|
163 |
<input type="hidden" name="latDeg1" value="[% latDeg1 %]"> |
|
164 |
<input type="hidden" name="latMin1" value="[%latMin1%]"> |
|
165 |
<input type="hidden" name="latSec1" value="[%latSec1%]"> |
|
166 |
<input type="hidden" name="hemisphLat1" value="[%hemisphLat1%]"> |
|
167 |
<input type="hidden" name="longDeg1" value="[% longDeg1 %]"> |
|
168 |
<input type="hidden" name="longMin1" value="[%longMin1%]"> |
|
169 |
<input type="hidden" name="longSec1" value="[%longSec1%]"> |
|
170 |
<input type="hidden" name="hemisphLong1" value="[%hemisphLong1%]"> |
|
171 |
<input type="hidden" name="latDeg2" value="[%latDeg2%]"> |
|
172 |
<input type="hidden" name="latMin2" value="[%latMin2%]"> |
|
173 |
<input type="hidden" name="latSec2" value="[%latSec2%]"> |
|
174 |
<input type="hidden" name="hemisphLat2" value="[%hemisphLat2%]"> |
|
175 |
<input type="hidden" name="longDeg2" value="[%longDeg2%]"> |
|
176 |
<input type="hidden" name="longMin2" value="[%longMin2%]"> |
|
177 |
<input type="hidden" name="longSec2" value="[%longSec2%]"> |
|
178 |
<input type="hidden" name="hemisphLong2" value="[%hemisphLong2%]"> |
|
179 |
<input type="hidden" name="taxaCount" value="[%taxaCount%]"> |
|
180 |
[% numTaxa = 0 %] |
|
181 |
[% IF taxaCount > 0 %] |
|
182 |
[% numTaxa = taxaCount %] |
|
183 |
[% END %] |
|
184 |
[% cnt = 1 %] |
|
185 |
[% WHILE cnt <= numTaxa %] |
|
186 |
[% SET trn = "taxonRankName${cnt}" %] |
|
187 |
[% SET trv = "taxonRankValue${cnt}" %] |
|
188 |
<input type="hidden" name="[% trn %]" value="[% $trn %]"> |
|
189 |
<input type="hidden" name="[% trv %]" value="[% $trv %]"> |
|
190 |
[% cnt = cnt + 1 %] |
|
191 |
[% END %] |
|
192 |
<input type="hidden" name="taxaAuth" value="[%taxaAuth%]"> |
|
193 |
|
|
194 |
<input type="hidden" name="methodTitle" value="[%methodTitle%]"> |
|
195 |
[% FOREACH para = methodPara %] |
|
196 |
<input type="hidden" name="methodPara" value="[%para%]"> |
|
197 |
[% END %] |
|
198 |
<input type="hidden" name="studyExtentDescription" value="[%studyExtentDescription%]"> |
|
199 |
<input type="hidden" name="samplingDescription" value="[%samplingDescription%]"> |
|
200 |
|
|
201 |
<table class="intro" cellpadding="8" cellspacing="0"> |
|
202 |
<tr><td align="left"><span class="regtext">Click <a href="#" onclick="document.editForm.submit()">here</a> to return |
|
203 |
to the form, fill in the required fields, and submit the data set description again.</td></tr> |
|
204 |
</table> |
|
205 |
|
|
206 |
</form> |
|
207 |
[% END %] |
|
208 |
[% END %] |
|
209 |
[% END %] |
|
110 | 210 |
[% END %] |
111 |
[% cnt = 1 %] |
|
112 |
[% WHILE cnt <= numAO %] |
|
113 |
[% SET origNamefirst = "origNamefirst${cnt}" %] |
|
114 |
[% SET origNamelast = "origNamelast${cnt}" %] |
|
115 |
[% SET origRole = "origRole${cnt}" %] |
|
116 |
<input type="hidden" name="[% origNamefirst %]" value="[% $origNamefirst%]"> |
|
117 |
<input type="hidden" name="[% origNamelast %]" value="[% $origNamelast%]"> |
|
118 |
<input type="hidden" name="[% origRole %]" value="[% $origRole%]"> |
|
119 |
[% cnt = cnt + 1 %] |
|
120 |
[% END %] |
|
121 |
|
|
122 |
<input type="hidden" name="abstract" value="[%abstract%]"> |
|
123 |
<input type="hidden" name="keyCount" value="[%keyCount%]"> |
|
124 |
[% numKey = 0 %] |
|
125 |
[% IF keyCount > 0 %] |
|
126 |
[% numKey = keyCount %] |
|
127 |
[% END %] |
|
128 |
[% cnt = 1 %] |
|
129 |
[% WHILE cnt <= numKey %] |
|
130 |
[% SET kyd = "keyword${cnt}" %] |
|
131 |
[% SET keyType = "kwType${cnt}" %] |
|
132 |
[% SET keyTh = "kwTh${cnt}" %] |
|
133 |
<input type="hidden" name="[% kyd %]" value="[% $kyd %]"> |
|
134 |
<input type="hidden" name="[% keyType %]" value="[% $keyType %]"> |
|
135 |
<input type="hidden" name="[% keyTh %]" value="[% $keyTh %]"> |
|
136 |
[% cnt = cnt + 1 %] |
|
137 |
[% END %] |
|
138 |
<input type="hidden" name="addComments" value="[%addComments%]"> |
|
139 |
<input type="hidden" name="useConstraints" value="[%useConstraints%]"> |
|
140 |
<input type="hidden" name="useConstraintsOther" value="[%useConstraintsOther%]"> |
|
141 |
<input type="hidden" name="url" value="[%url%]"> |
|
142 |
<input type="hidden" name="dataMedium" value="[%dataMedium%]"> |
|
143 |
<input type="hidden" name="dataMediumOther" value="[%dataMediumOther%]"> |
|
144 |
<input type="hidden" name="beginningYear" value="[%beginningYear%]"> |
|
145 |
<input type="hidden" name="beginningMonth" value="[%beginningMonth%]"> |
|
146 |
<input type="hidden" name="beginningDay" value="[%beginningDay%]"> |
|
147 |
<input type="hidden" name="endingYear" value="[%endingYear%]"> |
|
148 |
<input type="hidden" name="endingMonth" value="[%endingMonth%]"> |
|
149 |
<input type="hidden" name="endingDay" value="[%endingDay%]"> |
|
150 |
<input type="hidden" name="geogdesc" value="[%geogdesc%]"> |
|
151 |
<input type="hidden" name="useSiteCoord" value="[%useSiteCoord%]"> |
|
152 |
<input type="hidden" name="latDeg1" value="[% latDeg1 %]"> |
|
153 |
<input type="hidden" name="latMin1" value="[%latMin1%]"> |
|
154 |
<input type="hidden" name="latSec1" value="[%latSec1%]"> |
|
155 |
<input type="hidden" name="hemisphLat1" value="[%hemisphLat1%]"> |
|
156 |
<input type="hidden" name="longDeg1" value="[% longDeg1 %]"> |
|
157 |
<input type="hidden" name="longMin1" value="[%longMin1%]"> |
|
158 |
<input type="hidden" name="longSec1" value="[%longSec1%]"> |
|
159 |
<input type="hidden" name="hemisphLong1" value="[%hemisphLong1%]"> |
|
160 |
<input type="hidden" name="latDeg2" value="[%latDeg2%]"> |
|
161 |
<input type="hidden" name="latMin2" value="[%latMin2%]"> |
|
162 |
<input type="hidden" name="latSec2" value="[%latSec2%]"> |
|
163 |
<input type="hidden" name="hemisphLat2" value="[%hemisphLat2%]"> |
|
164 |
<input type="hidden" name="longDeg2" value="[%longDeg2%]"> |
|
165 |
<input type="hidden" name="longMin2" value="[%longMin2%]"> |
|
166 |
<input type="hidden" name="longSec2" value="[%longSec2%]"> |
|
167 |
<input type="hidden" name="hemisphLong2" value="[%hemisphLong2%]"> |
|
168 |
<input type="hidden" name="taxaCount" value="[%taxaCount%]"> |
|
169 |
[% numTaxa = 0 %] |
|
170 |
[% IF taxaCount > 0 %] |
|
171 |
[% numTaxa = taxaCount %] |
|
172 |
[% END %] |
|
173 |
[% cnt = 1 %] |
|
174 |
[% WHILE cnt <= numTaxa %] |
|
175 |
[% SET trn = "taxonRankName${cnt}" %] |
|
176 |
[% SET trv = "taxonRankValue${cnt}" %] |
|
177 |
<input type="hidden" name="[% trn %]" value="[% $trn %]"> |
|
178 |
<input type="hidden" name="[% trv %]" value="[% $trv %]"> |
|
179 |
[% cnt = cnt + 1 %] |
|
180 |
[% END %] |
|
181 |
<input type="hidden" name="taxaAuth" value="[%taxaAuth%]"> |
|
182 |
|
|
183 |
<input type="hidden" name="methodTitle" value="[%methodTitle%]"> |
|
184 |
[% FOREACH para = methodPara %] |
|
185 |
<input type="hidden" name="methodPara" value="[%para%]"> |
|
186 |
[% END %] |
|
187 |
<input type="hidden" name="studyExtentDescription" value="[%studyExtentDescription%]"> |
|
188 |
<input type="hidden" name="samplingDescription" value="[%samplingDescription%]"> |
|
189 |
|
|
190 |
<p>To make changes to the entry just submitted,click |
|
191 |
<a href="#" onclick="document.editForm.submit()">here</a>. |
|
192 |
Otherwise, use the toolbar links above to navigate.</p> |
|
193 |
</form> |
|
194 |
[% END %] |
|
195 |
[% END %] |
|
196 |
[% END %] |
|
197 | 211 |
[% INCLUDE "genericFooter.tmpl" %] |
lib/style/common/templates/deleteData.tmpl | ||
---|---|---|
32 | 32 |
[% END %] |
33 | 33 |
|
34 | 34 |
|
35 |
<p><font size="-1">You have requested deletion of data entered in [% orgabbrev %] Data Registry Form. Please enter your username, organization and password to delete this document.</font></p> |
|
35 |
<table class="intro" cellpadding="3" cellspacing="0"> |
|
36 |
<tr><td align="left"><span class="regtext">You have requested deletion of a data set description entered in the [% orgabbrev %] Data Registry Form. |
|
37 |
Please enter your username, organization, and password to delete this document.</span><p> </p> |
|
36 | 38 |
|
37 | 39 |
<form action="@cgi-prefix@/register-dataset.cgi" method="post"> |
38 | 40 |
<input type="hidden" name="cfg" value="[% cfg %]"> |
39 | 41 |
<input type="hidden" name="docid" value="[% docid %]"> |
40 | 42 |
<input type="hidden" name="stage" value="delete_confirm"> |
41 |
<table cellspacing="0" border="0" cellpadding="9" width="800" bgcolor="#C6d6e7"> |
|
42 |
<tr> |
|
43 |
<td> |
|
44 |
<table cellspacing="0" border="0" cellpadding="9" width="360" bgcolor="#C6d6e7" align="left"> |
|
45 |
<tr> |
|
43 |
<table cellspacing="0" border="0" cellpadding="9" width="350" align="left"> |
|
44 |
<tr class="sectbody"> |
|
46 | 45 |
<td> |
47 | 46 |
<font size="-1"><b> |
48 | 47 |
Username: |
49 |
</b></font> |
|
50 |
</td> |
|
51 |
<td> |
|
48 |
</b></font></td> |
|
49 |
<td> |
|
52 | 50 |
<input type="TEXT" name="username"> |
53 |
</td> |
|
54 |
</tr> |
|
55 |
<tr> |
|
51 |
</td></tr> |
|
52 |
<tr class="sectbody"> |
|
56 | 53 |
<td> |
57 | 54 |
<font size="-1"><b> |
58 | 55 |
Organization: |
59 |
</b></font> |
|
60 |
</td> |
|
56 |
</b></font></td> |
|
61 | 57 |
<td> |
62 | 58 |
<select name="organization"> |
63 | 59 |
<option value="unaffiliated">unaffiliated</option> |
... | ... | |
67 | 63 |
<option value="OBFS">OBFS</option> |
68 | 64 |
<option value="KU">KU</option> |
69 | 65 |
<option value="UCNRS">UCNRS</option> |
70 |
</select> |
|
71 |
</td> |
|
72 |
</tr> |
|
73 |
<tr> |
|
66 |
</select></td></tr> |
|
67 |
<tr class="sectbody"> |
|
74 | 68 |
<td> |
75 | 69 |
<font size="-1"><b> |
76 | 70 |
Password: |
... | ... | |
78 | 72 |
</td> |
79 | 73 |
<td> |
80 | 74 |
<input type="PASSWORD" name="password"> |
81 |
</td> |
|
82 |
</tr> |
|
75 |
</td></tr> |
|
83 | 76 |
</table> |
84 |
</td> |
|
85 |
</tr> |
|
86 |
</table> |
|
77 |
</td></tr></table> |
|
87 | 78 |
<p> |
88 | 79 |
<hr> |
89 | 80 |
</p> |
90 |
<table cellspacing="0" border="0" cellpadding="9" width="800" bgcolor="#C6d6e7">
|
|
81 |
<table class="intro" cellspacing="0" border="0" cellpadding="9">
|
|
91 | 82 |
<tr> |
92 | 83 |
<td> |
93 |
<font size="-1"><b>Are you sure you want to delete this data?</b></font>
|
|
84 |
<font size="-1"><b>Are you sure you want to delete this document?</b></font>
|
|
94 | 85 |
<p> |
95 |
<input type="SUBMIT" value="Delete data" name="deleteData">
|
|
86 |
<input type="SUBMIT" value="Delete document" name="deleteData">
|
|
96 | 87 |
<input type="SUBMIT" value=" Cancel " name="cancelData"> |
97 | 88 |
</p> |
98 | 89 |
</td> |
Also available in: Unified diff
Registry templates redesigned by Veronique Connolly and Saurabh Garg