Switch to unified view

a/Allura/allura/controllers/project.py b/Allura/allura/controllers/project.py
...
...
249
249
250
    @expose('json:')
250
    @expose('json:')
251
    def _nav(self):
251
    def _nav(self):
252
        return dict(menu=[
252
        return dict(menu=[
253
                dict(name=s.label, url=s.url, icon=s.ui_icon)
253
                dict(name=s.label, url=s.url, icon=s.ui_icon)
254
                for s in c.project.sitemap() ])
254
                for s in c.project.sitemap()])
255
255
256
    @expose()
256
    @expose()
257
    def _lookup(self, name, *remainder):
257
    def _lookup(self, name, *remainder):
258
        name = unquote(name)
258
        name = unquote(name)
259
        if not h.re_path_portion.match(name):
259
        if not h.re_path_portion.match(name):