mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
bb16c73875
Original commit message from CVS: kill docutils based docs (easy come, easy go) docbook based docs
18 lines
522 B
XML
18 lines
522 B
XML
<?xml version='1.0'?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
version='1.0'>
|
|
|
|
<xsl:param name="body.margin.top">0.5in</xsl:param>
|
|
|
|
<xsl:template name="is.graphic.extension">
|
|
<xsl:param name="ext"></xsl:param>
|
|
<xsl:if test="$ext = 'png'
|
|
or $ext = 'pdf'
|
|
or $ext = 'jpeg'
|
|
or $ext = 'gif'
|
|
or $ext = 'tif'
|
|
or $ext = 'tiff'
|
|
or $ext = 'bmp'">1</xsl:if>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|