<?xml version="1.0"?> <!-- * '$RCSfile$' * Authors: Matt Jones, CHad Berkley * Copyright: 2009 Regents of the University of California and the * National Center for Ecological Analysis and Synthesis * For Details: http://www.nceas.ucsb.edu/ * * '$Author: leinfelder $' * '$Date: 2009-04-02 14:20:05 -0800 (Thu, 02 Apr 2009) $' * '$Revision: 4893 $' * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * This is an XSLT (http://www.w3.org/TR/xslt) stylesheet designed to * convert an XML file showing the resultset of a query * into an HTML format suitable for rendering with modern web browsers. --> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:import href="util.xsl"/> <xsl:output method="html" /> <xsl:param name="sessid" /> <xsl:param name="qformat">default</xsl:param> <xsl:param name="enableediting">false</xsl:param> <xsl:param name="contextURL"/> <xsl:variable name ="pdfExtension" select="'.pdf'"/> <xsl:variable name ="emptyString"/> <xsl:template match="/"> <div class="result-header-section"> <div class="result-header">TPC Workflow Runs</div> </div> <div class="row row-header" > <div class="col run-col1-header">TPC Workflow Name</div> <div class="col run-col2-header">Status</div> <div class="col run-col3-header">Date Executed</div> <div class="col run-col4-header">Available Reports</div> </div> <!-- This tests to see if there are returned documents, if there are not then don't show the query results --> <xsl:if test="count(resultset/document) > 0"> <xsl:for-each select="resultset/document"> <xsl:sort select='./param[@name="karEntry/karEntryXML/property[@name='WorkflowRun']/property[@name='startTime']/@value"]' order='descending' /> <xsl:sort select='./param[@name="karEntry/karEntryXML/property[@name='WorkflowRun']/property[@name='workflowName']/@value"]' /> <!-- test if the document has the "workflowRun" property. If has, kept this document--> <xsl:variable name="workflowRunClassName"> <xsl:value-of select='./param[@name="karEntry/karEntryXML/property[@name='WorkflowRun']/@class"]'/> </xsl:variable> <xsl:if test="$workflowRunClassName != $emptyString"> <xsl:variable name="karDocid"> <xsl:call-template name="extractDocidFromLsid"> <xsl:with-param name="lsidString" select='./param[@name="mainAttributes/lsid"]' /> </xsl:call-template> </xsl:variable> <div> <xsl:attribute name="class"> <xsl:choose> <xsl:when test="position() mod 2 = 1">row row-odd</xsl:when> <xsl:when test="position() mod 2 = 0">row row-even</xsl:when> </xsl:choose> </xsl:attribute> <div class="col run-col1"> <xsl:value-of select='./param[@name="karEntry/karEntryXML/property[@name='WorkflowRun']/property[@name='workflowName']/@value"]' /> </div> <div class="col run-col2"> <xsl:choose> <xsl:when test="not(./param[@name="karEntry/karEntryAttributes/tpcStatus"])" > unknown </xsl:when> <xsl:otherwise> <xsl:value-of select='./param[@name="karEntry/karEntryAttributes/tpcStatus"]' /> </xsl:otherwise> </xsl:choose> </div> <div class="col run-col3"> <xsl:variable name="date" select='./param[@name="karEntry/karEntryXML/property[@name='WorkflowRun']/property[@name='startTime']/@value"]' /> <xsl:value-of select='substring-before($date, "T")' /> </div> <div class="col run-col4"> <xsl:for-each select='./param[@name="karEntry/karEntryAttributes/Name"]'> <xsl:variable name="fileName" select='.' /> <xsl:if test="contains($fileName, $pdfExtension)"> <xsl:variable name="pdfFile"> <xsl:value-of select="normalize-space($fileName)"/> </xsl:variable> <a> <xsl:attribute name="class">underlined</xsl:attribute> <xsl:attribute name="href"> <xsl:value-of select='$contextURL' />/metacat?action=read&docid=<xsl:value-of select="$karDocid" />&archiveEntryName=<xsl:value-of select="$pdfFile" /> </xsl:attribute> PDF </a> </xsl:if> </xsl:for-each> <!-- | <a> <xsl:attribute name="class">underlined</xsl:attribute> <xsl:attribute name="href"> <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"]' /> </xsl:attribute> HTML </a --> </div> </div> </xsl:if> </xsl:for-each> </xsl:if> </xsl:template> </xsl:stylesheet>