summaryrefslogtreecommitdiff
path: root/docs-xml
diff options
context:
space:
mode:
authorGarming Sam <garming@catalyst.net.nz>2014-01-07 17:09:39 +1300
committerKarolin Seeger <kseeger@samba.org>2014-11-17 21:21:12 +0100
commit422d8036e52cc96b1956c0c584765a16025f504d (patch)
treec1af01e094a6eeeaf9a0277f209757368a5ff64b /docs-xml
parentf66abcccf8651a46f15ff15655b07c5b4fd725ed (diff)
downloadsamba-422d8036e52cc96b1956c0c584765a16025f504d.tar.gz
docs: remove the file prefix from included path names
This allows the inbuilt python xml modules to perform the include. Signed-off-by: Garming Sam <garming@catalyst.net.nz> Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Michael Adam <obnox@samba.org> (cherry picked from commit 1d68b5b0bb3158cabcd371ab5c24392bcb0a32bd)
Diffstat (limited to 'docs-xml')
-rw-r--r--docs-xml/wscript_build2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs-xml/wscript_build b/docs-xml/wscript_build
index 59a537128b..0664adea24 100644
--- a/docs-xml/wscript_build
+++ b/docs-xml/wscript_build
@@ -99,7 +99,7 @@ def smbdotconf_generate_parameter_list(task):
t = '<section xmlns:xi="http://www.w3.org/2001/XInclude">\n'
for article in articles:
- t += "<xi:include href='file://" + article.abspath(task.env) + "' parse='xml'/>\n"
+ t += "<xi:include href='" + article.abspath(task.env) + "' parse='xml'/>\n"
t += "</section>\n"
save_file(parameter_all, t , create_dir=True)
return 0