]> granicus.if.org Git - postgis/commitdiff
script to concatenate all the sections of postgis doc for easier digestion of postgis...
authorRegina Obe <lr@pcorp.us>
Thu, 18 Oct 2012 14:47:08 +0000 (14:47 +0000)
committerRegina Obe <lr@pcorp.us>
Thu, 18 Oct 2012 14:47:08 +0000 (14:47 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@10461 b70326c6-7e19-0410-871a-916f4a2858ee

doc/xsl/postgis_reference.xml.xsl [new file with mode: 0644]

diff --git a/doc/xsl/postgis_reference.xml.xsl b/doc/xsl/postgis_reference.xml.xsl
new file mode 100644 (file)
index 0000000..714bff8
--- /dev/null
@@ -0,0 +1,17 @@
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+<!-- ********************************************************************
+        $Id: postgis_aggs_mm.xml.xsl 10286 2012-09-14 11:29:38Z robe $
+        ********************************************************************
+        Copyright 2010, Regina Obe
+        License: BSD
+        Purpose: This is an xsl transform that generates index listing of aggregate functions and mm /sql compliant functions xml section from reference_new.xml to then
+        be processed by doc book
+        ******************************************************************** -->
+       <xsl:output method="xml" indent="yes" encoding="utf-8" />
+       <xsl:template match="*">
+       <xsl:copy>
+       <xsl:copy-of select="@*"/>
+       <xsl:apply-templates/>
+       </xsl:copy>
+       </xsl:template>
+</xsl:stylesheet>