##// END OF EJS Templates
fixup minor typos from search/replace
fixup minor typos from search/replace

File last commit:

r12218:19e43d9d
r12220:0e6f11fa
Show More
pdf.py
60 lines | 2.4 KiB | text/x-python | PythonLexer
Jonathan Frederic
Fixed errors after testing...
r11742 """
Contains writer for writing nbconvert output to PDF.
"""
#-----------------------------------------------------------------------------
#Copyright (c) 2013, the IPython Development Team.
#
#Distributed under the terms of the Modified BSD License.
#
#The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
import subprocess
import os
Thomas Robitaille
Provide a list of the command and argument to subprocess for PDF post-processor, which is a better way to avoid issues if there are spaces in the filename.
r11911 from IPython.utils.traitlets import Integer, List, Bool
Jonathan Frederic
Fixed errors after testing...
r11742
Jonathan Frederic
Moved PDF logic into Post-Processor class
r11747 from .base import PostProcessorBase
Jonathan Frederic
Fixed errors after testing...
r11742
#-----------------------------------------------------------------------------
# Classes
#-----------------------------------------------------------------------------
Jonathan Frederic
Moved PDF logic into Post-Processor class
r11747 class PDFPostProcessor(PostProcessorBase):
Jonathan Frederic
Fixed errors after testing...
r11742 """Writer designed to write to PDF files"""
iteration_count = Integer(3, config=True, help="""
How many times pdflatex will be called.
""")
MinRK
log fatal error when PDF conversion fails...
r12058 command = List(["pdflatex", "{filename}"], config=True, help="""
Jonathan Frederic
flavor=template
r11745 Shell command used to compile PDF.""")
Jonathan Frederic
Moved PDF logic into Post-Processor class
r11747 verbose = Bool(False, config=True, help="""
Whether or not to display the output of the compile call.
""")
Paul Ivanov
rename call methods to transform and postprocess...
r12218 def postprocess(self, input):
Jonathan Frederic
Fixed errors after testing...
r11742 """
Consume and write Jinja output a PDF.
See files.py for more...
"""
Thomas Robitaille
Renamed compiler to command
r11922 command = [c.format(filename=input) for c in self.command]
MinRK
log fatal error when PDF conversion fails...
r12058 self.log.info("Building PDF: %s", command)
with open(os.devnull, 'rb') as null:
stdout = subprocess.PIPE if not self.verbose else None
Paul Ivanov
wait for subprocess to finish
r11961 for index in range(self.iteration_count):
MinRK
log fatal error when PDF conversion fails...
r12058 p = subprocess.Popen(command, stdout=stdout, stdin=null)
out, err = p.communicate()
if p.returncode:
if self.verbose:
MinRK
add comment clarifying that `out is None` when verbose=True
r12061 # verbose means I didn't capture stdout with PIPE,
# so it's already been displayed and `out` is None.
MinRK
log fatal error when PDF conversion fails...
r12058 out = u''
else:
out = out.decode('utf-8', 'replace')
self.log.critical(u"PDF conversion failed: %s\n%s", command, out)
return