X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/8aad28a2a098d4f6c0401070e28081c55d8d1e6e..067104fc328a25677564058f5443267c94db3432:/middleware.py diff --git a/middleware.py b/middleware.py index fa30ef6..c0b1e9e 100644 --- a/middleware.py +++ b/middleware.py @@ -15,8 +15,13 @@ class LazyNode(object): except Site.DoesNotExist: current_site = None + path = request._cached_node_path + trailing_slash = False + if path[-1] == '/': + trailing_slash = True + try: - node, subpath = Node.objects.get_with_path(request._cached_node_path, root=getattr(current_site, 'root_node', None), absolute_result=False) + node, subpath = Node.objects.get_with_path(path, root=getattr(current_site, 'root_node', None), absolute_result=False) except Node.DoesNotExist: node = None @@ -24,6 +29,10 @@ class LazyNode(object): if subpath is None: subpath = "" subpath = "/" + subpath + + if trailing_slash and subpath[-1] != "/": + subpath += "/" + node.subpath = subpath request._found_node = node