فهرست منبع

Added a declaration for namespace prefix.
Fixed DB schema compilation with new xsltproc.
This patch is simple hack that was introduced by Olaf Bergmann in serdev ML,
and would be revisited in the future.

Jan Halla 19 سال پیش
والد
کامیت
bd8c755c7c
2فایلهای تغییر یافته به همراه4 افزوده شده و 1 حذف شده
  1. 3 1
      doc/stylesheets/dbschema/xsl/common.xsl
  2. 1 0
      doc/stylesheets/dbschema/xsl/sql.xsl

+ 3 - 1
doc/stylesheets/dbschema/xsl/common.xsl

@@ -1,5 +1,7 @@
 <?xml version='1.0'?>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+	xmlns:db="#"
+	version='1.0'>
     
     <xsl:key name="column_id" match="column" use="@id|xml:id"/>
 

+ 1 - 0
doc/stylesheets/dbschema/xsl/sql.xsl

@@ -1,5 +1,6 @@
 <?xml version='1.0'?>
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+		xmlns:db="#"
                 version='1.0'
 >