Changeset 1368

Show
Ignore:
Timestamp:
02/27/04 14:50:12 (20 years ago)
Author:
jalet
Message:

Hopefully the final fix for groups (users and printers)

Location:
pykota/trunk
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/conf/pykota.conf.sample

    r1357 r1368  
    125125# loaded LDAP servers. 
    126126# This is EXPERIMENTAL. 
     127# 
     128# BEWARE : SETTING THIS TO 'YES' CAUSES PROBLEMS FOR NOW 
     129# BETTER TO LET IT SET TO 'NO' 
    127130ldapcache: no 
    128131 
  • pykota/trunk/NEWS

    r1365 r1368  
    2222PyKota NEWS : 
    2323 
     24    - 1.18alpha11 :  
     25     
     26        - Hopefully final fix wrt groups (users and printers) 
     27         
    2428    - 1.18alpha10 : 
    2529     
  • pykota/trunk/pykota/storage.py

    r1367 r1368  
    2222# 
    2323# $Log$ 
     24# Revision 1.48  2004/02/27 13:50:12  jalet 
     25# Hopefully the final fix for groups (users and printers) 
     26# 
    2427# Revision 1.47  2004/02/27 09:30:33  jalet 
    2528# datelimit wasn't reset when modifying soft and hard limits with the LDAP backend 
     
    571574        for parent in printer.Parents[:] :     
    572575            printer.Parents.extend(self.getParentPrinters(parent)) 
     576        uniquedic = {}     
     577        for parent in printer.Parents : 
     578            uniquedic[parent.Name] = parent 
     579        printer.Parents = uniquedic.values()     
    573580        return printer.Parents 
    574581         
  • pykota/trunk/pykota/version.py

    r1365 r1368  
    2222# 
    2323 
    24 __version__ = "1.18alpha10_unofficial" 
     24__version__ = "1.18alpha11_unofficial" 
    2525 
    2626__doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""