1 |
2659
|
sgarg
|
<?xml version="1.0"?>
|
2 |
|
|
<!--
|
3 |
|
|
* '$RCSfile$'
|
4 |
|
|
* Authors: Jivka Bojilova
|
5 |
|
|
* Copyright: 2000 Regents of the University of California and the
|
6 |
|
|
* National Center for Ecological Analysis and Synthesis
|
7 |
|
|
* For Details: http://www.nceas.ucsb.edu/
|
8 |
|
|
*
|
9 |
|
|
* '$Author$'
|
10 |
|
|
* '$Date$'
|
11 |
|
|
* '$Revision$'
|
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 with information about login action
|
29 |
|
|
* into an HTML format suitable for rendering with modern web browsers.
|
30 |
|
|
-->
|
31 |
|
|
|
32 |
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
33 |
|
|
|
34 |
|
|
<xsl:output method="html"/>
|
35 |
2686
|
sgarg
|
<xsl:param name="qformat">default</xsl:param>
|
36 |
4006
|
leinfelder
|
<xsl:param name="contextURL"/>
|
37 |
2659
|
sgarg
|
<xsl:template match="/">
|
38 |
|
|
<html>
|
39 |
|
|
<head>
|
40 |
|
|
<link rel="stylesheet" type="text/css"
|
41 |
3720
|
barteau
|
href="./style/skins/esa/esa.css" />
|
42 |
2659
|
sgarg
|
<script language="Javascript" type="text/JavaScript"
|
43 |
3720
|
barteau
|
src="./style/skins/esa/esa.js" />
|
44 |
2659
|
sgarg
|
<script language="Javascript" type="text/JavaScript"
|
45 |
3720
|
barteau
|
src="./style/common/branding.js" />
|
46 |
2659
|
sgarg
|
</head>
|
47 |
|
|
|
48 |
4006
|
leinfelder
|
<script language="JavaScript">
|
49 |
|
|
<![CDATA[
|
50 |
|
|
insertTemplateOpening("]]><xsl:value-of select="$contextURL" /><![CDATA[");
|
51 |
|
|
insertSearchBox("]]><xsl:value-of select="$contextURL" /><![CDATA[");
|
52 |
|
|
]]>
|
53 |
|
|
</script>
|
54 |
2659
|
sgarg
|
<xsl:if test="count(login) > 0">
|
55 |
2686
|
sgarg
|
<xsl:choose>
|
56 |
|
|
<xsl:when test="count(login/isModerator) > 0">
|
57 |
2659
|
sgarg
|
<script language="JavaScript">
|
58 |
4006
|
leinfelder
|
<![CDATA[
|
59 |
|
|
function search(){
|
60 |
2686
|
sgarg
|
var searchForm = document.getElementById("search-form");
|
61 |
|
|
var queryInput = document.createElement("input");
|
62 |
|
|
queryInput.setAttribute("type", "hidden");
|
63 |
|
|
queryInput.setAttribute("name", "query");
|
64 |
4790
|
daigle
|
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>");
|
65 |
2686
|
sgarg
|
searchForm.appendChild(queryInput);
|
66 |
|
|
searchForm.submit();
|
67 |
4006
|
leinfelder
|
};
|
68 |
|
|
]]>
|
69 |
2659
|
sgarg
|
</script>
|
70 |
2830
|
sgarg
|
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onload="timerID=setTimeout('search()',20)">
|
71 |
2686
|
sgarg
|
<p class="text_plain">Welcome <xsl:value-of select="login/name"/>. You are now logged in as moderator.</p>
|
72 |
3720
|
barteau
|
<form id="search-form" action="./metacat" method="post">
|
73 |
2686
|
sgarg
|
<input type="hidden" name="action" value="squery"/>
|
74 |
|
|
<input type="hidden" name="qformat" value="esa"/>
|
75 |
|
|
<input type="hidden" name="enableediting" value="true"/>
|
76 |
2830
|
sgarg
|
<input type="hidden" name="message" value="You are now logged in as moderator."/>
|
77 |
4006
|
leinfelder
|
<input type="submit" name="submit query"/>
|
78 |
2686
|
sgarg
|
</form>
|
79 |
2659
|
sgarg
|
</body>
|
80 |
2686
|
sgarg
|
</xsl:when>
|
81 |
|
|
<xsl:otherwise>
|
82 |
|
|
<script language="JavaScript">
|
83 |
|
|
<![CDATA[
|
84 |
|
|
function search(){
|
85 |
3720
|
barteau
|
location.href = "./style/skins/esa";
|
86 |
2686
|
sgarg
|
}]]>
|
87 |
|
|
</script>
|
88 |
|
|
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onload="timerID=setTimeout('search()',2000)">
|
89 |
|
|
<p class="text_plain">Welcome <xsl:value-of select="login/name"/>. You will be automatically redirected to the homepage</p>
|
90 |
|
|
</body>
|
91 |
|
|
|
92 |
|
|
</xsl:otherwise>
|
93 |
|
|
</xsl:choose>
|
94 |
2659
|
sgarg
|
</xsl:if>
|
95 |
|
|
<xsl:if test="count(unauth_login) > 0">
|
96 |
|
|
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
97 |
|
|
<p class="text_plain"><xsl:value-of select="unauth_login/message" /></p>
|
98 |
|
|
</body>
|
99 |
|
|
</xsl:if>
|
100 |
3720
|
barteau
|
<p class="text_plain">Return to the <a href="./style/skins/esa/" target="_top">Registry home</a>.
|
101 |
2659
|
sgarg
|
</p>
|
102 |
|
|
<script language="JavaScript">
|
103 |
4006
|
leinfelder
|
<![CDATA[
|
104 |
|
|
insertTemplateClosing("]]<xsl:value-of select="$contextURL" /><![CDATA[");
|
105 |
|
|
]]>
|
106 |
2659
|
sgarg
|
</script>
|
107 |
4006
|
leinfelder
|
|
108 |
2659
|
sgarg
|
</html>
|
109 |
|
|
</xsl:template>
|
110 |
|
|
|
111 |
|
|
</xsl:stylesheet>
|