- Timestamp:
- 03/28/04 23:01:29 (21 years ago)
- Location:
- pykota/trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/conf/pykota.conf.sample
r1401 r1421 466 466 # PYKOTABALANCE : user's account balance 467 467 # PYKOTALIFETIMEPAID : user's grand total paid 468 # PYKOTALIMITBY : user print limiting factor, for example 'quota' or 'balance' 468 469 # PYKOTAPAGECOUNTER : user's page counter on this printer 469 470 # PYKOTALIFEPAGECOUNTER : user's life time page counter on this printer -
pykota/trunk/NEWS
r1417 r1421 24 24 - 1.19alpha1 : 25 25 26 - PYKOTALIMITBY environment variable is now exported too. 27 26 28 - Inclusion of Michele Baldessari's work on autotools. 27 29 -
pykota/trunk/pykota/tool.py
r1394 r1421 22 22 # 23 23 # $Log$ 24 # Revision 1.79 2004/03/28 21:01:29 jalet 25 # PYKOTALIMITBY environment variable is now exported too 26 # 24 27 # Revision 1.78 2004/03/08 20:13:25 jalet 25 28 # Allow names to begin with a digit … … 747 750 def exportUserInfo(self, userpquota) : 748 751 """Exports user information to the environment.""" 752 os.putenv("PYKOTALIMITBY", userpquota.User.LimitBy) 749 753 os.putenv("PYKOTABALANCE", str(userpquota.User.AccountBalance or 0.0)) 750 754 os.putenv("PYKOTALIFETIMEPAID", str(userpquota.User.LifeTimePaid or 0.0))