Last change
on this file since 17947 was
1082,
checked in by Henrik Bettermann, 18 years ago
|
logging messages changed
|
-
Property svn:keywords set to
Id
|
File size:
1.0 KB
|
Line | |
---|
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 1082 2006-12-18 21:25:01Z henrik $ |
---|
11 | """ |
---|
12 | disable pins |
---|
13 | """ |
---|
14 | import DateTime |
---|
15 | current = DateTime.DateTime().strftime("%d-%m-%y_%H_%M_%S") |
---|
16 | import logging |
---|
17 | logger = logging.getLogger('Pin.Disable') |
---|
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, |
---|
38 | "student": "disabled by: %s on %s" % (member,current) |
---|
39 | } |
---|
40 | pincat.modifyRecord(**dict) |
---|
41 | logger.info('"%s","disabled pin","%s"' % (member,uid)) |
---|
42 | return request.RESPONSE.redirect("%s/campus/pins/search_pins" % context.portal_url()) |
---|
Note: See
TracBrowser for help on using the repository browser.