Changeset 1694
- Timestamp:
- 09/02/04 15:09:58 (20 years ago)
- Location:
- pykota/trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/conf/pykota.conf.sample
r1687 r1694 508 508 # PYKOTAJOBORIGINATINGHOSTNAME : contains the client's hostname if 509 509 # it is possible to retrieve it. 510 # PYKOTAPRINTERHOSTNAME : the printer's hostname or IP address for network 511 # printers, or "localhost" if not defined or not 512 # meaningful. 510 513 511 514 # PreHook : gets executed after being sure the user, printer and user quota -
pykota/trunk/NEWS
r1693 r1694 24 24 - 1.20alpha6 : 25 25 26 - Now exports PYKOTAPRINTERHOSTNAME for network printers' 27 hostname or IP address. Set to 'localhost' when not 28 meaningful. 29 26 30 - Fixed issue with how mod_auth_ldap Apache modules 27 31 fills the REMOTE_USER environment variable. -
pykota/trunk/pykota/tool.py
r1666 r1694 22 22 # 23 23 # $Log$ 24 # Revision 1.119 2004/09/02 13:09:58 jalet 25 # Now exports PYKOTAPRINTERHOSTNAME 26 # 24 27 # Revision 1.118 2004/08/06 20:46:45 jalet 25 28 # Finished group quota fix for balance when no user in group has a balance … … 1036 1039 os.environ["PYKOTACOPIES"] = str(self.copies) 1037 1040 os.environ["PYKOTAOPTIONS"] = self.options or "" 1041 os.environ["PYKOTAPRINTERHOSTNAME"] = self.printerhostname or "localhost" 1038 1042 1039 1043 def exportUserInfo(self, userpquota) :