~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/controllers/search_ui.py

  • Committer: Michael Hudson
  • Date: 2008-09-09 22:42:27 UTC
  • mto: This revision was merged to the branch mainline in revision 220.
  • Revision ID: michael.hudson@canonical.com-20080909224227-iwd9s1neje4d1pb6
fix pyflakes warnings, including nameerror in annotate_ui.py

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
22
19
from loggerhead.controllers import TemplatedBranchView
23
20
from loggerhead import search
24
21
 
25
22
 
26
23
class SearchUI(TemplatedBranchView):
27
24
    """
28
 
    
 
25
 
29
26
    Class to output progressive search result terms.
30
27
    """
31
28