comparison rhodecode/controllers/changeset.py @ 2068:f664d3b57fa4 beta

p2.5 fixes
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 29 Feb 2012 02:38:14 +0200
parents 324ac367a4da
children 3aae2f18e5ab
comparison
equal deleted inserted replaced
2067:de372c3a329e 2068:f664d3b57fa4
51 log = logging.getLogger(__name__) 51 log = logging.getLogger(__name__)
52 52
53 53
54 def anchor_url(revision, path): 54 def anchor_url(revision, path):
55 fid = h.FID(revision, path) 55 fid = h.FID(revision, path)
56 return h.url.current(anchor=fid, **request.GET) 56 return h.url.current(anchor=fid, **dict(request.GET))
57 57
58 58
59 def get_ignore_ws(fid, GET): 59 def get_ignore_ws(fid, GET):
60 ig_ws_global = request.GET.get('ignorews') 60 ig_ws_global = request.GET.get('ignorews')
61 ig_ws = filter(lambda k: k.startswith('WS'), GET.getall(fid)) 61 ig_ws = filter(lambda k: k.startswith('WS'), GET.getall(fid))