[hg] galaxy 2406: Allow users to clone (copy) their own workflows
details: http://www.bx.psu.edu/hg/galaxy/rev/23786eef94cd changeset: 2406:23786eef94cd user: James Taylor <james@jamestaylor.org> date: Wed May 06 14:17:13 2009 -0400 description: Allow users to clone (copy) their own workflows 1 file(s) affected in this change: templates/workflow/list.mako diffs (11 lines): diff -r c915cd0cbf13 -r 23786eef94cd templates/workflow/list.mako --- a/templates/workflow/list.mako Wed May 06 13:46:18 2009 -0400 +++ b/templates/workflow/list.mako Wed May 06 14:17:13 2009 -0400 @@ -46,6 +46,7 @@ <div popupmenu="wf-${i}-popup"> <a class="action-button" href="${h.url_for( action='editor', id=trans.security.encode_id(workflow.id) )}" target="_parent">Edit</a> <a class="action-button" href="${h.url_for( controller='root', action='index', workflow_id=trans.security.encode_id(workflow.id) )}" target="_parent">Run</a> + <a class="action-button" href="${h.url_for( action='clone', id=trans.security.encode_id(workflow.id) )}">Clone</a> <a class="action-button" href="${h.url_for( action='rename', id=trans.security.encode_id(workflow.id) )}">Rename</a> <a class="action-button" href="${h.url_for( action='sharing', id=trans.security.encode_id(workflow.id) )}">Sharing</a> <a class="action-button" confirm="Are you sure you want to delete workflow '${workflow.name}'?" href="${h.url_for( action='delete', id=trans.security.encode_id(workflow.id) )}">Delete</a>
participants (1)
-
Greg Von Kuster