Changeset 1116
- Timestamp:
- 08/18/03 18:20:59 (21 years ago)
- Location:
- pykota/trunk
- Files:
-
- 7 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/pykota
r1113 r1116 23 23 # 24 24 # $Log$ 25 # Revision 1.38 2003/08/18 16:20:59 jalet 26 # Improvement of the printing system detection code. 27 # 25 28 # Revision 1.37 2003/07/29 20:55:17 jalet 26 29 # 1.14 is out ! … … 210 213 if Kseen is None : 211 214 Kseen = 1 # we assume the user wants at least one copy... 215 if (rseen is None) and jseen and Pseen and nseen : 216 self.logger.log_message(_("Printer hostname undefined, set to 'localhost'"), "warn") 217 rseen = "localhost" 212 218 if jseen and Pseen and nseen and rseen : 213 219 # job is always in stdin (None) 214 220 return ("LPRNG", rseen, Pseen, nseen, jseen, None, Kseen) 221 self.logger.log_message(_("Printing system unknown, args=%s") % " ".join(sys.argv), "warn") 215 222 return (None, None, None, None, None, None, None) # Unknown printing system 216 223 -
pykota/trunk/NEWS
r1115 r1116 22 22 PyKota NEWS : 23 23 24 - 1.15alpha2 : 25 26 - Better detection of LPRng. 27 28 - Outputs a warning if printing system is unknown. 29 24 30 - 1.15alpha1 : 25 31 -
pykota/trunk/po/en/pykota.po
r1099 r1116 21 21 # 22 22 # $Log$ 23 # Revision 1.34 2003/08/18 16:20:59 jalet 24 # Improvement of the printing system detection code. 25 # 23 26 # Revision 1.33 2003/07/25 10:41:30 jalet 24 27 # Better documentation. … … 417 420 msgid "Your account balance : %.2f" 418 421 msgstr "" 422 423 msgid "Printer hostname undefined, set to 'localhost'" 424 msgstr "" 425 426 msgid "Printing system unknown, args=%s" 427 msgstr "" 428 -
pykota/trunk/po/fr/pykota.po
r1099 r1116 21 21 # 22 22 # $Log$ 23 # Revision 1.33 2003/08/18 16:20:59 jalet 24 # Improvement of the printing system detection code. 25 # 23 26 # Revision 1.32 2003/07/25 10:41:30 jalet 24 27 # Better documentation. … … 428 431 msgstr "Votre solde : %.2f" 429 432 433 msgid "Printer hostname undefined, set to 'localhost'" 434 msgstr "Nom d'h�de l'imprimante ind�ni, positionn� 'localhost'" 435 436 msgid "Printing system unknown, args=%s" 437 msgstr "Syst� d'impression inconnu, args=%s" 438 -
pykota/trunk/po/pykota.pot
r1099 r1116 21 21 # 22 22 # $Log$ 23 # Revision 1.34 2003/08/18 16:20:59 jalet 24 # Improvement of the printing system detection code. 25 # 23 26 # Revision 1.33 2003/07/25 10:41:30 jalet 24 27 # Better documentation. … … 417 420 msgid "Your account balance : %.2f" 418 421 msgstr "" 422 423 msgid "Printer hostname undefined, set to 'localhost'" 424 msgstr "" 425 426 msgid "Printing system unknown, args=%s" 427 msgstr "" 428 -
pykota/trunk/pykota/version.py
r1115 r1116 21 21 # 22 22 23 __version__ = "1.15alpha 1_unofficial"23 __version__ = "1.15alpha2_unofficial" 24 24 25 25 __doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""