Commit 460fadc0 authored by Jérome Perrin's avatar Jérome Perrin

fixes bug #13


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@3153 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 6e60ade1
......@@ -4,9 +4,11 @@
##bind namespace=
##bind script=script
##bind subpath=traverse_subpath
##parameters=action_select, form_id='', selection_index='', selection_name='', uids=None, listbox_uid=None, md5_object_uid_list=None, is_list=0
##parameters=action_select=None, form_id='', selection_index='', selection_name='', uids=None, listbox_uid=None, md5_object_uid_list=None, is_list=0
##title=
##
if not action_select : return
is_list = int(is_list)
Base_doAction = action_select.split()
......
......@@ -4,9 +4,11 @@
##bind namespace=
##bind script=script
##bind subpath=traverse_subpath
##parameters=dialog_select, form_id, dialog_category, selection_name, cancel_url
##parameters=dialog_select=None, form_id, dialog_category, selection_name, cancel_url
##title=
##
if not dialog_select : return
import string
Base_doAction = dialog_select.split()
......
......@@ -4,9 +4,11 @@
##bind namespace=
##bind script=script
##bind subpath=traverse_subpath
##parameters=favorite_select, form_id=''
##parameters=favorite_select=None, form_id=''
##title=
##
if not favorite_select : return
import string
#Base_doAction = favorite_select.split() Previous implementation
......
......@@ -4,9 +4,11 @@
##bind namespace=
##bind script=script
##bind subpath=traverse_subpath
##parameters=jump_select, form_id=''
##parameters=jump_select=None, form_id=''
##title=
##
if not jump_select : return
import string
Base_doAction = jump_select.split()
......
......@@ -4,9 +4,10 @@
##bind namespace=
##bind script=script
##bind subpath=traverse_subpath
##parameters=language_select
##parameters=language_select=None
##title=
##
if not language_select : return
from Products.ERP5Type.Cache import clearCache
......
......@@ -4,9 +4,10 @@
##bind namespace=
##bind script=script
##bind subpath=traverse_subpath
##parameters=module_select, form_id=''
##parameters=module_select=None, form_id=''
##title=
##
if not module_select : return
import string
Base_doAction = module_select.split()
......
......@@ -99,7 +99,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
<td valign="middle" align="left" nowrap>
<input class="input_image" type="image" src="/images/pro/images/favourite.png" title="Select Favorite"
i18n:attributes="title" i18n:domain="ui"
alt="Select Favorite" name="doFavorite:method"
alt="Select Favorite" name="Base_doFavorite:method"
tal:attributes="src string:$portal_url/images/favourite.png"/>&nbsp;
<img src="/images/pro/images/sepafon.png" alt="|" tal:attributes="src string:$portal_url/images/sepafon.png"/>&nbsp;&nbsp;
</td>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment