1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/ca12edce5f10/ changeset: ca12edce5f10 user: jgoecks date: 2013-01-10 21:49:55 summary: Preserve dbkey when navigating histories and datasets in Trackster. affected #: 1 file diff -r 40a5470e3082c07fb30381ea0dce83543e85ad46 -r ca12edce5f10d1411599dcb687d7d51706af99cb templates/tracks/history_select_grid.mako --- a/templates/tracks/history_select_grid.mako +++ b/templates/tracks/history_select_grid.mako @@ -70,7 +70,14 @@ <% data_libraries_active = " activetab" %> %endif %endif - <a class="addtracktab${histories_active}" href="${h.url_for( action='list_histories' )}">Histories</a> + ## Add filter parameters manually because they include a hyphen and hence cannot be + ## added as key words. + <% + dbkey = '?' + if cur_filter_dict: + dbkey = cur_filter_dict.get( 'dbkey', '?' ) + %> + <a class="addtracktab${histories_active}" href="${h.url_for( action='list_histories')}?f-dbkey=${dbkey}">Histories</a><a class="addtracktab${data_libraries_active}" href="${h.url_for( action='list_libraries' )}">Data Libraries</a><div class="divider"></div></%def> 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.