commit/galaxy-central: jgoecks: Decode visualization dataset ids before saving them.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/29f652b9a18c/ changeset: 29f652b9a18c user: jgoecks date: 2012-03-02 19:40:46 summary: Decode visualization dataset ids before saving them. affected #: 1 file diff -r fd2d4e257ee9f8258dbb47ffc4c3a1ca21d49c24 -r 29f652b9a18cbac444a1c1b68d5ad36f17db7192 lib/galaxy/web/controllers/tracks.py --- a/lib/galaxy/web/controllers/tracks.py +++ b/lib/galaxy/web/controllers/tracks.py @@ -649,7 +649,7 @@ def unpack_track( track_json ): """ Unpack a track from its json. """ return { - "dataset_id": track_json['dataset_id'], + "dataset_id": trans.security.decode_id( track_json['dataset_id'] ), "hda_ldda": track_json.get('hda_ldda', "hda"), "name": track_json['name'], "track_type": track_json['track_type'], 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)
-
Bitbucket