commit/galaxy-central: 2 new changesets
2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/a8eaf542721e/ Changeset: a8eaf542721e User: dannon Date: 2013-06-19 23:28:49 Summary: Fix typo in workflow->delete comment. Affected #: 1 file diff -r d842d50a6ed3241b3b888c2b6324fc59e9fa3134 -r a8eaf542721e91e940297399420f2a4a8f5e92bf lib/galaxy/webapps/galaxy/controllers/workflow.py --- a/lib/galaxy/webapps/galaxy/controllers/workflow.py +++ b/lib/galaxy/webapps/galaxy/controllers/workflow.py @@ -588,7 +588,7 @@ """ # Load workflow from database stored = self.get_stored_workflow( trans, id ) - # Marke as deleted and save + # Mark as deleted and save stored.deleted = True trans.sa_session.add( stored ) trans.sa_session.flush() https://bitbucket.org/galaxy/galaxy-central/commits/2a6a9157ff83/ Changeset: 2a6a9157ff83 User: dannon Date: 2013-06-19 23:53:04 Summary: Strip workflows from the tool menu entry list when they are deleted. Affected #: 1 file diff -r a8eaf542721e91e940297399420f2a4a8f5e92bf -r 2a6a9157ff83744e8526538042f65ebe891d5526 lib/galaxy/webapps/galaxy/controllers/workflow.py --- a/lib/galaxy/webapps/galaxy/controllers/workflow.py +++ b/lib/galaxy/webapps/galaxy/controllers/workflow.py @@ -590,6 +590,7 @@ stored = self.get_stored_workflow( trans, id ) # Mark as deleted and save stored.deleted = True + trans.user.stored_workflow_menu_entries = [entry for entry in trans.user.stored_workflow_menu_entries if entry.stored_workflow != stored] trans.sa_session.add( stored ) trans.sa_session.flush() # Display the management page Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org