~ubuntu-branches/ubuntu/raring/xubuntu-docs/raring

« back to all changes in this revision

Viewing changes to desktop-guide/libs/imagelist.xsl

  • Committer: Package Import Robot
  • Author(s): Matthew East, Matthew East, Jeremy Bicha
  • Date: 2012-09-19 20:38:04 UTC
  • Revision ID: package-import@ubuntu.com-20120919203804-1t50gcb1xi8xbyzo
Tags: 12.10.1
[ Matthew East ]
* Complete rewrite of desktop-guide by Pasi Lallinaho
* Change to folder structure of desktop-guide to allow translations

[ Jeremy Bicha ]
* debian/control:
  - Bump Standards-Version to 3.9.3 and debhelper to 8
  - Don't build-depend on ubuntu-docs
* debian/preinst: Dropped, not needed after 12.04 LTS

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="UTF-8" ?>
2
 
<!--
3
 
   Author: Sean Wheller sean@inwords.co.za http://www.inwords.co.za
4
 
 -->
5
 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
6
 
  <xsl:output method="text"/>
7
 
    <xsl:template match="book | article">
8
 
    <xsl:for-each select="//imagedata">
9
 
      <xsl:call-template name="script"/>
10
 
    </xsl:for-each>
11
 
 </xsl:template>
12
 
  <xsl:template name="script" match="imagedata">
13
 
    <xsl:value-of select="@fileref"/>
14
 
    <xsl:text> </xsl:text>
15
 
  </xsl:template>
16
 
</xsl:stylesheet>