1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/31aca8c9901e/ changeset: 31aca8c9901e user: greg date: 2013-02-18 22:00:43 summary: Display the Orphan column in the valid tool dependencies container in the tool shed. affected #: 2 files diff -r ca145a616aee1ccb2499b115be9aeacc9ca2ecbd -r 31aca8c9901ecf4ad852f7114d6550d997374888 lib/galaxy/webapps/community/util/container_util.py --- a/lib/galaxy/webapps/community/util/container_util.py +++ b/lib/galaxy/webapps/community/util/container_util.py @@ -514,7 +514,7 @@ installation_status=None, repository_id=None, tool_dependency_id=None, - is_orphan=None ) + is_orphan='Orphan' ) folder.tool_dependencies.append( tool_dependency ) is_orphan_description = "these dependencies may not be required by tools in this repository" for dependency_key, requirements_dict in tool_dependencies.items(): diff -r ca145a616aee1ccb2499b115be9aeacc9ca2ecbd -r 31aca8c9901ecf4ad852f7114d6550d997374888 templates/webapps/community/repository/common.mako --- a/templates/webapps/community/repository/common.mako +++ b/templates/webapps/community/repository/common.mako @@ -628,13 +628,17 @@ ${version_str | h} </${cell_type}><${cell_type}>${tool_dependency.type | h}</${cell_type}> - %if trans.webapp.name == 'galaxy': - %if is_missing: - <${cell_type}>${tool_dependency.installation_status | h}</${cell_type}> - %elif tool_dependency.install_dir: - <${cell_type}>${tool_dependency.install_dir | h}</${cell_type}> + <${cell_type}> + %if trans.webapp.name == 'galaxy': + %if is_missing: + ${tool_dependency.installation_status | h} + %elif tool_dependency.install_dir: + ${tool_dependency.install_dir | h} + %endif + %else: + ${tool_dependency.is_orphan | h} %endif - %endif + </${cell_type}></tr><% my_row = row_counter.count 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.