Project

General

Profile

1 4966 daigle
<?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
		<div class="row row-header" >
41
			<div class="col col1">Run Name</div>
42
			<div class="col col2">Status</div>
43
			<div class="col col3">Start Time</div>
44
			<div class="col col4">Interval</div>
45
			<div class="col col5">Action</div>
46
		</div>
47
		<!-- div>jobs: <xsl:number value="count(scheduledWorkflowResultset/scheduledJob)" />	</div -->
48
		<!-- This tests to see if there are returned documents,
49
			if there are not then don't show the query results -->
50
		<xsl:if test="count(scheduledWorkflowResultset/scheduledJob) &gt; 0">
51
			<xsl:for-each select="scheduledWorkflowResultset/scheduledJob">
52
				<div>
53
					<xsl:attribute name="class">
54
						<xsl:choose>
55
							<xsl:when test="position() mod 2 = 1">row row-odd</xsl:when>
56
							<xsl:when test="position() mod 2 = 0">row row-even</xsl:when>
57
						</xsl:choose>
58
					</xsl:attribute>
59
60
					<div class="col col1">
61
						<xsl:value-of select='./name' />
62
					</div>
63
					<div class="col col2">
64
						<xsl:value-of select='./status' />
65
					</div>
66
					<div class="col col3">
67
						<xsl:value-of select='./startTime' />
68
					</div>
69
					<div class="col col4">
70
						<xsl:value-of select='./intervalValue' /><xsl:value-of select='./intervalUnit' />
71
					</div>
72
					<div class="col col5">
73
						<a>
74
							<xsl:choose>
75
							<xsl:when test="./status = 'scheduled'">
76
								<xsl:attribute name="class">underlined</xsl:attribute>
77
								<xsl:attribute name="href"><xsl:value-of select='$contextURL' />/metacat?action=unscheduleWorkflow&amp;workflowjobid=<xsl:value-of select='./name' />&amp;workflowname=<xsl:value-of select='./jobParam[@name=&apos;workflowname&apos;]/value' />&amp;qformat=<xsl:value-of select='$qformat' />&amp;forwardto=scheduleWorkflowRun.jsp</xsl:attribute>
78
								Unschedule
79
							</xsl:when>
80
							<xsl:otherwise>
81
								<xsl:attribute name="class">underlined</xsl:attribute>
82
								<xsl:attribute name="href"><xsl:value-of select='$contextURL' />/metacat?action=rescheduleWorkflow&amp;workflowjobid=<xsl:value-of select='./name' />&amp;workflowname=<xsl:value-of select='./jobParam[@name=&apos;workflowname&apos;]/value' />&amp;qformat=<xsl:value-of select='$qformat' />&amp;forwardto=scheduleWorkflowRun.jsp</xsl:attribute>
83
								Reschedule
84
							</xsl:otherwise>
85
							</xsl:choose>
86
						</a>
87
					</div>
88
				</div>
89
			</xsl:for-each>
90
		</xsl:if>
91
	</xsl:template>
92
93
</xsl:stylesheet>