Project

General

Profile

1
<?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: leinfelder $'
10
  *     '$Date: 2010-12-09 10:04:28 -0800 (Thu, 09 Dec 2010) $'
11
  * '$Revision: 5710 $'
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
  <xsl:param name="qformat">default</xsl:param>
36
  <xsl:param name="contextURL"/>
37
  <xsl:template match="/">
38
   <html>
39
      <head>
40
        <link rel="stylesheet" type="text/css"
41
              href="./style/skins/esa/esa.css" />
42
        <script language="Javascript" type="text/JavaScript"
43
                src="./style/skins/esa/esa.js" />
44
        <script language="Javascript" type="text/JavaScript"
45
                src="./style/common/branding.js" />
46
      </head>
47

    
48
     <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
      <xsl:if test="count(login) &gt; 0">
55
      <xsl:choose>
56
      <xsl:when test="count(login/isModerator) &gt; 0">
57
           <script language="JavaScript">
58
           <![CDATA[
59
	   function search(){
60
		var searchForm = document.getElementById("search-form");
61
		var queryInput = document.createElement("input");
62
        	queryInput.setAttribute("type", "hidden");
63
        	queryInput.setAttribute("name", "query");
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
		searchForm.appendChild(queryInput);	
66
		searchForm.submit();
67
    };
68
    ]]>
69
        </script>
70
      	<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onload="timerID=setTimeout('search()',20)">
71
          <p class="text_plain">Welcome <xsl:value-of select="login/name"/>. You are now logged in as moderator.</p>
72
	  <form id="search-form" action="./metacat" method="post">
73
		<input type="hidden" name="action" value="squery"/>
74
		<input type="hidden" name="qformat" value="esa"/>
75
		<input type="hidden" name="enableediting" value="true"/>
76
		<input type="hidden" name="message" value="You are now logged in as moderator."/>
77
    <input type="submit" name="submit query"/>
78
	</form>
79
    	</body>
80
      </xsl:when>
81
      <xsl:otherwise>
82
 <script language="JavaScript">
83
           <![CDATA[
84
		function search(){
85
		location.href = "./style/skins/esa";
86
        }]]>
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
      </xsl:if>
95
      <xsl:if test="count(unauth_login) &gt; 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
      <p class="text_plain">Return to the <a href="./style/skins/esa/" target="_top">Registry home</a>.
101
      </p>
102
      <script language="JavaScript">
103
       <![CDATA[
104
          insertTemplateClosing("]]<xsl:value-of select="$contextURL" /><![CDATA[");
105
          ]]>
106
      </script>
107

    
108
    </html>
109
    </xsl:template>
110

    
111
</xsl:stylesheet>
112

    
(4-4/17)