Changeset 1099 for pykota/trunk/pykota

Show
Ignore:
Timestamp:
07/25/03 12:41:30 (21 years ago)
Author:
jalet
Message:

Better documentation.
pykotme now displays the current user's account balance.
Some test changed in ldap module.

Location:
pykota/trunk/pykota
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/storages/ldapstorage.py

    r1084 r1099  
    2121# 
    2222# $Log$ 
     23# Revision 1.20  2003/07/25 10:41:30  jalet 
     24# Better documentation. 
     25# pykotme now displays the current user's account balance. 
     26# Some test changed in ldap module. 
     27# 
    2328# Revision 1.19  2003/07/14 14:18:16  jalet 
    2429# Wrong documentation strings 
     
    664669                    for i in todelete : 
    665670                        del fields[k][i] 
    666             if fields.get("objectclass") :             
     671            if "objectclass" in [key.lower() for key in fields.keys()] :             
    667672                self.doModify(user.ident, fields, ignoreold=0)         
    668673            else :     
     
    692697                    for i in todelete : 
    693698                        del fields[k][i] 
    694             if fields.get("objectclass") :             
     699            if "objectclass" in [key.lower() for key in fields.keys()] :             
    695700                self.doModify(group.ident, fields, ignoreold=0)         
    696701            else :     
  • pykota/trunk/pykota/version.py

    r1095 r1099  
    2121# 
    2222 
    23 __version__ = "1.14alpha8_unofficial" 
     23__version__ = "1.14alpha9_unofficial" 
    2424 
    2525__doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""