Project

General

Profile

« Previous | Next » 

Revision 5710

include EML 2.1.1 documents in skin (path query search, mostly)

View differences:

lib/style/skins/parc/parc-eml-2.1.0.xsl
1
<?xml version="1.0"?>
2
<!--
3
	*  '$RCSfile$'
4
	*      Authors: Matt Jones, Chad Berkley
5
	*    Copyright: 2000-2007 Regents of the University of California and the
6
	*               National Center for Ecological Analysis and Synthesis
7
	*  For Details: http://www.nceas.ucsb.edu/
8
	*
9
	*   '$Author: leinfelder $'
10
	*     '$Date: 2008-02-27 09:43:25 -0800 (Wed, 27 Feb 2008) $'
11
	* '$Revision: 3742 $'
12
	*
13
	* This program is free software; you can redistribute it and/or modify
14
	* it under the terms of the GNU General Public License as published by
15
	* the Free Software Foundation; either version 2 of the License, or
16
	* (at your option) any later version.
17
	*
18
	* This program is distributed in the hope that it will be useful,
19
	* but WITHOUT ANY WARRANTY; without even the implied warranty of
20
	* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21
	* GNU General Public License for more details.
22
	*
23
	* You should have received a copy of the GNU General Public License
24
	* along with this program; if not, write to the Free Software
25
	* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26
	*
27
	* This is an XSLT (http://www.w3.org/TR/xslt) stylesheet designed to
28
	* convert an XML file showing the resultset of a query
29
	* into an HTML format suitable for rendering with modern web browsers.
30
-->
31
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
32
                xmlns:eml="eml://ecoinformatics.org/eml-2.0.1" 
33
	            version="1.0">
34
    <xsl:import href="../../common/resultset-table.xsl"/>
35
    <!-- xsl:import href="../../common/eml-2.1.0/emlroot.xsl"/ -->
36
    <xsl:import href="../../common/eml-2/emlroot.xsl"/>
37
    <xsl:import href="../../common/fgdc/fgdc-root.xsl"/>
38
    <xsl:import href="parc-common.xsl"/>
39
	
40
	<xsl:template match="/">
41
		<html>
42
		
43
			<xsl:call-template name="documenthead"/>
44
			
45
			<body id="Overview" onload="loginStatus('{$contextURL}/metacat', '{$cgi-prefix}');">
46
				<div id="main_wrapper">
47
					
48
				    <xsl:call-template name="bodyheader"/>
49
				    
50
					<div id="content_wrapper">
51
					                        
52
                   		<xsl:if test="*[local-name()='eml']">     	
53
                            <xsl:call-template name="emldocument"/>
54
                        </xsl:if>
55
                        
56
                        <xsl:if test="*[local-name()='resultset']">     	
57
                            <xsl:call-template name="resultstable"/>
58
                        </xsl:if>
59
                        
60
                        <xsl:if test="*[local-name()='metadata']">     	
61
                            <xsl:call-template name="metadata"/>
62
                        </xsl:if>
63
                        
64
						<xsl:call-template name="bodyfooter"/>
65
						
66
					</div><!-- id="content_wrapper"-->
67
					
68
				</div><!-- id="main_wraper"-->
69
				
70
			</body>
71
			
72
		</html>
73
	</xsl:template>
74

  
75
</xsl:stylesheet>
76 0

  
lib/style/skins/nceas/nceas-eml-2.1.0.xsl
1
<?xml version="1.0"?>
2
<!--
3
	*  '$RCSfile$'
4
	*      Authors: Matt Jones, Chad Berkley
5
	*    Copyright: 2000-2007 Regents of the University of California and the
6
	*               National Center for Ecological Analysis and Synthesis
7
	*  For Details: http://www.nceas.ucsb.edu/
8
	*
9
	*   '$Author: leinfelder $'
10
	*     '$Date: 2008-02-27 09:43:25 -0800 (Wed, 27 Feb 2008) $'
11
	* '$Revision: 3742 $'
12
	*
13
	* This program is free software; you can redistribute it and/or modify
14
	* it under the terms of the GNU General Public License as published by
15
	* the Free Software Foundation; either version 2 of the License, or
16
	* (at your option) any later version.
17
	*
18
	* This program is distributed in the hope that it will be useful,
19
	* but WITHOUT ANY WARRANTY; without even the implied warranty of
20
	* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21
	* GNU General Public License for more details.
22
	*
23
	* You should have received a copy of the GNU General Public License
24
	* along with this program; if not, write to the Free Software
25
	* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26
	*
27
	* This is an XSLT (http://www.w3.org/TR/xslt) stylesheet designed to
28
	* convert an XML file showing the resultset of a query
29
	* into an HTML format suitable for rendering with modern web browsers.
30
-->
31
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
32
                xmlns:eml="eml://ecoinformatics.org/eml-2.0.1" 
33
	            version="1.0">
34
    <xsl:import href="../../common/resultset-table.xsl"/>
35
    <!-- xsl:import href="../../common/eml-2.1.0/emlroot.xsl"/ -->
36
    <xsl:import href="../../common/eml-2/emlroot.xsl"/>
37
    <xsl:import href="../../common/fgdc/fgdc-root.xsl"/>
38
    <xsl:import href="nceas-common.xsl"/>
39
	
40
	<xsl:template match="/">
41
		<html>
42
		
43
			<xsl:call-template name="documenthead"/>
44
			
45
			<body id="Overview" onload="loginStatus('{$contextURL}/metacat', '{$cgi-prefix}');">
46
				<div id="main_wrapper">
47
					
48
				    <xsl:call-template name="bodyheader"/>
49
				    
50
					<div id="content_wrapper">
51
					                        
52
                   		<xsl:if test="*[local-name()='eml']">     	
53
                            <xsl:call-template name="emldocument"/>
54
                        </xsl:if>
55
                        
56
                        <xsl:if test="*[local-name()='resultset']">     	
57
                            <xsl:call-template name="resultstable"/>
58
                        </xsl:if>
59
                        
60
                        <xsl:if test="*[local-name()='metadata']">     	
61
                            <xsl:call-template name="metadata"/>
62
                        </xsl:if>
63
                        
64
						<xsl:call-template name="bodyfooter"/>
65
						
66
					</div><!-- id="content_wrapper"-->
67
					
68
				</div><!-- id="main_wraper"-->
69
				
70
			</body>
71
			
72
		</html>
73
	</xsl:template>
74

  
75
</xsl:stylesheet>
76 0

  
lib/style/skins/esa/header.jsp
173 173
       <input type="hidden" name="action" value="squery"/>
174 174
       <input type="hidden" name="qformat" value="esa"/>
175 175
       <input type="hidden" name="enableediting" value="true"/>
176
       <input type="hidden" name="query" value="<pathquery><querytitle>Moderator-Search</querytitle><returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype><returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype><returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype><returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype><returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype><returndoctype>-//NCEAS//resource//EN</returndoctype><returndoctype>-//NCEAS//eml-dataset//EN</returndoctype><returnfield>originator/individualName/surName</returnfield><returnfield>originator/individualName/givenName</returnfield><returnfield>creator/individualName/surName</returnfield><returnfield>creator/individualName/givenName</returnfield><returnfield>originator/organizationName</returnfield><returnfield>creator/organizationName</returnfield><returnfield>dataset/title</returnfield><returnfield>keyword</returnfield><querygroup operator='INTERSECT'><queryterm searchmode='not-contains' casesensitive='false'><value>public</value><pathexpr>access/allow/principal</pathexpr></queryterm><queryterm searchmode='not-contains' casesensitive='false'><value>Revision Requested</value><pathexpr>additionalMetadata/moderatorComment</pathexpr></queryterm></querygroup></pathquery>"/>
176
       <input type="hidden" name="query" value="<pathquery><querytitle>Moderator-Search</querytitle><returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype><returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype><returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype><returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype><returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype><returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype><returndoctype>-//NCEAS//resource//EN</returndoctype><returndoctype>-//NCEAS//eml-dataset//EN</returndoctype><returnfield>originator/individualName/surName</returnfield><returnfield>originator/individualName/givenName</returnfield><returnfield>creator/individualName/surName</returnfield><returnfield>creator/individualName/givenName</returnfield><returnfield>originator/organizationName</returnfield><returnfield>creator/organizationName</returnfield><returnfield>dataset/title</returnfield><returnfield>keyword</returnfield><querygroup operator='INTERSECT'><queryterm searchmode='not-contains' casesensitive='false'><value>public</value><pathexpr>access/allow/principal</pathexpr></queryterm><queryterm searchmode='not-contains' casesensitive='false'><value>Revision Requested</value><pathexpr>additionalMetadata/moderatorComment</pathexpr></queryterm></querygroup></pathquery>"/>
177 177
</form>
178 178
<form id="userSearch" name="userSearch" action="<%=SERVLET_URL%>" method="post" target="_top">
179 179
       <input type="hidden" name="action" value="squery"/>
180 180
       <input type="hidden" name="qformat" value="esa"/>
181 181
       <input type="hidden" name="enableediting" value="true"/>
182
       <input type="hidden" name="query" value="<pathquery><querytitle>Moderator-Search</querytitle><returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype><returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype><returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype><returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype><returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype><returndoctype>-//NCEAS//resource//EN</returndoctype><returndoctype>-//NCEAS//eml-dataset//EN</returndoctype><returnfield>originator/individualName/surName</returnfield><returnfield>originator/individualName/givenName</returnfield><returnfield>creator/individualName/surName</returnfield><returnfield>creator/individualName/givenName</returnfield><returnfield>originator/organizationName</returnfield><returnfield>creator/organizationName</returnfield><returnfield>dataset/title</returnfield><returnfield>keyword</returnfield><querygroup operator='INTERSECT'><queryterm searchmode='not-contains' casesensitive='false'><value>public</value><pathexpr>access/allow/principal</pathexpr></queryterm></querygroup></pathquery>"/>
182
       <input type="hidden" name="query" value="<pathquery><querytitle>Moderator-Search</querytitle><returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype><returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype><returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype><returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype><returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype><returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype><returndoctype>-//NCEAS//resource//EN</returndoctype><returndoctype>-//NCEAS//eml-dataset//EN</returndoctype><returnfield>originator/individualName/surName</returnfield><returnfield>originator/individualName/givenName</returnfield><returnfield>creator/individualName/surName</returnfield><returnfield>creator/individualName/givenName</returnfield><returnfield>originator/organizationName</returnfield><returnfield>creator/organizationName</returnfield><returnfield>dataset/title</returnfield><returnfield>keyword</returnfield><querygroup operator='INTERSECT'><queryterm searchmode='not-contains' casesensitive='false'><value>public</value><pathexpr>access/allow/principal</pathexpr></queryterm></querygroup></pathquery>"/>
183 183
</form>
184 184
</body>
185 185
</html>
lib/style/skins/esa/esa.xml
20 20
    <target publicid="-//W3C//HTML//EN">/style/skins/esa/esa-login.xsl</target>
21 21
  </doctype>
22 22

  
23
<!-- pre-beta6 modules -->
24
<!-- NOTE these settings are unchanged from the previous version - only the xsl 
25
     filename has changed from "eml-dataset-display.xsl" to "eml-dataset-2.0.0beta4.xsl" -->
23
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.1">
24
    <target publicid="-//W3C//HTML//EN">/style/common/eml-2/eml.xsl</target>
25
  </doctype>
26 26
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.0">
27 27
    <!-- target publicid="-//W3C//HTML//EN">/style/common/eml-2.1.0/eml.xsl</target -->
28 28
    <target publicid="-//W3C//HTML//EN">/style/common/eml-2/eml.xsl</target>
lib/style/skins/pisco/pisco.xml
38 38
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.0">
39 39
    <target publicid="-//W3C//HTML//EN">/style/shared/eml-2/eml.xsl</target>
40 40
  </doctype>
41
  
42
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.1">
43
    <target publicid="-//W3C//HTML//EN">/style/shared/eml-2/eml.xsl</target>
44
  </doctype>  
41 45
</style-set>
lib/style/skins/nrs/nrs.xml
23 23
  </doctype>
24 24
-->
25 25

  
26

  
27
<!-- pre-beta6 modules -->
28
<!-- NOTE these settings are unchanged from the previous version - only the xsl 
29
     filename has changed from "eml-dataset-display.xsl" to "eml-dataset-2.0.0beta4.xsl" -->
26
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.1">
27
    <target publicid="-//W3C//HTML//EN">/style/common/eml-2/eml.xsl</target>
28
  </doctype>
30 29
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.0">
31 30
    <!-- target publicid="-//W3C//HTML//EN">/style/common/eml-2.1.0/eml.xsl</target -->
32 31
    <target publicid="-//W3C//HTML//EN">/style/common/eml-2/eml.xsl</target>
lib/style/skins/nrs/header.jsp
48 48

  
49 49
                submitFormObj.query.value = "<pathquery version=\"1.2\">"
50 50
                                                  +"<querytitle>Web-Search</querytitle>"
51
                                                  +"<returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype>"
51 52
                                                  +"<returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype>"
52 53
                                                  +"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
53 54
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
lib/style/skins/saeon/searchPathQuery.js
4 4
	queryString += "<returndoctype>metadata</returndoctype>";
5 5
	queryString += "<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype>";
6 6
	queryString += "<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype>";
7
    queryString += "<returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype>";
7 8
    queryString += "<returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype>";
8 9
	queryString += "<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>";
9 10
	queryString += "<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>";
lib/style/skins/semtools/semtools.xml
15 15
  <doctype publicid="http://ecoinformatics.org/sms/annotation.0.9">
16 16
    <target publicid="-//W3C//HTML//EN">/style/skins/semtools/annotation.xsl</target>
17 17
  </doctype>
18
  
18

  
19
<!-- eml-2.1.1 modules -->
20
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.1">
21
    <target publicid="-//W3C//HTML//EN">/style/skins/semtools/semtools.xsl</target>
22
  </doctype>  
19 23
<!-- eml-2.1.0 modules -->
20 24
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.0">
21 25
    <target publicid="-//W3C//HTML//EN">/style/skins/semtools/semtools.xsl</target>
22
    <!-- target publicid="-//W3C//HTML//EN">/style/common/eml-2/eml.xsl</target-->
23 26
  </doctype>
24 27

  
25 28
<!-- eml-2.0.1 modules -->
lib/style/skins/esa/esa-login.xsl
61 61
		var queryInput = document.createElement("input");
62 62
        	queryInput.setAttribute("type", "hidden");
63 63
        	queryInput.setAttribute("name", "query");
64
        	queryInput.setAttribute("value", "<pathquery version=\"1.2\"><querytitle>Moderator-Search</querytitle><returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype><returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype><returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype><returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype><returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype><returndoctype>-//NCEAS//resource//EN</returndoctype><returndoctype>-//NCEAS//eml-dataset//EN</returndoctype><returnfield>originator/individualName/surName</returnfield><returnfield>originator/individualName/givenName</returnfield><returnfield>creator/individualName/surName</returnfield><returnfield>creator/individualName/givenName</returnfield><returnfield>originator/organizationName</returnfield><returnfield>creator/organizationName</returnfield><returnfield>dataset/title</returnfield><returnfield>keyword</returnfield><querygroup operator=\"INTERSECT\"><queryterm searchmode=\"not-contains\" casesensitive=\"false\"><value>public</value><pathexpr>access/allow/principal</pathexpr></queryterm><queryterm searchmode=\"not-contains\" casesensitive=\"false\"><value>Revision Requested</value><pathexpr>additionalMetadata/moderatorComment</pathexpr></queryterm></querygroup></pathquery>");
64
        	queryInput.setAttribute("value", "<pathquery version=\"1.2\"><querytitle>Moderator-Search</querytitle><returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype><returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype><returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype><returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype><returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype><returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype><returndoctype>-//NCEAS//resource//EN</returndoctype><returndoctype>-//NCEAS//eml-dataset//EN</returndoctype><returnfield>originator/individualName/surName</returnfield><returnfield>originator/individualName/givenName</returnfield><returnfield>creator/individualName/surName</returnfield><returnfield>creator/individualName/givenName</returnfield><returnfield>originator/organizationName</returnfield><returnfield>creator/organizationName</returnfield><returnfield>dataset/title</returnfield><returnfield>keyword</returnfield><querygroup operator=\"INTERSECT\"><queryterm searchmode=\"not-contains\" casesensitive=\"false\"><value>public</value><pathexpr>access/allow/principal</pathexpr></queryterm><queryterm searchmode=\"not-contains\" casesensitive=\"false\"><value>Revision Requested</value><pathexpr>additionalMetadata/moderatorComment</pathexpr></queryterm></querygroup></pathquery>");
65 65
		searchForm.appendChild(queryInput);	
66 66
		searchForm.submit();
67 67
    };
lib/style/skins/esa/index.jsp
180 180
  <input name="returnfield" value="creator/organizationName" type="hidden">
181 181
  <input name="returnfield" value="dataset/title" type="hidden">
182 182
  <input name="returnfield" value="keyword" type="hidden">
183
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.1.1" type="hidden">
183 184
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.1.0" type="hidden">
184 185
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.1" type="hidden">
185 186
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.0" type="hidden">
......
221 222
      phrase with the word biodiversity embedded within it).
222 223
      </ul>
223 224
  </li>
224
  <li><a href="<%=SERVLET_URL%>?action=query&amp;operator=INTERSECT&amp;anyfield=%25&amp;qformat=esa&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&amp;returnfield=dataset/title&amp;returnfield=keyword&amp;returnfield=originator/individualName/surName&amp;returnfield=creator/individualName/surName&amp;returnfield=originator/organizationName&amp;returnfield=creator/organizationName">Browse data sets</a>    <ul>
225
  <li><a href="<%=SERVLET_URL%>?action=query&amp;operator=INTERSECT&amp;anyfield=%25&amp;qformat=esa&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&amp;returnfield=dataset/title&amp;returnfield=keyword&amp;returnfield=originator/individualName/surName&amp;returnfield=creator/individualName/surName&amp;returnfield=originator/organizationName&amp;returnfield=creator/organizationName">Browse data sets</a>    <ul>
225 226
      <p>Browse all existing data sets by title.  This operation can be slow as the
226 227
      number of entries in the registry grows.</p>
227 228
      
lib/style/skins/pisco/index.jsp
142 142
        <tr>
143 143
          <td>
144 144
            <a
145
            href="<%=SERVLET_URL%>?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EOceanographic%20Sensor%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
145
            href="<%=SERVLET_URL%>?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.1%3C/returndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EOceanographic%20Sensor%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
146 146
           <!--
147 147
           <?xml version="1.0"?>
148 148
             <pathquery version="1.2">
149
             <returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype>
149 150
             <returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype>
150 151
               <returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>
151 152
               <returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>
......
177 178
                 <br />
178 179

  
179 180
            <a
180
            href="<%=SERVLET_URL%>?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EIntertidal%20Community%20Survey%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
181
            href="<%=SERVLET_URL%>?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.1%3C/returndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EIntertidal%20Community%20Survey%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
181 182
             Intertidal Community Survey Data
182 183
             </a>
183 184
             <br />
184 185
            <a
185
            href="<%=SERVLET_URL%>?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3ESubtidal%20Community%20Survey%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
186
            href="<%=SERVLET_URL%>?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.1%3C/returndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3ESubtidal%20Community%20Survey%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
186 187
             Subtidal Community Survey Data
187 188
             </a>
188 189
            <br />
189 190
               </td>
190 191
              <td>
191 192
                <a
192
                href="<%=SERVLET_URL%>?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EMicrochemistry%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
193
                href="<%=SERVLET_URL%>?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.1%3C/returndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EMicrochemistry%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
193 194
            Microchemistry Data
194 195
            </a>
195 196
            <br />
196 197
            <a
197
            href="<%=SERVLET_URL%>?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EIntertidal%20Recruitment%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
198
            href="<%=SERVLET_URL%>?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.1%3C/returndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EIntertidal%20Recruitment%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
198 199
        Intertidal Recruitment Data
199 200
        </a>
200 201
        <br />
201 202
            <a
202
            href="<%=SERVLET_URL%>?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3ESubtidal%20Recruitment%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
203
            href="<%=SERVLET_URL%>?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.1%3C/returndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3ESubtidal%20Recruitment%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
203 204
        Subtidal Recruitment Data
204 205
        </a>
205 206
          </td>
lib/style/skins/sanparks/sanparks.xml
40 40
<!-- pre-beta6 modules -->
41 41
<!-- NOTE these settings are unchanged from the previous version - only the xsl 
42 42
     filename has changed from "eml-dataset-display.xsl" to "eml-dataset-2.0.0beta4.xsl" -->
43
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.1">
44
    <target publicid="-//W3C//HTML//EN">/style/common/eml-2/eml.xsl</target>
45
  </doctype>    
43 46
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.0">
44 47
    <!-- target publicid="-//W3C//HTML//EN">/style/common/eml-2.1.0/eml.xsl</target -->
45 48
    <target publicid="-//W3C//HTML//EN">/style/common/eml-2/eml.xsl</target>
lib/style/skins/sanparks/searchPathQuery.js
4 4
	queryString += "<returndoctype>metadata</returndoctype>";
5 5
	queryString += "<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype>";
6 6
	queryString += "<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype>";
7
	queryString += "<returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype>";
7 8
	queryString += "<returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype>";
8 9
	queryString += "<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>";
9 10
	queryString += "<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>";
lib/style/skins/default/default.xml
20 20
  <doctype publicid="metadata">
21 21
  	<target publicid="-//W3C//HTML//EN">/style/skins/default/default.xsl</target>
22 22
  </doctype>
23
  
23

  
24
<!-- eml-2.1.1 module -->
25
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.1">
26
    <target publicid="-//W3C//HTML//EN">/style/skins/default/default.xsl</target>
27
  </doctype>
28
    
24 29
<!-- eml-2.1.0 modules -->
25 30
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.0">
26 31
    <!-- target publicid="-//W3C//HTML//EN">/style/common/eml-2.1.0/eml.xsl</target -->
lib/style/skins/parc/search.js
17 17
    if (!checkBox.checked && searchString!="%") {
18 18
        submitFormObj.query.value = "<pathquery version=\"1.2\">"
19 19
            +"<querytitle>Web-Search</querytitle>"
20
            +"<returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype>"
20 21
            +"<returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype>"
21 22
            +"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
23
            +"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
22 24
            +"<returndoctype>metadata</returndoctype>"
23 25
            +"<returnfield>originator/individualName/surName</returnfield>"
24 26
            +"<returnfield>originator/individualName/givenName</returnfield>"
......
89 91
        }
90 92
        submitFormObj.query.value = "<pathquery version=\"1.2\">"
91 93
            +"<querytitle>Web-Search</querytitle>"
94
            +"<returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype>"
92 95
            +"<returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype>"
93 96
            +"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
94 97
            +"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
lib/style/skins/parc/parc.xml
17 17
    <target publicid="-//W3C//HTML//EN">/style/skins/parc/parc-login.xsl</target>
18 18
  </doctype>
19 19

  
20
<!-- NOTE these settings are unchanged from the previous version - only the xsl 
21
     filename has changed from "eml-dataset-display.xsl" to "eml-dataset-2.0.0beta4.xsl" -->
20
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.1">
21
    <target publicid="-//W3C//HTML//EN">/style/skins/parc/parc.xsl</target>
22
  </doctype>
22 23
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.0">
23
    <target publicid="-//W3C//HTML//EN">/style/skins/parc/parc-eml-2.1.0.xsl</target>
24
    <target publicid="-//W3C//HTML//EN">/style/skins/parc/parc.xsl</target>
24 25
  </doctype>
25 26
  <doctype publicid="eml://ecoinformatics.org/eml-2.0.1">
26 27
    <target publicid="-//W3C//HTML//EN">/style/skins/parc/parc.xsl</target>
lib/style/skins/ltss/index.jsp
82 82
  <input name="returnfield" value="creator/organizationName" type="hidden">
83 83
  <input name="returnfield" value="dataset/title" type="hidden">
84 84
  <input name="returnfield" value="keyword" type="hidden">
85
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.1.1" type="hidden">
85 86
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.1.0" type="hidden">
86 87
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.1" type="hidden">
87 88
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.0" type="hidden">
......
100 101
      biodiversity embedded within it).
101 102
      </menu>
102 103
  </li>
103
  <li><a href="<%=SERVLET_URL%>?action=query&amp;operator=INTERSECT&amp;anyfield=%25&amp;qformat=ltss&amp;enableediting=true&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&amp;returnfield=dataset/title&amp;returnfield=keyword&amp;returnfield=originator/individualName/surName&amp;returnfield=creator/individualName/surName&amp;returnfield=originator/organizationName&amp;returnfield=creator/organizationName">Browse data sets</a><br />
104
  <li><a href="<%=SERVLET_URL%>?action=query&amp;operator=INTERSECT&amp;anyfield=%25&amp;qformat=ltss&amp;enableediting=true&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&amp;returnfield=dataset/title&amp;returnfield=keyword&amp;returnfield=originator/individualName/surName&amp;returnfield=creator/individualName/surName&amp;returnfield=originator/organizationName&amp;returnfield=creator/organizationName">Browse data sets</a><br />
104 105
    <menu>
105 106
    Browse all existing data sets by title.  This operation can be slow as the
106 107
    number of entries in the registry grows.
lib/style/skins/ltss/header.jsp
80 80
  <input name="returnfield" value="creator/organizationName" type="hidden">
81 81
  <input name="returnfield" value="dataset/title" type="hidden">
82 82
  <input name="returnfield" value="keyword" type="hidden">
83
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.1.1" type="hidden">
83 84
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.1.0" type="hidden">
84 85
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.1" type="hidden">
85 86
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.0" type="hidden">
lib/style/skins/ltss/ltss.xml
26 26
<!-- pre-beta6 modules -->
27 27
<!-- NOTE these settings are unchanged from the previous version - only the xsl 
28 28
     filename has changed from "eml-dataset-display.xsl" to "eml-dataset-2.0.0beta4.xsl" -->
29
<!-- eml-2.1.1 modules -->
30
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.1">
31
    <target publicid="-//W3C//HTML//EN">/style/common/eml-2/eml.xsl</target>
32
  </doctype> 
29 33
<!-- eml-2.1.0 modules -->
30 34
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.0">
31 35
    <!-- target publicid="-//W3C//HTML//EN">/style/common/eml-2.1.0/eml.xsl</target -->
lib/style/skins/ltss/searchform.jsp
44 44
  <input name="returnfield" value="creator/organizationName" type="hidden">
45 45
  <input name="returnfield" value="dataset/title" type="hidden">
46 46
  <input name="returnfield" value="keyword" type="hidden">
47
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.1.1" type="hidden">
47 48
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.1.0" type="hidden">
48 49
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.1" type="hidden">
49 50
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.0" type="hidden">
lib/style/skins/first/first.xml
32 32
<!-- pre-beta6 modules -->
33 33
<!-- NOTE these settings are unchanged from the previous version - only the xsl 
34 34
     filename has changed from "eml-dataset-display.xsl" to "eml-dataset-2.0.0beta4.xsl" -->
35
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.1">
36
    <target publicid="-//W3C//HTML//EN">/style/common/eml-2/eml.xsl</target>
37
  </doctype>
35 38
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.0">
36 39
    <!-- target publicid="-//W3C//HTML//EN">/style/common/eml-2.1.0/eml.xsl</target -->
37 40
    <target publicid="-//W3C//HTML//EN">/style/common/eml-2/eml.xsl</target>
lib/style/skins/nceas/search.js
17 17
    if (!checkBox.checked && searchString!="%") {
18 18
        submitFormObj.query.value = "<pathquery version=\"1.2\">"
19 19
            +"<querytitle>Web-Search</querytitle>"
20
            +"<returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype>"
20 21
            +"<returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype>"
21 22
            +"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
22 23
            +"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
......
121 122
        }
122 123
        submitFormObj.query.value = "<pathquery version=\"1.2\">"
123 124
            +"<querytitle>Web-Search</querytitle>"
125
            +"<returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype>"
124 126
            +"<returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype>"
125 127
            +"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
126 128
            +"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
lib/style/skins/nceas/nceas.xml
28 28
    <target publicid="-//W3C//HTML//EN">/style/skins/nceas/nceas-login.xsl</target>
29 29
  </doctype>
30 30

  
31
<!-- pre-beta6 modules -->
32
<!-- NOTE these settings are unchanged from the previous version - only the xsl 
33
     filename has changed from "eml-dataset-display.xsl" to "eml-dataset-2.0.0beta4.xsl" -->
31
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.1">
32
    <target publicid="-//W3C//HTML//EN">/style/skins/nceas/nceas.xsl</target>
33
  </doctype>
34 34
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.0">
35
    <target publicid="-//W3C//HTML//EN">/style/skins/nceas/nceas-eml-2.1.0.xsl</target>
35
    <target publicid="-//W3C//HTML//EN">/style/skins/nceas/nceas.xsl</target>
36 36
  </doctype>
37 37
  <doctype publicid="eml://ecoinformatics.org/eml-2.0.1">
38 38
    <target publicid="-//W3C//HTML//EN">/style/skins/nceas/nceas.xsl</target>
lib/style/skins/obfs/index.jsp
63 63
                if(!checkBox.checked && searchString!="%"){
64 64
                        submitFormObj.query.value = "<pathquery version=\"1.2\">"
65 65
                                                           +"<querytitle>Web-Search</querytitle>"
66
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype>"
66 67
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype>"
67 68
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
68 69
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
......
132 133
                        }
133 134
                        submitFormObj.query.value = "<pathquery version=\"1.2\">"
134 135
                                                           +"<querytitle>Web-Search</querytitle>"
136
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype>"
135 137
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype>"
136 138
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
137 139
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
......
241 243
    <br><br>
242 244
  </li>
243 245

  
244
  <li><a href="<%=SERVLET_URL%>?action=query&amp;operator=INTERSECT&amp;anyfield=%25&amp;organizationName=Organization%20of%20Biological%20Field%20Stations&amp;qformat=obfs&amp;enableediting=true&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&amp;returnfield=dataset/title&amp;returnfield=keyword&amp;returnfield=originator/individualName/surName&amp;returnfield=creator/individualName/surName&amp;returnfield=originator/organizationName&amp;returnfield=creator/organizationName">Browse existing OBFS data sets</a><br />
246
  <li><a href="<%=SERVLET_URL%>?action=query&amp;operator=INTERSECT&amp;anyfield=%25&amp;organizationName=Organization%20of%20Biological%20Field%20Stations&amp;qformat=obfs&amp;enableediting=true&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&amp;returnfield=dataset/title&amp;returnfield=keyword&amp;returnfield=originator/individualName/surName&amp;returnfield=creator/individualName/surName&amp;returnfield=originator/organizationName&amp;returnfield=creator/organizationName">Browse existing OBFS data sets</a><br />
245 247
    <menu>
246 248
      The registry search system is used to locate data sets of interest
247 249
      by searching through existing registered data sets.  
lib/style/skins/obfs/header.jsp
49 49

  
50 50
                submitFormObj.query.value = "<pathquery version=\"1.2\">"
51 51
                                                  +"<querytitle>Web-Search</querytitle>"
52
                                                  +"<returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype>"
52 53
                                                  +"<returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype>"
53 54
                                                  +"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
54 55
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
......
140 141
    <td valign="top" width="20%"> 
141 142
      <!--
142 143
      <p>
143
        <a href="<%=SERVLET_URL%>?action=query&operator=INTERSECT&anyfield=%25&organizationName=Organization%20of%20Biological%20Field%20Stations&qformat=obfs&returndoctype=eml://ecoinformatics.org/eml-2.1.0&returndoctype=eml://ecoinformatics.org/eml-2.0.1&returndoctype=eml://ecoinformatics.org/eml-2.0.0&returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&returnfield=dataset/title&returnfield=keyword&returnfield=originator/individualName/surName&returnfield=creator/individualName/surName&returnfield=originator/organizationName&returnfield=creator/organizationName" target="_top">Search for Data</a></p>
144
        <a href="<%=SERVLET_URL%>?action=query&operator=INTERSECT&anyfield=%25&organizationName=Organization%20of%20Biological%20Field%20Stations&qformat=obfs&returndoctype=eml://ecoinformatics.org/eml-2.1.1&returndoctype=eml://ecoinformatics.org/eml-2.1.0&returndoctype=eml://ecoinformatics.org/eml-2.0.1&returndoctype=eml://ecoinformatics.org/eml-2.0.0&returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&returnfield=dataset/title&returnfield=keyword&returnfield=originator/individualName/surName&returnfield=creator/individualName/surName&returnfield=originator/organizationName&returnfield=creator/organizationName" target="_top">Search for Data</a></p>
144 145
      -->
145 146
<p class="searchbox">
146 147
Search for Data<br />
lib/style/skins/obfs/searchform.jsp
44 44
  <input name="returnfield" value="creator/organizationName" type="hidden">
45 45
  <input name="returnfield" value="dataset/title" type="hidden">
46 46
  <input name="returnfield" value="keyword" type="hidden">
47
    <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.1.1" type="hidden">
47 48
    <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.1.0" type="hidden">
48 49
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.1" type="hidden">
49 50
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.0" type="hidden">
lib/style/skins/obfs/obfs.xml
22 22
  </doctype>
23 23
-->
24 24

  
25

  
26
<!-- pre-beta6 modules -->
27
<!-- NOTE these settings are unchanged from the previous version - only the xsl 
28
     filename has changed from "eml-dataset-display.xsl" to "eml-dataset-2.0.0beta4.xsl" -->
25
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.1">
26
    <target publicid="-//W3C//HTML//EN">/style/common/eml-2/eml.xsl</target>
27
  </doctype>  
29 28
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.0">
30 29
    <!-- target publicid="-//W3C//HTML//EN">/style/common/eml-2.1.0/eml.xsl</target -->
31 30
    <target publicid="-//W3C//HTML//EN">/style/common/eml-2/eml.xsl</target>
lib/style/skins/sbclter/sbclter.xml
34 34
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.0">
35 35
    <target publicid="-//W3C//HTML//EN">/style/skins/sbclter/eml/eml-2.1.0.xsl</target>
36 36
  </doctype>
37
  <!-- reusing 2.1.0 stylesheet for now -->
38
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.1">
39
    <target publicid="-//W3C//HTML//EN">/style/skins/sbclter/eml/eml-2.1.0.xsl</target>
40
  </doctype>
37 41

  
38 42

  
39 43
  <!-- mob added this 26apr05. 
lib/style/skins/sbclter/templates/xsl/searchbox.xsl
61 61
      
62 62
          <xsl:variable name="my_query"><![CDATA[<?xml version="1.0"?>
63 63
             <pathquery version="1.2">
64
              <returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype>
64 65
              <returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype>
65 66
              <returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>
66 67
              <returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>
lib/style/skins/sbclter/templates/jsp/header.jsp
149 149
      	<%= java.net.URLEncoder.encode(
150 150
	"<?xml version=\"1.0\"?>" +
151 151
         "<pathquery version=\"1.2\">" +
152
           "<returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype>" +
152 153
           "<returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype>" +
153 154
           "<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>" +
154 155
           "<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>" +
......
174 175
      	<%= java.net.URLEncoder.encode(
175 176
	"<?xml version=\"1.0\"?>" +
176 177
         "<pathquery version=\"1.2\">" +
178
           "<returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype>" +
177 179
           "<returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype>" +
178 180
           "<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>" +
179 181
           "<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>" +
......
200 202
      	<%= java.net.URLEncoder.encode(
201 203
	"<?xml version=\"1.0\"?>" +
202 204
         "<pathquery version=\"1.2\">" +
205
           "<returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype>" +
203 206
           "<returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype>" +
204 207
           "<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>" +
205 208
           "<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>" +
......
226 229
      	<%= java.net.URLEncoder.encode(
227 230
	"<?xml version=\"1.0\"?>" +
228 231
         "<pathquery version=\"1.2\">" +
232
           "<returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype>" +
229 233
           "<returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype>" +
230 234
           "<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>" +
231 235
           "<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>" +
lib/style/skins/sbclter/index.jsp
94 94
      	<%= java.net.URLEncoder.encode(
95 95
	"<?xml version=\"1.0\"?>" +
96 96
         "<pathquery version=\"1.2\">" +
97
           "<returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype>" +
97 98
           "<returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype>" +
98 99
           "<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>" +
99 100
           "<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>" +
lib/style/skins/specnet/specnet.xml
26 26
<!-- pre-beta6 modules -->
27 27
<!-- NOTE these settings are unchanged from the previous version - only the xsl 
28 28
     filename has changed from "eml-dataset-display.xsl" to "eml-dataset-2.0.0beta4.xsl" -->
29
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.1">
30
    <target publicid="-//W3C//HTML//EN">/style/common/eml-2/eml.xsl</target>
31
  </doctype> 
29 32
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.0">
30 33
    <!-- target publicid="-//W3C//HTML//EN">/style/common/eml-2.1.0/eml.xsl</target -->
31 34
    <target publicid="-//W3C//HTML//EN">/style/common/eml-2/eml.xsl</target>
lib/style/skins/specnet/index.jsp
77 77
<p><b>Registry Tools</b></p>
78 78
<p>
79 79
<menu>
80
  <li><a href="<%=SERVLET_URL%>?action=query&amp;operator=INTERSECT&amp;anyfield=%25&amp;organizationName=SpecNet&amp;qformat=specnet&amp;enableediting=true&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&amp;returnfield=dataset/title&amp;returnfield=keyword&amp;returnfield=originator/individualName/surName&amp;returnfield=creator/individualName/surName&amp;returnfield=originator/organizationName&amp;returnfield=creator/organizationName">Browse existing SpecNet data sets</a><br />
80
  <li><a href="<%=SERVLET_URL%>?action=query&amp;operator=INTERSECT&amp;anyfield=%25&amp;organizationName=SpecNet&amp;qformat=specnet&amp;enableediting=true&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&amp;returnfield=dataset/title&amp;returnfield=keyword&amp;returnfield=originator/individualName/surName&amp;returnfield=creator/individualName/surName&amp;returnfield=originator/organizationName&amp;returnfield=creator/organizationName">Browse existing SpecNet data sets</a><br />
81 81
    <menu>
82 82
      The registry search system is used to locate data sets of interest
83 83
      by searching through existing registered data sets.  
lib/style/skins/specnet/header.jsp
61 61
    <td valign="top" width="20%"> 
62 62
      <!--
63 63
      <p>
64
        <a href="<%=SERVLET_URL%>?action=query&operator=INTERSECT&anyfield=%25&organizationName=SpecNet&qformat=specnet&returndoctype=eml://ecoinformatics.org/eml-2.1.0&returndoctype=eml://ecoinformatics.org/eml-2.0.1&returndoctype=eml://ecoinformatics.org/eml-2.0.0&returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&returnfield=dataset/title&returnfield=keyword&returnfield=originator/individualName/surName&returnfield=creator/individualName/surName&returnfield=originator/organizationName&returnfield=creator/organizationName" target="_top">Search for Data</a></p>
64
        <a href="<%=SERVLET_URL%>?action=query&operator=INTERSECT&anyfield=%25&organizationName=SpecNet&qformat=specnet&returndoctype=eml://ecoinformatics.org/eml-2.1.1&returndoctype=eml://ecoinformatics.org/eml-2.1.0&returndoctype=eml://ecoinformatics.org/eml-2.0.1&returndoctype=eml://ecoinformatics.org/eml-2.0.0&returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&returnfield=dataset/title&returnfield=keyword&returnfield=originator/individualName/surName&returnfield=creator/individualName/surName&returnfield=originator/organizationName&returnfield=creator/organizationName" target="_top">Search for Data</a></p>
65 65
      -->
66 66
<p class="searchbox">
67 67
Search for Data<br />
......
81 81
  <input name="returnfield" value="creator/organizationName" type="hidden">
82 82
  <input name="returnfield" value="dataset/title" type="hidden">
83 83
  <input name="returnfield" value="keyword" type="hidden">
84
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.1.1" type="hidden">
84 85
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.1.0" type="hidden">
85 86
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.1" type="hidden">
86 87
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.0" type="hidden">
lib/style/skins/specnet/searchform.jsp
44 44
  <input name="returnfield" value="creator/organizationName" type="hidden">
45 45
  <input name="returnfield" value="dataset/title" type="hidden">
46 46
  <input name="returnfield" value="keyword" type="hidden">
47
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.1.1" type="hidden">
47 48
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.1.0" type="hidden">
48 49
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.1" type="hidden">
49 50
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.0" type="hidden">
lib/style/skins/sms/sms.xml
29 29
<!-- pre-beta6 modules -->
30 30
<!-- NOTE these settings are unchanged from the previous version - only the xsl 
31 31
     filename has changed from "eml-dataset-display.xsl" to "eml-dataset-2.0.0beta4.xsl" -->
32
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.1">
33
    <target publicid="-//W3C//HTML//EN">/style/common/eml-2/eml.xsl</target>
34
  </doctype>
32 35
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.0">
33 36
    <!-- target publicid="-//W3C//HTML//EN">/style/common/eml-2.1.0/eml.xsl</target -->
34 37
    <target publicid="-//W3C//HTML//EN">/style/common/eml-2/eml.xsl</target>
lib/style/skins/nrs/index.jsp
63 63
		if(!checkBox.checked && searchString!="%"){
64 64
                        submitFormObj.query.value = "<pathquery version=\"1.2\">"
65 65
							   +"<querytitle>Web-Search</querytitle>"
66
							   +"<returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype>"
66 67
							   +"<returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype>"
67 68
							   +"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
68 69
							   +"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
......
132 133
			} 
133 134
                        submitFormObj.query.value = "<pathquery version=\"1.2\">"
134 135
                                                           +"<querytitle>Web-Search</querytitle>"
136
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype>"
135 137
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype>"
136 138
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
137 139
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
......
240 242
    <br><br>
241 243
  </li>
242 244

  
243
  <li><a href="<%=SERVLET_URL%>?action=query&amp;operator=INTERSECT&amp;anyfield=%25&amp;organizationName=University%20of%20California%20Natural%20Reserve%20System&amp;qformat=nrs&amp;enableediting=true&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&amp;returnfield=dataset/title&amp;returnfield=keyword&amp;returnfield=originator/individualName/surName&amp;returnfield=creator/individualName/surName&amp;returnfield=originator/organizationName&amp;returnfield=creator/organizationName">Browse existing NRS data sets</a><br />
245
  <li><a href="<%=SERVLET_URL%>?action=query&amp;operator=INTERSECT&amp;anyfield=%25&amp;organizationName=University%20of%20California%20Natural%20Reserve%20System&amp;qformat=nrs&amp;enableediting=true&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&amp;returnfield=dataset/title&amp;returnfield=keyword&amp;returnfield=originator/individualName/surName&amp;returnfield=creator/individualName/surName&amp;returnfield=originator/organizationName&amp;returnfield=creator/organizationName">Browse existing NRS data sets</a><br />
244 246
    <menu>
245 247
      The registry search system is used to locate data sets of interest
246 248
      by searching through existing registered data sets.  
lib/style/skins/nrs/searchform.jsp
44 44
  <input name="returnfield" value="creator/organizationName" type="hidden">
45 45
  <input name="returnfield" value="dataset/title" type="hidden">
46 46
  <input name="returnfield" value="keyword" type="hidden">
47
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.1.1" type="hidden">
47 48
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.1.0" type="hidden">
48 49
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.1" type="hidden">
49 50
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.0" type="hidden">
lib/style/skins/saeon/saeon.xml
26 26
<!-- pre-beta6 modules -->
27 27
<!-- NOTE these settings are unchanged from the previous version - only the xsl 
28 28
     filename has changed from "eml-dataset-display.xsl" to "eml-dataset-2.0.0beta4.xsl" -->
29
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.1">
30
    <target publicid="-//W3C//HTML//EN">/style/common/eml-2/eml.xsl</target>
31
  </doctype>        
29 32
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.0">
30 33
    <!-- target publicid="-//W3C//HTML//EN">/style/common/eml-2.1.0/eml.xsl</target -->
31 34
    <target publicid="-//W3C//HTML//EN">/style/common/eml-2/eml.xsl</target>
lib/style/skins/lter/lter.xml
7 7
    <target publicid="-//W3C//HTML//EN">/style/common/resultset.xsl</target>
8 8
  </doctype>
9 9
  
10
<!-- eml-2.1.1 modules -->
11
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.1">
12
    <target publicid="-//W3C//HTML//EN">/style/common/eml-2/eml.xsl</target>
13
  </doctype> 
14
  
10 15
<!-- eml-2.1.0 modules -->
11 16
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.0">
12 17
    <!-- target publicid="-//W3C//HTML//EN">/style/common/eml-2.1.0/eml.xsl</target -->
lib/style/skins/esa/searchform.jsp
43 43
  <input name="returnfield" value="creator/organizationName" type="hidden">
44 44
  <input name="returnfield" value="dataset/title" type="hidden">
45 45
  <input name="returnfield" value="keyword" type="hidden">
46
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.1.1" type="hidden">
46 47
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.1.0" type="hidden">
47 48
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.1" type="hidden">
48 49
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.0" type="hidden">
lib/style/skins/knb/knb.xml
22 22
  </doctype>
23 23
-->
24 24

  
25
<!-- pre-beta6 modules -->
26
<!-- NOTE these settings are unchanged from the previous version - only the xsl 
27
     filename has changed from "eml-dataset-display.xsl" to "eml-dataset-2.0.0beta4.xsl" -->
25
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.1">
26
    <target publicid="-//W3C//HTML//EN">/style/common/eml-2/eml.xsl</target>
27
  </doctype>
28 28
  <doctype publicid="eml://ecoinformatics.org/eml-2.1.0">
29 29
    <!-- target publicid="-//W3C//HTML//EN">/style/common/eml-2.1.0/eml.xsl</target -->
30 30
    <target publicid="-//W3C//HTML//EN">/style/common/eml-2/eml.xsl</target>
lib/style/skins/pisco/templates/xsl/searchbox.xsl
46 46
        <tr>
47 47
          <td>
48 48
            <a
49
            href="{$servletURL}?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EOceanographic%20Sensor%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
49
            href="{$servletURL}?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.1%3C/returndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EOceanographic%20Sensor%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
50 50
           <!--
51 51
           <?xml version="1.0"?>
52 52
             <pathquery version="1.2">
53
               <returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype>
53 54
               <returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype>
54 55
               <returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>
55 56
               <returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>
......
89 90
                 <br />
90 91

  
91 92
            <a
92
            href="{$servletURL}?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EIntertidal%20Community%20Survey%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
93
            href="{$servletURL}?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.1%3C/returndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EIntertidal%20Community%20Survey%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
93 94
             Intertidal Community Survey Data
94 95
             </a>
95 96
             <br />
96 97
            <a
97
            href="{$servletURL}?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3ESubtidal%20Community%20Survey%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
98
            href="{$servletURL}?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.1%3C/returndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3ESubtidal%20Community%20Survey%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
98 99
             Subtidal Community Survey Data
99 100
             </a>
100 101
            <br />
101 102
               </td>
102 103
              <td>
103 104
                <a
104
                href="{$servletURL}?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EMicrochemistry%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
105
                href="{$servletURL}?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.1%3C/returndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EMicrochemistry%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
105 106
            Microchemistry Data
106 107
            </a>
107 108
            <br />
108 109
            <a
109
            href="{$servletURL}?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EIntertidal%20Recruitment%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
110
            href="{$servletURL}?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.1%3C/returndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EIntertidal%20Recruitment%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
110 111
        Intertidal Recruitment Data
111 112
        </a>
112 113
        <br />
113 114
            <a
114
            href="{$servletURL}?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3ESubtidal%20Recruitment%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
115
            href="{$servletURL}?action=squery&amp;qformat=pisco&amp;query=%3C?xml%20version=%221.0%22?%3E%3Cpathquery%20version=%221.2%22%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.1.1%3C/returndoctype%3Eeml://ecoinformatics.org/eml-2.1.0%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.1%3C/returndoctype%3E%3Creturndoctype%3Eeml://ecoinformatics.org/eml-2.0.0%3C/returndoctype%3E%3Creturnfield%3Edataset/title%3C/returnfield%3E%3Creturnfield%3EdataTable/entityName%3C/returnfield%3E%3Creturnfield%3Ecreator/individualName/surName%3C/returnfield%3E%3Creturnfield%3Ecreator/organizationName%3C/returnfield%3E%3Creturnfield%3EdataTable/physical/distribution/online/url%3C/returnfield%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3EPISCO:%3C/value%3E%3Cpathexpr%3Etitle%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22false%22%20searchmode=%22starts-with%22%3E%3Cvalue%3Episco%3C/value%3E%3Cpathexpr%3E/eml/@packageId%3C/pathexpr%3E%3C/queryterm%3E%3Cquerygroup%20operator=%22INTERSECT%22%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3ESubtidal%20Recruitment%20Data%3C/value%3E%3Cpathexpr%3EkeywordSet/keyword%3C/pathexpr%3E%3C/queryterm%3E%3Cqueryterm%20casesensitive=%22true%22%20searchmode=%22equals%22%3E%3Cvalue%3EPISCO%20Categories%3C/value%3E%3Cpathexpr%3EkeywordSet/keywordThesaurus%3C/pathexpr%3E%3C/queryterm%3E%3C/querygroup%3E%3C/querygroup%3E%3C/pathquery%3E">
115 116
        Subtidal Recruitment Data
116 117
        </a>
117 118
          </td>
lib/style/common/keywords-list.xsl
91 91
             <input type="hidden" name="returndoctype"
92 92
              value="eml://ecoinformatics.org/eml-2.1.0" />
93 93
             <input type="hidden" name="returndoctype"
94
              value="eml://ecoinformatics.org/eml-2.1.1" /> 
95
             <input type="hidden" name="returndoctype"
94 96
              value="-//NCEAS//eml-dataset-2.0//EN" />
95 97
             <input type="hidden" name="returndoctype"
96 98
              value="-//NCEAS//resource//EN" />
......
123 125
  <xsl:template match="param">
124 126
     <li>
125 127
     <a>
126
       <xsl:attribute name="href">{$contextURL}/metacat?action=query&amp;operator=INTERSECT&amp;qformat=knb&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&amp;returnfield=dataset/title&amp;returnfield=citation/title&amp;returnfield=software/title&amp;returnfield=protocol/title&amp;returnfield=keyword&amp;returnfield=originator/individualName/surName&amp;returnfield=creator/individualName/surName&amp;returnfield=originator/organizationName&amp;returnfield=creator/organizationName&amp;keyword=<xsl:value-of select="."/></xsl:attribute>
128
       <xsl:attribute name="href">{$contextURL}/metacat?action=query&amp;operator=INTERSECT&amp;qformat=knb&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&amp;returnfield=dataset/title&amp;returnfield=citation/title&amp;returnfield=software/title&amp;returnfield=protocol/title&amp;returnfield=keyword&amp;returnfield=originator/individualName/surName&amp;returnfield=creator/individualName/surName&amp;returnfield=originator/organizationName&amp;returnfield=creator/organizationName&amp;keyword=<xsl:value-of select="."/></xsl:attribute>
127 129
     <xsl:value-of select="."/>
128 130
     </a> (<xsl:value-of select="count(//param[.=current()])"/>)
129 131
     </li>
lib/style/skins/dev/index.jsp
34 34
<html>
35 35
<head>
36 36
<title>KNB Data Search</title>
37
<meta HTTP-EQUIV="refresh" CONTENT="1;URL=<%=LOCAL_SERVLET_URL%>?action=query&operator=INTERSECT&anyfield=%25&qformat=default&returndoctype=eml://ecoinformatics.org/eml-2.1.0&returndoctype=eml://ecoinformatics.org/eml-2.0.1&returndoctype=eml://ecoinformatics.org/eml-2.0.0&returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&returnfield=dataset/title&returnfield=citation/title&returnfield=software/title&returnfield=protocol/title&returnfield=keyword&returnfield=originator/individualName/surName&returnfield=creator/individualName/surName&returnfield=originator/organizationName&returnfield=creator/organizationName" />
37
<meta HTTP-EQUIV="refresh" CONTENT="1;URL=<%=LOCAL_SERVLET_URL%>?action=query&operator=INTERSECT&anyfield=%25&qformat=default&returndoctype=eml://ecoinformatics.org/eml-2.1.1&returndoctype=eml://ecoinformatics.org/eml-2.1.0&returndoctype=eml://ecoinformatics.org/eml-2.0.1&returndoctype=eml://ecoinformatics.org/eml-2.0.0&returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&returnfield=dataset/title&returnfield=citation/title&returnfield=software/title&returnfield=protocol/title&returnfield=keyword&returnfield=originator/individualName/surName&returnfield=creator/individualName/surName&returnfield=originator/organizationName&returnfield=creator/organizationName" />
38 38
</head>
39 39
<body bgcolor="WHITE">
40 40
</body>
lib/style/common/browse.xsl
91 91
             <input type="hidden" name="returndoctype"
92 92
              value="eml://ecoinformatics.org/eml-2.1.0" />
93 93
             <input type="hidden" name="returndoctype"
94
              value="eml://ecoinformatics.org/eml-2.1.1" /> 
95
             <input type="hidden" name="returndoctype"
94 96
              value="-//NCEAS//eml-dataset-2.0//EN" />
95 97
             <input type="hidden" name="returndoctype"
96 98
              value="-//NCEAS//resource//EN" />
......
145 147
  <xsl:template match="param[@name='keyword']">
146 148
     <li>
147 149
     <a>
148
       <xsl:attribute name="href">{$contextURL}/metacat?action=query&amp;operator=INTERSECT&amp;qformat=knb&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&amp;returnfield=dataset/title&amp;returnfield=citation/title&amp;returnfield=software/title&amp;returnfield=protocol/title&amp;returnfield=keyword&amp;returnfield=originator/individualName/surName&amp;returnfield=creator/individualName/surName&amp;returnfield=originator/organizationName&amp;returnfield=creator/organizationName&amp;keyword=<xsl:value-of select="."/></xsl:attribute>
150
       <xsl:attribute name="href">{$contextURL}/metacat?action=query&amp;operator=INTERSECT&amp;qformat=knb&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&amp;returnfield=dataset/title&amp;returnfield=citation/title&amp;returnfield=software/title&amp;returnfield=protocol/title&amp;returnfield=keyword&amp;returnfield=originator/individualName/surName&amp;returnfield=creator/individualName/surName&amp;returnfield=originator/organizationName&amp;returnfield=creator/organizationName&amp;keyword=<xsl:value-of select="."/></xsl:attribute>
149 151
     <xsl:value-of select="."/>
150 152
     </a> (<xsl:value-of select="count(//param[.=current()])"/>)
151 153
     </li>
......
154 156
  <xsl:template match="param[@name='surName']">
155 157
     <li>
156 158
     <a>
157
       <xsl:attribute name="href">{$contextURL}/metacat?action=query&amp;operator=INTERSECT&amp;qformat=knb&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&amp;returnfield=dataset/title&amp;returnfield=citation/title&amp;returnfield=software/title&amp;returnfield=protocol/title&amp;returnfield=keyword&amp;returnfield=originator/individualName/surName&amp;returnfield=creator/individualName/surName&amp;returnfield=originator/organizationName&amp;returnfield=creator/organizationName&amp;surName=<xsl:value-of select="."/></xsl:attribute>
159
       <xsl:attribute name="href">{$contextURL}/metacat?action=query&amp;operator=INTERSECT&amp;qformat=knb&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&amp;returnfield=dataset/title&amp;returnfield=citation/title&amp;returnfield=software/title&amp;returnfield=protocol/title&amp;returnfield=keyword&amp;returnfield=originator/individualName/surName&amp;returnfield=creator/individualName/surName&amp;returnfield=originator/organizationName&amp;returnfield=creator/organizationName&amp;surName=<xsl:value-of select="."/></xsl:attribute>
158 160
     <xsl:value-of select="."/>
159 161
     </a> (<xsl:value-of select="count(//param[.=current()])"/>)
160 162
     </li>
......
163 165
  <xsl:template match="param[@name='organizationName']">
164 166
     <li>
165 167
     <a>
166
       <xsl:attribute name="href">{$contextURL}/metacat?action=query&amp;operator=INTERSECT&amp;qformat=knb&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&amp;returnfield=dataset/title&amp;returnfield=citation/title&amp;returnfield=software/title&amp;returnfield=protocol/title&amp;returnfield=keyword&amp;returnfield=originator/individualName/surName&amp;returnfield=creator/individualName/surName&amp;returnfield=originator/organizationName&amp;returnfield=creator/organizationName&amp;organizationName=<xsl:value-of select="."/></xsl:attribute>
168
       <xsl:attribute name="href">{$contextURL}/metacat?action=query&amp;operator=INTERSECT&amp;qformat=knb&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&amp;returnfield=dataset/title&amp;returnfield=citation/title&amp;returnfield=software/title&amp;returnfield=protocol/title&amp;returnfield=keyword&amp;returnfield=originator/individualName/surName&amp;returnfield=creator/individualName/surName&amp;returnfield=originator/organizationName&amp;returnfield=creator/organizationName&amp;organizationName=<xsl:value-of select="."/></xsl:attribute>
167 169
     <xsl:value-of select="."/>
168 170
     </a> (<xsl:value-of select="count(//param[.=current()])"/>)
169 171
     </li>
lib/style/common/common-settings.jsp
44 44
			+ "<input name=\"returndoctype\" value=\"metadata\" type=\"hidden\">\n"
45 45
			+ "<input type=\"hidden\" name=\"returndoctype\" value=\"-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN\"\\>\n"
46 46
			+ "<input type=\"hidden\" name=\"returndoctype\" value=\"-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN\"\\>\n"
47
			+ "<input type=\"hidden\" name=\"returndoctype\" value=\"eml://ecoinformatics.org/eml-2.1.1\"\\>\n"
47 48
			+ "<input type=\"hidden\" name=\"returndoctype\" value=\"eml://ecoinformatics.org/eml-2.1.0\"\\>\n"
48 49
			+ "<input type=\"hidden\" name=\"returndoctype\" value=\"eml://ecoinformatics.org/eml-2.0.1\"\\>\n"
49 50
			+ "<input type=\"hidden\" name=\"returndoctype\" value=\"eml://ecoinformatics.org/eml-2.0.0\"\\>\n"
lib/style/common/templates/esaModResultTemplate.tmpl
6 6
    var queryInput = document.createElement("input");
7 7
    queryInput.setAttribute("type", "hidden");
8 8
    queryInput.setAttribute("name", "query");
9
    queryInput.setAttribute("value", "<pathquery version=\"1.2\"><querytitle>Moderator-Search</querytitle><returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype><returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype><returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype><returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype><returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype><returndoctype>-//NCEAS//resource//EN</returndoctype><returndoctype>-//NCEAS//eml-dataset//EN</returndoctype><returnfield>originator/individualName/surName</returnfield><returnfield>originator/individualName/givenName</returnfield><returnfield>creator/individualName/surName</returnfield><returnfield>creator/individualName/givenName</returnfield><returnfield>originator/organizationName</returnfield><returnfield>creator/organizationName</returnfield><returnfield>dataset/title</returnfield><returnfield>keyword</returnfield><querygroup operator=\"INTERSECT\"><queryterm searchmode=\"not-contains\" casesensitive=\"false\"><value>public</value><pathexpr>access/allow/principal</pathexpr></queryterm><queryterm searchmode=\"not-contains\" casesensitive=\"false\"><value>Revision Requested</value><pathexpr>additionalMetadata/moderatorComment</pathexpr></queryterm></querygroup></pathquery>");
9
    queryInput.setAttribute("value", "<pathquery version=\"1.2\"><querytitle>Moderator-Search</querytitle><returndoctype>eml://ecoinformatics.org/eml-2.1.1</returndoctype><returndoctype>eml://ecoinformatics.org/eml-2.1.0</returndoctype><returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype><returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype><returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype><returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype><returndoctype>-//NCEAS//resource//EN</returndoctype><returndoctype>-//NCEAS//eml-dataset//EN</returndoctype><returnfield>originator/individualName/surName</returnfield><returnfield>originator/individualName/givenName</returnfield><returnfield>creator/individualName/surName</returnfield><returnfield>creator/individualName/givenName</returnfield><returnfield>originator/organizationName</returnfield><returnfield>creator/organizationName</returnfield><returnfield>dataset/title</returnfield><returnfield>keyword</returnfield><querygroup operator=\"INTERSECT\"><queryterm searchmode=\"not-contains\" casesensitive=\"false\"><value>public</value><pathexpr>access/allow/principal</pathexpr></queryterm><queryterm searchmode=\"not-contains\" casesensitive=\"false\"><value>Revision Requested</value><pathexpr>additionalMetadata/moderatorComment</pathexpr></queryterm></querygroup></pathquery>");
10 10
    searchForm.appendChild(queryInput);
11 11
    searchForm.submit();
12 12
}

Also available in: Unified diff