def prepare(self):
self._doc = bindery.parse(self._file, prefixes=PREFIXES)
if self._doc.xml_select(u'/db:article/db:info/db:title'):
- self._title = unicode(doc.article.info.title)
+ self._title = unicode(self._doc.article.info.title)
if self._doc.xml_select(u'/db:article/db:info/db:titleabbrev'):
- self._menu = unicode(doc.article.info.titleabbrev)
+ self._menu = unicode(self._doc.article.info.titleabbrev)
dirname = os.path.dirname(self._file)
code = self._doc.xml_select(u"//xi:include[@parse='text']")
infile = os.path.basename(tempfile.mktemp())
outfile = tempfile.mktemp()
tfi = open(infile,'w')
- tfi.write(doc.xml_encode())
+ tfi.write(self._doc.xml_encode())
tfi.close()
# cmd = ["saxon-xslt-xinclude","-o",outfile,infile,style_xslt]
cmd = ["xsltproc","--xinclude","--output",outfile,style_xslt,infile]