Changeset 2468
- Timestamp:
- 09/19/05 23:42:30 (19 years ago)
- Location:
- pykota/trunk
- Files:
-
- 16 removed
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/docs/pykota.sgml
r2303 r2468 9 9 <!entity WARNPYKOTA system "warnpykota.sgml"> 10 10 <!entity SCRIPTS system "scripts.sgml"> 11 <!entity PKHINT system "pkhint.sgml">12 11 <!entity PYKOSD system "pykosd.sgml"> 13 12 <!entity DUMPYKOTA system "dumpykota.sgml"> … … 126 125 &DUMPYKOTA; 127 126 128 &PKHINT;129 130 127 &PYKOSD; 131 128 -
pykota/trunk/MANIFEST.in
r2413 r2468 1 include README FAQ COPYING LICENSE TODO NEWS CREDITS SECURITY MANIFEST.in clean.sh checkdeps.py bin/pkturnkey bin/pkmail bin/pkbanner bin/autopykota bin/dumpykota bin/ lprngpykota bin/cupspykota bin/edpykota bin/warnpykota bin/repykota bin/pykotme bin/pykosd bin/pkprinters bin/pkhintbin/pkbcodes bin/waitprinter.sh bin/papwaitprinter.sh bin/mailandpopup.sh bin/README1 include README FAQ COPYING LICENSE TODO NEWS CREDITS SECURITY MANIFEST.in clean.sh checkdeps.py bin/pkturnkey bin/pkmail bin/pkbanner bin/autopykota bin/dumpykota bin/cupspykota bin/edpykota bin/warnpykota bin/repykota bin/pykotme bin/pykosd bin/pkprinters bin/pkbcodes bin/waitprinter.sh bin/papwaitprinter.sh bin/mailandpopup.sh bin/README 2 2 recursive-include po README *.sh *.po *.mo *.pot 3 3 recursive-include man README *.sh *.1 -
pykota/trunk/README
r2426 r2468 520 520 all options globally. 521 521 522 The new pk hintcommand can help you with correct settings522 The new pkturnkey command can help you with correct settings 523 523 for your printers, but don't rely on it because it is still 524 experimental work. To use pkhint, you have to feed it with 525 CUPS' printers.conf file this way : 526 527 $ pkhint </etc/cups/printers.conf 528 529 pkhint will try to tell you what is the best accounting 524 experimental work. To have pkturnkey give you some hints 525 about what to put into pykota.conf, just use its --doconf 526 command line switch : 527 528 $ pkturnkey --doconf 529 530 pkturnkey will try to tell you what is the best accounting 530 531 method for each printer and will print some lines you'll 531 532 just have to copy&paste in the appropriate sections in 532 533 /etc/pykota/pykota.conf 534 535 For more informations about what pkturnkey can do for you, 536 see pkturnkey's manual page or use the --help command 537 line switch : 538 539 $ pkturnkey --help | less 533 540 534 541 That's all. -
pykota/trunk/setup.py
r2434 r2468 111 111 url = "http://www.librelogiciel.com/software/", 112 112 packages = [ "pykota", "pykota.storages", "pykota.loggers", "pykota.accounters", "pykota.reporters" ], 113 scripts = [ "bin/pkturnkey", "bin/pkbcodes", "bin/pkmail", "bin/pkbanner", "bin/autopykota", "bin/dumpykota", "bin/pykosd", "bin/edpykota", "bin/repykota", "bin/warnpykota", "bin/pykotme", "bin/pkprinters" , "bin/pkhint"],113 scripts = [ "bin/pkturnkey", "bin/pkbcodes", "bin/pkmail", "bin/pkbanner", "bin/autopykota", "bin/dumpykota", "bin/pykosd", "bin/edpykota", "bin/repykota", "bin/warnpykota", "bin/pykotme", "bin/pkprinters" ], 114 114 data_files = data_files)