1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2024-12-14 10:13:05 +02:00

Fixed DTD search path.

The search path that did not work properly when --doc-path was used.
This commit is contained in:
David Steele 2016-06-04 11:38:23 -04:00
parent e796f563c4
commit 8ddfab0cbc
2 changed files with 7 additions and 1 deletions

View File

@ -53,7 +53,7 @@ sub new
else
{
my $oParser = XML::Checker::Parser->new(ErrorContext => 2, Style => 'Tree');
$oParser->set_sgml_search_path(dirname($self->{strFileName}) . '/dtd', dirname($self->{strFileName}) . '/xml/dtd');
$oParser->set_sgml_search_path(dirname($0) . '/xml/dtd');
my $oTree;

View File

@ -86,6 +86,12 @@
<release-list>
<release date="XXXX-XX-XX" version="1.03dev" title="UNDER DEVELOPMENT">
<release-doc-list>
<release-bug-list>
<release-item>
<p>Fixed DTD search path that did not work properly when <setting>--doc-path</setting> was used.</p>
</release-item>
</release-bug-list>
<release-feature-list>
<release-item>
<p>Allow hidden options to be added to a command. This allows certain commands (like <id>apt-get</id>) to be forced during the build without making that a part of the documentation.</p>