~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/controllers/changelog_ui.py

  • Committer: Robey Pointer
  • Date: 2007-01-16 03:53:02 UTC
  • Revision ID: robey@lag.net-20070116035302-wzxy5sig3lugvpib
make index_freq a config

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
from loggerhead import util
27
27
 
28
28
 
 
29
# just thinking out loud here...
 
30
#
 
31
# so, when browsing around, there are 3 pieces of context:
 
32
#     - starting revid 
 
33
#         the current beginning of navigation (navigation continues back to
 
34
#         the original revision) -- this may not be along the primary revision
 
35
#         path since the user may have navigated into a branch
 
36
#     - file_id
 
37
#         if navigating the revisions that touched a file
 
38
#     - current revid
 
39
#         current location along the navigation path (while browsing)
 
40
#
 
41
# current revid is given on the url path.  'file_id' and 'starting revid' are
 
42
# handed along as params.
29
43
 
30
44
 
31
45
class ChangeLogUI (object):
56
70
        
57
71
        try:
58
72
            revid, start_revid, revid_list = h.get_view(revid, start_revid, file_id, query)
59
 
            kw['start_revid'] = start_revid
60
 
            util.set_context(kw)
61
 
            
62
73
            if (query is not None) and (len(revid_list) == 0):
63
74
                search_failed = True
64
75