[hg] galaxy 3582: Patch: show User menu's history, dataset, and ...
details: http://www.bx.psu.edu/hg/galaxy/rev/feff604427ee changeset: 3582:feff604427ee user: jeremy goecks <jeremy.goecks@emory.edu> date: Tue Mar 30 17:03:29 2010 -0400 description: Patch: show User menu's history, dataset, and pages links independent of app.config.use_remote_user setting. Patch contributed by Ryan Brase ( ry4an+galaxy@msi.umn.edu ). diffstat: templates/base_panels.mako | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diffs (22 lines): diff -r c07a6bdc794c -r feff604427ee templates/base_panels.mako --- a/templates/base_panels.mako Tue Mar 30 16:33:19 2010 -0400 +++ b/templates/base_panels.mako Tue Mar 30 17:03:29 2010 -0400 @@ -269,12 +269,12 @@ logout_url = h.url_for( controller='/user', action='logout' ) %> <li><a target="${logout_target}" href="${logout_url}">Logout</a></li> - <li><hr style="color: inherit; background-color: gray"/></li> - <li><a target="galaxy_main" href="${h.url_for( controller='/history', action='list' )}">Histories</a></li> - <li><a target="galaxy_main" href="${h.url_for( controller='/dataset', action='list' )}">Datasets</a></li> - %if app.config.get_bool( 'enable_pages', False ): - <li><a href="${h.url_for( controller='/page', action='list' )}">Pages</a></li> - %endif + %endif + <li><hr style="color: inherit; background-color: gray"/></li> + <li><a target="galaxy_main" href="${h.url_for( controller='/history', action='list' )}">Histories</a></li> + <li><a target="galaxy_main" href="${h.url_for( controller='/dataset', action='list' )}">Datasets</a></li> + %if app.config.get_bool( 'enable_pages', False ): + <li><a href="${h.url_for( controller='/page', action='list' )}">Pages</a></li> %endif </ul> </div>
participants (1)
-
Greg Von Kuster