]> granicus.if.org Git - docbook-dsssl/commitdiff
Fix pattern match for profiling xsl.
authorBob Stayton <bobs@sagehill.net>
Fri, 7 Feb 2014 23:10:53 +0000 (23:10 +0000)
committerBob Stayton <bobs@sagehill.net>
Fri, 7 Feb 2014 23:10:53 +0000 (23:10 +0000)
releasetools/xslnons-build
releasetools/xslns-build

index 07095c610ea2efa74c69444d592ef4d26860541d..d53c1e6b2ab17f9c9e928ac99e1694e5d28b56a9 100755 (executable)
@@ -460,7 +460,7 @@ sub namespacefilter {
     $newstring .= $pre;
 
     # pass through XSL key words and mixed case names and olink elements
-    if ( $name =~ /(^mod$|^div$|^and$|^or$|^ttl$|^xreftext$|^dir$|^sitemap$|^obj$|^document$|^exsl$|^.*[A-Z].*$)/ ) {
+    if ( $name =~ /(^mod$|^div$|^and$|^or$|^ttl$|^xreftext$|^dir$|^id$|^sitemap$|^obj$|^document$|^exsl$|^.*[A-Z].*$)/ ) {
 
       # pass this name through
       $newstring .= $name;
index f5e3b28abfc919584b3f50b0261a1fc608296f3a..b78d7fe770a00d1aef049a8b0421fc837fa38a03 100755 (executable)
@@ -53,7 +53,6 @@ my $dbname = "[a-z][a-z0-9]+";
 # Don't add namespace to any xsl files in these directories
 my @PassthruDirs = (
 'extensions',
-'profiling',
 'images',
 'tools',
 'build',
@@ -66,11 +65,11 @@ my @PassthruDirs = (
 my @PassthruFiles = (
 'html-rtf.xsl',
 'html2xhtml.xsl',
-'xsl2profile.xsl',
 'olink.xsl',
 'addns.xsl',
 'stripns.xsl',
 'tbl.xsl',
+'xsl.xsl'
 );
 
 umask 002;
@@ -442,7 +441,7 @@ sub namespacefilter {
     $newstring .= $pre;
 
     # pass through XSL key words and mixed case names and olink elements
-    if ( $name =~ /(^mod$|^div$|^and$|^or$|^ttl$|^xreftext$|^dir$|^sitemap$|^obj$|^document$|^exsl$|^.*[A-Z].*$)/ ) {
+    if ( $name =~ /(^mod$|^div$|^and$|^or$|^ttl$|^xreftext$|^dir$|^id$|^sitemap$|^obj$|^document$|^exsl$|^.*[A-Z].*$)/ ) {
 
       # pass this name through
       $newstring .= $name;