- Timestamp:
- 02/27/04 14:50:12 (21 years ago)
- Location:
- pykota/trunk
- Files:
-
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/conf/pykota.conf.sample
r1357 r1368 125 125 # loaded LDAP servers. 126 126 # This is EXPERIMENTAL. 127 # 128 # BEWARE : SETTING THIS TO 'YES' CAUSES PROBLEMS FOR NOW 129 # BETTER TO LET IT SET TO 'NO' 127 130 ldapcache: no 128 131 -
pykota/trunk/NEWS
r1365 r1368 22 22 PyKota NEWS : 23 23 24 - 1.18alpha11 : 25 26 - Hopefully final fix wrt groups (users and printers) 27 24 28 - 1.18alpha10 : 25 29 -
pykota/trunk/pykota/storage.py
r1367 r1368 22 22 # 23 23 # $Log$ 24 # Revision 1.48 2004/02/27 13:50:12 jalet 25 # Hopefully the final fix for groups (users and printers) 26 # 24 27 # Revision 1.47 2004/02/27 09:30:33 jalet 25 28 # datelimit wasn't reset when modifying soft and hard limits with the LDAP backend … … 571 574 for parent in printer.Parents[:] : 572 575 printer.Parents.extend(self.getParentPrinters(parent)) 576 uniquedic = {} 577 for parent in printer.Parents : 578 uniquedic[parent.Name] = parent 579 printer.Parents = uniquedic.values() 573 580 return printer.Parents 574 581 -
pykota/trunk/pykota/version.py
r1365 r1368 22 22 # 23 23 24 __version__ = "1.18alpha1 0_unofficial"24 __version__ = "1.18alpha11_unofficial" 25 25 26 26 __doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""