~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/controllers/changelog_ui.py

  • Committer: Martin Albisetti
  • Date: 2008-07-26 17:53:10 UTC
  • mfrom: (185 jam_fixes)
  • mto: This revision was merged to the branch mainline in revision 187.
  • Revision ID: argentina@gmail.com-20080726175310-fa95p4n9egnpy0hr
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
18
#
19
19
 
20
 
import time
21
 
 
22
 
import turbogears
23
 
from cherrypy import InternalError
 
20
from paste.httpexceptions import HTTPServerError
24
21
 
25
22
from loggerhead import util
26
 
 
27
 
 
28
 
class ChangeLogUI (object):
29
 
    
30
 
    def __init__(self, branch):
31
 
        # BranchView object
32
 
        self._branch = branch
33
 
        self.log = branch.log
34
 
        
35
 
    @util.strip_whitespace
36
 
    @turbogears.expose(html='loggerhead.templates.changelog')
37
 
    def default(self, *args, **kw):
38
 
        z = time.time()
39
 
        h = self._branch.get_history()
40
 
        config = self._branch.config
41
 
 
42
 
        h._branch.lock_read()
 
23
from loggerhead.controllers import TemplatedBranchView
 
24
 
 
25
 
 
26
class ChangeLogUI(TemplatedBranchView):
 
27
 
 
28
    template_path = 'loggerhead.templates.changelog'
 
29
 
 
30
    def get_values(self, h, args, kw, headers):
 
31
        if args:
 
32
            revid = h.fix_revid(args[0])
 
33
        else:
 
34
            revid = None
 
35
 
 
36
        filter_file_id = kw.get('filter_file_id', None)
 
37
        query = kw.get('q', None)
 
38
        start_revid = h.fix_revid(kw.get('start_revid', None))
 
39
        orig_start_revid = start_revid
 
40
        pagesize = 20#int(config.get('pagesize', '20'))
 
41
        search_failed = False
 
42
 
43
43
        try:
44
 
            if len(args) > 0:
45
 
                revid = h.fix_revid(args[0])
 
44
            revid, start_revid, revid_list = h.get_view(
 
45
                revid, start_revid, filter_file_id, query)
 
46
            util.set_context(kw)
 
47
 
 
48
            if (query is not None) and (len(revid_list) == 0):
 
49
                search_failed = True
 
50
 
 
51
            if len(revid_list) == 0:
 
52
                scan_list = revid_list
46
53
            else:
47
 
                revid = None
48
 
 
49
 
            file_id = kw.get('file_id', None)
50
 
            query = kw.get('q', None)
51
 
            start_revid = h.fix_revid(kw.get('start_revid', None))
52
 
            orig_start_revid = start_revid
53
 
            pagesize = int(config.get('pagesize', '20'))
54
 
            search_failed = False
55
 
 
56
 
            try:
57
 
                revid, start_revid, revid_list = h.get_view(revid, start_revid, file_id, query)
58
 
                kw['start_revid'] = start_revid
59
 
                util.set_context(kw)
60
 
 
61
 
                if (query is not None) and (len(revid_list) == 0):
62
 
                    search_failed = True
63
 
 
64
 
                if len(revid_list) == 0:
65
 
                    scan_list = revid_list
 
54
                if revid in revid_list: # XXX is this always true?
 
55
                    i = revid_list.index(revid)
66
56
                else:
67
 
                    if revid in revid_list: # XXX is this always true?
68
 
                        i = revid_list.index(revid)
69
 
                    else:
70
 
                        i = None
71
 
                    scan_list = revid_list[i:]
72
 
                change_list = scan_list[:pagesize]
73
 
                changes = list(h.get_changes(change_list))
74
 
                h.add_changes(changes)
75
 
            except:
76
 
                self.log.exception('Exception fetching changes')
77
 
                raise InternalError('Could not fetch changes')
78
 
 
79
 
            navigation = util.Container(pagesize=pagesize, revid=revid, start_revid=start_revid, revid_list=revid_list,
80
 
                                        file_id=file_id, scan_url='/changes', branch=self._branch, feed=True)
81
 
            if query is not None:
82
 
                navigation.query = query
83
 
            util.fill_in_navigation(navigation)
84
 
 
85
 
            # add parent & merge-point branch-nick info, in case it's useful
86
 
            h.get_branch_nicks(changes)
87
 
 
88
 
            # does every change on this page have the same committer?  if so,
89
 
            # tell the template to show committer info in the "details block"
90
 
            # instead of on each line.
91
 
            all_same_author = True
92
 
 
93
 
            if changes:
94
 
                author = changes[0].author
95
 
                for e in changes[1:]:
96
 
                    if e.author != author:
97
 
                        all_same_author = False
98
 
                        break
99
 
 
100
 
            vals = {
101
 
                'branch': self._branch,
102
 
                'changes': changes,
103
 
                'util': util,
104
 
                'history': h,
105
 
                'revid': revid,
106
 
                'navigation': navigation,
107
 
                'file_id': file_id,
108
 
                'start_revid': start_revid,
109
 
                'viewing_from': (orig_start_revid is not None) and (orig_start_revid != h.last_revid),
110
 
                'query': query,
111
 
                'search_failed': search_failed,
112
 
                'all_same_author': all_same_author,
113
 
            }
114
 
            h.flush_cache()
115
 
            self.log.info('/changes %r: %r secs' % (revid, time.time() - z))
116
 
            return vals
117
 
        finally:
118
 
            h._branch.unlock()
 
57
                    i = None
 
58
                scan_list = revid_list[i:]
 
59
            change_list = scan_list[:pagesize]
 
60
            changes = list(h.get_changes(change_list))
 
61
            h.add_changes(changes)
 
62
        except:
 
63
            self.log.exception('Exception fetching changes')
 
64
            raise HTTPServerError('Could not fetch changes')
 
65
 
 
66
        navigation = util.Container(
 
67
            pagesize=pagesize, revid=revid, start_revid=start_revid,
 
68
            revid_list=revid_list, filter_file_id=filter_file_id,
 
69
            scan_url='/changes', branch=self._branch, feed=True, history=h)
 
70
        if query is not None:
 
71
            navigation.query = query
 
72
        util.fill_in_navigation(navigation)
 
73
 
 
74
        # add parent & merge-point branch-nick info, in case it's useful
 
75
        h.get_branch_nicks(changes)
 
76
 
 
77
        # does every change on this page have the same committer?  if so,
 
78
        # tell the template to show committer info in the "details block"
 
79
        # instead of on each line.
 
80
        all_same_author = True
 
81
 
 
82
        if changes:
 
83
            author = changes[0].author
 
84
            for e in changes[1:]:
 
85
                if e.author != author:
 
86
                    all_same_author = False
 
87
                    break
 
88
 
 
89
        return {
 
90
            'branch': self._branch,
 
91
            'changes': changes,
 
92
            'util': util,
 
93
            'history': h,
 
94
            'revid': revid,
 
95
            'navigation': navigation,
 
96
            'filter_file_id': filter_file_id,
 
97
            'start_revid': start_revid,
 
98
            'viewing_from': (orig_start_revid is not None) and (orig_start_revid != h.last_revid),
 
99
            'query': query,
 
100
            'search_failed': search_failed,
 
101
            'all_same_author': all_same_author,
 
102
            'url': self._branch.context_url,
 
103
        }