Share

paps

Code

Repositories

browse code, statistics, last commit on 2007-04-13 cvs -d:pserver:anonymous@paps.cvs.sourceforge.net:/cvsroot/paps login

cvs -z3 -d:pserver:anonymous@paps.cvs.sourceforge.net:/cvsroot/paps co -P modulename

Show:

What's happening?

  • gint lpi -> gdouble lpi

    The type of `lpi' and `cpi' should be gdouble instead of gint. Few integer literals should be double literals (e.g. 0 -> 0.0 and 1 -> 1.0). Also few 0.0L literals should be 0.0. libpaps.c:663 casts pointer to integer (assumes 32 bit integers).

    2009-08-22 17:01:37 UTC by nobody

  • paps optons: header

    There seems to be no way to change the format or the contents of the page header. I'm using paps to print drafts from text files. It would be useful to have a command line option set the font size and date format. Also, optionally, page numbers bottom center.

    2009-06-04 14:48:25 UTC by kalinga59

  • scale is calculated wrongly in paps.c

    The --cpi option really didn't do what it was supposed to do, so I went digging in the code. Apparently you had this: scale = 1 / page_layout.cpi * 72.0 * PANGO_SCALE / max_width; But you're mixing doubles with ints there. The result is that scale will be zero for any cpi, except when cpi is around 1. To fix that, change that line to: scale = 1.0 / page_layout.cpi * 72.0 *...

    2009-02-06 12:03:02 UTC by aphexer

  • Comment: Internationalization

    I forgot to include config.rpath and po/LINGUAS. This is fixed in newer patch. If you encounter problems with libtool, run `libtoolize --copy --force' before make. File Added: paps-0.6.8-i18n.diff.gz.

    2009-01-28 22:18:46 UTC by petrp

  • Internationalization

    This is internationalization of paps-0.6.8. It patches source code, it marks up all messages in user interface and in page header, it adapts autotools files and adds GNU gettext m4 macros for autoconf. Czech translation is included as an example. Because locale influences real number printing into PostScript output, patch #1832929 "generating invalid PS code" is included...

    2009-01-28 21:19:09 UTC by petrp

  • horizontal line feature

    It would be nice if paps has an option (e.g. --hline) to draw a thin horizontal line after each input line (that is, after the newline character - not on wrapped lines).

    2008-09-20 19:25:18 UTC by sarantos

  • backspace

    It would be nice if backspace is treated as such, and not as space. Some text files have backspaces, to produce overstriking (e.g. underlining), and this now is not possible. sarantos.

    2008-09-09 23:18:00 UTC by sarantos

  • option request

    paps works great for me, so this is not a bug report but a feature wish: I would like a new option: such as a '--title=TITLE', that will use TITLE instead of the filename in the header. This is especially useful when the input is from stdin (usually a pipe). Also, two (or one) options that will define the space before and after the column separator would be useful to limit (or expand...

    2008-09-02 21:22:40 UTC by sarantos

  • not reflect the given "character per inch".

    Sorry for bringing this up again and again. but the feature is really misleading on current implementation. When 17 "characters per inch" is given to paps for strings, paps generates PS with strings that is too small. which is obviously not 17 "characters per inch". How to reproduce: 1. perl -e 'print "a"x132' | paps --cpi=17 --paper=letter > foo.ps 2. evince foo.ps say. On letter...

    2007-11-16 06:48:59 UTC by tagoh

  • should exit immediately if unrecoverable error occurs

    Even if any errors or the unrecoverable erros occurs, paps is going to proceed successfully without the outcome. it should exit with the exit code 1 immediately and should notify the fail to others.

    2007-11-16 05:02:19 UTC by tagoh

Our Numbers