1 |
4948
|
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 |
5311
|
daigle
|
<xsl:import href="util.xsl"/>
|
33 |
4948
|
daigle
|
<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 |
5311
|
daigle
|
<xsl:variable name ="pdfExtension" select="'.pdf'"/>
|
39 |
|
|
<xsl:variable name ="emptyString"/>
|
40 |
4948
|
daigle
|
|
41 |
|
|
<xsl:template match="/">
|
42 |
|
|
<div class="result-header-section">
|
43 |
4966
|
daigle
|
<div class="result-header">TPC Workflow Runs</div>
|
44 |
4948
|
daigle
|
</div>
|
45 |
|
|
<div class="row row-header" >
|
46 |
4966
|
daigle
|
<div class="col col1">TPC Workflow Name</div>
|
47 |
4948
|
daigle
|
<div class="col col2">Status</div>
|
48 |
|
|
<div class="col col3">Date Executed</div>
|
49 |
|
|
<div class="col col4">Available Reports</div>
|
50 |
|
|
</div>
|
51 |
|
|
<!-- This tests to see if there are returned documents,
|
52 |
|
|
if there are not then don't show the query results -->
|
53 |
|
|
<xsl:if test="count(resultset/document) > 0">
|
54 |
|
|
<xsl:for-each select="resultset/document">
|
55 |
5354
|
tao
|
<xsl:sort select='./param[@name="karEntry/karEntryXML/property[@name='WorkflowRun']/property[@name='startTime']/@value"]' order='descending' />
|
56 |
|
|
<xsl:sort select='./param[@name="karEntry/karEntryXML/property[@name='WorkflowRun']/property[@name='workflowName']/@value"]' />
|
57 |
5311
|
daigle
|
<!-- test if the document has the "workflowRun" property. If has, kept this document-->
|
58 |
|
|
<xsl:variable name="workflowRunClassName">
|
59 |
5354
|
tao
|
<xsl:value-of select='./param[@name="karEntry/karEntryXML/property[@name='WorkflowRun']/@class"]'/>
|
60 |
5311
|
daigle
|
</xsl:variable>
|
61 |
|
|
|
62 |
|
|
<xsl:if test="$workflowRunClassName != $emptyString">
|
63 |
|
|
<xsl:variable name="karDocid">
|
64 |
|
|
<xsl:call-template name="extractDocidFromLsid">
|
65 |
5354
|
tao
|
<xsl:with-param name="lsidString" select='./param[@name="mainAttributes/lsid"]' />
|
66 |
5311
|
daigle
|
</xsl:call-template>
|
67 |
|
|
</xsl:variable>
|
68 |
5834
|
tao
|
|
69 |
5311
|
daigle
|
|
70 |
|
|
<div>
|
71 |
|
|
<xsl:attribute name="class">
|
72 |
|
|
<xsl:choose>
|
73 |
4948
|
daigle
|
<xsl:when test="position() mod 2 = 1">row row-odd</xsl:when>
|
74 |
|
|
<xsl:when test="position() mod 2 = 0">row row-even</xsl:when>
|
75 |
5311
|
daigle
|
</xsl:choose>
|
76 |
|
|
</xsl:attribute>
|
77 |
4948
|
daigle
|
|
78 |
5311
|
daigle
|
<div class="col col1">
|
79 |
5354
|
tao
|
<xsl:value-of select='./param[@name="karEntry/karEntryXML/property[@name='WorkflowRun']/property[@name='workflowName']/@value"]' />
|
80 |
5311
|
daigle
|
</div>
|
81 |
|
|
<div class="col col2">
|
82 |
|
|
<xsl:choose>
|
83 |
5354
|
tao
|
<xsl:when test="not(./param[@name="karEntry/karEntryAttributes/tpcStatus"])" >
|
84 |
4966
|
daigle
|
unknown
|
85 |
5311
|
daigle
|
</xsl:when>
|
86 |
|
|
<xsl:otherwise>
|
87 |
5354
|
tao
|
<xsl:value-of select='./param[@name="karEntry/karEntryAttributes/tpcStatus"]' />
|
88 |
5311
|
daigle
|
</xsl:otherwise>
|
89 |
|
|
</xsl:choose>
|
90 |
|
|
</div>
|
91 |
|
|
<div class="col col3">
|
92 |
5354
|
tao
|
<xsl:value-of select='./param[@name="karEntry/karEntryXML/property[@name='WorkflowRun']/property[@name='startTime']/@value"]' />
|
93 |
5311
|
daigle
|
</div>
|
94 |
|
|
<div class="col col4">
|
95 |
5834
|
tao
|
<xsl:for-each select='./param[@name="karEntry/karEntryAttributes/Name"]'>
|
96 |
|
|
<xsl:variable name="fileName" select='.' />
|
97 |
|
|
<xsl:if test="contains($fileName, $pdfExtension)">
|
98 |
|
|
<xsl:variable name="pdfFile">
|
99 |
|
|
<xsl:value-of select="normalize-space($fileName)"/>
|
100 |
|
|
</xsl:variable>
|
101 |
|
|
<a>
|
102 |
|
|
<xsl:attribute name="class">underlined</xsl:attribute>
|
103 |
|
|
<xsl:attribute name="href">
|
104 |
|
|
<xsl:value-of select='$contextURL' />/metacat?action=read&docid=<xsl:value-of select="$karDocid" />&archiveEntryName=<xsl:value-of select="$pdfFile" />
|
105 |
|
|
</xsl:attribute>
|
106 |
|
|
PDF
|
107 |
|
|
</a>
|
108 |
|
|
</xsl:if>
|
109 |
|
|
</xsl:for-each>
|
110 |
4966
|
daigle
|
<!-- |
|
111 |
4948
|
daigle
|
<a>
|
112 |
|
|
<xsl:attribute name="class">underlined</xsl:attribute>
|
113 |
|
|
<xsl:attribute name="href">
|
114 |
|
|
<xsl:value-of select='$contextURL' />/metacat?action=read&docid=<xsl:value-of select='./param[@name="property[@name='KeplerDocumentation']/property[@name='archiveName']/configure"]' />&archiveEntryName=<xsl:value-of select='./param[@name="property[@name='KeplerDocumentation']/property[@name='htmlReport']/configure"]' />
|
115 |
|
|
</xsl:attribute>
|
116 |
|
|
HTML
|
117 |
4966
|
daigle
|
</a -->
|
118 |
5311
|
daigle
|
</div>
|
119 |
|
|
</div>
|
120 |
|
|
</xsl:if>
|
121 |
4948
|
daigle
|
</xsl:for-each>
|
122 |
|
|
</xsl:if>
|
123 |
|
|
</xsl:template>
|
124 |
|
|
</xsl:stylesheet>
|