Changeset 2845
- Timestamp:
- 04/06/07 07:42:32 (1 year ago)
- Files:
-
- branches/1.0/CHANGELOG.txt (modified) (1 diff)
- branches/1.0/turbogears/identity/conditions.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.0/CHANGELOG.txt
r2843 r2845 7 7 *Changes* 8 8 9 * SecureResource now raises an AttributeError when no require attribute is 10 present in the controller class or in the config file. Closes #1336. 11 (Note: This might break some "broken" apps, fortunately a detailed exception 12 is raised advising how to fix it). 9 13 * slight quickstart css modification for tables 10 14 * Add default css to highlight the validation error branches/1.0/turbogears/identity/conditions.py
r1849 r2845 294 294 295 295 if predicate is None: 296 return value 296 raise AttributeError("SecureResource requires a require " 297 "attribute either on the controller class " 298 "itself or in the config file") 297 299 298 300 errors= []