~ubuntu-branches/ubuntu/hardy/vala/hardy

« back to all changes in this revision

Viewing changes to doc/vala/devhelp.xsl

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge, Marc-Andre Lureau, Sebastian Dröge
  • Date: 2007-10-15 14:37:51 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20071015143751-zy7hqcyjutdyfkg3
Tags: 0.1.4-1
[ Marc-Andre Lureau ]
* New Upstream Version
* debian/patches:
  + Remove patch no longer needed in 0.1.4
* debian/rules
  + Add xsltproc build dependency for the Vala manual.
  + Add libenchant-dev build dependency for enchant test case.
* debian/control, debian/vala-doc.install:
  + Add a "vala-doc" documentation package.

[ Sebastian Dröge ]
* debian/control:
  + Let vala-doc suggest valac/devhelp and don't depend on libvala0.
* debian/libvala-dev.install:
  + Add the new vapicheck utility.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<xsl:stylesheet xmlns="http://www.devhelp.net/book" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.1">
 
3
        <xsl:output method="xml" indent="yes"/>
 
4
        <xsl:template match="/">
 
5
                <book title="{//title/text()}" link="index.html" author="" name="vala" version="2">
 
6
                        <chapters>
 
7
                                <xsl:for-each select="//body/section">
 
8
                                        <sub name="{h/text()}" link="{@id}.html">
 
9
                                                <xsl:for-each select="section">
 
10
                                                        <sub name="{h/text()}" link="{../@id}.html#{@id}"/>
 
11
                                                </xsl:for-each>
 
12
                                        </sub>
 
13
                                </xsl:for-each>
 
14
                        </chapters>
 
15
                </book>
 
16
        </xsl:template>
 
17
</xsl:stylesheet>
 
18