commit/galaxy-central: greg: Invalid tools contained in repositories can only be loaded in the tool shed, so display the container label accordingly.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/221ecd7caba6/ Changeset: 221ecd7caba6 User: greg Date: 2013-09-30 19:29:05 Summary: Invalid tools contained in repositories can only be loaded in the tool shed, so display the container label accordingly. Affected #: 1 file diff -r 4bcc5a236dc5d337ddeab616e32b908b8deea325 -r 221ecd7caba6d0196320f508aa1389b757997ab7 templates/webapps/tool_shed/repository/common.mako --- a/templates/webapps/tool_shed/repository/common.mako +++ b/templates/webapps/tool_shed/repository/common.mako @@ -276,7 +276,8 @@ else: folder_label = "%s<i> - click the name to preview the tool and use the pop-up menu to inspect all metadata</i>" % folder_label elif folder.invalid_tools: - folder_label = "%s<i> - click the tool config file name to see why the tool is invalid</i>" % folder_label + if trans.webapp.name == 'tool_shed': + folder_label = "%s<i> - click the tool config file name to see why the tool is invalid</i>" % folder_label elif folder.tool_dependencies: if folder.description: folder_label = "%s<i> - %s</i>" % ( folder_label, folder.description ) 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