commit/galaxy-central: dan: Add pipe (|) to the set of VALID_CHARS in shed_util_common.py. Fixes an issue with e.g. ReST display. TODO: Revisit this method and its usage throughout the toolshed and the toolshed interaction with Galaxy: e.g. is it still needed everywhere it is being used, and is it still doing what it is supposed to be doing?
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/29110e49c311/ Changeset: 29110e49c311 User: dan Date: 2013-08-27 22:21:16 Summary: Add pipe (|) to the set of VALID_CHARS in shed_util_common.py. Fixes an issue with e.g. ReST display. TODO: Revisit this method and its usage throughout the toolshed and the toolshed interaction with Galaxy: e.g. is it still needed everywhere it is being used, and is it still doing what it is supposed to be doing? Affected #: 1 file diff -r f8b3dbe32435516af63e449cedb2e2fc9eb5bf26 -r 29110e49c311339c521525f0b0884ce8eb172129 lib/tool_shed/util/shed_util_common.py --- a/lib/tool_shed/util/shed_util_common.py +++ b/lib/tool_shed/util/shed_util_common.py @@ -37,7 +37,7 @@ INITIAL_CHANGELOG_HASH = '000000000000' MAX_CONTENT_SIZE = 1048576 MAX_DISPLAY_SIZE = 32768 -VALID_CHARS = set( string.letters + string.digits + "'\"-=_.()/+*^,:?!#[]%\\$@;{}&<>" ) +VALID_CHARS = set( string.letters + string.digits + "'\"-=_.()/+*^,:?!#[]%\\$@;{}&<>|" ) DATATYPES_CONFIG_FILENAME = 'datatypes_conf.xml' REPOSITORY_DATA_MANAGER_CONFIG_FILENAME = 'data_manager_conf.xml' 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