1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/cf2db2f91c7f/ Changeset: cf2db2f91c7f User: dan Date: 2013-05-03 16:38:16 Summary: Do not allow deleted datasets to be displayed. Affected #: 1 file diff -r af7b3b73130b9288112fd06d2cecbcfe649703c5 -r cf2db2f91c7f4ca284daea800aa9596c27ff809b lib/galaxy/webapps/galaxy/controllers/dataset.py --- a/lib/galaxy/webapps/galaxy/controllers/dataset.py +++ b/lib/galaxy/webapps/galaxy/controllers/dataset.py @@ -290,6 +290,8 @@ raise paste.httpexceptions.HTTPRequestRangeNotSatisfiable( "Invalid reference dataset id: %s." % str( hda_id ) ) if not self._can_access_dataset( trans, data ): return trans.show_error_message( "You are not allowed to access this dataset" ) + if data.deleted: + return trans.show_error_message( "The dataset you are attempting to view has been deleted." ) if data.state == trans.model.Dataset.states.UPLOAD: return trans.show_error_message( "Please wait until this dataset finishes uploading before attempting to view it." ) return data 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.