~ubuntu-branches/ubuntu/oneiric/foomatic-db/oneiric

« back to all changes in this revision

Viewing changes to debian/local/pyppd/bin/pyppd

  • Committer: Bazaar Package Importer
  • Author(s): Till Kamppeter
  • Date: 2010-12-17 14:22:03 UTC
  • mfrom: (1.2.35 upstream)
  • Revision ID: james.westby@ubuntu.com-20101217142203-em6b4stnjzvaua4n
Tags: 20101217-0ubuntu1
* New upstream release
   - Added new PostScript printers and PPDs from Epson and Brother.
   - Added database entries for the PPDs of Epson's Japanese market
     printers.
   - Corrected the translation lines of Lexmark's PostScript PPDs to
     comply with the specs.
   - Renamed printers from Epson and Sharp so that their names match
     the names in the manufacturer-supplied PPD files.
   - Forced the "eplaser" and "eplaser-jp" drivers to feed Ghostscript
     only with PostScript input as these drivers have problems with PDF.
   - Added documentation for job parameter entities in Foomatic PPD files
     to the README file.
   - Fixed default PageSize choice of "necp2xX.upp" driver.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python
2
 
 
3
 
from pyppd import runner
4
 
try:
5
 
    runner.run()
6
 
except (IOError, KeyboardInterrupt):
7
 
    # We don't want neither IOError nor KeyboardInterrupt throwing a traceback
8
 
    # into stdout.
9
 
    pass