Show More
@@ -29,6 +29,7 b' fixes' | |||||
29 | - fixed issue with escaping < and > in changeset commits |
|
29 | - fixed issue with escaping < and > in changeset commits | |
30 | - fixed error occurring during recursive group creation in API |
|
30 | - fixed error occurring during recursive group creation in API | |
31 | create_repo function |
|
31 | create_repo function | |
|
32 | - fixed #393 py2.5 fixes for routes url generator | |||
32 |
|
33 | |||
33 | 1.3.3 (**2012-03-02**) |
|
34 | 1.3.3 (**2012-03-02**) | |
34 | ---------------------- |
|
35 | ---------------------- |
@@ -68,7 +68,7 b' def get_ignore_ws(fid, GET):' | |||||
68 |
|
68 | |||
69 |
|
69 | |||
70 | def _ignorews_url(fileid=None): |
|
70 | def _ignorews_url(fileid=None): | |
71 |
|
71 | fileid = str(fileid) | ||
72 | params = defaultdict(list) |
|
72 | params = defaultdict(list) | |
73 | lbl = _('show white space') |
|
73 | lbl = _('show white space') | |
74 | ig_ws = get_ignore_ws(fileid, request.GET) |
|
74 | ig_ws = get_ignore_ws(fileid, request.GET) | |
@@ -118,6 +118,7 b' def _context_url(fileid=None):' | |||||
118 |
|
118 | |||
119 | :param fileid: |
|
119 | :param fileid: | |
120 | """ |
|
120 | """ | |
|
121 | fileid = str(fileid) | |||
121 | ig_ws = get_ignore_ws(fileid, request.GET) |
|
122 | ig_ws = get_ignore_ws(fileid, request.GET) | |
122 | ln_ctx = (get_line_ctx(fileid, request.GET) or 3) * 2 |
|
123 | ln_ctx = (get_line_ctx(fileid, request.GET) or 3) * 2 | |
123 |
|
124 |
General Comments 0
You need to be logged in to leave comments.
Login now