## Script (Python) "clearance_edit" ##bind container=container ##bind context=context ##bind namespace= ##bind script=script ##bind subpath=traverse_subpath ##parameters=REQUEST ##title= # $Id: clearance_edit.py 852 2006-11-12 21:21:07Z henrik $ """ """ wftool = context.portal_workflow from urllib import urlencode from Products.CPSDocument.utils import getFormUidUrlArg import DateTime current = DateTime.DateTime() cpsdocument_edit_button = REQUEST.has_key('cpsdocument_edit_button') cpsdocument_edit_and_view_button = REQUEST.has_key('cpsdocument_edit_and_view_button') clear_and_validate_button = REQUEST.has_key('clear_and_validate_button') undo_clear_button = REQUEST.has_key('undo_clear_button') reject_clearance_button = REQUEST.has_key('reject_clearance_button') # Until ajax posts directly to its own script... ##if 'ajax_edit' in REQUEST.form: ## return context.cpsdocument_edit_ajax(REQUEST, cluster=cluster) # Validate the document and write it if it's valid # (We don't call getEditableContent here, validate does it when needed.) wftool = context.portal_workflow info = context.getStudentInfo() student = info['student'] app = info['app'] app_doc = info['app_doc'] clear = info['clear'] clear_doc = info['clear_doc'] review_state = info['review_state'] is_valid, ds = clear_doc.validate(request=REQUEST, schema_id = 'student_clearance', layout_id = 'student_clearance', proxy=clear, use_session=True) psm = "" args = {} action = "/clearance_edit_form_manager" if is_valid: if cpsdocument_edit_button: psm = 'Content changed.' elif cpsdocument_edit_and_view_button: wftool.doActionFor(info['clear'],'close') wftool.doActionFor(info['student'],'request_clearance') elif clear_and_validate_button: wftool.doActionFor(info['student'],'clear_and_validate') elif reject_clearance_button: wftool.doActionFor(info['clear'],'open') wftool.doActionFor(info['student'],'enter_clearance_pin') elif undo_clear_button: wftool.doActionFor(info['student'],'request_clearance') else: psm = "Please correct your errors." args = getFormUidUrlArg(REQUEST) args['review_state'] = review_state args['portal_status_message'] = psm if args: url = clear.absolute_url() + action + '?' + urlencode(args) else: url = clear.absolute_url() + action REQUEST.RESPONSE.redirect(url)