source: WAeUP_SRP/trunk/skins/waeup_default/id_rename.py @ 531

Last change on this file since 531 was 486, checked in by joachim, 18 years ago

svn -R propset svn:keywords "Id" .
added layout_application_/edit/create/view
and cleaned that up.

  • Property svn:keywords set to Id
File size: 766 bytes
Line 
1##parameters=
2# $Id: id_rename.py 486 2006-09-06 10:09:39Z joachim $
3"""
4Rename objects which ids are passed in the request.
5
6Used within the folder_contents template.
7"""
8
9REQUEST = context.REQUEST
10
11if context.portal_type in ('CoursesFolder',):
12    return REQUEST.RESPONSE.redirect(context.absolute_url() + \
13                                ('/academics_contents?portal_status_message=%s' \
14                                % ('Courses cannot be renamed',)))
15   
16new_ids = REQUEST['new_ids']
17new_ids = [id.upper() for id in REQUEST['new_ids']]
18
19context.manage_renameObjects(REQUEST['ids'], new_ids, REQUEST)
20
21return REQUEST.RESPONSE.redirect(context.absolute_url() + \
22                                ('/academics_contents?portal_status_message=%s' \
23                                % ('psm_item(s)_renamed',)))
Note: See TracBrowser for help on using the repository browser.