Changeset 954
- Timestamp:
- 04/24/03 09:59:40 (22 years ago)
- Location:
- pykota/trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/NEWS
r953 r954 22 22 PyKota NEWS : 23 23 24 - 1.04pre3 : 25 26 - LPRng support works ! 27 24 28 - 1.04pre2 : 25 29 -
pykota/trunk/pykota/tool.py
r952 r954 21 21 # 22 22 # $Log$ 23 # Revision 1.36 2003/04/24 07:59:40 jalet 24 # LPRng support now works ! 25 # 23 26 # Revision 1.35 2003/04/23 22:13:57 jalet 24 27 # Preliminary support for LPRng added BUT STILL UNTESTED. … … 213 216 # Try to detect LPRng 214 217 jseen = Jseen = Pseen = nseen = rseen = None 218 sys.stderr.write("ARGS : %s\n" % str(sys.argv)) 219 sys.stderr.flush() 215 220 for arg in sys.argv : 216 221 if arg.startswith("-j") : … … 226 231 elif arg.startswith("-r") : 227 232 rseen = arg[2:].strip() 228 if jseen and Jseen andPseen and nseen and rseen :233 if jseen and Pseen and nseen and rseen : 229 234 return ("LPRNG", rseen, Pseen, nseen, jseen, Jseen) 230 235 return (None, None, None, None, None, None) # Unknown printing system -
pykota/trunk/pykota/version.py
r952 r954 21 21 # 22 22 23 __version__ = "1.04pre 2-unofficial"23 __version__ = "1.04pre3-unofficial" 24 24 25 25 __doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""