浏览代码

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'
 >