소스 검색

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