Changeset 1248
- Timestamp:
- 01/05/04 17:02:18 (21 years ago)
- Location:
- pykota/trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/NEWS
r1240 r1248 22 22 PyKota NEWS : 23 23 24 - 1.16alpha21 : 25 26 - Allows the dot in user and printer names. 27 24 28 - 1.16alpha20 : 25 29 -
pykota/trunk/pykota/tool.py
r1247 r1248 22 22 # 23 23 # $Log$ 24 # Revision 1.69 2004/01/05 16:02:18 jalet 25 # Dots in user, groups and printer names should be allowed. 26 # 24 27 # Revision 1.68 2004/01/02 17:38:40 jalet 25 28 # This time it should be better... … … 395 398 digits = '0123456789' 396 399 if name[0] in asciiletters : 397 validchars = asciiletters + digits + "-_ "400 validchars = asciiletters + digits + "-_." 398 401 for c in name[1:] : 399 402 if c not in validchars : -
pykota/trunk/pykota/version.py
r1240 r1248 22 22 # 23 23 24 __version__ = "1.16alpha2 0_unofficial"24 __version__ = "1.16alpha21_unofficial" 25 25 26 26 __doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""