commit/galaxy-central: 2 new changesets
2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/44968207ddd2/ Changeset: 44968207ddd2 Branch: stable User: carlfeberhard Date: 2014-02-17 22:20:21 Summary: Fix to history view: include purged datasets in history list when bootstrapping (this prevents them being added later and out of order when an update occurs) Affected #: 1 file diff -r fa8bdf1f6fc7318d120a3420c50e4045dbdb1e8b -r 44968207ddd283d0023c72e3d25fd39b1c71eb99 lib/galaxy/webapps/galaxy/controllers/history.py --- a/lib/galaxy/webapps/galaxy/controllers/history.py +++ b/lib/galaxy/webapps/galaxy/controllers/history.py @@ -929,7 +929,9 @@ return trans.show_error_message( "Either you are not allowed to view this history" + " or the owner of this history has not made it accessible." ) - hdas = self.get_history_datasets( trans, history_to_view, show_deleted=True, show_hidden=True ) + # include all datasets: hidden, deleted, and purged + hdas = self.get_history_datasets( trans, history_to_view, + show_deleted=True, show_hidden=True, show_purged=True ) for hda in hdas: hda_dict = {} try: https://bitbucket.org/galaxy/galaxy-central/commits/fb7915683048/ Changeset: fb7915683048 User: carlfeberhard Date: 2014-02-17 22:20:42 Summary: Merge Affected #: 1 file diff -r 423a2939e224a294ded5842daa485da0a007fcbb -r fb791568304883fe0357b6173dcc43d772214c8b lib/galaxy/webapps/galaxy/controllers/history.py --- a/lib/galaxy/webapps/galaxy/controllers/history.py +++ b/lib/galaxy/webapps/galaxy/controllers/history.py @@ -900,7 +900,9 @@ return trans.show_error_message( "Either you are not allowed to view this history" + " or the owner of this history has not made it accessible." ) - hdas = self.get_history_datasets( trans, history_to_view, show_deleted=True, show_hidden=True ) + # include all datasets: hidden, deleted, and purged + hdas = self.get_history_datasets( trans, history_to_view, + show_deleted=True, show_hidden=True, show_purged=True ) for hda in hdas: hda_dict = {} try: 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