# - - - - - M a n i f e s t c o n s t a n t s
When serving a PDF file, we read and write the file in chunks of this many bytes.
PDF_CHUNK_SIZE = 131072
This HTTP header identifies the response as a PDF file.
HTTP_PDF_HEADER = "Content-type: application/pdf"
File extension for Adobe Page Description Format.
PDF_EXTENSION = '.pdf'
Preferred place to put temporary files. They shouldn't need cleaning out if the script runs to completion.
TEMP_DIR = '/fs/tmp/shipman'
TCP/IP port number of the xepper server
that converts XSL-FO files to PDF format. (This server
is experimental and undocumented.)
XEPPER_PORT = 5869