From: Bob Stayton Date: Wed, 2 Jul 2014 16:50:34 +0000 (+0000) Subject: Add exception to not add d: prefix to html name used X-Git-Tag: release/1.79.1~6^2~53 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7ffab517d47e73ff651e06df5ad979504fbccea9;p=docbook-dsssl Add exception to not add d: prefix to html name used in pi.dbhtml-include template. --- diff --git a/releasetools/xslns-build b/releasetools/xslns-build index b78d7fe77..1b3c213ab 100755 --- a/releasetools/xslns-build +++ b/releasetools/xslns-build @@ -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;