~ubuntu-branches/debian/jessie/calibre/jessie

« back to all changes in this revision

Viewing changes to src/calibre/ebooks/conversion/plumber.py

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2013-08-26 07:33:55 UTC
  • mfrom: (1.3.37) (29.4.23 sid)
  • Revision ID: package-import@ubuntu.com-20130826073355-1bzz2al9z8rlixsm
Tags: 1.0.0+dfsg-1
* New upstream release. (Closes: #720836)
* debian/calibre.install: Drop usr/etc, not shipped by upstream any more.
* debian/control: Add python-apsw dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
384
384
OptionRecommendation(name='margin_top',
385
385
        recommended_value=5.0, level=OptionRecommendation.LOW,
386
386
        help=_('Set the top margin in pts. Default is %default. '
387
 
            'Setting this to less than zero will cause no margin to be set. '
 
387
            'Setting this to less than zero will cause no margin to be set '
 
388
            '(the margin setting in the original document will be preserved). '
388
389
            'Note: 72 pts equals 1 inch')),
389
390
 
390
391
OptionRecommendation(name='margin_bottom',
391
392
        recommended_value=5.0, level=OptionRecommendation.LOW,
392
393
        help=_('Set the bottom margin in pts. Default is %default. '
393
 
            'Setting this to less than zero will cause no margin to be set. '
 
394
            'Setting this to less than zero will cause no margin to be set '
 
395
            '(the margin setting in the original document will be preserved). '
394
396
            'Note: 72 pts equals 1 inch')),
395
397
 
396
398
OptionRecommendation(name='margin_left',
397
399
        recommended_value=5.0, level=OptionRecommendation.LOW,
398
400
        help=_('Set the left margin in pts. Default is %default. '
399
 
            'Setting this to less than zero will cause no margin to be set. '
 
401
            'Setting this to less than zero will cause no margin to be set '
 
402
            '(the margin setting in the original document will be preserved). '
400
403
            'Note: 72 pts equals 1 inch')),
401
404
 
402
405
OptionRecommendation(name='margin_right',
403
406
        recommended_value=5.0, level=OptionRecommendation.LOW,
404
407
        help=_('Set the right margin in pts. Default is %default. '
405
 
            'Setting this to less than zero will cause no margin to be set. '
 
408
            'Setting this to less than zero will cause no margin to be set '
 
409
            '(the margin setting in the original document will be preserved). '
406
410
            'Note: 72 pts equals 1 inch')),
407
411
 
408
412
OptionRecommendation(name='change_justification',