""" (Re)builds the pdf file.
"""
- from librarian import pdf, ParseError
+ from librarian import pdf
from tempfile import NamedTemporaryFile
import os
+ path, fname = os.path.realpath(self.xml_file.path).rsplit('/', 1)
try:
- path, fname = os.path.realpath(self.xml_file.path).rsplit('/', 1)
- try:
- pdf_file = NamedTemporaryFile(delete=False)
-
- pdf.transform(BookImportDocProvider(self),
- file_path=str(self.xml_file.path),
- output_file=pdf_file,
- )
-
- self.pdf_file.save('%s.pdf' % self.slug, File(open(pdf_file.name)))
- finally:
- unlink(pdf_file.name)
-
- except ParseError, e:
- print '%(file)s:%(name)s:%(message)s; use -v to see more output' % {
- 'file': self.xml_file.path,
- 'name': e.__class__.__name__,
- 'message': e
- }
+ pdf_file = NamedTemporaryFile(delete=False)
+
+ pdf.transform(BookImportDocProvider(self),
+ file_path=str(self.xml_file.path),
+ output_file=pdf_file,
+ )
+
+ self.pdf_file.save('%s.pdf' % self.slug, File(open(pdf_file.name)))
+ finally:
+ unlink(pdf_file.name)
+
def build_epub(self, remove_descendants=True):
""" (Re)builds the epub file.
ROOT=$(git rev-parse --show-toplevel)
find $ROOT -name '*.py' | xargs etags -o ${ROOT}/TAGS
+find $ROOT/../librarian -name '*.py' | xargs etags -a -o ${ROOT}/TAGS
if [ -n "$VIRTUAL_ENV" ]; then
find ${VIRTUAL_ENV}/lib -name '*.py' |xargs etags -a -o ${ROOT}/TAGS
else