commit/galaxy-central: guerler: Re-insert api tools name fix
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/9b2268629fa4/ Changeset: 9b2268629fa4 User: guerler Date: 2013-10-29 17:23:14 Summary: Re-insert api tools name fix Affected #: 2 files diff -r c48b3a92775bd43719e21052e90c928efb1e0023 -r 9b2268629fa4d5c8a2884cac242724c7319f0a50 lib/galaxy/webapps/galaxy/buildapp.py --- a/lib/galaxy/webapps/galaxy/buildapp.py +++ b/lib/galaxy/webapps/galaxy/buildapp.py @@ -155,7 +155,7 @@ webapp.mapper.resource( 'role', 'roles', path_prefix='/api' ) webapp.mapper.resource( 'group', 'groups', path_prefix='/api' ) webapp.mapper.resource_with_deleted( 'quota', 'quotas', path_prefix='/api' ) - #webapp.mapper.connect( '/api/tools/{id:.*?}', action='show', controller="tools" ) + webapp.mapper.connect( '/api/tools/{id:.*?}', action='show', controller="tools" ) webapp.mapper.resource( 'tool', 'tools', path_prefix='/api' ) webapp.mapper.resource_with_deleted( 'user', 'users', path_prefix='/api' ) webapp.mapper.resource( 'genome', 'genomes', path_prefix='/api' ) diff -r c48b3a92775bd43719e21052e90c928efb1e0023 -r 9b2268629fa4d5c8a2884cac242724c7319f0a50 static/scripts/galaxy.upload.js --- a/static/scripts/galaxy.upload.js +++ b/static/scripts/galaxy.upload.js @@ -206,7 +206,7 @@ return null; // configure uploadbox - this.uploadbox.configure({url : galaxy_config.root + "api/tools/", paramname : "files_0|file_data"}); + this.uploadbox.configure({url : galaxy_config.root + "api/tools", paramname : "files_0|file_data"}); // configure tool tool_input = {}; 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