1 |
4966
|
daigle
|
<?xml version="1.0"?>
|
2 |
|
|
<!--
|
3 |
|
|
* '$RCSfile$'
|
4 |
4971
|
daigle
|
* Authors: Michael Daigle
|
5 |
4966
|
daigle
|
* 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 |
5037
|
daigle
|
<xsl:param name="servletURL"/>
|
39 |
5821
|
tao
|
<xsl:param name ="authServiceURL"/>
|
40 |
|
|
<xsl:param name ="authorizationURL"/>
|
41 |
4966
|
daigle
|
|
42 |
|
|
<xsl:template match="/">
|
43 |
|
|
<div class="row row-header" >
|
44 |
6736
|
tao
|
<div class="col col1-header">Run Name</div>
|
45 |
|
|
<div class="col col2-header">Status</div>
|
46 |
|
|
<div class="col col3-header">Start Time</div>
|
47 |
|
|
<div class="col col4-header">End Time</div>
|
48 |
|
|
<div class="col col5-header">Interval</div>
|
49 |
|
|
<div class="col col6-header">Action</div>
|
50 |
4966
|
daigle
|
</div>
|
51 |
|
|
<!-- div>jobs: <xsl:number value="count(scheduledWorkflowResultset/scheduledJob)" /> </div -->
|
52 |
|
|
<!-- This tests to see if there are returned documents,
|
53 |
|
|
if there are not then don't show the query results -->
|
54 |
|
|
<xsl:if test="count(scheduledWorkflowResultset/scheduledJob) > 0">
|
55 |
|
|
<xsl:for-each select="scheduledWorkflowResultset/scheduledJob">
|
56 |
|
|
<div>
|
57 |
|
|
<xsl:attribute name="class">
|
58 |
|
|
<xsl:choose>
|
59 |
|
|
<xsl:when test="position() mod 2 = 1">row row-odd</xsl:when>
|
60 |
|
|
<xsl:when test="position() mod 2 = 0">row row-even</xsl:when>
|
61 |
|
|
</xsl:choose>
|
62 |
|
|
</xsl:attribute>
|
63 |
|
|
|
64 |
|
|
<div class="col col1">
|
65 |
|
|
<xsl:value-of select='./name' />
|
66 |
|
|
</div>
|
67 |
|
|
<div class="col col2">
|
68 |
5825
|
tao
|
<!--<xsl:value-of select='./status' /> -->
|
69 |
|
|
<xsl:choose>
|
70 |
|
|
<xsl:when test="./status = 'scheduled'">
|
71 |
|
|
Enabled
|
72 |
|
|
</xsl:when>
|
73 |
|
|
<xsl:otherwise>
|
74 |
|
|
Disabled
|
75 |
|
|
</xsl:otherwise>
|
76 |
|
|
</xsl:choose>
|
77 |
4966
|
daigle
|
</div>
|
78 |
|
|
<div class="col col3">
|
79 |
|
|
<xsl:value-of select='./startTime' />
|
80 |
|
|
</div>
|
81 |
|
|
<div class="col col4">
|
82 |
5013
|
daigle
|
<xsl:value-of select='./endTime' />
|
83 |
4966
|
daigle
|
</div>
|
84 |
|
|
<div class="col col5">
|
85 |
5117
|
daigle
|
<xsl:value-of select='./intervalValue' /> <xsl:value-of select='./intervalUnit' />
|
86 |
5012
|
daigle
|
</div>
|
87 |
|
|
<div class="col col6">
|
88 |
4966
|
daigle
|
<a>
|
89 |
|
|
<xsl:choose>
|
90 |
|
|
<xsl:when test="./status = 'scheduled'">
|
91 |
|
|
<xsl:attribute name="class">underlined</xsl:attribute>
|
92 |
6735
|
tao
|
<xsl:attribute name="href"><xsl:value-of select='$servletURL' />?action=unscheduleWorkflow&workflowjobname=<xsl:value-of select='./name' />&sessionid=<xsl:value-of select='$sessid' />&authServiceURL=<xsl:value-of select='$authServiceURL' />&authorizationURL=<xsl:value-of select='$authorizationURL' />&workflowname=<xsl:value-of select='./jobParam[@name='workflowname']/value' />&workflowid=<xsl:value-of select='./jobParam[@name='workflowid']/value' />&karid=<xsl:value-of select='./jobParam[@name='karid']/value' />&qformat=<xsl:value-of select='$qformat' />&forwardto=scheduleWorkflowRunMain.jsp</xsl:attribute>
|
93 |
5825
|
tao
|
Disable
|
94 |
4966
|
daigle
|
</xsl:when>
|
95 |
|
|
<xsl:otherwise>
|
96 |
|
|
<xsl:attribute name="class">underlined</xsl:attribute>
|
97 |
6735
|
tao
|
<xsl:attribute name="href"><xsl:value-of select='$servletURL' />?action=rescheduleWorkflow&workflowjobname=<xsl:value-of select='./name' />&sessionid=<xsl:value-of select='$sessid' />&authServiceURL=<xsl:value-of select='$authServiceURL' />&authorizationURL=<xsl:value-of select='$authorizationURL' />&workflowname=<xsl:value-of select='./jobParam[@name='workflowname']/value' />&workflowid=<xsl:value-of select='./jobParam[@name='workflowid']/value' />&karid=<xsl:value-of select='./jobParam[@name='karid']/value' />&qformat=<xsl:value-of select='$qformat' />&forwardto=scheduleWorkflowRunMain.jsp</xsl:attribute>
|
98 |
5825
|
tao
|
Enable
|
99 |
4966
|
daigle
|
</xsl:otherwise>
|
100 |
|
|
</xsl:choose>
|
101 |
5013
|
daigle
|
</a>|
|
102 |
|
|
<xsl:choose>
|
103 |
|
|
<xsl:when test="./status = 'unscheduled'">
|
104 |
|
|
<a>
|
105 |
|
|
<xsl:attribute name="class">underlined</xsl:attribute>
|
106 |
6735
|
tao
|
<xsl:attribute name="href"><xsl:value-of select='$servletURL' />?action=deleteScheduledWorkflow&workflowjobname=<xsl:value-of select='./name' />&sessionid=<xsl:value-of select='$sessid' />&authServiceURL=<xsl:value-of select='$authServiceURL' />&authorizationURL=<xsl:value-of select='$authorizationURL' />&workflowname=<xsl:value-of select='./jobParam[@name='workflowname']/value' />&workflowid=<xsl:value-of select='./jobParam[@name='workflowid']/value' />&karid=<xsl:value-of select='./jobParam[@name='karid']/value' />&qformat=<xsl:value-of select='$qformat' />&forwardto=scheduleWorkflowRunMain.jsp</xsl:attribute>
|
107 |
5013
|
daigle
|
Delete
|
108 |
|
|
</a>
|
109 |
|
|
</xsl:when>
|
110 |
|
|
<xsl:otherwise>
|
111 |
|
|
Delete
|
112 |
|
|
</xsl:otherwise>
|
113 |
|
|
</xsl:choose>
|
114 |
4966
|
daigle
|
</div>
|
115 |
|
|
</div>
|
116 |
|
|
</xsl:for-each>
|
117 |
|
|
</xsl:if>
|
118 |
|
|
</xsl:template>
|
119 |
|
|
|
120 |
|
|
</xsl:stylesheet>
|