~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/controllers/search_ui.py

use a pretty template for the directory listings

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
17
#
18
18
 
 
19
from paste.httpexceptions import HTTPServerError
 
20
from loggerhead import history
 
21
from loggerhead import util
19
22
from loggerhead.controllers import TemplatedBranchView
20
23
from loggerhead import search
21
24
 
22
25
 
23
26
class SearchUI(TemplatedBranchView):
24
27
    """
25
 
 
 
28
    
26
29
    Class to output progressive search result terms.
27
30
    """
28
31