source: documented-examples/trunk/isis-e/transform/pages/about.xsl@ 36265

Last change on this file since 36265 was 36265, checked in by anupama, 23 months ago

First commit of GS3 version of DEC's isis-e collection: I still want to figure out where the text of each page (nodeContent) is coming from, why it's pre-filled and formatted, instead of using the language strings in resources. In bibtex-e, I overrode the display Format Feature, but that was because it didn't look right by default. This mostly looks correct, although it seems hardcoded to use English strings in document display. I haven't yet figured out why because I don't know where doc display is coming from (yet).

File size: 1.2 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<xsl:stylesheet version="1.0"
3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4
5 <xsl:template name="coll-description">
6 <xsl:value-of disable-output-escaping="yes" select="/page/pageResponse/collection/displayItemList/displayItem[@name='shortDescription']"/>
7
8 <xsl:value-of disable-output-escaping="yes" select="/page/pageResponse/collection/displayItemList/displayItem[@name='description1']"/>
9 <xsl:value-of disable-output-escaping="yes" select="/page/pageResponse/collection/displayItemList/displayItem[@name='description2']"/>
10 <xsl:value-of disable-output-escaping="yes" select="/page/pageResponse/collection/displayItemList/displayItem[@name='description3']"/>
11 <xsl:value-of disable-output-escaping="yes" select="/page/pageResponse/collection/displayItemList/displayItem[@name='description4']"/>
12 <xsl:value-of disable-output-escaping="yes" select="/page/pageResponse/collection/displayItemList/displayItem[@name='description5']"/>
13 <xsl:value-of disable-output-escaping="yes" select="/page/pageResponse/collection/displayItemList/displayItem[@name='description6']"/>
14
15 </xsl:template>
16
17</xsl:stylesheet>
18
Note: See TracBrowser for help on using the repository browser.