
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/5d959ef3a1c7/ changeset: 5d959ef3a1c7 user: greg date: 2011-08-04 19:39:58 summary: Change Help -> Email comments link to be Support and point to wiki instead of email per Jen's instructions. affected #: 4 files (229 bytes) --- a/lib/galaxy/config.py Thu Aug 04 13:30:01 2011 -0400 +++ b/lib/galaxy/config.py Thu Aug 04 13:39:58 2011 -0400 @@ -102,6 +102,7 @@ self.gbrowse_display_sites = kwargs.get( 'gbrowse_display_sites', "wormbase,tair,modencode_worm,modencode_fly,sgd_yeast" ).lower().split(",") self.genetrack_display_sites = kwargs.get( 'genetrack_display_sites', "main,test" ).lower().split(",") self.brand = kwargs.get( 'brand', None ) + self.support_url = kwargs.get( 'support_url', 'http://wiki.g2.bx.psu.edu/Support' ) self.wiki_url = kwargs.get( 'wiki_url', 'http://g2.trac.bx.psu.edu/' ) self.bugs_email = kwargs.get( 'bugs_email', None ) self.blog_url = kwargs.get( 'blog_url', None ) --- a/lib/galaxy/webapps/community/config.py Thu Aug 04 13:30:01 2011 -0400 +++ b/lib/galaxy/webapps/community/config.py Thu Aug 04 13:39:58 2011 -0400 @@ -64,6 +64,7 @@ self.nginx_upload_path = kwargs.get( 'nginx_upload_path', False ) self.log_actions = string_as_bool( kwargs.get( 'log_actions', 'False' ) ) self.brand = kwargs.get( 'brand', None ) + self.support_url = kwargs.get( 'support_url', 'http://wiki.g2.bx.psu.edu/Support' ) self.wiki_url = kwargs.get( 'wiki_url', 'http://wiki.g2.bx.psu.edu/FrontPage' ) self.bugs_email = kwargs.get( 'bugs_email', None ) self.blog_url = kwargs.get( 'blog_url', None ) --- a/templates/webapps/community/base_panels.mako Thu Aug 04 13:30:01 2011 -0400 +++ b/templates/webapps/community/base_panels.mako Thu Aug 04 13:39:58 2011 -0400 @@ -33,7 +33,7 @@ <a>Help</a><div class="submenu"><ul> - <li><a href="${app.config.get( "bugs_email", "mailto:galaxy-bugs@bx.psu.edu" )}">Email comments, bug reports, or suggestions</a></li> + <li><a target="_blank" href="${app.config.get( "support_url", "http://wiki.g2.bx.psu.edu/" )}">Support</a></li><li><a target="_blank" href="${app.config.get( "wiki_url", "http://wiki.g2.bx.psu.edu/" )}">Galaxy Wiki</a></li><li><a target="_blank" href="${app.config.get( "screencasts_url", "http://galaxycast.org" )}">Video tutorials (screencasts)</a></li><li><a target="_blank" href="${app.config.get( "citation_url", "http://wiki.g2.bx.psu.edu/Citing%20Galaxy" )}">How to Cite Galaxy</a></li> --- a/templates/webapps/galaxy/base_panels.mako Thu Aug 04 13:30:01 2011 -0400 +++ b/templates/webapps/galaxy/base_panels.mako Thu Aug 04 13:39:58 2011 -0400 @@ -111,7 +111,7 @@ ## Help tab. <% menu_options = [ - ['Email comments, bug reports, or suggestions', app.config.get( "bugs_email", "mailto:galaxy-bugs@bx.psu.edu" ) ], + ['Support', app.config.get( "support_url", "http://wiki.g2.bx.psu.edu/Support" ), "_blank" ], ['Galaxy Wiki', app.config.get( "wiki_url", "http://wiki.g2.bx.psu.edu/" ), "_blank" ], ['Video tutorials (screencasts)', app.config.get( "screencasts_url", "http://galaxycast.org" ), "_blank" ], ['How to Cite Galaxy', app.config.get( "screencasts_url", "http://wiki.g2.bx.psu.edu/Citing%20Galaxy" ), "_blank" ] 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.