1 | ## Script (Python) "cpsdocument_edit" |
---|
2 | ##bind container=container |
---|
3 | ##bind context=context |
---|
4 | ##bind namespace= |
---|
5 | ##bind script=script |
---|
6 | ##bind subpath=traverse_subpath |
---|
7 | ##parameters=REQUEST, cluster=None, cpsdocument_edit_and_view_button=None, action=None |
---|
8 | ##title= |
---|
9 | ## |
---|
10 | # $Id: cpsdocument_edit.py 1164 2006-12-31 10:32:05Z henrik $ |
---|
11 | """ |
---|
12 | Called when a document form is posted. |
---|
13 | |
---|
14 | Validates data, then: |
---|
15 | |
---|
16 | - if there's no error, updates the object and redirects to it, |
---|
17 | |
---|
18 | - if there's an error, puts data in session and redirects to edit form. |
---|
19 | |
---|
20 | A form uid is propagated during the redirect to uniquely identify the |
---|
21 | form in the session. |
---|
22 | """ |
---|
23 | |
---|
24 | from urllib import urlencode |
---|
25 | from Products.CPSDocument.utils import getFormUidUrlArg |
---|
26 | |
---|
27 | # Until ajax posts directly to its own script... |
---|
28 | if 'ajax_edit' in REQUEST.form: |
---|
29 | return context.cpsdocument_edit_ajax(REQUEST, cluster=cluster) |
---|
30 | |
---|
31 | # Check flexible controls |
---|
32 | context.editLayouts(REQUEST=REQUEST) |
---|
33 | |
---|
34 | # Validate the document and write it if it's valid |
---|
35 | # (We don't call getEditableContent here, validate does it when needed.) |
---|
36 | doc = context.getContent() |
---|
37 | is_valid, ds = doc.validate(request=REQUEST, proxy=context, cluster=cluster, |
---|
38 | use_session=True) |
---|
39 | args = {} |
---|
40 | |
---|
41 | if action is None: |
---|
42 | ti = doc.getTypeInfo() |
---|
43 | action = ti.queryMethodID('edit', 'cpsdocument_edit_form') |
---|
44 | action = '/' + action |
---|
45 | |
---|
46 | if is_valid: |
---|
47 | comments = REQUEST.get('comments') |
---|
48 | context.cpsdocument_notify_modification(comments=comments) |
---|
49 | if cpsdocument_edit_and_view_button is not None: |
---|
50 | action = '' |
---|
51 | psm = 'psm_content_changed' |
---|
52 | |
---|
53 | else: |
---|
54 | psm = 'psm_content_error' |
---|
55 | args = getFormUidUrlArg(REQUEST) |
---|
56 | if psm: |
---|
57 | args['portal_status_message'] = psm |
---|
58 | url = context.absolute_url() + action + '?' + urlencode(args) |
---|
59 | REQUEST.RESPONSE.redirect(url) |
---|