]> granicus.if.org Git - docbook-dsssl/commitdiff
Add exception to not add d: prefix to html name used
authorBob Stayton <bobs@sagehill.net>
Wed, 2 Jul 2014 16:50:34 +0000 (16:50 +0000)
committerBob Stayton <bobs@sagehill.net>
Wed, 2 Jul 2014 16:50:34 +0000 (16:50 +0000)
in pi.dbhtml-include template.

releasetools/xslns-build

index b78d7fe770a00d1aef049a8b0421fc837fa38a03..1b3c213ab2dca4e9307b2f53083887608eb718df 100755 (executable)
@@ -458,6 +458,11 @@ sub namespacefilter {
       # pass this name through
       $newstring .= $name;
     }
+    # Pass through html name used in pi.dbhtml-include template 
+    elsif ( $name =~ /(^html$)/ ) {
+      $newstring .= $name;
+    }
+
     # Pass through if preceded or followed by uppercase letters
     elsif ($pre =~ /[-._A-Z]$/ || $rest =~ /^[-._A-Z]/) {
       $newstring .= $name;