Last change
on this file since 17939 was
892,
checked in by Henrik Bettermann, 18 years ago
|
all psm checked and edited
|
-
Property svn:keywords set to
Id
|
File size:
1.0 KB
|
Rev | Line | |
---|
[310] | 1 | ## Script (Python) "cpsdocument_created" |
---|
| 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
| 7 | ##parameters=object=None |
---|
| 8 | ##title= |
---|
| 9 | ## |
---|
| 10 | """ |
---|
| 11 | Do the necessary rendering or redirection after an object has been |
---|
| 12 | successfully created and filled with the initial values by the user. |
---|
| 13 | |
---|
| 14 | In CPS, context is a proxy. |
---|
| 15 | |
---|
| 16 | May return a rendered document, or do a redirect. |
---|
| 17 | """ |
---|
[486] | 18 | # $Id: department_created.py 892 2006-11-18 21:14:18Z henrik $ |
---|
[310] | 19 | if object is not None: |
---|
| 20 | dep = object |
---|
| 21 | else: |
---|
| 22 | dep = context.getContent() |
---|
[319] | 23 | dep.invokeFactory('CoursesFolder','courses') |
---|
[321] | 24 | o = getattr(dep,'courses') |
---|
[310] | 25 | dict = {'Title': 'Courses'} |
---|
| 26 | o.getContent().edit(mapping=dict) |
---|
[319] | 27 | dep.invokeFactory('CertificatesFolder','certificates') |
---|
[321] | 28 | o = getattr(dep,'certificates') |
---|
[310] | 29 | dict = {'Title': 'Certificates'} |
---|
| 30 | o.getContent().edit(mapping=dict) |
---|
[892] | 31 | psm = 'Department with Certificates and Courses created!' |
---|
[310] | 32 | action_path = context.getTypeInfo().immediate_view |
---|
| 33 | context.REQUEST.RESPONSE.redirect('%s/%s?portal_status_message=%s' % |
---|
| 34 | (context.absolute_url(), action_path, psm)) |
---|
Note: See
TracBrowser for help on using the repository browser.