1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/07fb676b0a1d/ Changeset: 07fb676b0a1d User: Dave Bouvier Date: 2013-06-14 18:16:02 Summary: Add defaults to the tool shed's config.py for the toolbox dynamic filtering feature. Affected #: 1 file diff -r 3636ba2f4439b7b61f25425698f8e0be9f0f6f07 -r 07fb676b0a1d57f9352a0b9048bca9914b4095b6 lib/galaxy/webapps/tool_shed/config.py --- a/lib/galaxy/webapps/tool_shed/config.py +++ b/lib/galaxy/webapps/tool_shed/config.py @@ -6,7 +6,7 @@ import logging, logging.config from optparse import OptionParser import ConfigParser -from galaxy.util import string_as_bool +from galaxy.util import string_as_bool, listify from galaxy import eggs import pkg_resources @@ -44,6 +44,9 @@ self.test_conf = resolve_path( kwargs.get( "test_conf", "" ), self.root ) self.id_secret = kwargs.get( "id_secret", "USING THE DEFAULT IS NOT SECURE!" ) # Tool stuff + self.tool_filters = listify( kwargs.get( "tool_filters", [] ) ) + self.tool_label_filters = listify( kwargs.get( "tool_label_filters", [] ) ) + self.tool_section_filters = listify( kwargs.get( "tool_section_filters", [] ) ) self.tool_path = resolve_path( kwargs.get( "tool_path", "tools" ), self.root ) self.tool_secret = kwargs.get( "tool_secret", "" ) self.tool_data_path = resolve_path( kwargs.get( "tool_data_path", "shed-tool-data" ), os.getcwd() ) 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.