Changeset - f47f27a6b54e
[Not reviewed]
beta
0 2 0
Marcin Kuzminski - 14 years ago 2012-03-12 20:32:58
marcin@python-works.com
fixes for #393 py2.5 compatability for url generators
2 files changed with 3 insertions and 1 deletions:
0 comments (0 inline, 0 general)
docs/changelog.rst
Show inline comments
 
@@ -29,6 +29,7 @@ fixes
 
- fixed issue with escaping < and > in changeset commits
 
- fixed error occurring during recursive group creation in API 
 
  create_repo function
 
- fixed #393 py2.5 fixes for routes url generator
 

	
 
1.3.3 (**2012-03-02**)
 
----------------------
rhodecode/controllers/changeset.py
Show inline comments
 
@@ -68,7 +68,7 @@ def get_ignore_ws(fid, GET):
 

	
 

	
 
def _ignorews_url(fileid=None):
 

	
 
    fileid = str(fileid)
 
    params = defaultdict(list)
 
    lbl = _('show white space')
 
    ig_ws = get_ignore_ws(fileid, request.GET)
 
@@ -118,6 +118,7 @@ def _context_url(fileid=None):
 

	
 
    :param fileid:
 
    """
 
    fileid = str(fileid)
 
    ig_ws = get_ignore_ws(fileid, request.GET)
 
    ln_ctx = (get_line_ctx(fileid, request.GET) or 3) * 2
 

	
0 comments (0 inline, 0 general)