Mercurial > geeqie
view doc/wiki2docbook/html2db/example.xsl @ 1798:1cff176f8144
fixed segfault in exif parser
http://sourceforge.net/tracker/index.php?func=detail&aid=2950617&group_id=222125&atid=1054682
author | nadvornik |
---|---|
date | Sun, 14 Feb 2010 22:00:23 +0000 |
parents | 2ae81598b254 |
children |
line wrap: on
line source
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright 2004 by Laszlo Systems, Inc. Released under the Artistic License. Written by Oliver Steele. http://osteele.com/sources/xslt/htm2db/ This is an minimal embedding stylesheet. Make a copy of this file and customize it with parameter definitions and template overrides to customize the transformation. See example.xsl for an example. --> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:h="http://www.w3.org/1999/xhtml" exclude-result-prefixes="h" version="1.0"> <xsl:import href="html2db.xsl"/> <xsl:template match="h:div[@class='abstract']"> <abstract> <xsl:apply-templates/> </abstract> </xsl:template> <xsl:template match="h:p[@class='note']"> <note> <para> <xsl:apply-templates/> </para> </note> </xsl:template> <xsl:template match="h:pre[@class='example']"> <informalexample> <xsl:apply-imports/> </informalexample> </xsl:template> </xsl:stylesheet>