details:
http://www.bx.psu.edu/hg/galaxy/rev/ab5af4830af3
changeset: 3202:ab5af4830af3
user: Kanwei Li <kanwei(a)gmail.com>
date: Tue Jan 05 13:11:35 2010 -0500
description:
enable tooltip for existing nodes
diffstat:
lib/galaxy/web/controllers/workflow.py | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diffs (19 lines):
diff -r 77f309c46dd0 -r ab5af4830af3 lib/galaxy/web/controllers/workflow.py
--- a/lib/galaxy/web/controllers/workflow.py Tue Jan 05 13:01:37 2010 -0500
+++ b/lib/galaxy/web/controllers/workflow.py Tue Jan 05 13:11:35 2010 -0500
@@ -315,13 +315,14 @@
upgrade_message = module.check_and_update_state()
if upgrade_message:
data['upgrade_messages'][step.order_index] = upgrade_message
- # Pack atrributes into plain dictionary
+ # Pack attributes into plain dictionary
step_dict = {
'id': step.order_index,
'type': module.type,
'tool_id': module.get_tool_id(),
'name': module.get_name(),
'tool_state': module.get_state(),
+ 'tooltip': module.get_tooltip(),
'tool_errors': module.get_errors(),
'data_inputs': module.get_data_inputs(),
'data_outputs': module.get_data_outputs(),