1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/5449a8b1c9d5/ Changeset: 5449a8b1c9d5 User: natefoo Date: 2014-06-05 20:46:56 Summary: Allow hiding tools from the toolbox config. Affected #: 1 file diff -r 3ecffd889d5c97478630cd127c8ac4681ec49872 -r 5449a8b1c9d531ee2347b2b219ffb7a2e0946590 lib/galaxy/tools/__init__.py --- a/lib/galaxy/tools/__init__.py +++ b/lib/galaxy/tools/__init__.py @@ -563,6 +563,8 @@ # a new repository, so any included tools can be loaded into the tool panel. can_load_into_panel_dict = True tool = self.load_tool( os.path.join( tool_path, path ), guid=guid, repository_id=repository_id ) + if string_as_bool(elem.get( 'hidden', False )): + tool.hidden = True key = 'tool_%s' % str( tool.id ) if can_load_into_panel_dict: if guid is not None: 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.