commit/galaxy-central: 2 new changesets
2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/c8762ac39f04/ Changeset: c8762ac39f04 User: dan Date: 2013-05-10 17:49:16 Summary: use_panels fix for login.mako. Affected #: 1 file diff -r 45c048c8756438ee829498aac0e8c1e29f85d661 -r c8762ac39f04cc41da1f59444fdcff655559f4d4 templates/user/login.mako --- a/templates/user/login.mako +++ b/templates/user/login.mako @@ -1,7 +1,7 @@ <%! #This is a hack, we should restructure templates to avoid this. def inherit(context): - if context.get('trans').webapp.name == 'galaxy': + if context.get('trans').webapp.name == 'galaxy' and context.get( 'use_panels', True ): return '/webapps/galaxy/base_panels.mako' elif context.get('trans').webapp.name == 'tool_shed': return '/webapps/tool_shed/base_panels.mako' https://bitbucket.org/galaxy/galaxy-central/commits/429636bbc4ab/ Changeset: 429636bbc4ab Branch: stable User: dan Date: 2013-05-10 17:49:16 Summary: use_panels fix for login.mako. Affected #: 1 file diff -r 35b87dd34a79aa4b94c9c3dd8ff17b4143cd340c -r 429636bbc4ab4c5715dea09cee9ff546d94346de templates/user/login.mako --- a/templates/user/login.mako +++ b/templates/user/login.mako @@ -1,7 +1,7 @@ <%! #This is a hack, we should restructure templates to avoid this. def inherit(context): - if context.get('trans').webapp.name == 'galaxy': + if context.get('trans').webapp.name == 'galaxy' and context.get( 'use_panels', True ): return '/webapps/galaxy/base_panels.mako' elif context.get('trans').webapp.name == 'tool_shed': return '/webapps/tool_shed/base_panels.mako' 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