1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/adc8114131fa/ changeset: adc8114131fa user: jgoecks date: 2012-06-27 20:55:54 summary: Use url_for to generate logo URL. affected #: 3 files diff -r 8cd9f0ce913260795ee749536face3bd54f1bc62 -r adc8114131fa700da3b5800d7ba4568bd665c9b5 templates/webapps/community/base_panels.mako --- a/templates/webapps/community/base_panels.mako +++ b/templates/webapps/community/base_panels.mako @@ -118,7 +118,7 @@ ## Logo, layered over tabs to be clickable <div class="title"> - <a href="${app.config.get( 'logo_url', '/' )}"> + <a href="${h.url_for( app.config.get( 'logo_url', '/' ) )}"><img border="0" src="${h.url_for('/static/images/galaxyIcon_noText.png')}"> Galaxy Tool Shed %if app.config.brand: diff -r 8cd9f0ce913260795ee749536face3bd54f1bc62 -r adc8114131fa700da3b5800d7ba4568bd665c9b5 templates/webapps/galaxy/base_panels.mako --- a/templates/webapps/galaxy/base_panels.mako +++ b/templates/webapps/galaxy/base_panels.mako @@ -184,7 +184,7 @@ ## Logo, layered over tabs to be clickable <div class="title"> - <a href="${app.config.get( 'logo_url', '/' )}"> + <a href="${h.url_for( app.config.get( 'logo_url', '/' ) )}"><img border="0" src="${h.url_for('/static/images/galaxyIcon_noText.png')}"> Galaxy %if app.config.brand: diff -r 8cd9f0ce913260795ee749536face3bd54f1bc62 -r adc8114131fa700da3b5800d7ba4568bd665c9b5 templates/webapps/reports/base_panels.mako --- a/templates/webapps/reports/base_panels.mako +++ b/templates/webapps/reports/base_panels.mako @@ -27,7 +27,7 @@ </div> ## Logo, layered over tabs to be clickable <div class="title" style="position: absolute; top: 0; left: 0;"> - <a href="${app.config.get( 'logo_url', '/' )}"> + <a href="${h.url_for( app.config.get( 'logo_url', '/' ) )}"><img border="0" src="${h.url_for('/static/images/galaxyIcon_noText.png')}" style="width: 26px; vertical-align: top;"> Galaxy Reports %if app.config.brand: 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.