# HG changeset patch # User Marcin Kuzminski # Date 1364596613 -3600 # Node ID be78bf3b1a1f43f049fa3bcaba56d9c8860a67d3 # Parent 336184b9f4cf3c43e7737ee349d3bab19401ad3f added url quote in clone url. fixes issue #809 diff -r 336184b9f4cf -r be78bf3b1a1f rhodecode/controllers/summary.py --- a/rhodecode/controllers/summary.py Fri Mar 29 23:33:02 2013 +0100 +++ b/rhodecode/controllers/summary.py Fri Mar 29 23:36:53 2013 +0100 @@ -37,13 +37,14 @@ from beaker.cache import cache_region, region_invalidate +from rhodecode.lib import helpers as h from rhodecode.lib.compat import product from rhodecode.lib.vcs.exceptions import ChangesetError, EmptyRepositoryError, \ NodeDoesNotExistError from rhodecode.config.conf import ALL_READMES, ALL_EXTS, LANGUAGES_EXTENSIONS_MAP from rhodecode.model.db import Statistics, CacheInvalidation from rhodecode.lib.utils import jsonify -from rhodecode.lib.utils2 import safe_unicode +from rhodecode.lib.utils2 import safe_unicode, safe_str from rhodecode.lib.auth import LoginRequired, HasRepoPermissionAnyDecorator,\ NotAnonymous from rhodecode.lib.base import BaseRepoController, render @@ -101,10 +102,10 @@ 'pass': password, 'scheme': parsed_url.scheme, 'netloc': parsed_url.netloc, - 'path': decoded_path + 'path': urllib.quote(safe_str(decoded_path)) } - uri = uri_tmpl % uri_dict + uri = (uri_tmpl % uri_dict) # generate another clone url by id uri_dict.update( {'path': decoded_path.replace(repo_name, '_%s' % c.dbrepo.repo_id)} diff -r 336184b9f4cf -r be78bf3b1a1f rhodecode/templates/summary/summary.html --- a/rhodecode/templates/summary/summary.html Fri Mar 29 23:33:02 2013 +0100 +++ b/rhodecode/templates/summary/summary.html Fri Mar 29 23:36:53 2013 +0100 @@ -116,8 +116,8 @@
- - + +
${_('Show by ID')}