Changeset 1248

Show
Ignore:
Timestamp:
01/05/04 17:02:18 (20 years ago)
Author:
jalet
Message:

Dots in user, groups and printer names should be allowed.

Location:
pykota/trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/NEWS

    r1240 r1248  
    2222PyKota NEWS : 
    2323 
     24    - 1.16alpha21 : 
     25     
     26        - Allows the dot in user and printer names. 
     27         
    2428    - 1.16alpha20 : 
    2529     
  • pykota/trunk/pykota/tool.py

    r1247 r1248  
    2222# 
    2323# $Log$ 
     24# Revision 1.69  2004/01/05 16:02:18  jalet 
     25# Dots in user, groups and printer names should be allowed. 
     26# 
    2427# Revision 1.68  2004/01/02 17:38:40  jalet 
    2528# This time it should be better... 
     
    395398        digits = '0123456789' 
    396399        if name[0] in asciiletters : 
    397             validchars = asciiletters + digits + "-_" 
     400            validchars = asciiletters + digits + "-_." 
    398401            for c in name[1:] : 
    399402                if c not in validchars : 
  • pykota/trunk/pykota/version.py

    r1240 r1248  
    2222# 
    2323 
    24 __version__ = "1.16alpha20_unofficial" 
     24__version__ = "1.16alpha21_unofficial" 
    2525 
    2626__doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""