|
a/Allura/allura/controllers/search.py |
|
b/Allura/allura/controllers/search.py |
|
... |
|
... |
94 |
|
94 |
|
95 |
@expose()
|
95 |
@expose()
|
96 |
def _lookup(self, category_name, *remainder):
|
96 |
def _lookup(self, category_name, *remainder):
|
97 |
return ProjectBrowseController(category_name=category_name, parent_category=self.category), remainder
|
97 |
return ProjectBrowseController(category_name=category_name, parent_category=self.category), remainder
|
98 |
|
98 |
|
99 |
@expose('allura.templates.project_list')
|
99 |
@expose('jinja:project_list.html')
|
100 |
@without_trailing_slash
|
100 |
@without_trailing_slash
|
101 |
def index(self, **kw):
|
101 |
def index(self, **kw):
|
102 |
c.project_summary = W.project_summary
|
102 |
c.project_summary = W.project_summary
|
103 |
projects, count = self._find_projects()
|
103 |
projects, count = self._find_projects()
|
104 |
title=self._build_title()
|
104 |
title=self._build_title()
|