commit/galaxy-central: carlfeberhard: Fix bootstrapped user data to use proper escaping (crap...) and allow history/hda tag to autocomplete again
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/e5969ffd8f6b/ Changeset: e5969ffd8f6b User: carlfeberhard Date: 2015-01-22 23:55:37+00:00 Summary: Fix bootstrapped user data to use proper escaping (crap...) and allow history/hda tag to autocomplete again Affected #: 1 file diff -r fc8e37c905ef95395f3aeb2ea24f52d1a622015f -r e5969ffd8f6b548e064ee57d740e06f03ce7efc2 templates/galaxy_client_app.mako --- a/templates/galaxy_client_app.mako +++ b/templates/galaxy_client_app.mako @@ -83,7 +83,7 @@ users_api_controller = trans.webapp.api_controllers[ 'users' ] tags_used = [] for tag in users_api_controller.get_user_tags_used( trans, user=trans.user ): - tag = tag | h + tag = escape( tag ) if tag: tags_used.append( tag ) user_dict[ 'tags_used' ] = tags_used @@ -106,6 +106,8 @@ except Exception, exc: pass + #TODO: no logging available? + #log.exception( exc ) return user_dict %> 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