From 4f8503c2c5aa4210c923269626b67c5919326c46 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sat, 9 Oct 2010 20:11:28 -0400 Subject: Allow XIncludes in xml documents we read. Add the XInclude namespace in the default config file (named "xi") --- obt/xml.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'obt/xml.c') diff --git a/obt/xml.c b/obt/xml.c index ffff1500..69810d77 100644 --- a/obt/xml.c +++ b/obt/xml.c @@ -135,7 +135,8 @@ static gboolean load_file(ObtXmlInst *i, /* XML_PARSE_BLANKS is needed apparently, or the tree can end up with extra nodes in it. */ i->doc = xmlReadFile(path, NULL, (XML_PARSE_NOBLANKS | - XML_PARSE_RECOVER)); + XML_PARSE_RECOVER | + XML_PARSE_XINCLUDE)); if (i->doc) { i->root = xmlDocGetRootElement(i->doc); if (!i->root) { -- cgit v1.2.3