~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templatefunctions.py

  • Committer: Michael Hudson
  • Date: 2010-05-07 01:03:17 UTC
  • mfrom: (414.1.1 loggerhead)
  • Revision ID: michael.hudson@canonical.com-20100507010317-kr5ipx6qgn65636o
(mkanat) use a global lock to protect access to the lru cache

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# This program is free software; you can redistribute it and/or modify
 
3
# it under the terms of the GNU General Public License as published by
 
4
# the Free Software Foundation; either version 2 of the License, or
 
5
# (at your option) any later version.
 
6
#
 
7
# This program is distributed in the hope that it will be useful,
 
8
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
# GNU General Public License for more details.
 
11
#
 
12
# You should have received a copy of the GNU General Public License
 
13
# along with this program; if not, write to the Free Software
 
14
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
15
#
 
16
 
 
17
import cgi
1
18
import os
2
 
import turbogears
3
 
from turbosimpletal.zptsupport import zpt
 
19
 
 
20
import pkg_resources
 
21
 
 
22
import bzrlib
 
23
 
 
24
import loggerhead
 
25
from loggerhead.zptsupport import zpt
 
26
 
4
27
 
5
28
templatefunctions = {}
 
29
 
 
30
 
6
31
def templatefunc(func):
7
32
    templatefunctions[func.__name__] = func
8
33
    return func
9
34
 
10
35
 
11
36
_base = os.path.dirname(__file__)
 
37
 
 
38
 
12
39
def _pt(name):
13
40
    return zpt(os.path.join(_base, 'templates', name + '.pt'))
14
41
 
15
42
 
16
43
templatefunctions['macros'] = _pt('macros').macros
 
44
templatefunctions['breadcrumbs'] = _pt('breadcrumbs').macros
 
45
 
17
46
 
18
47
@templatefunc
19
 
def file_change_summary(url, entry, modified_file_link):
 
48
def file_change_summary(url, entry, file_changes, style='normal', currently_showing=None):
 
49
    if style == 'fragment':
 
50
        def file_link(filename):
 
51
            if currently_showing and filename == currently_showing:
 
52
                return '<b><a href="#%s">%s</a></b>' % (
 
53
                    cgi.escape(filename), cgi.escape(filename))
 
54
            else:
 
55
                return revision_link(
 
56
                    url, entry.revno, filename, '#' + filename)
 
57
    else:
 
58
        def file_link(filename):
 
59
            return '<a href="%s%s" title="View changes to %s in revision %s">%s</a>' % (
 
60
                url(['/revision', entry.revno]), '#' + filename, cgi.escape(filename),
 
61
                cgi.escape(entry.revno), cgi.escape(filename))
20
62
    return _pt('revisionfilechanges').expand(
21
 
        url=url, entry=entry, modified_file_link=modified_file_link,
22
 
        **templatefunctions)
 
63
        entry=entry, file_changes=file_changes, file_link=file_link, **templatefunctions)
 
64
 
23
65
 
24
66
@templatefunc
25
 
def revisioninfo(url, branch, entry, modified_file_link=None):
 
67
def revisioninfo(url, branch, entry, file_changes=None, currently_showing=None, merged_in=None):
26
68
    from loggerhead import util
27
69
    return _pt('revisioninfo').expand(
28
70
        url=url, change=entry, branch=branch, util=util,
29
 
        modified_file_link=modified_file_link,
30
 
        **templatefunctions)
31
 
 
32
 
@templatefunc
33
 
def collapse_button(group, name, normal='block'):
 
71
        file_changes=file_changes, currently_showing=currently_showing,
 
72
        merged_in=merged_in, **templatefunctions)
 
73
 
 
74
 
 
75
@templatefunc
 
76
def branchinfo(branch):
 
77
    if branch.served_url is not None:
 
78
        return _pt('branchinfo').expand(branch=branch, **templatefunctions)
 
79
    else:
 
80
        return ''
 
81
 
 
82
 
 
83
@templatefunc
 
84
def collapse_button(group, name, branch, normal='block'):
34
85
    return _pt('collapse-button').expand(
35
 
        group=group, name=name, normal=normal, tg=turbogears,
 
86
        group=group, name=name, normal=normal, branch=branch,
36
87
        **templatefunctions)
37
88
 
 
89
 
38
90
@templatefunc
39
 
def collapse_all_button(group, normal='block'):
 
91
def collapse_all_button(group, branch, normal='block'):
40
92
    return _pt('collapse-all-button').expand(
41
 
        group=group, normal=normal, tg=turbogears,
 
93
        group=group, normal=normal, branch=branch,
42
94
        **templatefunctions)
43
95
 
 
96
 
44
97
@templatefunc
45
98
def revno_with_nick(entry):
46
99
    if entry.branch_nick:
47
100
        extra = ' ' + entry.branch_nick
48
101
    else:
49
102
        extra = ''
50
 
    return '(%s%s)'%(entry.revno, extra)
51
 
 
52
 
@templatefunc
53
 
def modified_file_link_rev(url, entry, item):
54
 
    return _pt('modified-file-link-rev').expand(
55
 
        url=url, entry=entry, item=item,
56
 
        **templatefunctions)
57
 
 
58
 
@templatefunc
59
 
def modified_file_link_log(url, entry, item):
60
 
    return _pt('modified-file-link-log').expand(
61
 
        url=url, entry=entry, item=item,
62
 
        **templatefunctions)
 
103
    return '(%s%s)' % (entry.revno, extra)
 
104
 
 
105
 
 
106
@templatefunc
 
107
def search_box(branch, navigation):
 
108
    return _pt('search-box').expand(branch=branch, navigation=navigation,
 
109
        **templatefunctions)
 
110
 
 
111
 
 
112
@templatefunc
 
113
def feed_link(branch, url):
 
114
    return _pt('feed-link').expand(branch=branch, url=url, **templatefunctions)
 
115
 
 
116
 
 
117
@templatefunc
 
118
def menu(branch, url, fileview_active=False):
 
119
    return _pt('menu').expand(branch=branch, url=url,
 
120
        fileview_active=fileview_active, **templatefunctions)
 
121
 
 
122
 
 
123
@templatefunc
 
124
def annotate_link(url, revno, path):
 
125
    return '<a href="%s" title="Annotate %s">%s</a>' % (
 
126
        url(['/annotate', revno, path]), cgi.escape(path), cgi.escape(path))
 
127
 
 
128
@templatefunc
 
129
def revision_link(url, revno, path, frag=''):
 
130
    return '<a href="%s%s" title="View changes to %s in revision %s">%s</a>' % (
 
131
        url(['/revision', revno, path]), frag, cgi.escape(path),
 
132
        cgi.escape(revno), cgi.escape(path))
 
133
 
 
134
 
 
135
@templatefunc
 
136
def loggerhead_version():
 
137
    return loggerhead.__version__
 
138
 
 
139
_cached_generator_string = None
 
140
 
 
141
@templatefunc
 
142
def generator_string():
 
143
    global _cached_generator_string
 
144
    if _cached_generator_string is None:
 
145
        versions = []
 
146
 
 
147
        # TODO: Errors -- e.g. from a missing/invalid __version__ attribute, or
 
148
        # ValueError accessing Distribution.version -- should be non-fatal.
 
149
 
 
150
        versions.append(('Loggerhead', loggerhead.__version__))
 
151
 
 
152
        import sys
 
153
        python_version = bzrlib._format_version_tuple(sys.version_info)
 
154
        versions.append(('Python', python_version))
 
155
 
 
156
        versions.append(('Bazaar', bzrlib.__version__))
 
157
 
 
158
        Paste = pkg_resources.get_distribution('Paste')
 
159
        versions.append(('Paste', Paste.version))
 
160
 
 
161
        try:
 
162
            PasteDeploy = pkg_resources.get_distribution('PasteDeploy')
 
163
        except pkg_resources.DistributionNotFound:
 
164
            pass
 
165
        else:
 
166
            versions.append(('PasteDeploy', PasteDeploy.version))
 
167
 
 
168
        import simpletal
 
169
        versions.append(('SimpleTAL', simpletal.__version__))
 
170
 
 
171
        try:
 
172
            import pygments
 
173
        except ImportError:
 
174
            pass
 
175
        else:
 
176
            versions.append(('Pygments', pygments.__version__))
 
177
 
 
178
        try:
 
179
            from bzrlib.plugins import search
 
180
        except ImportError:
 
181
            pass
 
182
        else:
 
183
            bzr_search_version = bzrlib._format_version_tuple(
 
184
                search.version_info)
 
185
            versions.append(('bzr-search', bzr_search_version))
 
186
 
 
187
        # TODO: On old Python versions, elementtree may be used.
 
188
 
 
189
        try:
 
190
            import simplejson
 
191
        except ImportError:
 
192
            pass
 
193
        else:
 
194
            versions.append(('simplejson', simplejson.__version__))
 
195
 
 
196
        try:
 
197
            Dozer = pkg_resources.get_distribution('Dozer')
 
198
        except pkg_resources.DistributionNotFound:
 
199
            pass
 
200
        else:
 
201
            versions.append(('Dozer', Dozer.version))
 
202
 
 
203
        version_strings = ("%s/%s" % t for t in versions)
 
204
        _cached_generator_string = ' '.join(version_strings)
 
205
    return _cached_generator_string