2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/26d7b89d9f89/ changeset: 26d7b89d9f89 user: dan date: 2013-02-21 21:26:15 summary: Fix for display_in_upload affected #: 1 file diff -r 8717485b3c6c78f709d352a63255e50ef978f57d -r 26d7b89d9f897a28876214c88faed215973e6fcd lib/galaxy/datatypes/registry.py --- a/lib/galaxy/datatypes/registry.py +++ b/lib/galaxy/datatypes/registry.py @@ -90,7 +90,7 @@ dtype = elem.get( 'type', None ) type_extension = elem.get( 'type_extension', None ) mimetype = elem.get( 'mimetype', None ) - display_in_upload = elem.get( 'display_in_upload', False ) + display_in_upload = galaxy.util.string_as_bool( elem.get( 'display_in_upload', False ) ) make_subclass = galaxy.util.string_as_bool( elem.get( 'subclass', False ) ) # Proprietary datatypes included in installed tool shed repositories will include two special attributes # (proprietary_path and proprietary_datatype_module) if they depend on proprietary datatypes classes. @@ -107,7 +107,7 @@ in_memory_dtype = elem.get( 'type', None ) in_memory_type_extension = elem.get( 'type_extension', None ) in_memory_mimetype = elem.get( 'mimetype', None ) - in_memory_display_in_upload = elem.get( 'display_in_upload', False ) + in_memory_display_in_upload = galaxy.util.string_as_bool( elem.get( 'display_in_upload', False ) ) in_memory_make_subclass = galaxy.util.string_as_bool( elem.get( 'subclass', False ) ) if in_memory_dtype == dtype and in_memory_type_extension == type_extension and in_memory_mimetype == mimetype \ and in_memory_display_in_upload == display_in_upload and in_memory_make_subclass == make_subclass: https://bitbucket.org/galaxy/galaxy-central/commits/31b09605fcc3/ changeset: 31b09605fcc3 branch: stable user: dan date: 2013-02-21 21:26:15 summary: Fix for display_in_upload affected #: 1 file diff -r a0741e6798f28f05bb9bb17b572ce1ea4c62e1f0 -r 31b09605fcc313b3e93efb927ac328bfcc42ad82 lib/galaxy/datatypes/registry.py --- a/lib/galaxy/datatypes/registry.py +++ b/lib/galaxy/datatypes/registry.py @@ -90,7 +90,7 @@ dtype = elem.get( 'type', None ) type_extension = elem.get( 'type_extension', None ) mimetype = elem.get( 'mimetype', None ) - display_in_upload = elem.get( 'display_in_upload', False ) + display_in_upload = galaxy.util.string_as_bool( elem.get( 'display_in_upload', False ) ) make_subclass = galaxy.util.string_as_bool( elem.get( 'subclass', False ) ) # Proprietary datatypes included in installed tool shed repositories will include two special attributes # (proprietary_path and proprietary_datatype_module) if they depend on proprietary datatypes classes. @@ -107,7 +107,7 @@ in_memory_dtype = elem.get( 'type', None ) in_memory_type_extension = elem.get( 'type_extension', None ) in_memory_mimetype = elem.get( 'mimetype', None ) - in_memory_display_in_upload = elem.get( 'display_in_upload', False ) + in_memory_display_in_upload = galaxy.util.string_as_bool( elem.get( 'display_in_upload', False ) ) in_memory_make_subclass = galaxy.util.string_as_bool( elem.get( 'subclass', False ) ) if in_memory_dtype == dtype and in_memory_type_extension == type_extension and in_memory_mimetype == mimetype \ and in_memory_display_in_upload == display_in_upload and in_memory_make_subclass == make_subclass: 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.