@@ -26,12 +26,13 @@ fixes
- fixed #390 cache invalidation problems on repos inside group
- fixed #385 clone by ID url was loosing proxy prefix in URL
- fixed some unicode problems with waitress
- 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**)
----------------------
news
++++
@@ -65,13 +65,13 @@ def get_ignore_ws(fid, GET):
except:
pass
return ig_ws_global
def _ignorews_url(fileid=None):
fileid = str(fileid)
params = defaultdict(list)
lbl = _('show white space')
ig_ws = get_ignore_ws(fileid, request.GET)
ln_ctx = get_line_ctx(fileid, request.GET)
# global option
if fileid is None:
@@ -115,12 +115,13 @@ def get_line_ctx(fid, GET):
def _context_url(fileid=None):
"""
Generates url for context lines
:param fileid:
ln_ctx = (get_line_ctx(fileid, request.GET) or 3) * 2
Status change: