1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/622f3fd9202a/ Changeset: 622f3fd9202a User: martenson Date: 2014-11-25 01:48:56+00:00 Summary: allow for setting page title in galaxy.panels.mako; set one for data libraries Affected #: 2 files diff -r f8eb167f92141c345426db259914028317767973 -r 622f3fd9202a009620f56fced7ff2c5461a8fdf0 lib/galaxy/webapps/galaxy/controllers/library.py --- a/lib/galaxy/webapps/galaxy/controllers/library.py +++ b/lib/galaxy/webapps/galaxy/controllers/library.py @@ -84,8 +84,10 @@ app = { 'jscript' : "galaxy.library" } - # fill template - return trans.fill_template('galaxy.panels.mako', config = {'app' : app}) + return trans.fill_template( 'galaxy.panels.mako', + config = { + 'title': 'Galaxy Data Libraries', + 'app': app } ) @web.expose def index( self, trans, **kwd ): diff -r f8eb167f92141c345426db259914028317767973 -r 622f3fd9202a009620f56fced7ff2c5461a8fdf0 templates/webapps/galaxy/galaxy.panels.mako --- a/templates/webapps/galaxy/galaxy.panels.mako +++ b/templates/webapps/galaxy/galaxy.panels.mako @@ -8,7 +8,7 @@ ## set defaults self.galaxy_config = { ## template options - 'title' : '', + 'title' : 'Galaxy - Data Intensive Biology for Everyone', 'master' : True, 'left_panel' : False, 'right_panel' : False, @@ -160,7 +160,11 @@ ## document <html><head> - <title></title> + <title> + %if self.galaxy_config['title']: + ${self.galaxy_config['title']} + %endif + </title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> ## for mobile browsers, don't scale up 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.