Project

General

Profile

1
<?xml version="1.0"?>
2
<!--
3
	*  '$RCSfile$'
4
	*      Authors: Matt Jones, CHad Berkley
5
	*    Copyright: 2009 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: 2009-04-02 14:20:05 -0800 (Thu, 02 Apr 2009) $'
11
	* '$Revision: 4893 $'
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" version="1.0">
32

    
33
	<xsl:output method="html" />
34
	<xsl:param name="sessid" />
35
	<xsl:param name="qformat">default</xsl:param>
36
	<xsl:param name="enableediting">false</xsl:param>
37
	<xsl:param name="contextURL"/>
38
	
39
	<xsl:template match="/">  
40
	
41
		<div class="result-header-section">      
42
        	<div class="result-header">TPC Workflows</div>
43
		</div>
44
		<div class="row row-header" >
45
			<div class="col col1">TPC Name</div>
46
			<div class="col col2">Creator</div>
47
			<div class="col col3">Date Created</div>
48
			<div class="col col4">Action</div>
49
		</div>			
50
		<!-- This tests to see if there are returned documents,
51
			if there are not then don't show the query results -->
52
		<xsl:if test="count(resultset/document) &gt; 0">
53
			<xsl:for-each select="resultset/document">
54
				<xsl:sort select='./updatedate' order='descending' />
55
				<xsl:sort select='./param[@name="/entity/@name"]' />
56
				<xsl:if test="./docname = 'entity'">
57
					<div>
58
						<xsl:attribute name="class">
59
							<xsl:choose>
60
								<xsl:when test="position() mod 2 = 1">row row-odd</xsl:when>
61
								<xsl:when test="position() mod 2 = 0">row row-even</xsl:when>
62
							</xsl:choose>
63
						</xsl:attribute>
64

    
65
						<div class="col col1">	
66
							<xsl:value-of select='./param[@name="/entity/@name"]' />		
67
						</div>
68
						<div class="col col2">	
69
							<xsl:value-of select='./param[@name="property[@name=&apos;KeplerDocumentation&apos;]/property[@name=&apos;author&apos;]/configure"]' />		
70
						</div>
71
						<div class="col col3">	
72
							<xsl:value-of select='./updatedate' />			
73
						</div>
74
						<div class="col col4">	
75
							<a>
76
								<xsl:attribute name="class">underlined</xsl:attribute>
77
								<xsl:attribute name="href">./searchWorkflowRun.jsp?workflowid=<xsl:value-of select='./param[@name="/entity/property[@name=&apos;entityId&apos;]/@value"]' /></xsl:attribute>
78
									 View Runs
79
							</a>
80
							<span> | </span>
81
							<a>
82
								<xsl:attribute name="class">underlined</xsl:attribute>
83
								<xsl:attribute name="href">./scheduleWorkflowRun.jsp?workflowid=<xsl:value-of select='./param[@name="/entity/property[@name=&apos;entityId&apos;]/@value"]' />&amp;karid=<xsl:value-of select='./param[@name="/entity/property[@name=&apos;karLSID&apos;]/@value"]' />&amp;workflowname=<xsl:value-of select='./param[@name="/entity/@name"]' /></xsl:attribute>	 
84
									 Schedule
85
							</a> 
86
							<span> | </span>
87
							<a>
88
								<xsl:attribute name="class">underlined</xsl:attribute>
89
								<xsl:attribute name="href">
90
									<xsl:value-of select='$contextURL' />/metacat?action=read&amp;docid=<xsl:value-of select='./param[@name="/entity/property[@name=&apos;karLSID&apos;]/@value"]' />
91
								</xsl:attribute>	 
92
									 Download
93
							</a> 
94
						</div>		
95
					</div>
96
				</xsl:if>
97
			</xsl:for-each>
98
		</xsl:if>
99
	</xsl:template>
100

    
101
</xsl:stylesheet>
(25-25/29)