Changeset 2468

Show
Ignore:
Timestamp:
09/19/05 23:42:30 (19 years ago)
Author:
jerome
Message:

Removed pkhint and lprngpykota

Location:
pykota/trunk
Files:
16 removed
4 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/docs/pykota.sgml

    r2303 r2468  
    99  <!entity WARNPYKOTA system "warnpykota.sgml"> 
    1010  <!entity SCRIPTS system "scripts.sgml"> 
    11   <!entity PKHINT system "pkhint.sgml"> 
    1211  <!entity PYKOSD system "pykosd.sgml"> 
    1312  <!entity DUMPYKOTA system "dumpykota.sgml"> 
     
    126125  &DUMPYKOTA; 
    127126   
    128   &PKHINT; 
    129    
    130127  &PYKOSD; 
    131128   
  • 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/pkhint bin/pkbcodes bin/waitprinter.sh bin/papwaitprinter.sh bin/mailandpopup.sh bin/README 
     1include 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 
    22recursive-include po README *.sh *.po *.mo *.pot 
    33recursive-include man README *.sh *.1 
  • pykota/trunk/README

    r2426 r2468  
    520520        all options globally. 
    521521         
    522         The new pkhint command can help you with correct settings  
     522        The new pkturnkey command can help you with correct settings  
    523523        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 
    530531        method for each printer and will print some lines you'll 
    531532        just have to copy&paste in the appropriate sections in 
    532533        /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 
    533540         
    534541        That's all. 
  • pykota/trunk/setup.py

    r2434 r2468  
    111111      url = "http://www.librelogiciel.com/software/", 
    112112      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" ], 
    114114      data_files = data_files)