Changeset 6471 for main/waeup.sirp/trunk/src/waeup/sirp/accesscodes
- Timestamp:
- 23 Jun 2011, 15:29:31 (14 years ago)
- Location:
- main/waeup.sirp/trunk/src/waeup/sirp/accesscodes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/accesscodes/browser.py
r6459 r6471 139 139 if 'disable' in form: 140 140 try: 141 comment = u" Disabled by %s" % self.request.principal.id141 comment = u"AC disabled" 142 142 self.context.disable(entry, comment) 143 143 self.flash('%s disabled.' % entry) … … 146 146 elif 'enable' in form: 147 147 try: 148 comment = u" Re-enabled by %s" % self.request.principal.id148 comment = u"AC re-enabled" 149 149 self.context.enable(entry, comment) 150 150 self.flash('%s (re-)enabled.' % entry) -
main/waeup.sirp/trunk/src/waeup/sirp/accesscodes/tests/test_accesscodes.py
r6470 r6471 192 192 history = IObjectHistory(self.ac1) 193 193 msgs = history.messages 194 assert msgs[-1].endswith(' Used by system')194 assert msgs[-1].endswith('AC used by system') 195 195 196 196 class AccessCodeTests(FunctionalTestCase): … … 236 236 # Access codes have a history. 237 237 match = re.match( 238 '^.. /../.... ..:..:.. - Initialized by system',238 '^....-..-.. ..:..:.. - AC initialized by system', 239 239 self.ac1.history) 240 240 assert match is not None -
main/waeup.sirp/trunk/src/waeup/sirp/accesscodes/workflow.py
r6459 r6471 120 120 def handle_accesscode_transition_event(obj, event): 121 121 # append message to history 122 timestamp = datetime.now().strftime("%d/%m/%Y %H:%M:%S")123 msg = '%s -' % timestamp124 122 if event.comment is not None: 125 msg = '%s %s' % (msg, event.comment)123 msg = '%s' % event.comment 126 124 else: 127 msg = ' %s %s by system' % (msg,event.destination.title())125 msg = 'AC %s' % event.destination 128 126 129 127 history = IObjectHistory(obj)
Note: See TracChangeset for help on using the changeset viewer.