summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorDirk Baechle <dl9obn@darc.de>2014-01-19 13:12:57 +0100
committerDirk Baechle <dl9obn@darc.de>2014-01-19 13:12:57 +0100
commitb9f1fa70621119362e1bcf3a4d7a829e7609c679 (patch)
tree2719da0da94cdcb904174a841d76684c211b19fe /bin
parentf78a5612498648257400084a47dab9d94936eb11 (diff)
downloadscons-b9f1fa70621119362e1bcf3a4d7a829e7609c679.tar.gz
- added doc editor configuration for XXE5
- added missing icons for XXE4 - adapted schema location, such that the validation works properly in SernaFree and XXE
Diffstat (limited to 'bin')
-rw-r--r--bin/SConsDoc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/SConsDoc.py b/bin/SConsDoc.py
index dc9d161d..e1c2b0bb 100644
--- a/bin/SConsDoc.py
+++ b/bin/SConsDoc.py
@@ -315,7 +315,7 @@ if not has_libxml2:
fout.close()
def decorateWithHeader(self, root):
- root.attrib["{"+xsi+"}schemaLocation"] = "%s/scons.xsd scons.xsd" % dbxsd
+ root.attrib["{"+xsi+"}schemaLocation"] = "%s %s/scons.xsd" % (dbxsd, dbxsd)
return root
def newXmlTree(self, root):
@@ -450,7 +450,7 @@ else:
xi = root.newNs(xsi, 'xsi')
root.setNs(ns) #put this node in the target namespace
- root.setNsProp(xi, 'schemaLocation', "%s/scons.xsd scons.xsd" % dbxsd)
+ root.setNsProp(xi, 'schemaLocation', "%s %s/scons.xsd" % (dbxsd, dbxsd))
return root