Changeset 41:0c8ee8fcfd76 in documentViewer
- Timestamp:
- Jul 6, 2006, 4:01:42 PM (19 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
documentViewer.py
r40 r41 143 143 """returns if access to the resource is granted""" 144 144 access = docinfo.get('accessType', None) 145 zLOG.LOG("documentViewer (accessOK)", zLOG.INFO, "access type %s"%access) 145 146 if access is None: 146 147 # no information - no access … … 148 149 return True 149 150 elif access == 'free': 151 zLOG.LOG("documentViewer (accessOK)", zLOG.INFO, "access is free") 150 152 return True 151 153 elif access in self.authgroups:
Note: See TracChangeset
for help on using the changeset viewer.