From 83e1c7a57b7429f6a8a35d9a2526fa4e0c4c86b2 Mon Sep 17 00:00:00 2001 From: "Martin A. Brown" Date: Wed, 2 Mar 2016 23:52:50 -0800 Subject: [PATCH] needed output.validsource for DocBook XML xmllint validation --- tldp/outputs.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tldp/outputs.py b/tldp/outputs.py index f0c736a..a6a8d9a 100644 --- a/tldp/outputs.py +++ b/tldp/outputs.py @@ -59,6 +59,10 @@ class OutputNamingConvention(object): def name_indexhtml(self): return os.path.join(self.dirname, 'index.html') + @property + def validsource(self): + return os.path.join(self.dirname, self.stem + '.xml') # -- burp + @property def iscomplete(self): '''True if the output directory contains all expected documents'''