Last change
on this file since 14212 was
1593,
checked in by uli, 18 years ago
|
Merged current trunk into uli-branch.
|
-
Property svn:keywords set to
Id
|
File size:
1.0 KB
|
Rev | Line | |
---|
[1062] | 1 | ## Script (Python) "disable_pins" |
---|
| 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
| 7 | ##parameters=REQUEST,ids=[] |
---|
| 8 | ##title= |
---|
| 9 | ## |
---|
| 10 | # $Id: disable_pins.py 1593 2007-03-19 18:57:54Z uli $ |
---|
| 11 | """ |
---|
| 12 | disable pins |
---|
| 13 | """ |
---|
| 14 | import DateTime |
---|
| 15 | current = DateTime.DateTime().strftime("%d-%m-%y_%H_%M_%S") |
---|
| 16 | import logging |
---|
[1593] | 17 | logger = logging.getLogger('Skins.disable_pins') |
---|
[1062] | 18 | |
---|
| 19 | request = REQUEST |
---|
| 20 | wftool = context.portal_workflow |
---|
| 21 | mtool = context.portal_membership |
---|
| 22 | member = mtool.getAuthenticatedMember() |
---|
| 23 | #from Products.zdb import set_trace |
---|
| 24 | #set_trace() |
---|
| 25 | |
---|
| 26 | if not ids: |
---|
| 27 | return |
---|
| 28 | |
---|
| 29 | pincat = context.portal_pins |
---|
| 30 | for pid in ids: |
---|
| 31 | serial,prefix = pid.split("_") |
---|
| 32 | res = pincat(prefix_batch=prefix, |
---|
| 33 | serial=int(serial)) |
---|
| 34 | if len(res) != 1: |
---|
| 35 | continue |
---|
| 36 | uid = res[0].pin |
---|
| 37 | dict = {"pin": uid, |
---|
[1540] | 38 | "student": "disabled by %s on %s" % (member,current) |
---|
[1062] | 39 | } |
---|
| 40 | pincat.modifyRecord(**dict) |
---|
[1593] | 41 | logger.info('%s disabled pin %s' % (member,uid)) |
---|
[1062] | 42 | return request.RESPONSE.redirect("%s/campus/pins/search_pins" % context.portal_url()) |
---|
Note: See
TracBrowser for help on using the repository browser.