Changeset 791 for pykota/trunk/bin
- Timestamp:
- 02/10/03 13:07:31 (22 years ago)
- Location:
- pykota/trunk/bin
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/edpykota
r775 r791 17 17 # 18 18 # $Log$ 19 # Revision 1.20 2003/02/10 12:07:30 jalet 20 # Now repykota should output the recorded total page number for each printer too. 21 # 19 22 # Revision 1.19 2003/02/09 13:40:29 jalet 20 23 # typo … … 177 180 if self.isValidName(pname) : 178 181 self.storage.addPrinter(pname) 179 printernames = [ pname]182 printernames = [ (pname, 0) ] 180 183 else : 181 184 raise PyKotaToolError, _("Invalid printer name %s") % pname … … 197 200 self.logger.log_message(_("Hard limit %i is less than soft limit %i, values will be exchanged.") % (hardlimit, softlimit), "warn") 198 201 (softlimit, hardlimit) = (hardlimit, softlimit) 199 for printerin printernames :202 for (printer, printerpagecounter) in printernames : 200 203 if options["prototype"] : 201 204 if options["users"] : -
pykota/trunk/bin/repykota
r775 r791 17 17 # 18 18 # $Log$ 19 # Revision 1.10 2003/02/10 12:07:30 jalet 20 # Now repykota should output the recorded total page number for each printer too. 21 # 19 22 # Revision 1.9 2003/02/09 13:40:29 jalet 20 23 # typo … … 109 112 if not printernames : 110 113 raise PyKotaToolError, _("There's no printer matching %s") % options["printer"] 111 for printerin printernames :114 for (printer, printerpagecounter) in printernames : 112 115 print _("*** Report for %s quota on printer %s") % ((options["users"] and "user") or "group", printer) 113 116 print _("Pages grace time: %idays") % self.config.getGraceDelay() … … 127 130 if total : 128 131 print (" " * 43) + ("Total : %9i" % total) 132 print (" " * 44) + ("Real : %9i" % printerpagecounter) 129 133 print 130 134 -
pykota/trunk/bin/warnpykota
r775 r791 17 17 # 18 18 # $Log$ 19 # Revision 1.8 2003/02/10 12:07:30 jalet 20 # Now repykota should output the recorded total page number for each printer too. 21 # 19 22 # Revision 1.7 2003/02/09 13:40:29 jalet 20 23 # typo … … 107 110 if not printernames : 108 111 raise PyKotaToolError, _("There's no printer matching %s") % options["printer"] 109 for printerin printernames :112 for (printer, printerpagecounter) in printernames : 110 113 if options["users"] : 111 114 for name in self.storage.getPrinterUsers(printer) :