Changeset 2420
- Timestamp:
- 09/03/05 15:48:56 (19 years ago)
- Location:
- pykota/trunk
- Files:
-
- 147 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/pkturnkey
r2419 r2420 47 47 -h | --help Prints this message then exits. 48 48 49 -d | --dryrun Doesn't modify the database at all, but instead prints 50 what it would do. 51 49 52 -u | --uidmin uid Only adds users whose uid is greater than or equal to 50 53 uid. You can pass an username there as well, and its … … 87 90 return [entry[0] for entry in pwd.getpwall() if uidmin <= entry[2] <= uidmax] 88 91 89 def createPrinters(self, printers) : 92 def runCommand(self, command, dryrun) : 93 """Launches an external command.""" 94 if dryrun : 95 self.printInfo("%s" % command) 96 else : 97 self.logdebug("%s" % command) 98 os.system(command) 99 100 def createPrinters(self, printers, dryrun=0) : 90 101 """Creates all printers in PyKota's database.""" 91 needswarning = [p[0] for p in printers if p[1].find("cupspykota") == -1] 92 command = "pkprinters --add %s" % " ".join(['"%s"' % p[0] for p in printers]) 93 self.logdebug("Launching : %s" % command) 94 os.system(command) 95 96 def createUsers(self, users) : 102 if printers : 103 needswarning = [p[0] for p in printers if p[1].find("cupspykota") == -1] 104 command = "pkprinters --add %s" % " ".join(['"%s"' % p[0] for p in printers]) 105 self.runCommand(command, dryrun) 106 for p in needswarning : 107 self.printInfo(_("Printer %s is not managed by PyKota yet. Please modify printers.conf and restart CUPS.") % p, "warn") 108 109 def createUsers(self, users, dryrun=0) : 97 110 """Creates all users in PyKota's database.""" 98 command = "edpykota --add --noquota %s" % " ".join(['"%s"' % u for u in users])99 self.logdebug("Launching : %s" % command)100 os.system(command)111 if users : 112 command = "edpykota --add --noquota %s" % " ".join(['"%s"' % u for u in users]) 113 self.runCommand(command, dryrun) 101 114 102 115 def main(self, names, options) : … … 137 150 printers = self.listPrinters() 138 151 139 print "Please be patient...", 140 sys.stdout.flush() 141 self.createPrinters(printers) 142 self.createUsers(users) 143 print 152 print "Please be patient..." 153 154 if printers : 155 self.createPrinters(printers, options["dryrun"]) 156 self.createUsers(users, options["dryrun"]) 157 144 158 print "Database initialized." 145 159 … … 148 162 retcode = 0 149 163 try : 150 short_options = "hv u:U:"151 long_options = ["help", "version", " uidmin=", "uidmax="]164 short_options = "hvdu:U:" 165 long_options = ["help", "version", "dryrun", "uidmin=", "uidmax="] 152 166 153 167 # Initializes the command line tool … … 164 178 options["help"] = options["h"] or options["help"] 165 179 options["version"] = options["v"] or options["version"] 180 options["dryrun"] = options["d"] or options["dryrun"] 166 181 options["uidmin"] = options["u"] or options["uidmin"] 167 182 options["uidmax"] = options["U"] or options["uidmax"] -
pykota/trunk/man/autopykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH AUTOPYKOTA "1" " July2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH AUTOPYKOTA "1" "September 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NAME 4 autopykota \- manual page for autopykota 1.23alpha 16_unofficial4 autopykota \- manual page for autopykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 autopykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 autopykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to automate user account creation and initial balance setting. -
pykota/trunk/man/de/autopykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH AUTOPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH AUTOPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 autopykota \- page de manuel de autopykota 1.23alpha 16_unofficial4 autopykota \- page de manuel de autopykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 autopykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 autopykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to automate user account creation and initial balance setting. -
pykota/trunk/man/de/dumpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH DUMPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH DUMPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 dumpykota \- page de manuel de dumpykota 1.23alpha 16_unofficial4 dumpykota \- page de manuel de dumpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 dumpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 dumpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Dumps PyKota database's content. -
pykota/trunk/man/de/edpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH EDPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH EDPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 edpykota \- page de manuel de edpykota 1.23alpha 16_unofficial4 edpykota \- page de manuel de edpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 edpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 edpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Print Quota editor for PyKota. -
pykota/trunk/man/de/pkbanner.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKBANNER "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKBANNER "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkbanner \- page de manuel de pkbanner 1.23alpha 16_unofficial4 pkbanner \- page de manuel de pkbanner 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkbanner v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkbanner v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates banners. -
pykota/trunk/man/de/pkhint.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKHINT "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKHINT "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkhint \- page de manuel de pkhint 1.23alpha 16_unofficial4 pkhint \- page de manuel de pkhint 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkhint v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkhint v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to give hints on what accounting method is best for each printer. -
pykota/trunk/man/de/pkmail.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKMAIL "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKMAIL "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkmail \- page de manuel de pkmail 1.23alpha 16_unofficial4 pkmail \- page de manuel de pkmail 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkmail v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkmail v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Email gateway for PyKota. -
pykota/trunk/man/de/pkprinters.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKPRINTERS "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKPRINTERS "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkprinters \- page de manuel de pkprinters 1.23alpha 16_unofficial4 pkprinters \- page de manuel de pkprinters 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkprinters v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkprinters v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Printers Manager for PyKota. -
pykota/trunk/man/de/pykosd.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOSD "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOSD "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykosd \- page de manuel de pykosd 1.23alpha 16_unofficial4 pykosd \- page de manuel de pykosd 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykosd v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykosd v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 An OSD quota monitor for PyKota. -
pykota/trunk/man/de/pykotme.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOTME "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOTME "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykotme \- page de manuel de pykotme 1.23alpha 16_unofficial4 pykotme \- page de manuel de pykotme 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykotme v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykotme v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Gives print quotes to users. -
pykota/trunk/man/de/repykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH REPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH REPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 repykota \- page de manuel de repykota 1.23alpha 16_unofficial4 repykota \- page de manuel de repykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 repykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 repykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates print quota reports. -
pykota/trunk/man/de/warnpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH WARNPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH WARNPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 warnpykota \- page de manuel de warnpykota 1.23alpha 16_unofficial4 warnpykota \- page de manuel de warnpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 warnpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 warnpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Sends mail to users over print quota. -
pykota/trunk/man/dumpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH DUMPYKOTA "1" " July2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH DUMPYKOTA "1" "September 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NAME 4 dumpykota \- manual page for dumpykota 1.23alpha 16_unofficial4 dumpykota \- manual page for dumpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 dumpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 dumpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Dumps PyKota database's content. -
pykota/trunk/man/edpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH EDPYKOTA "1" " July2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH EDPYKOTA "1" "September 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NAME 4 edpykota \- manual page for edpykota 1.23alpha 16_unofficial4 edpykota \- manual page for edpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 edpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 edpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Print Quota editor for PyKota. -
pykota/trunk/man/el_GR/autopykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH AUTOPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH AUTOPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 autopykota \- page de manuel de autopykota 1.23alpha 16_unofficial4 autopykota \- page de manuel de autopykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 autopykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 autopykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to automate user account creation and initial balance setting. -
pykota/trunk/man/el_GR/dumpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH DUMPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH DUMPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 dumpykota \- page de manuel de dumpykota 1.23alpha 16_unofficial4 dumpykota \- page de manuel de dumpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 dumpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 dumpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Dumps PyKota database's content. -
pykota/trunk/man/el_GR/edpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH EDPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH EDPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 edpykota \- page de manuel de edpykota 1.23alpha 16_unofficial4 edpykota \- page de manuel de edpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 edpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 edpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Print Quota editor for PyKota. -
pykota/trunk/man/el_GR/pkbanner.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKBANNER "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKBANNER "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkbanner \- page de manuel de pkbanner 1.23alpha 16_unofficial4 pkbanner \- page de manuel de pkbanner 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkbanner v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkbanner v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates banners. -
pykota/trunk/man/el_GR/pkhint.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKHINT "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKHINT "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkhint \- page de manuel de pkhint 1.23alpha 16_unofficial4 pkhint \- page de manuel de pkhint 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkhint v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkhint v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to give hints on what accounting method is best for each printer. -
pykota/trunk/man/el_GR/pkmail.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKMAIL "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKMAIL "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkmail \- page de manuel de pkmail 1.23alpha 16_unofficial4 pkmail \- page de manuel de pkmail 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkmail v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkmail v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Email gateway for PyKota. -
pykota/trunk/man/el_GR/pkprinters.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKPRINTERS "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKPRINTERS "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkprinters \- page de manuel de pkprinters 1.23alpha 16_unofficial4 pkprinters \- page de manuel de pkprinters 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkprinters v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkprinters v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Printers Manager for PyKota. -
pykota/trunk/man/el_GR/pykosd.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOSD "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOSD "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykosd \- page de manuel de pykosd 1.23alpha 16_unofficial4 pykosd \- page de manuel de pykosd 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykosd v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykosd v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 An OSD quota monitor for PyKota. -
pykota/trunk/man/el_GR/pykotme.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOTME "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOTME "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykotme \- page de manuel de pykotme 1.23alpha 16_unofficial4 pykotme \- page de manuel de pykotme 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykotme v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykotme v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Gives print quotes to users. -
pykota/trunk/man/el_GR/repykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH REPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH REPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 repykota \- page de manuel de repykota 1.23alpha 16_unofficial4 repykota \- page de manuel de repykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 repykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 repykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates print quota reports. -
pykota/trunk/man/el_GR/warnpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH WARNPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH WARNPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 warnpykota \- page de manuel de warnpykota 1.23alpha 16_unofficial4 warnpykota \- page de manuel de warnpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 warnpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 warnpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Sends mail to users over print quota. -
pykota/trunk/man/es/autopykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH AUTOPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH AUTOPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 autopykota \- page de manuel de autopykota 1.23alpha 16_unofficial4 autopykota \- page de manuel de autopykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 autopykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 autopykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to automate user account creation and initial balance setting. -
pykota/trunk/man/es/dumpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH DUMPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH DUMPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 dumpykota \- page de manuel de dumpykota 1.23alpha 16_unofficial4 dumpykota \- page de manuel de dumpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 dumpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 dumpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Dumps PyKota database's content. -
pykota/trunk/man/es/edpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH EDPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH EDPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 edpykota \- page de manuel de edpykota 1.23alpha 16_unofficial4 edpykota \- page de manuel de edpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 edpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 edpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Print Quota editor for PyKota. -
pykota/trunk/man/es/pkbanner.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKBANNER "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKBANNER "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkbanner \- page de manuel de pkbanner 1.23alpha 16_unofficial4 pkbanner \- page de manuel de pkbanner 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkbanner v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkbanner v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates banners. -
pykota/trunk/man/es/pkhint.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKHINT "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKHINT "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkhint \- page de manuel de pkhint 1.23alpha 16_unofficial4 pkhint \- page de manuel de pkhint 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkhint v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkhint v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to give hints on what accounting method is best for each printer. -
pykota/trunk/man/es/pkmail.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKMAIL "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKMAIL "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkmail \- page de manuel de pkmail 1.23alpha 16_unofficial4 pkmail \- page de manuel de pkmail 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkmail v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkmail v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Email gateway for PyKota. -
pykota/trunk/man/es/pkprinters.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKPRINTERS "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKPRINTERS "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkprinters \- page de manuel de pkprinters 1.23alpha 16_unofficial4 pkprinters \- page de manuel de pkprinters 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkprinters v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkprinters v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Printers Manager for PyKota. -
pykota/trunk/man/es/pykosd.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOSD "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOSD "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykosd \- page de manuel de pykosd 1.23alpha 16_unofficial4 pykosd \- page de manuel de pykosd 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykosd v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykosd v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 An OSD quota monitor for PyKota. -
pykota/trunk/man/es/pykotme.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOTME "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOTME "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykotme \- page de manuel de pykotme 1.23alpha 16_unofficial4 pykotme \- page de manuel de pykotme 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykotme v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykotme v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Gives print quotes to users. -
pykota/trunk/man/es/repykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH REPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH REPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 repykota \- page de manuel de repykota 1.23alpha 16_unofficial4 repykota \- page de manuel de repykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 repykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 repykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates print quota reports. -
pykota/trunk/man/es/warnpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH WARNPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH WARNPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 warnpykota \- page de manuel de warnpykota 1.23alpha 16_unofficial4 warnpykota \- page de manuel de warnpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 warnpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 warnpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Sends mail to users over print quota. -
pykota/trunk/man/fr/autopykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH AUTOPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH AUTOPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 autopykota \- page de manuel de autopykota 1.23alpha 16_unofficial4 autopykota \- page de manuel de autopykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 autopykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 autopykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Un outil pour automatiser la cr�ion des comptes et l'initialisation -
pykota/trunk/man/fr/dumpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH DUMPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH DUMPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 dumpykota \- page de manuel de dumpykota 1.23alpha 16_unofficial4 dumpykota \- page de manuel de dumpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 dumpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 dumpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Exporte le contenu de la base de donn� de PyKota. -
pykota/trunk/man/fr/edpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH EDPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH EDPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 edpykota \- page de manuel de edpykota 1.23alpha 16_unofficial4 edpykota \- page de manuel de edpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 edpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 edpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Un �teur de quotas pour PyKota. -
pykota/trunk/man/fr/pkbanner.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKBANNER "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKBANNER "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkbanner \- page de manuel de pkbanner 1.23alpha 16_unofficial4 pkbanner \- page de manuel de pkbanner 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkbanner v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkbanner v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates banners. -
pykota/trunk/man/fr/pkhint.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKHINT "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKHINT "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkhint \- page de manuel de pkhint 1.23alpha 16_unofficial4 pkhint \- page de manuel de pkhint 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkhint v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkhint v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Un outil pour d�cter la meilleure m�ode de d�mpte pour chaque -
pykota/trunk/man/fr/pkmail.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKMAIL "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKMAIL "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkmail \- page de manuel de pkmail 1.23alpha 16_unofficial4 pkmail \- page de manuel de pkmail 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkmail v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkmail v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Passerelle courrier �ctronique pour PyKota. -
pykota/trunk/man/fr/pkprinters.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKPRINTERS "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKPRINTERS "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkprinters \- page de manuel de pkprinters 1.23alpha 16_unofficial4 pkprinters \- page de manuel de pkprinters 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkprinters v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkprinters v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Un gestionnaire d'imprimantes pour PyKota. -
pykota/trunk/man/fr/pykosd.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOSD "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOSD "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykosd \- page de manuel de pykosd 1.23alpha 16_unofficial4 pykosd \- page de manuel de pykosd 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykosd v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykosd v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Un afficheur OSD de quota d'impression pour PyKota. -
pykota/trunk/man/fr/pykotme.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOTME "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOTME "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykotme \- page de manuel de pykotme 1.23alpha 16_unofficial4 pykotme \- page de manuel de pykotme 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykotme v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykotme v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Fait des devis d'impression aux utilisateurs. -
pykota/trunk/man/fr/repykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH REPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH REPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 repykota \- page de manuel de repykota 1.23alpha 16_unofficial4 repykota \- page de manuel de repykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 repykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 repykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 G�re des rapports de quotas d'impression. -
pykota/trunk/man/fr/warnpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH WARNPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH WARNPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 warnpykota \- page de manuel de warnpykota 1.23alpha 16_unofficial4 warnpykota \- page de manuel de warnpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 warnpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 warnpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Pr�ent les utilisateurs ayant atteint leurs limites. -
pykota/trunk/man/genman.sh
r2342 r2420 14 14 # $Id$ 15 15 # 16 for prog in pk bcodes pkmail pkbanner autopykota dumpykota edpykota pykotme repykota warnpykota pkprinters pkhint pykosd ; do16 for prog in pkturnkey pkbcodes pkmail pkbanner autopykota dumpykota edpykota pykotme repykota warnpykota pkprinters pkhint pykosd ; do 17 17 echo $prog ; 18 18 help2man --no-info --section=1 --manual "User Commands" --source="C@LL - Conseil Internet & Logiciels Libres" --output=$prog.1 $prog ; -
pykota/trunk/man/it/autopykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH AUTOPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH AUTOPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 autopykota \- page de manuel de autopykota 1.23alpha 16_unofficial4 autopykota \- page de manuel de autopykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 autopykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 autopykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to automate user account creation and initial balance setting. -
pykota/trunk/man/it/dumpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH DUMPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH DUMPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 dumpykota \- page de manuel de dumpykota 1.23alpha 16_unofficial4 dumpykota \- page de manuel de dumpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 dumpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 dumpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Dumps PyKota database's content. -
pykota/trunk/man/it/edpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH EDPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH EDPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 edpykota \- page de manuel de edpykota 1.23alpha 16_unofficial4 edpykota \- page de manuel de edpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 edpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 edpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Print Quota editor for PyKota. -
pykota/trunk/man/it/pkbanner.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKBANNER "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKBANNER "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkbanner \- page de manuel de pkbanner 1.23alpha 16_unofficial4 pkbanner \- page de manuel de pkbanner 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkbanner v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkbanner v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates banners. -
pykota/trunk/man/it/pkhint.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKHINT "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKHINT "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkhint \- page de manuel de pkhint 1.23alpha 16_unofficial4 pkhint \- page de manuel de pkhint 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkhint v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkhint v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to give hints on what accounting method is best for each printer. -
pykota/trunk/man/it/pkmail.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKMAIL "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKMAIL "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkmail \- page de manuel de pkmail 1.23alpha 16_unofficial4 pkmail \- page de manuel de pkmail 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkmail v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkmail v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Email gateway for PyKota. -
pykota/trunk/man/it/pkprinters.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKPRINTERS "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKPRINTERS "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkprinters \- page de manuel de pkprinters 1.23alpha 16_unofficial4 pkprinters \- page de manuel de pkprinters 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkprinters v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkprinters v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Printers Manager for PyKota. -
pykota/trunk/man/it/pykosd.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOSD "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOSD "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykosd \- page de manuel de pykosd 1.23alpha 16_unofficial4 pykosd \- page de manuel de pykosd 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykosd v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykosd v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 An OSD quota monitor for PyKota. -
pykota/trunk/man/it/pykotme.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOTME "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOTME "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykotme \- page de manuel de pykotme 1.23alpha 16_unofficial4 pykotme \- page de manuel de pykotme 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykotme v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykotme v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Gives print quotes to users. -
pykota/trunk/man/it/repykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH REPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH REPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 repykota \- page de manuel de repykota 1.23alpha 16_unofficial4 repykota \- page de manuel de repykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 repykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 repykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates print quota reports. -
pykota/trunk/man/it/warnpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH WARNPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH WARNPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 warnpykota \- page de manuel de warnpykota 1.23alpha 16_unofficial4 warnpykota \- page de manuel de warnpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 warnpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 warnpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Sends mail to users over print quota. -
pykota/trunk/man/nb_NO/autopykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH AUTOPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH AUTOPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 autopykota \- page de manuel de autopykota 1.23alpha 16_unofficial4 autopykota \- page de manuel de autopykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 autopykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 autopykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to automate user account creation and initial balance setting. -
pykota/trunk/man/nb_NO/dumpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH DUMPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH DUMPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 dumpykota \- page de manuel de dumpykota 1.23alpha 16_unofficial4 dumpykota \- page de manuel de dumpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 dumpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 dumpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Dumps PyKota database's content. -
pykota/trunk/man/nb_NO/edpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH EDPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH EDPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 edpykota \- page de manuel de edpykota 1.23alpha 16_unofficial4 edpykota \- page de manuel de edpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 edpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 edpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Print Quota editor for PyKota. -
pykota/trunk/man/nb_NO/pkbanner.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKBANNER "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKBANNER "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkbanner \- page de manuel de pkbanner 1.23alpha 16_unofficial4 pkbanner \- page de manuel de pkbanner 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkbanner v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkbanner v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates banners. -
pykota/trunk/man/nb_NO/pkhint.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKHINT "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKHINT "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkhint \- page de manuel de pkhint 1.23alpha 16_unofficial4 pkhint \- page de manuel de pkhint 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkhint v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkhint v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to give hints on what accounting method is best for each printer. -
pykota/trunk/man/nb_NO/pkmail.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKMAIL "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKMAIL "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkmail \- page de manuel de pkmail 1.23alpha 16_unofficial4 pkmail \- page de manuel de pkmail 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkmail v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkmail v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Email gateway for PyKota. -
pykota/trunk/man/nb_NO/pkprinters.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKPRINTERS "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKPRINTERS "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkprinters \- page de manuel de pkprinters 1.23alpha 16_unofficial4 pkprinters \- page de manuel de pkprinters 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkprinters v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkprinters v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Printers Manager for PyKota. -
pykota/trunk/man/nb_NO/pykosd.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOSD "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOSD "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykosd \- page de manuel de pykosd 1.23alpha 16_unofficial4 pykosd \- page de manuel de pykosd 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykosd v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykosd v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 An OSD quota monitor for PyKota. -
pykota/trunk/man/nb_NO/pykotme.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOTME "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOTME "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykotme \- page de manuel de pykotme 1.23alpha 16_unofficial4 pykotme \- page de manuel de pykotme 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykotme v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykotme v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Gives print quotes to users. -
pykota/trunk/man/nb_NO/repykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH REPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH REPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 repykota \- page de manuel de repykota 1.23alpha 16_unofficial4 repykota \- page de manuel de repykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 repykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 repykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates print quota reports. -
pykota/trunk/man/nb_NO/warnpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH WARNPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH WARNPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 warnpykota \- page de manuel de warnpykota 1.23alpha 16_unofficial4 warnpykota \- page de manuel de warnpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 warnpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 warnpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Sends mail to users over print quota. -
pykota/trunk/man/pkbanner.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKBANNER "1" " July2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKBANNER "1" "September 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NAME 4 pkbanner \- manual page for pkbanner 1.23alpha 16_unofficial4 pkbanner \- manual page for pkbanner 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkbanner v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkbanner v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates banners. -
pykota/trunk/man/pkhint.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKHINT "1" " July2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKHINT "1" "September 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NAME 4 pkhint \- manual page for pkhint 1.23alpha 16_unofficial4 pkhint \- manual page for pkhint 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkhint v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkhint v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to give hints on what accounting method is best for each printer. -
pykota/trunk/man/pkmail.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKMAIL "1" " July2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKMAIL "1" "September 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NAME 4 pkmail \- manual page for pkmail 1.23alpha 16_unofficial4 pkmail \- manual page for pkmail 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkmail v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkmail v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Email gateway for PyKota. -
pykota/trunk/man/pkprinters.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKPRINTERS "1" " July2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKPRINTERS "1" "September 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NAME 4 pkprinters \- manual page for pkprinters 1.23alpha 16_unofficial4 pkprinters \- manual page for pkprinters 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkprinters v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkprinters v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Printers Manager for PyKota. -
pykota/trunk/man/pt/autopykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH AUTOPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH AUTOPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 autopykota \- page de manuel de autopykota 1.23alpha 16_unofficial4 autopykota \- page de manuel de autopykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 autopykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 autopykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to automate user account creation and initial balance setting. -
pykota/trunk/man/pt_BR/autopykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH AUTOPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH AUTOPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 autopykota \- page de manuel de autopykota 1.23alpha 16_unofficial4 autopykota \- page de manuel de autopykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 autopykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 autopykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to automate user account creation and initial balance setting. -
pykota/trunk/man/pt_BR/dumpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH DUMPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH DUMPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 dumpykota \- page de manuel de dumpykota 1.23alpha 16_unofficial4 dumpykota \- page de manuel de dumpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 dumpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 dumpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Dumps PyKota database's content. -
pykota/trunk/man/pt_BR/edpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH EDPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH EDPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 edpykota \- page de manuel de edpykota 1.23alpha 16_unofficial4 edpykota \- page de manuel de edpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 edpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 edpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Print Quota editor for PyKota. -
pykota/trunk/man/pt_BR/pkbanner.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKBANNER "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKBANNER "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkbanner \- page de manuel de pkbanner 1.23alpha 16_unofficial4 pkbanner \- page de manuel de pkbanner 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkbanner v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkbanner v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates banners. -
pykota/trunk/man/pt_BR/pkhint.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKHINT "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKHINT "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkhint \- page de manuel de pkhint 1.23alpha 16_unofficial4 pkhint \- page de manuel de pkhint 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkhint v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkhint v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to give hints on what accounting method is best for each printer. -
pykota/trunk/man/pt_BR/pkmail.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKMAIL "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKMAIL "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkmail \- page de manuel de pkmail 1.23alpha 16_unofficial4 pkmail \- page de manuel de pkmail 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkmail v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkmail v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Email gateway for PyKota. -
pykota/trunk/man/pt_BR/pkprinters.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKPRINTERS "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKPRINTERS "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkprinters \- page de manuel de pkprinters 1.23alpha 16_unofficial4 pkprinters \- page de manuel de pkprinters 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkprinters v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkprinters v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Printers Manager for PyKota. -
pykota/trunk/man/pt_BR/pykosd.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOSD "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOSD "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykosd \- page de manuel de pykosd 1.23alpha 16_unofficial4 pykosd \- page de manuel de pykosd 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykosd v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykosd v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 An OSD quota monitor for PyKota. -
pykota/trunk/man/pt_BR/pykotme.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOTME "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOTME "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykotme \- page de manuel de pykotme 1.23alpha 16_unofficial4 pykotme \- page de manuel de pykotme 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykotme v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykotme v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Gives print quotes to users. -
pykota/trunk/man/pt_BR/repykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH REPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH REPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 repykota \- page de manuel de repykota 1.23alpha 16_unofficial4 repykota \- page de manuel de repykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 repykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 repykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates print quota reports. -
pykota/trunk/man/pt_BR/warnpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH WARNPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH WARNPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 warnpykota \- page de manuel de warnpykota 1.23alpha 16_unofficial4 warnpykota \- page de manuel de warnpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 warnpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 warnpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Sends mail to users over print quota. -
pykota/trunk/man/pt/dumpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH DUMPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH DUMPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 dumpykota \- page de manuel de dumpykota 1.23alpha 16_unofficial4 dumpykota \- page de manuel de dumpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 dumpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 dumpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Dumps PyKota database's content. -
pykota/trunk/man/pt/edpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH EDPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH EDPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 edpykota \- page de manuel de edpykota 1.23alpha 16_unofficial4 edpykota \- page de manuel de edpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 edpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 edpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Print Quota editor for PyKota. -
pykota/trunk/man/pt/pkbanner.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKBANNER "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKBANNER "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkbanner \- page de manuel de pkbanner 1.23alpha 16_unofficial4 pkbanner \- page de manuel de pkbanner 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkbanner v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkbanner v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates banners. -
pykota/trunk/man/pt/pkhint.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKHINT "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKHINT "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkhint \- page de manuel de pkhint 1.23alpha 16_unofficial4 pkhint \- page de manuel de pkhint 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkhint v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkhint v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to give hints on what accounting method is best for each printer. -
pykota/trunk/man/pt/pkmail.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKMAIL "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKMAIL "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkmail \- page de manuel de pkmail 1.23alpha 16_unofficial4 pkmail \- page de manuel de pkmail 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkmail v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkmail v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Email gateway for PyKota. -
pykota/trunk/man/pt/pkprinters.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKPRINTERS "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKPRINTERS "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkprinters \- page de manuel de pkprinters 1.23alpha 16_unofficial4 pkprinters \- page de manuel de pkprinters 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkprinters v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkprinters v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Printers Manager for PyKota. -
pykota/trunk/man/pt/pykosd.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOSD "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOSD "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykosd \- page de manuel de pykosd 1.23alpha 16_unofficial4 pykosd \- page de manuel de pykosd 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykosd v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykosd v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 An OSD quota monitor for PyKota. -
pykota/trunk/man/pt/pykotme.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOTME "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOTME "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykotme \- page de manuel de pykotme 1.23alpha 16_unofficial4 pykotme \- page de manuel de pykotme 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykotme v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykotme v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Gives print quotes to users. -
pykota/trunk/man/pt/repykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH REPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH REPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 repykota \- page de manuel de repykota 1.23alpha 16_unofficial4 repykota \- page de manuel de repykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 repykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 repykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates print quota reports. -
pykota/trunk/man/pt/warnpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH WARNPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH WARNPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 warnpykota \- page de manuel de warnpykota 1.23alpha 16_unofficial4 warnpykota \- page de manuel de warnpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 warnpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 warnpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Sends mail to users over print quota. -
pykota/trunk/man/pykosd.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOSD "1" " July2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOSD "1" "September 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NAME 4 pykosd \- manual page for pykosd 1.23alpha 16_unofficial4 pykosd \- manual page for pykosd 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykosd v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykosd v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 An OSD quota monitor for PyKota. -
pykota/trunk/man/pykotme.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOTME "1" " July2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOTME "1" "September 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NAME 4 pykotme \- manual page for pykotme 1.23alpha 16_unofficial4 pykotme \- manual page for pykotme 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykotme v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykotme v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Gives print quotes to users. -
pykota/trunk/man/repykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH REPYKOTA "1" " July2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH REPYKOTA "1" "September 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NAME 4 repykota \- manual page for repykota 1.23alpha 16_unofficial4 repykota \- manual page for repykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 repykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 repykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates print quota reports. -
pykota/trunk/man/sv_SE/autopykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH AUTOPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH AUTOPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 autopykota \- page de manuel de autopykota 1.23alpha 16_unofficial4 autopykota \- page de manuel de autopykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 autopykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 autopykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to automate user account creation and initial balance setting. -
pykota/trunk/man/sv_SE/dumpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH DUMPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH DUMPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 dumpykota \- page de manuel de dumpykota 1.23alpha 16_unofficial4 dumpykota \- page de manuel de dumpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 dumpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 dumpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Dumps PyKota database's content. -
pykota/trunk/man/sv_SE/edpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH EDPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH EDPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 edpykota \- page de manuel de edpykota 1.23alpha 16_unofficial4 edpykota \- page de manuel de edpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 edpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 edpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Print Quota editor for PyKota. -
pykota/trunk/man/sv_SE/pkbanner.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKBANNER "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKBANNER "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkbanner \- page de manuel de pkbanner 1.23alpha 16_unofficial4 pkbanner \- page de manuel de pkbanner 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkbanner v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkbanner v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates banners. -
pykota/trunk/man/sv_SE/pkhint.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKHINT "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKHINT "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkhint \- page de manuel de pkhint 1.23alpha 16_unofficial4 pkhint \- page de manuel de pkhint 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkhint v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkhint v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to give hints on what accounting method is best for each printer. -
pykota/trunk/man/sv_SE/pkmail.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKMAIL "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKMAIL "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkmail \- page de manuel de pkmail 1.23alpha 16_unofficial4 pkmail \- page de manuel de pkmail 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkmail v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkmail v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Email gateway for PyKota. -
pykota/trunk/man/sv_SE/pkprinters.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKPRINTERS "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKPRINTERS "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkprinters \- page de manuel de pkprinters 1.23alpha 16_unofficial4 pkprinters \- page de manuel de pkprinters 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkprinters v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkprinters v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Printers Manager for PyKota. -
pykota/trunk/man/sv_SE/pykosd.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOSD "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOSD "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykosd \- page de manuel de pykosd 1.23alpha 16_unofficial4 pykosd \- page de manuel de pykosd 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykosd v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykosd v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 An OSD quota monitor for PyKota. -
pykota/trunk/man/sv_SE/pykotme.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOTME "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOTME "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykotme \- page de manuel de pykotme 1.23alpha 16_unofficial4 pykotme \- page de manuel de pykotme 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykotme v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykotme v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Gives print quotes to users. -
pykota/trunk/man/sv_SE/repykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH REPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH REPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 repykota \- page de manuel de repykota 1.23alpha 16_unofficial4 repykota \- page de manuel de repykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 repykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 repykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates print quota reports. -
pykota/trunk/man/sv_SE/warnpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH WARNPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH WARNPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 warnpykota \- page de manuel de warnpykota 1.23alpha 16_unofficial4 warnpykota \- page de manuel de warnpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 warnpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 warnpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Sends mail to users over print quota. -
pykota/trunk/man/th/autopykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH AUTOPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH AUTOPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 autopykota \- page de manuel de autopykota 1.23alpha 16_unofficial4 autopykota \- page de manuel de autopykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 autopykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 autopykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to automate user account creation and initial balance setting. -
pykota/trunk/man/th/dumpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH DUMPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH DUMPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 dumpykota \- page de manuel de dumpykota 1.23alpha 16_unofficial4 dumpykota \- page de manuel de dumpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 dumpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 dumpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Dumps PyKota database's content. -
pykota/trunk/man/th/edpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH EDPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH EDPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 edpykota \- page de manuel de edpykota 1.23alpha 16_unofficial4 edpykota \- page de manuel de edpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 edpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 edpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Print Quota editor for PyKota. -
pykota/trunk/man/th/pkbanner.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKBANNER "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKBANNER "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkbanner \- page de manuel de pkbanner 1.23alpha 16_unofficial4 pkbanner \- page de manuel de pkbanner 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkbanner v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkbanner v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates banners. -
pykota/trunk/man/th/pkhint.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKHINT "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKHINT "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkhint \- page de manuel de pkhint 1.23alpha 16_unofficial4 pkhint \- page de manuel de pkhint 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkhint v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkhint v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to give hints on what accounting method is best for each printer. -
pykota/trunk/man/th/pkmail.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKMAIL "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKMAIL "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkmail \- page de manuel de pkmail 1.23alpha 16_unofficial4 pkmail \- page de manuel de pkmail 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkmail v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkmail v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Email gateway for PyKota. -
pykota/trunk/man/th/pkprinters.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKPRINTERS "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKPRINTERS "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkprinters \- page de manuel de pkprinters 1.23alpha 16_unofficial4 pkprinters \- page de manuel de pkprinters 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkprinters v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkprinters v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Printers Manager for PyKota. -
pykota/trunk/man/th/pykosd.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOSD "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOSD "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykosd \- page de manuel de pykosd 1.23alpha 16_unofficial4 pykosd \- page de manuel de pykosd 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykosd v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykosd v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 An OSD quota monitor for PyKota. -
pykota/trunk/man/th/pykotme.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOTME "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOTME "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykotme \- page de manuel de pykotme 1.23alpha 16_unofficial4 pykotme \- page de manuel de pykotme 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykotme v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykotme v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Gives print quotes to users. -
pykota/trunk/man/th/repykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH REPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH REPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 repykota \- page de manuel de repykota 1.23alpha 16_unofficial4 repykota \- page de manuel de repykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 repykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 repykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates print quota reports. -
pykota/trunk/man/th/warnpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH WARNPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH WARNPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 warnpykota \- page de manuel de warnpykota 1.23alpha 16_unofficial4 warnpykota \- page de manuel de warnpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 warnpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 warnpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Sends mail to users over print quota. -
pykota/trunk/man/tr/autopykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH AUTOPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH AUTOPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 autopykota \- page de manuel de autopykota 1.23alpha 16_unofficial4 autopykota \- page de manuel de autopykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 autopykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 autopykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to automate user account creation and initial balance setting. -
pykota/trunk/man/tr/dumpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH DUMPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH DUMPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 dumpykota \- page de manuel de dumpykota 1.23alpha 16_unofficial4 dumpykota \- page de manuel de dumpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 dumpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 dumpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Dumps PyKota database's content. -
pykota/trunk/man/tr/edpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH EDPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH EDPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 edpykota \- page de manuel de edpykota 1.23alpha 16_unofficial4 edpykota \- page de manuel de edpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 edpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 edpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Print Quota editor for PyKota. -
pykota/trunk/man/tr/pkbanner.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKBANNER "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKBANNER "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkbanner \- page de manuel de pkbanner 1.23alpha 16_unofficial4 pkbanner \- page de manuel de pkbanner 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkbanner v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkbanner v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates banners. -
pykota/trunk/man/tr/pkhint.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKHINT "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKHINT "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkhint \- page de manuel de pkhint 1.23alpha 16_unofficial4 pkhint \- page de manuel de pkhint 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkhint v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkhint v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to give hints on what accounting method is best for each printer. -
pykota/trunk/man/tr/pkmail.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKMAIL "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKMAIL "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkmail \- page de manuel de pkmail 1.23alpha 16_unofficial4 pkmail \- page de manuel de pkmail 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkmail v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkmail v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Email gateway for PyKota. -
pykota/trunk/man/tr/pkprinters.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKPRINTERS "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKPRINTERS "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkprinters \- page de manuel de pkprinters 1.23alpha 16_unofficial4 pkprinters \- page de manuel de pkprinters 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkprinters v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkprinters v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Printers Manager for PyKota. -
pykota/trunk/man/tr/pykosd.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOSD "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOSD "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykosd \- page de manuel de pykosd 1.23alpha 16_unofficial4 pykosd \- page de manuel de pykosd 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykosd v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykosd v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 An OSD quota monitor for PyKota. -
pykota/trunk/man/tr/pykotme.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOTME "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOTME "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykotme \- page de manuel de pykotme 1.23alpha 16_unofficial4 pykotme \- page de manuel de pykotme 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykotme v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykotme v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Gives print quotes to users. -
pykota/trunk/man/tr/repykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH REPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH REPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 repykota \- page de manuel de repykota 1.23alpha 16_unofficial4 repykota \- page de manuel de repykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 repykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 repykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates print quota reports. -
pykota/trunk/man/tr/warnpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH WARNPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH WARNPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 warnpykota \- page de manuel de warnpykota 1.23alpha 16_unofficial4 warnpykota \- page de manuel de warnpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 warnpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 warnpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Sends mail to users over print quota. -
pykota/trunk/man/warnpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH WARNPYKOTA "1" " July2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH WARNPYKOTA "1" "September 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NAME 4 warnpykota \- manual page for warnpykota 1.23alpha 16_unofficial4 warnpykota \- manual page for warnpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 warnpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 warnpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Sends mail to users over print quota. -
pykota/trunk/man/zh_TW/autopykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH AUTOPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH AUTOPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 autopykota \- page de manuel de autopykota 1.23alpha 16_unofficial4 autopykota \- page de manuel de autopykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 autopykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 autopykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to automate user account creation and initial balance setting. -
pykota/trunk/man/zh_TW/dumpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH DUMPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH DUMPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 dumpykota \- page de manuel de dumpykota 1.23alpha 16_unofficial4 dumpykota \- page de manuel de dumpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 dumpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 dumpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Dumps PyKota database's content. -
pykota/trunk/man/zh_TW/edpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH EDPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH EDPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 edpykota \- page de manuel de edpykota 1.23alpha 16_unofficial4 edpykota \- page de manuel de edpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 edpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 edpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Print Quota editor for PyKota. -
pykota/trunk/man/zh_TW/pkbanner.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKBANNER "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKBANNER "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkbanner \- page de manuel de pkbanner 1.23alpha 16_unofficial4 pkbanner \- page de manuel de pkbanner 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkbanner v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkbanner v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates banners. -
pykota/trunk/man/zh_TW/pkhint.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKHINT "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKHINT "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkhint \- page de manuel de pkhint 1.23alpha 16_unofficial4 pkhint \- page de manuel de pkhint 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkhint v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkhint v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A tool to give hints on what accounting method is best for each printer. -
pykota/trunk/man/zh_TW/pkmail.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKMAIL "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKMAIL "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkmail \- page de manuel de pkmail 1.23alpha 16_unofficial4 pkmail \- page de manuel de pkmail 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkmail v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkmail v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Email gateway for PyKota. -
pykota/trunk/man/zh_TW/pkprinters.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PKPRINTERS "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKPRINTERS "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pkprinters \- page de manuel de pkprinters 1.23alpha 16_unofficial4 pkprinters \- page de manuel de pkprinters 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pkprinters v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pkprinters v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 A Printers Manager for PyKota. -
pykota/trunk/man/zh_TW/pykosd.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOSD "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOSD "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykosd \- page de manuel de pykosd 1.23alpha 16_unofficial4 pykosd \- page de manuel de pykosd 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykosd v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykosd v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 An OSD quota monitor for PyKota. -
pykota/trunk/man/zh_TW/pykotme.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH PYKOTME "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PYKOTME "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 pykotme \- page de manuel de pykotme 1.23alpha 16_unofficial4 pykotme \- page de manuel de pykotme 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 pykotme v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 pykotme v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Gives print quotes to users. -
pykota/trunk/man/zh_TW/repykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH REPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH REPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 repykota \- page de manuel de repykota 1.23alpha 16_unofficial4 repykota \- page de manuel de repykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 repykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 repykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Generates print quota reports. -
pykota/trunk/man/zh_TW/warnpykota.1
r2344 r2420 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.35. 2 .TH WARNPYKOTA "1" " juillet2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH WARNPYKOTA "1" "septembre 2005" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NOM 4 warnpykota \- page de manuel de warnpykota 1.23alpha 16_unofficial4 warnpykota \- page de manuel de warnpykota 1.23alpha25_unofficial 5 5 .SH DESCRIPTION 6 warnpykota v1.23alpha 16_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com6 warnpykota v1.23alpha25_unofficial (c) 2003, 2004, 2005 Jerome Alet \- alet@librelogiciel.com 7 7 .PP 8 8 Sends mail to users over print quota. -
pykota/trunk/NEWS
r2418 r2420 22 22 PyKota NEWS : 23 23 24 - 1.23alpha25 : 25 26 - Added a --dryrun command line switch to pkturnkey. 27 28 - Improved pkturnkey's general usability. 29 30 - Added a manpage for pkturnkey. 31 24 32 - 1.23alpha24 : 25 33 -
pykota/trunk/pykota/version.py
r2418 r2420 22 22 # 23 23 24 __version__ = "1.23alpha2 4_unofficial"24 __version__ = "1.23alpha25_unofficial" 25 25 26 26 __doc__ = "PyKota : a complete Printing Quota Solution for CUPS and LPRng."