source: products/quintagroup.plonecomments/trunk/quintagroup/plonecomments/skins/quintagroup_plonecomments/validate_reply.vpy @ 2611

Last change on this file since 2611 was 822, checked in by koval, 17 years ago

little change in member properties extraction

File size: 678 bytes
Line 
1## Controller Script Python "validate_reply"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind state=state 
7##bind subpath=traverse_subpath
8##parameters=
9##title=validates discussion_reply
10from Products.CMFPlone import MessageFactory
11_ = MessageFactory('quintagroup.plonecomments')
12
13if hasattr(context, 'review_state') and not context.review_state=="published":
14    msg = _(u'Reply not allowed because the response is to a comment waiting to be\
15 approved. Please wait for the comment to be approved before replying.')
16
17    state.set(status='failure', portal_status_message=msg)
18    return state.set(status='failure')
19
20return state
Note: See TracBrowser for help on using the repository browser.