Changeset 25923
- Timestamp:
- 2012-07-10T14:43:40+12:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/trunk/greenstone3/web/interfaces/default/transform/classifiertools.xsl
r25831 r25923 14 14 <div id="classifiers"> 15 15 <xsl:variable name="cl_name"><xsl:value-of select="@name"/></xsl:variable> 16 <xsl:apply-templates select="." mode="default"> 17 <xsl:with-param name="collName" select="$collName"/> 18 <xsl:with-param name="serviceName" select="$serviceName"/> 19 </xsl:apply-templates> 16 <table id="classifiernodelist"> 17 <xsl:call-template name="processNodeChildren"> 18 <xsl:with-param name='collName' select='$collName'/> 19 <xsl:with-param name='serviceName' select='$serviceName'/> 20 </xsl:call-template> 21 </table> 20 22 </div> 21 23 </xsl:template> 22 23 24 <xsl:template match="classifier" mode="default"> <!-- the default -->25 <xsl:param name="collName"/>26 <xsl:param name="serviceName"/>27 <table id="classifiernodelist">28 <xsl:call-template name="processNodeChildren">29 <xsl:with-param name='collName' select='$collName'/>30 <xsl:with-param name='serviceName' select='$serviceName'/>31 </xsl:call-template>32 </table>33 </xsl:template>34 35 24 36 25 <!-- this is a wrapper node, which the interface can use to add stuff into the query results that isn't part of and doesn't depend on the documentNode template which may come from the collection -->
Note:
See TracChangeset
for help on using the changeset viewer.