Changeset 1764

Show
Ignore:
Timestamp:
10/03/04 21:52:59 (20 years ago)
Author:
jalet
Message:

More work done on LDAP and dumpykota

Files:
1 modified

Legend:

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

    r1761 r1764  
    2222# 
    2323# $Log$ 
     24# Revision 1.79  2004/10/03 19:52:59  jalet 
     25# More work done on LDAP and dumpykota 
     26# 
    2427# Revision 1.78  2004/10/02 05:48:56  jalet 
    2528# Should now correctly deal with charsets both when storing into databases and when 
     
    13251328        entries = [p for p in [self.getPrinter(name) for name in self.getAllPrintersNames()] if p.Exists] 
    13261329        if entries : 
     1330            for entry in entries : 
     1331                userpquotas = [ upq for (u, upq) in self.getPrinterUsersAndQuotas(entry) ] 
    13271332            pass     
    13281333         
     
    13311336        entries = [p for p in [self.getPrinter(name) for name in self.getAllPrintersNames()] if p.Exists] 
    13321337        if entries : 
     1338            for entry in entries : 
     1339                grouppquotas = [ gpq for (g, gpq) in self.getPrinterGroupsAndQuotas(entry) ] 
    13331340            pass 
    13341341