##// END OF EJS Templates
hgweb: drop tmpl argument from webutil.showtag() and showbookmark()...
Yuya Nishihara -
r37931:16c7a6ac default
parent child Browse files
Show More
@@ -1,1477 +1,1477
1 #
1 #
2 # Copyright 21 May 2005 - (c) 2005 Jake Edge <jake@edge2.net>
2 # Copyright 21 May 2005 - (c) 2005 Jake Edge <jake@edge2.net>
3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
4 #
4 #
5 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7
7
8 from __future__ import absolute_import
8 from __future__ import absolute_import
9
9
10 import copy
10 import copy
11 import mimetypes
11 import mimetypes
12 import os
12 import os
13 import re
13 import re
14
14
15 from ..i18n import _
15 from ..i18n import _
16 from ..node import hex, short
16 from ..node import hex, short
17
17
18 from .common import (
18 from .common import (
19 ErrorResponse,
19 ErrorResponse,
20 HTTP_FORBIDDEN,
20 HTTP_FORBIDDEN,
21 HTTP_NOT_FOUND,
21 HTTP_NOT_FOUND,
22 get_contact,
22 get_contact,
23 paritygen,
23 paritygen,
24 staticfile,
24 staticfile,
25 )
25 )
26
26
27 from .. import (
27 from .. import (
28 archival,
28 archival,
29 dagop,
29 dagop,
30 encoding,
30 encoding,
31 error,
31 error,
32 graphmod,
32 graphmod,
33 pycompat,
33 pycompat,
34 revset,
34 revset,
35 revsetlang,
35 revsetlang,
36 scmutil,
36 scmutil,
37 smartset,
37 smartset,
38 templater,
38 templater,
39 templateutil,
39 templateutil,
40 )
40 )
41
41
42 from ..utils import (
42 from ..utils import (
43 stringutil,
43 stringutil,
44 )
44 )
45
45
46 from . import (
46 from . import (
47 webutil,
47 webutil,
48 )
48 )
49
49
50 __all__ = []
50 __all__ = []
51 commands = {}
51 commands = {}
52
52
53 class webcommand(object):
53 class webcommand(object):
54 """Decorator used to register a web command handler.
54 """Decorator used to register a web command handler.
55
55
56 The decorator takes as its positional arguments the name/path the
56 The decorator takes as its positional arguments the name/path the
57 command should be accessible under.
57 command should be accessible under.
58
58
59 When called, functions receive as arguments a ``requestcontext``,
59 When called, functions receive as arguments a ``requestcontext``,
60 ``wsgirequest``, and a templater instance for generatoring output.
60 ``wsgirequest``, and a templater instance for generatoring output.
61 The functions should populate the ``rctx.res`` object with details
61 The functions should populate the ``rctx.res`` object with details
62 about the HTTP response.
62 about the HTTP response.
63
63
64 The function returns a generator to be consumed by the WSGI application.
64 The function returns a generator to be consumed by the WSGI application.
65 For most commands, this should be the result from
65 For most commands, this should be the result from
66 ``web.res.sendresponse()``. Many commands will call ``web.sendtemplate()``
66 ``web.res.sendresponse()``. Many commands will call ``web.sendtemplate()``
67 to render a template.
67 to render a template.
68
68
69 Usage:
69 Usage:
70
70
71 @webcommand('mycommand')
71 @webcommand('mycommand')
72 def mycommand(web):
72 def mycommand(web):
73 pass
73 pass
74 """
74 """
75
75
76 def __init__(self, name):
76 def __init__(self, name):
77 self.name = name
77 self.name = name
78
78
79 def __call__(self, func):
79 def __call__(self, func):
80 __all__.append(self.name)
80 __all__.append(self.name)
81 commands[self.name] = func
81 commands[self.name] = func
82 return func
82 return func
83
83
84 @webcommand('log')
84 @webcommand('log')
85 def log(web):
85 def log(web):
86 """
86 """
87 /log[/{revision}[/{path}]]
87 /log[/{revision}[/{path}]]
88 --------------------------
88 --------------------------
89
89
90 Show repository or file history.
90 Show repository or file history.
91
91
92 For URLs of the form ``/log/{revision}``, a list of changesets starting at
92 For URLs of the form ``/log/{revision}``, a list of changesets starting at
93 the specified changeset identifier is shown. If ``{revision}`` is not
93 the specified changeset identifier is shown. If ``{revision}`` is not
94 defined, the default is ``tip``. This form is equivalent to the
94 defined, the default is ``tip``. This form is equivalent to the
95 ``changelog`` handler.
95 ``changelog`` handler.
96
96
97 For URLs of the form ``/log/{revision}/{file}``, the history for a specific
97 For URLs of the form ``/log/{revision}/{file}``, the history for a specific
98 file will be shown. This form is equivalent to the ``filelog`` handler.
98 file will be shown. This form is equivalent to the ``filelog`` handler.
99 """
99 """
100
100
101 if web.req.qsparams.get('file'):
101 if web.req.qsparams.get('file'):
102 return filelog(web)
102 return filelog(web)
103 else:
103 else:
104 return changelog(web)
104 return changelog(web)
105
105
106 @webcommand('rawfile')
106 @webcommand('rawfile')
107 def rawfile(web):
107 def rawfile(web):
108 guessmime = web.configbool('web', 'guessmime')
108 guessmime = web.configbool('web', 'guessmime')
109
109
110 path = webutil.cleanpath(web.repo, web.req.qsparams.get('file', ''))
110 path = webutil.cleanpath(web.repo, web.req.qsparams.get('file', ''))
111 if not path:
111 if not path:
112 return manifest(web)
112 return manifest(web)
113
113
114 try:
114 try:
115 fctx = webutil.filectx(web.repo, web.req)
115 fctx = webutil.filectx(web.repo, web.req)
116 except error.LookupError as inst:
116 except error.LookupError as inst:
117 try:
117 try:
118 return manifest(web)
118 return manifest(web)
119 except ErrorResponse:
119 except ErrorResponse:
120 raise inst
120 raise inst
121
121
122 path = fctx.path()
122 path = fctx.path()
123 text = fctx.data()
123 text = fctx.data()
124 mt = 'application/binary'
124 mt = 'application/binary'
125 if guessmime:
125 if guessmime:
126 mt = mimetypes.guess_type(path)[0]
126 mt = mimetypes.guess_type(path)[0]
127 if mt is None:
127 if mt is None:
128 if stringutil.binary(text):
128 if stringutil.binary(text):
129 mt = 'application/binary'
129 mt = 'application/binary'
130 else:
130 else:
131 mt = 'text/plain'
131 mt = 'text/plain'
132 if mt.startswith('text/'):
132 if mt.startswith('text/'):
133 mt += '; charset="%s"' % encoding.encoding
133 mt += '; charset="%s"' % encoding.encoding
134
134
135 web.res.headers['Content-Type'] = mt
135 web.res.headers['Content-Type'] = mt
136 filename = (path.rpartition('/')[-1]
136 filename = (path.rpartition('/')[-1]
137 .replace('\\', '\\\\').replace('"', '\\"'))
137 .replace('\\', '\\\\').replace('"', '\\"'))
138 web.res.headers['Content-Disposition'] = 'inline; filename="%s"' % filename
138 web.res.headers['Content-Disposition'] = 'inline; filename="%s"' % filename
139 web.res.setbodybytes(text)
139 web.res.setbodybytes(text)
140 return web.res.sendresponse()
140 return web.res.sendresponse()
141
141
142 def _filerevision(web, fctx):
142 def _filerevision(web, fctx):
143 f = fctx.path()
143 f = fctx.path()
144 text = fctx.data()
144 text = fctx.data()
145 parity = paritygen(web.stripecount)
145 parity = paritygen(web.stripecount)
146 ishead = fctx.filerev() in fctx.filelog().headrevs()
146 ishead = fctx.filerev() in fctx.filelog().headrevs()
147
147
148 if stringutil.binary(text):
148 if stringutil.binary(text):
149 mt = mimetypes.guess_type(f)[0] or 'application/octet-stream'
149 mt = mimetypes.guess_type(f)[0] or 'application/octet-stream'
150 text = '(binary:%s)' % mt
150 text = '(binary:%s)' % mt
151
151
152 def lines():
152 def lines():
153 for lineno, t in enumerate(text.splitlines(True)):
153 for lineno, t in enumerate(text.splitlines(True)):
154 yield {"line": t,
154 yield {"line": t,
155 "lineid": "l%d" % (lineno + 1),
155 "lineid": "l%d" % (lineno + 1),
156 "linenumber": "% 6d" % (lineno + 1),
156 "linenumber": "% 6d" % (lineno + 1),
157 "parity": next(parity)}
157 "parity": next(parity)}
158
158
159 return web.sendtemplate(
159 return web.sendtemplate(
160 'filerevision',
160 'filerevision',
161 file=f,
161 file=f,
162 path=webutil.up(f),
162 path=webutil.up(f),
163 text=lines(),
163 text=lines(),
164 symrev=webutil.symrevorshortnode(web.req, fctx),
164 symrev=webutil.symrevorshortnode(web.req, fctx),
165 rename=webutil.renamelink(fctx),
165 rename=webutil.renamelink(fctx),
166 permissions=fctx.manifest().flags(f),
166 permissions=fctx.manifest().flags(f),
167 ishead=int(ishead),
167 ishead=int(ishead),
168 **pycompat.strkwargs(webutil.commonentry(web.repo, fctx)))
168 **pycompat.strkwargs(webutil.commonentry(web.repo, fctx)))
169
169
170 @webcommand('file')
170 @webcommand('file')
171 def file(web):
171 def file(web):
172 """
172 """
173 /file/{revision}[/{path}]
173 /file/{revision}[/{path}]
174 -------------------------
174 -------------------------
175
175
176 Show information about a directory or file in the repository.
176 Show information about a directory or file in the repository.
177
177
178 Info about the ``path`` given as a URL parameter will be rendered.
178 Info about the ``path`` given as a URL parameter will be rendered.
179
179
180 If ``path`` is a directory, information about the entries in that
180 If ``path`` is a directory, information about the entries in that
181 directory will be rendered. This form is equivalent to the ``manifest``
181 directory will be rendered. This form is equivalent to the ``manifest``
182 handler.
182 handler.
183
183
184 If ``path`` is a file, information about that file will be shown via
184 If ``path`` is a file, information about that file will be shown via
185 the ``filerevision`` template.
185 the ``filerevision`` template.
186
186
187 If ``path`` is not defined, information about the root directory will
187 If ``path`` is not defined, information about the root directory will
188 be rendered.
188 be rendered.
189 """
189 """
190 if web.req.qsparams.get('style') == 'raw':
190 if web.req.qsparams.get('style') == 'raw':
191 return rawfile(web)
191 return rawfile(web)
192
192
193 path = webutil.cleanpath(web.repo, web.req.qsparams.get('file', ''))
193 path = webutil.cleanpath(web.repo, web.req.qsparams.get('file', ''))
194 if not path:
194 if not path:
195 return manifest(web)
195 return manifest(web)
196 try:
196 try:
197 return _filerevision(web, webutil.filectx(web.repo, web.req))
197 return _filerevision(web, webutil.filectx(web.repo, web.req))
198 except error.LookupError as inst:
198 except error.LookupError as inst:
199 try:
199 try:
200 return manifest(web)
200 return manifest(web)
201 except ErrorResponse:
201 except ErrorResponse:
202 raise inst
202 raise inst
203
203
204 def _search(web):
204 def _search(web):
205 MODE_REVISION = 'rev'
205 MODE_REVISION = 'rev'
206 MODE_KEYWORD = 'keyword'
206 MODE_KEYWORD = 'keyword'
207 MODE_REVSET = 'revset'
207 MODE_REVSET = 'revset'
208
208
209 def revsearch(ctx):
209 def revsearch(ctx):
210 yield ctx
210 yield ctx
211
211
212 def keywordsearch(query):
212 def keywordsearch(query):
213 lower = encoding.lower
213 lower = encoding.lower
214 qw = lower(query).split()
214 qw = lower(query).split()
215
215
216 def revgen():
216 def revgen():
217 cl = web.repo.changelog
217 cl = web.repo.changelog
218 for i in xrange(len(web.repo) - 1, 0, -100):
218 for i in xrange(len(web.repo) - 1, 0, -100):
219 l = []
219 l = []
220 for j in cl.revs(max(0, i - 99), i):
220 for j in cl.revs(max(0, i - 99), i):
221 ctx = web.repo[j]
221 ctx = web.repo[j]
222 l.append(ctx)
222 l.append(ctx)
223 l.reverse()
223 l.reverse()
224 for e in l:
224 for e in l:
225 yield e
225 yield e
226
226
227 for ctx in revgen():
227 for ctx in revgen():
228 miss = 0
228 miss = 0
229 for q in qw:
229 for q in qw:
230 if not (q in lower(ctx.user()) or
230 if not (q in lower(ctx.user()) or
231 q in lower(ctx.description()) or
231 q in lower(ctx.description()) or
232 q in lower(" ".join(ctx.files()))):
232 q in lower(" ".join(ctx.files()))):
233 miss = 1
233 miss = 1
234 break
234 break
235 if miss:
235 if miss:
236 continue
236 continue
237
237
238 yield ctx
238 yield ctx
239
239
240 def revsetsearch(revs):
240 def revsetsearch(revs):
241 for r in revs:
241 for r in revs:
242 yield web.repo[r]
242 yield web.repo[r]
243
243
244 searchfuncs = {
244 searchfuncs = {
245 MODE_REVISION: (revsearch, 'exact revision search'),
245 MODE_REVISION: (revsearch, 'exact revision search'),
246 MODE_KEYWORD: (keywordsearch, 'literal keyword search'),
246 MODE_KEYWORD: (keywordsearch, 'literal keyword search'),
247 MODE_REVSET: (revsetsearch, 'revset expression search'),
247 MODE_REVSET: (revsetsearch, 'revset expression search'),
248 }
248 }
249
249
250 def getsearchmode(query):
250 def getsearchmode(query):
251 try:
251 try:
252 ctx = scmutil.revsymbol(web.repo, query)
252 ctx = scmutil.revsymbol(web.repo, query)
253 except (error.RepoError, error.LookupError):
253 except (error.RepoError, error.LookupError):
254 # query is not an exact revision pointer, need to
254 # query is not an exact revision pointer, need to
255 # decide if it's a revset expression or keywords
255 # decide if it's a revset expression or keywords
256 pass
256 pass
257 else:
257 else:
258 return MODE_REVISION, ctx
258 return MODE_REVISION, ctx
259
259
260 revdef = 'reverse(%s)' % query
260 revdef = 'reverse(%s)' % query
261 try:
261 try:
262 tree = revsetlang.parse(revdef)
262 tree = revsetlang.parse(revdef)
263 except error.ParseError:
263 except error.ParseError:
264 # can't parse to a revset tree
264 # can't parse to a revset tree
265 return MODE_KEYWORD, query
265 return MODE_KEYWORD, query
266
266
267 if revsetlang.depth(tree) <= 2:
267 if revsetlang.depth(tree) <= 2:
268 # no revset syntax used
268 # no revset syntax used
269 return MODE_KEYWORD, query
269 return MODE_KEYWORD, query
270
270
271 if any((token, (value or '')[:3]) == ('string', 're:')
271 if any((token, (value or '')[:3]) == ('string', 're:')
272 for token, value, pos in revsetlang.tokenize(revdef)):
272 for token, value, pos in revsetlang.tokenize(revdef)):
273 return MODE_KEYWORD, query
273 return MODE_KEYWORD, query
274
274
275 funcsused = revsetlang.funcsused(tree)
275 funcsused = revsetlang.funcsused(tree)
276 if not funcsused.issubset(revset.safesymbols):
276 if not funcsused.issubset(revset.safesymbols):
277 return MODE_KEYWORD, query
277 return MODE_KEYWORD, query
278
278
279 mfunc = revset.match(web.repo.ui, revdef,
279 mfunc = revset.match(web.repo.ui, revdef,
280 lookup=revset.lookupfn(web.repo))
280 lookup=revset.lookupfn(web.repo))
281 try:
281 try:
282 revs = mfunc(web.repo)
282 revs = mfunc(web.repo)
283 return MODE_REVSET, revs
283 return MODE_REVSET, revs
284 # ParseError: wrongly placed tokens, wrongs arguments, etc
284 # ParseError: wrongly placed tokens, wrongs arguments, etc
285 # RepoLookupError: no such revision, e.g. in 'revision:'
285 # RepoLookupError: no such revision, e.g. in 'revision:'
286 # Abort: bookmark/tag not exists
286 # Abort: bookmark/tag not exists
287 # LookupError: ambiguous identifier, e.g. in '(bc)' on a large repo
287 # LookupError: ambiguous identifier, e.g. in '(bc)' on a large repo
288 except (error.ParseError, error.RepoLookupError, error.Abort,
288 except (error.ParseError, error.RepoLookupError, error.Abort,
289 LookupError):
289 LookupError):
290 return MODE_KEYWORD, query
290 return MODE_KEYWORD, query
291
291
292 def changelist(context):
292 def changelist(context):
293 count = 0
293 count = 0
294
294
295 for ctx in searchfunc[0](funcarg):
295 for ctx in searchfunc[0](funcarg):
296 count += 1
296 count += 1
297 n = ctx.node()
297 n = ctx.node()
298 showtags = webutil.showtag(web.repo, web.tmpl, 'changelogtag', n)
298 showtags = webutil.showtag(web.repo, 'changelogtag', n)
299 files = webutil.listfilediffs(web.tmpl, ctx.files(), n,
299 files = webutil.listfilediffs(web.tmpl, ctx.files(), n,
300 web.maxfiles)
300 web.maxfiles)
301
301
302 lm = webutil.commonentry(web.repo, ctx)
302 lm = webutil.commonentry(web.repo, ctx)
303 lm.update({
303 lm.update({
304 'parity': next(parity),
304 'parity': next(parity),
305 'changelogtag': showtags,
305 'changelogtag': showtags,
306 'files': files,
306 'files': files,
307 })
307 })
308 yield lm
308 yield lm
309
309
310 if count >= revcount:
310 if count >= revcount:
311 break
311 break
312
312
313 query = web.req.qsparams['rev']
313 query = web.req.qsparams['rev']
314 revcount = web.maxchanges
314 revcount = web.maxchanges
315 if 'revcount' in web.req.qsparams:
315 if 'revcount' in web.req.qsparams:
316 try:
316 try:
317 revcount = int(web.req.qsparams.get('revcount', revcount))
317 revcount = int(web.req.qsparams.get('revcount', revcount))
318 revcount = max(revcount, 1)
318 revcount = max(revcount, 1)
319 web.tmpl.defaults['sessionvars']['revcount'] = revcount
319 web.tmpl.defaults['sessionvars']['revcount'] = revcount
320 except ValueError:
320 except ValueError:
321 pass
321 pass
322
322
323 lessvars = copy.copy(web.tmpl.defaults['sessionvars'])
323 lessvars = copy.copy(web.tmpl.defaults['sessionvars'])
324 lessvars['revcount'] = max(revcount // 2, 1)
324 lessvars['revcount'] = max(revcount // 2, 1)
325 lessvars['rev'] = query
325 lessvars['rev'] = query
326 morevars = copy.copy(web.tmpl.defaults['sessionvars'])
326 morevars = copy.copy(web.tmpl.defaults['sessionvars'])
327 morevars['revcount'] = revcount * 2
327 morevars['revcount'] = revcount * 2
328 morevars['rev'] = query
328 morevars['rev'] = query
329
329
330 mode, funcarg = getsearchmode(query)
330 mode, funcarg = getsearchmode(query)
331
331
332 if 'forcekw' in web.req.qsparams:
332 if 'forcekw' in web.req.qsparams:
333 showforcekw = ''
333 showforcekw = ''
334 showunforcekw = searchfuncs[mode][1]
334 showunforcekw = searchfuncs[mode][1]
335 mode = MODE_KEYWORD
335 mode = MODE_KEYWORD
336 funcarg = query
336 funcarg = query
337 else:
337 else:
338 if mode != MODE_KEYWORD:
338 if mode != MODE_KEYWORD:
339 showforcekw = searchfuncs[MODE_KEYWORD][1]
339 showforcekw = searchfuncs[MODE_KEYWORD][1]
340 else:
340 else:
341 showforcekw = ''
341 showforcekw = ''
342 showunforcekw = ''
342 showunforcekw = ''
343
343
344 searchfunc = searchfuncs[mode]
344 searchfunc = searchfuncs[mode]
345
345
346 tip = web.repo['tip']
346 tip = web.repo['tip']
347 parity = paritygen(web.stripecount)
347 parity = paritygen(web.stripecount)
348
348
349 return web.sendtemplate(
349 return web.sendtemplate(
350 'search',
350 'search',
351 query=query,
351 query=query,
352 node=tip.hex(),
352 node=tip.hex(),
353 symrev='tip',
353 symrev='tip',
354 entries=templateutil.mappinggenerator(changelist, name='searchentry'),
354 entries=templateutil.mappinggenerator(changelist, name='searchentry'),
355 archives=web.archivelist('tip'),
355 archives=web.archivelist('tip'),
356 morevars=morevars,
356 morevars=morevars,
357 lessvars=lessvars,
357 lessvars=lessvars,
358 modedesc=searchfunc[1],
358 modedesc=searchfunc[1],
359 showforcekw=showforcekw,
359 showforcekw=showforcekw,
360 showunforcekw=showunforcekw)
360 showunforcekw=showunforcekw)
361
361
362 @webcommand('changelog')
362 @webcommand('changelog')
363 def changelog(web, shortlog=False):
363 def changelog(web, shortlog=False):
364 """
364 """
365 /changelog[/{revision}]
365 /changelog[/{revision}]
366 -----------------------
366 -----------------------
367
367
368 Show information about multiple changesets.
368 Show information about multiple changesets.
369
369
370 If the optional ``revision`` URL argument is absent, information about
370 If the optional ``revision`` URL argument is absent, information about
371 all changesets starting at ``tip`` will be rendered. If the ``revision``
371 all changesets starting at ``tip`` will be rendered. If the ``revision``
372 argument is present, changesets will be shown starting from the specified
372 argument is present, changesets will be shown starting from the specified
373 revision.
373 revision.
374
374
375 If ``revision`` is absent, the ``rev`` query string argument may be
375 If ``revision`` is absent, the ``rev`` query string argument may be
376 defined. This will perform a search for changesets.
376 defined. This will perform a search for changesets.
377
377
378 The argument for ``rev`` can be a single revision, a revision set,
378 The argument for ``rev`` can be a single revision, a revision set,
379 or a literal keyword to search for in changeset data (equivalent to
379 or a literal keyword to search for in changeset data (equivalent to
380 :hg:`log -k`).
380 :hg:`log -k`).
381
381
382 The ``revcount`` query string argument defines the maximum numbers of
382 The ``revcount`` query string argument defines the maximum numbers of
383 changesets to render.
383 changesets to render.
384
384
385 For non-searches, the ``changelog`` template will be rendered.
385 For non-searches, the ``changelog`` template will be rendered.
386 """
386 """
387
387
388 query = ''
388 query = ''
389 if 'node' in web.req.qsparams:
389 if 'node' in web.req.qsparams:
390 ctx = webutil.changectx(web.repo, web.req)
390 ctx = webutil.changectx(web.repo, web.req)
391 symrev = webutil.symrevorshortnode(web.req, ctx)
391 symrev = webutil.symrevorshortnode(web.req, ctx)
392 elif 'rev' in web.req.qsparams:
392 elif 'rev' in web.req.qsparams:
393 return _search(web)
393 return _search(web)
394 else:
394 else:
395 ctx = web.repo['tip']
395 ctx = web.repo['tip']
396 symrev = 'tip'
396 symrev = 'tip'
397
397
398 def changelist():
398 def changelist():
399 revs = []
399 revs = []
400 if pos != -1:
400 if pos != -1:
401 revs = web.repo.changelog.revs(pos, 0)
401 revs = web.repo.changelog.revs(pos, 0)
402 curcount = 0
402 curcount = 0
403 for rev in revs:
403 for rev in revs:
404 curcount += 1
404 curcount += 1
405 if curcount > revcount + 1:
405 if curcount > revcount + 1:
406 break
406 break
407
407
408 entry = webutil.changelistentry(web, web.repo[rev])
408 entry = webutil.changelistentry(web, web.repo[rev])
409 entry['parity'] = next(parity)
409 entry['parity'] = next(parity)
410 yield entry
410 yield entry
411
411
412 if shortlog:
412 if shortlog:
413 revcount = web.maxshortchanges
413 revcount = web.maxshortchanges
414 else:
414 else:
415 revcount = web.maxchanges
415 revcount = web.maxchanges
416
416
417 if 'revcount' in web.req.qsparams:
417 if 'revcount' in web.req.qsparams:
418 try:
418 try:
419 revcount = int(web.req.qsparams.get('revcount', revcount))
419 revcount = int(web.req.qsparams.get('revcount', revcount))
420 revcount = max(revcount, 1)
420 revcount = max(revcount, 1)
421 web.tmpl.defaults['sessionvars']['revcount'] = revcount
421 web.tmpl.defaults['sessionvars']['revcount'] = revcount
422 except ValueError:
422 except ValueError:
423 pass
423 pass
424
424
425 lessvars = copy.copy(web.tmpl.defaults['sessionvars'])
425 lessvars = copy.copy(web.tmpl.defaults['sessionvars'])
426 lessvars['revcount'] = max(revcount // 2, 1)
426 lessvars['revcount'] = max(revcount // 2, 1)
427 morevars = copy.copy(web.tmpl.defaults['sessionvars'])
427 morevars = copy.copy(web.tmpl.defaults['sessionvars'])
428 morevars['revcount'] = revcount * 2
428 morevars['revcount'] = revcount * 2
429
429
430 count = len(web.repo)
430 count = len(web.repo)
431 pos = ctx.rev()
431 pos = ctx.rev()
432 parity = paritygen(web.stripecount)
432 parity = paritygen(web.stripecount)
433
433
434 changenav = webutil.revnav(web.repo).gen(pos, revcount, count)
434 changenav = webutil.revnav(web.repo).gen(pos, revcount, count)
435
435
436 entries = list(changelist())
436 entries = list(changelist())
437 latestentry = entries[:1]
437 latestentry = entries[:1]
438 if len(entries) > revcount:
438 if len(entries) > revcount:
439 nextentry = entries[-1:]
439 nextentry = entries[-1:]
440 entries = entries[:-1]
440 entries = entries[:-1]
441 else:
441 else:
442 nextentry = []
442 nextentry = []
443
443
444 return web.sendtemplate(
444 return web.sendtemplate(
445 'shortlog' if shortlog else 'changelog',
445 'shortlog' if shortlog else 'changelog',
446 changenav=changenav,
446 changenav=changenav,
447 node=ctx.hex(),
447 node=ctx.hex(),
448 rev=pos,
448 rev=pos,
449 symrev=symrev,
449 symrev=symrev,
450 changesets=count,
450 changesets=count,
451 entries=entries,
451 entries=entries,
452 latestentry=latestentry,
452 latestentry=latestentry,
453 nextentry=nextentry,
453 nextentry=nextentry,
454 archives=web.archivelist('tip'),
454 archives=web.archivelist('tip'),
455 revcount=revcount,
455 revcount=revcount,
456 morevars=morevars,
456 morevars=morevars,
457 lessvars=lessvars,
457 lessvars=lessvars,
458 query=query)
458 query=query)
459
459
460 @webcommand('shortlog')
460 @webcommand('shortlog')
461 def shortlog(web):
461 def shortlog(web):
462 """
462 """
463 /shortlog
463 /shortlog
464 ---------
464 ---------
465
465
466 Show basic information about a set of changesets.
466 Show basic information about a set of changesets.
467
467
468 This accepts the same parameters as the ``changelog`` handler. The only
468 This accepts the same parameters as the ``changelog`` handler. The only
469 difference is the ``shortlog`` template will be rendered instead of the
469 difference is the ``shortlog`` template will be rendered instead of the
470 ``changelog`` template.
470 ``changelog`` template.
471 """
471 """
472 return changelog(web, shortlog=True)
472 return changelog(web, shortlog=True)
473
473
474 @webcommand('changeset')
474 @webcommand('changeset')
475 def changeset(web):
475 def changeset(web):
476 """
476 """
477 /changeset[/{revision}]
477 /changeset[/{revision}]
478 -----------------------
478 -----------------------
479
479
480 Show information about a single changeset.
480 Show information about a single changeset.
481
481
482 A URL path argument is the changeset identifier to show. See ``hg help
482 A URL path argument is the changeset identifier to show. See ``hg help
483 revisions`` for possible values. If not defined, the ``tip`` changeset
483 revisions`` for possible values. If not defined, the ``tip`` changeset
484 will be shown.
484 will be shown.
485
485
486 The ``changeset`` template is rendered. Contents of the ``changesettag``,
486 The ``changeset`` template is rendered. Contents of the ``changesettag``,
487 ``changesetbookmark``, ``filenodelink``, ``filenolink``, and the many
487 ``changesetbookmark``, ``filenodelink``, ``filenolink``, and the many
488 templates related to diffs may all be used to produce the output.
488 templates related to diffs may all be used to produce the output.
489 """
489 """
490 ctx = webutil.changectx(web.repo, web.req)
490 ctx = webutil.changectx(web.repo, web.req)
491
491
492 return web.sendtemplate(
492 return web.sendtemplate(
493 'changeset',
493 'changeset',
494 **webutil.changesetentry(web, ctx))
494 **webutil.changesetentry(web, ctx))
495
495
496 rev = webcommand('rev')(changeset)
496 rev = webcommand('rev')(changeset)
497
497
498 def decodepath(path):
498 def decodepath(path):
499 """Hook for mapping a path in the repository to a path in the
499 """Hook for mapping a path in the repository to a path in the
500 working copy.
500 working copy.
501
501
502 Extensions (e.g., largefiles) can override this to remap files in
502 Extensions (e.g., largefiles) can override this to remap files in
503 the virtual file system presented by the manifest command below."""
503 the virtual file system presented by the manifest command below."""
504 return path
504 return path
505
505
506 @webcommand('manifest')
506 @webcommand('manifest')
507 def manifest(web):
507 def manifest(web):
508 """
508 """
509 /manifest[/{revision}[/{path}]]
509 /manifest[/{revision}[/{path}]]
510 -------------------------------
510 -------------------------------
511
511
512 Show information about a directory.
512 Show information about a directory.
513
513
514 If the URL path arguments are omitted, information about the root
514 If the URL path arguments are omitted, information about the root
515 directory for the ``tip`` changeset will be shown.
515 directory for the ``tip`` changeset will be shown.
516
516
517 Because this handler can only show information for directories, it
517 Because this handler can only show information for directories, it
518 is recommended to use the ``file`` handler instead, as it can handle both
518 is recommended to use the ``file`` handler instead, as it can handle both
519 directories and files.
519 directories and files.
520
520
521 The ``manifest`` template will be rendered for this handler.
521 The ``manifest`` template will be rendered for this handler.
522 """
522 """
523 if 'node' in web.req.qsparams:
523 if 'node' in web.req.qsparams:
524 ctx = webutil.changectx(web.repo, web.req)
524 ctx = webutil.changectx(web.repo, web.req)
525 symrev = webutil.symrevorshortnode(web.req, ctx)
525 symrev = webutil.symrevorshortnode(web.req, ctx)
526 else:
526 else:
527 ctx = web.repo['tip']
527 ctx = web.repo['tip']
528 symrev = 'tip'
528 symrev = 'tip'
529 path = webutil.cleanpath(web.repo, web.req.qsparams.get('file', ''))
529 path = webutil.cleanpath(web.repo, web.req.qsparams.get('file', ''))
530 mf = ctx.manifest()
530 mf = ctx.manifest()
531 node = ctx.node()
531 node = ctx.node()
532
532
533 files = {}
533 files = {}
534 dirs = {}
534 dirs = {}
535 parity = paritygen(web.stripecount)
535 parity = paritygen(web.stripecount)
536
536
537 if path and path[-1:] != "/":
537 if path and path[-1:] != "/":
538 path += "/"
538 path += "/"
539 l = len(path)
539 l = len(path)
540 abspath = "/" + path
540 abspath = "/" + path
541
541
542 for full, n in mf.iteritems():
542 for full, n in mf.iteritems():
543 # the virtual path (working copy path) used for the full
543 # the virtual path (working copy path) used for the full
544 # (repository) path
544 # (repository) path
545 f = decodepath(full)
545 f = decodepath(full)
546
546
547 if f[:l] != path:
547 if f[:l] != path:
548 continue
548 continue
549 remain = f[l:]
549 remain = f[l:]
550 elements = remain.split('/')
550 elements = remain.split('/')
551 if len(elements) == 1:
551 if len(elements) == 1:
552 files[remain] = full
552 files[remain] = full
553 else:
553 else:
554 h = dirs # need to retain ref to dirs (root)
554 h = dirs # need to retain ref to dirs (root)
555 for elem in elements[0:-1]:
555 for elem in elements[0:-1]:
556 if elem not in h:
556 if elem not in h:
557 h[elem] = {}
557 h[elem] = {}
558 h = h[elem]
558 h = h[elem]
559 if len(h) > 1:
559 if len(h) > 1:
560 break
560 break
561 h[None] = None # denotes files present
561 h[None] = None # denotes files present
562
562
563 if mf and not files and not dirs:
563 if mf and not files and not dirs:
564 raise ErrorResponse(HTTP_NOT_FOUND, 'path not found: ' + path)
564 raise ErrorResponse(HTTP_NOT_FOUND, 'path not found: ' + path)
565
565
566 def filelist(**map):
566 def filelist(**map):
567 for f in sorted(files):
567 for f in sorted(files):
568 full = files[f]
568 full = files[f]
569
569
570 fctx = ctx.filectx(full)
570 fctx = ctx.filectx(full)
571 yield {"file": full,
571 yield {"file": full,
572 "parity": next(parity),
572 "parity": next(parity),
573 "basename": f,
573 "basename": f,
574 "date": fctx.date(),
574 "date": fctx.date(),
575 "size": fctx.size(),
575 "size": fctx.size(),
576 "permissions": mf.flags(full)}
576 "permissions": mf.flags(full)}
577
577
578 def dirlist(**map):
578 def dirlist(**map):
579 for d in sorted(dirs):
579 for d in sorted(dirs):
580
580
581 emptydirs = []
581 emptydirs = []
582 h = dirs[d]
582 h = dirs[d]
583 while isinstance(h, dict) and len(h) == 1:
583 while isinstance(h, dict) and len(h) == 1:
584 k, v = next(iter(h.items()))
584 k, v = next(iter(h.items()))
585 if v:
585 if v:
586 emptydirs.append(k)
586 emptydirs.append(k)
587 h = v
587 h = v
588
588
589 path = "%s%s" % (abspath, d)
589 path = "%s%s" % (abspath, d)
590 yield {"parity": next(parity),
590 yield {"parity": next(parity),
591 "path": path,
591 "path": path,
592 "emptydirs": "/".join(emptydirs),
592 "emptydirs": "/".join(emptydirs),
593 "basename": d}
593 "basename": d}
594
594
595 return web.sendtemplate(
595 return web.sendtemplate(
596 'manifest',
596 'manifest',
597 symrev=symrev,
597 symrev=symrev,
598 path=abspath,
598 path=abspath,
599 up=webutil.up(abspath),
599 up=webutil.up(abspath),
600 upparity=next(parity),
600 upparity=next(parity),
601 fentries=filelist,
601 fentries=filelist,
602 dentries=dirlist,
602 dentries=dirlist,
603 archives=web.archivelist(hex(node)),
603 archives=web.archivelist(hex(node)),
604 **pycompat.strkwargs(webutil.commonentry(web.repo, ctx)))
604 **pycompat.strkwargs(webutil.commonentry(web.repo, ctx)))
605
605
606 @webcommand('tags')
606 @webcommand('tags')
607 def tags(web):
607 def tags(web):
608 """
608 """
609 /tags
609 /tags
610 -----
610 -----
611
611
612 Show information about tags.
612 Show information about tags.
613
613
614 No arguments are accepted.
614 No arguments are accepted.
615
615
616 The ``tags`` template is rendered.
616 The ``tags`` template is rendered.
617 """
617 """
618 i = list(reversed(web.repo.tagslist()))
618 i = list(reversed(web.repo.tagslist()))
619 parity = paritygen(web.stripecount)
619 parity = paritygen(web.stripecount)
620
620
621 def entries(notip, latestonly, **map):
621 def entries(notip, latestonly, **map):
622 t = i
622 t = i
623 if notip:
623 if notip:
624 t = [(k, n) for k, n in i if k != "tip"]
624 t = [(k, n) for k, n in i if k != "tip"]
625 if latestonly:
625 if latestonly:
626 t = t[:1]
626 t = t[:1]
627 for k, n in t:
627 for k, n in t:
628 yield {"parity": next(parity),
628 yield {"parity": next(parity),
629 "tag": k,
629 "tag": k,
630 "date": web.repo[n].date(),
630 "date": web.repo[n].date(),
631 "node": hex(n)}
631 "node": hex(n)}
632
632
633 return web.sendtemplate(
633 return web.sendtemplate(
634 'tags',
634 'tags',
635 node=hex(web.repo.changelog.tip()),
635 node=hex(web.repo.changelog.tip()),
636 entries=lambda **x: entries(False, False, **x),
636 entries=lambda **x: entries(False, False, **x),
637 entriesnotip=lambda **x: entries(True, False, **x),
637 entriesnotip=lambda **x: entries(True, False, **x),
638 latestentry=lambda **x: entries(True, True, **x))
638 latestentry=lambda **x: entries(True, True, **x))
639
639
640 @webcommand('bookmarks')
640 @webcommand('bookmarks')
641 def bookmarks(web):
641 def bookmarks(web):
642 """
642 """
643 /bookmarks
643 /bookmarks
644 ----------
644 ----------
645
645
646 Show information about bookmarks.
646 Show information about bookmarks.
647
647
648 No arguments are accepted.
648 No arguments are accepted.
649
649
650 The ``bookmarks`` template is rendered.
650 The ``bookmarks`` template is rendered.
651 """
651 """
652 i = [b for b in web.repo._bookmarks.items() if b[1] in web.repo]
652 i = [b for b in web.repo._bookmarks.items() if b[1] in web.repo]
653 sortkey = lambda b: (web.repo[b[1]].rev(), b[0])
653 sortkey = lambda b: (web.repo[b[1]].rev(), b[0])
654 i = sorted(i, key=sortkey, reverse=True)
654 i = sorted(i, key=sortkey, reverse=True)
655 parity = paritygen(web.stripecount)
655 parity = paritygen(web.stripecount)
656
656
657 def entries(latestonly, **map):
657 def entries(latestonly, **map):
658 t = i
658 t = i
659 if latestonly:
659 if latestonly:
660 t = i[:1]
660 t = i[:1]
661 for k, n in t:
661 for k, n in t:
662 yield {"parity": next(parity),
662 yield {"parity": next(parity),
663 "bookmark": k,
663 "bookmark": k,
664 "date": web.repo[n].date(),
664 "date": web.repo[n].date(),
665 "node": hex(n)}
665 "node": hex(n)}
666
666
667 if i:
667 if i:
668 latestrev = i[0][1]
668 latestrev = i[0][1]
669 else:
669 else:
670 latestrev = -1
670 latestrev = -1
671
671
672 return web.sendtemplate(
672 return web.sendtemplate(
673 'bookmarks',
673 'bookmarks',
674 node=hex(web.repo.changelog.tip()),
674 node=hex(web.repo.changelog.tip()),
675 lastchange=[{'date': web.repo[latestrev].date()}],
675 lastchange=[{'date': web.repo[latestrev].date()}],
676 entries=lambda **x: entries(latestonly=False, **x),
676 entries=lambda **x: entries(latestonly=False, **x),
677 latestentry=lambda **x: entries(latestonly=True, **x))
677 latestentry=lambda **x: entries(latestonly=True, **x))
678
678
679 @webcommand('branches')
679 @webcommand('branches')
680 def branches(web):
680 def branches(web):
681 """
681 """
682 /branches
682 /branches
683 ---------
683 ---------
684
684
685 Show information about branches.
685 Show information about branches.
686
686
687 All known branches are contained in the output, even closed branches.
687 All known branches are contained in the output, even closed branches.
688
688
689 No arguments are accepted.
689 No arguments are accepted.
690
690
691 The ``branches`` template is rendered.
691 The ``branches`` template is rendered.
692 """
692 """
693 entries = webutil.branchentries(web.repo, web.stripecount)
693 entries = webutil.branchentries(web.repo, web.stripecount)
694 latestentry = webutil.branchentries(web.repo, web.stripecount, 1)
694 latestentry = webutil.branchentries(web.repo, web.stripecount, 1)
695
695
696 return web.sendtemplate(
696 return web.sendtemplate(
697 'branches',
697 'branches',
698 node=hex(web.repo.changelog.tip()),
698 node=hex(web.repo.changelog.tip()),
699 entries=entries,
699 entries=entries,
700 latestentry=latestentry)
700 latestentry=latestentry)
701
701
702 @webcommand('summary')
702 @webcommand('summary')
703 def summary(web):
703 def summary(web):
704 """
704 """
705 /summary
705 /summary
706 --------
706 --------
707
707
708 Show a summary of repository state.
708 Show a summary of repository state.
709
709
710 Information about the latest changesets, bookmarks, tags, and branches
710 Information about the latest changesets, bookmarks, tags, and branches
711 is captured by this handler.
711 is captured by this handler.
712
712
713 The ``summary`` template is rendered.
713 The ``summary`` template is rendered.
714 """
714 """
715 i = reversed(web.repo.tagslist())
715 i = reversed(web.repo.tagslist())
716
716
717 def tagentries(context):
717 def tagentries(context):
718 parity = paritygen(web.stripecount)
718 parity = paritygen(web.stripecount)
719 count = 0
719 count = 0
720 for k, n in i:
720 for k, n in i:
721 if k == "tip": # skip tip
721 if k == "tip": # skip tip
722 continue
722 continue
723
723
724 count += 1
724 count += 1
725 if count > 10: # limit to 10 tags
725 if count > 10: # limit to 10 tags
726 break
726 break
727
727
728 yield {
728 yield {
729 'parity': next(parity),
729 'parity': next(parity),
730 'tag': k,
730 'tag': k,
731 'node': hex(n),
731 'node': hex(n),
732 'date': web.repo[n].date(),
732 'date': web.repo[n].date(),
733 }
733 }
734
734
735 def bookmarks(**map):
735 def bookmarks(**map):
736 parity = paritygen(web.stripecount)
736 parity = paritygen(web.stripecount)
737 marks = [b for b in web.repo._bookmarks.items() if b[1] in web.repo]
737 marks = [b for b in web.repo._bookmarks.items() if b[1] in web.repo]
738 sortkey = lambda b: (web.repo[b[1]].rev(), b[0])
738 sortkey = lambda b: (web.repo[b[1]].rev(), b[0])
739 marks = sorted(marks, key=sortkey, reverse=True)
739 marks = sorted(marks, key=sortkey, reverse=True)
740 for k, n in marks[:10]: # limit to 10 bookmarks
740 for k, n in marks[:10]: # limit to 10 bookmarks
741 yield {'parity': next(parity),
741 yield {'parity': next(parity),
742 'bookmark': k,
742 'bookmark': k,
743 'date': web.repo[n].date(),
743 'date': web.repo[n].date(),
744 'node': hex(n)}
744 'node': hex(n)}
745
745
746 def changelist(context):
746 def changelist(context):
747 parity = paritygen(web.stripecount, offset=start - end)
747 parity = paritygen(web.stripecount, offset=start - end)
748 l = [] # build a list in forward order for efficiency
748 l = [] # build a list in forward order for efficiency
749 revs = []
749 revs = []
750 if start < end:
750 if start < end:
751 revs = web.repo.changelog.revs(start, end - 1)
751 revs = web.repo.changelog.revs(start, end - 1)
752 for i in revs:
752 for i in revs:
753 ctx = web.repo[i]
753 ctx = web.repo[i]
754 lm = webutil.commonentry(web.repo, ctx)
754 lm = webutil.commonentry(web.repo, ctx)
755 lm['parity'] = next(parity)
755 lm['parity'] = next(parity)
756 l.append(lm)
756 l.append(lm)
757
757
758 for entry in reversed(l):
758 for entry in reversed(l):
759 yield entry
759 yield entry
760
760
761 tip = web.repo['tip']
761 tip = web.repo['tip']
762 count = len(web.repo)
762 count = len(web.repo)
763 start = max(0, count - web.maxchanges)
763 start = max(0, count - web.maxchanges)
764 end = min(count, start + web.maxchanges)
764 end = min(count, start + web.maxchanges)
765
765
766 desc = web.config("web", "description")
766 desc = web.config("web", "description")
767 if not desc:
767 if not desc:
768 desc = 'unknown'
768 desc = 'unknown'
769 labels = web.configlist('web', 'labels')
769 labels = web.configlist('web', 'labels')
770
770
771 return web.sendtemplate(
771 return web.sendtemplate(
772 'summary',
772 'summary',
773 desc=desc,
773 desc=desc,
774 owner=get_contact(web.config) or 'unknown',
774 owner=get_contact(web.config) or 'unknown',
775 lastchange=tip.date(),
775 lastchange=tip.date(),
776 tags=templateutil.mappinggenerator(tagentries, name='tagentry'),
776 tags=templateutil.mappinggenerator(tagentries, name='tagentry'),
777 bookmarks=bookmarks,
777 bookmarks=bookmarks,
778 branches=webutil.branchentries(web.repo, web.stripecount, 10),
778 branches=webutil.branchentries(web.repo, web.stripecount, 10),
779 shortlog=templateutil.mappinggenerator(changelist,
779 shortlog=templateutil.mappinggenerator(changelist,
780 name='shortlogentry'),
780 name='shortlogentry'),
781 node=tip.hex(),
781 node=tip.hex(),
782 symrev='tip',
782 symrev='tip',
783 archives=web.archivelist('tip'),
783 archives=web.archivelist('tip'),
784 labels=templateutil.hybridlist(labels, name='label'))
784 labels=templateutil.hybridlist(labels, name='label'))
785
785
786 @webcommand('filediff')
786 @webcommand('filediff')
787 def filediff(web):
787 def filediff(web):
788 """
788 """
789 /diff/{revision}/{path}
789 /diff/{revision}/{path}
790 -----------------------
790 -----------------------
791
791
792 Show how a file changed in a particular commit.
792 Show how a file changed in a particular commit.
793
793
794 The ``filediff`` template is rendered.
794 The ``filediff`` template is rendered.
795
795
796 This handler is registered under both the ``/diff`` and ``/filediff``
796 This handler is registered under both the ``/diff`` and ``/filediff``
797 paths. ``/diff`` is used in modern code.
797 paths. ``/diff`` is used in modern code.
798 """
798 """
799 fctx, ctx = None, None
799 fctx, ctx = None, None
800 try:
800 try:
801 fctx = webutil.filectx(web.repo, web.req)
801 fctx = webutil.filectx(web.repo, web.req)
802 except LookupError:
802 except LookupError:
803 ctx = webutil.changectx(web.repo, web.req)
803 ctx = webutil.changectx(web.repo, web.req)
804 path = webutil.cleanpath(web.repo, web.req.qsparams['file'])
804 path = webutil.cleanpath(web.repo, web.req.qsparams['file'])
805 if path not in ctx.files():
805 if path not in ctx.files():
806 raise
806 raise
807
807
808 if fctx is not None:
808 if fctx is not None:
809 path = fctx.path()
809 path = fctx.path()
810 ctx = fctx.changectx()
810 ctx = fctx.changectx()
811 basectx = ctx.p1()
811 basectx = ctx.p1()
812
812
813 style = web.config('web', 'style')
813 style = web.config('web', 'style')
814 if 'style' in web.req.qsparams:
814 if 'style' in web.req.qsparams:
815 style = web.req.qsparams['style']
815 style = web.req.qsparams['style']
816
816
817 diffs = webutil.diffs(web, ctx, basectx, [path], style)
817 diffs = webutil.diffs(web, ctx, basectx, [path], style)
818 if fctx is not None:
818 if fctx is not None:
819 rename = webutil.renamelink(fctx)
819 rename = webutil.renamelink(fctx)
820 ctx = fctx
820 ctx = fctx
821 else:
821 else:
822 rename = templateutil.mappinglist([])
822 rename = templateutil.mappinglist([])
823 ctx = ctx
823 ctx = ctx
824
824
825 return web.sendtemplate(
825 return web.sendtemplate(
826 'filediff',
826 'filediff',
827 file=path,
827 file=path,
828 symrev=webutil.symrevorshortnode(web.req, ctx),
828 symrev=webutil.symrevorshortnode(web.req, ctx),
829 rename=rename,
829 rename=rename,
830 diff=diffs,
830 diff=diffs,
831 **pycompat.strkwargs(webutil.commonentry(web.repo, ctx)))
831 **pycompat.strkwargs(webutil.commonentry(web.repo, ctx)))
832
832
833 diff = webcommand('diff')(filediff)
833 diff = webcommand('diff')(filediff)
834
834
835 @webcommand('comparison')
835 @webcommand('comparison')
836 def comparison(web):
836 def comparison(web):
837 """
837 """
838 /comparison/{revision}/{path}
838 /comparison/{revision}/{path}
839 -----------------------------
839 -----------------------------
840
840
841 Show a comparison between the old and new versions of a file from changes
841 Show a comparison between the old and new versions of a file from changes
842 made on a particular revision.
842 made on a particular revision.
843
843
844 This is similar to the ``diff`` handler. However, this form features
844 This is similar to the ``diff`` handler. However, this form features
845 a split or side-by-side diff rather than a unified diff.
845 a split or side-by-side diff rather than a unified diff.
846
846
847 The ``context`` query string argument can be used to control the lines of
847 The ``context`` query string argument can be used to control the lines of
848 context in the diff.
848 context in the diff.
849
849
850 The ``filecomparison`` template is rendered.
850 The ``filecomparison`` template is rendered.
851 """
851 """
852 ctx = webutil.changectx(web.repo, web.req)
852 ctx = webutil.changectx(web.repo, web.req)
853 if 'file' not in web.req.qsparams:
853 if 'file' not in web.req.qsparams:
854 raise ErrorResponse(HTTP_NOT_FOUND, 'file not given')
854 raise ErrorResponse(HTTP_NOT_FOUND, 'file not given')
855 path = webutil.cleanpath(web.repo, web.req.qsparams['file'])
855 path = webutil.cleanpath(web.repo, web.req.qsparams['file'])
856
856
857 parsecontext = lambda v: v == 'full' and -1 or int(v)
857 parsecontext = lambda v: v == 'full' and -1 or int(v)
858 if 'context' in web.req.qsparams:
858 if 'context' in web.req.qsparams:
859 context = parsecontext(web.req.qsparams['context'])
859 context = parsecontext(web.req.qsparams['context'])
860 else:
860 else:
861 context = parsecontext(web.config('web', 'comparisoncontext', '5'))
861 context = parsecontext(web.config('web', 'comparisoncontext', '5'))
862
862
863 def filelines(f):
863 def filelines(f):
864 if f.isbinary():
864 if f.isbinary():
865 mt = mimetypes.guess_type(f.path())[0]
865 mt = mimetypes.guess_type(f.path())[0]
866 if not mt:
866 if not mt:
867 mt = 'application/octet-stream'
867 mt = 'application/octet-stream'
868 return [_('(binary file %s, hash: %s)') % (mt, hex(f.filenode()))]
868 return [_('(binary file %s, hash: %s)') % (mt, hex(f.filenode()))]
869 return f.data().splitlines()
869 return f.data().splitlines()
870
870
871 fctx = None
871 fctx = None
872 parent = ctx.p1()
872 parent = ctx.p1()
873 leftrev = parent.rev()
873 leftrev = parent.rev()
874 leftnode = parent.node()
874 leftnode = parent.node()
875 rightrev = ctx.rev()
875 rightrev = ctx.rev()
876 rightnode = ctx.node()
876 rightnode = ctx.node()
877 if path in ctx:
877 if path in ctx:
878 fctx = ctx[path]
878 fctx = ctx[path]
879 rightlines = filelines(fctx)
879 rightlines = filelines(fctx)
880 if path not in parent:
880 if path not in parent:
881 leftlines = ()
881 leftlines = ()
882 else:
882 else:
883 pfctx = parent[path]
883 pfctx = parent[path]
884 leftlines = filelines(pfctx)
884 leftlines = filelines(pfctx)
885 else:
885 else:
886 rightlines = ()
886 rightlines = ()
887 pfctx = ctx.parents()[0][path]
887 pfctx = ctx.parents()[0][path]
888 leftlines = filelines(pfctx)
888 leftlines = filelines(pfctx)
889
889
890 comparison = webutil.compare(web.tmpl, context, leftlines, rightlines)
890 comparison = webutil.compare(web.tmpl, context, leftlines, rightlines)
891 if fctx is not None:
891 if fctx is not None:
892 rename = webutil.renamelink(fctx)
892 rename = webutil.renamelink(fctx)
893 ctx = fctx
893 ctx = fctx
894 else:
894 else:
895 rename = templateutil.mappinglist([])
895 rename = templateutil.mappinglist([])
896 ctx = ctx
896 ctx = ctx
897
897
898 return web.sendtemplate(
898 return web.sendtemplate(
899 'filecomparison',
899 'filecomparison',
900 file=path,
900 file=path,
901 symrev=webutil.symrevorshortnode(web.req, ctx),
901 symrev=webutil.symrevorshortnode(web.req, ctx),
902 rename=rename,
902 rename=rename,
903 leftrev=leftrev,
903 leftrev=leftrev,
904 leftnode=hex(leftnode),
904 leftnode=hex(leftnode),
905 rightrev=rightrev,
905 rightrev=rightrev,
906 rightnode=hex(rightnode),
906 rightnode=hex(rightnode),
907 comparison=comparison,
907 comparison=comparison,
908 **pycompat.strkwargs(webutil.commonentry(web.repo, ctx)))
908 **pycompat.strkwargs(webutil.commonentry(web.repo, ctx)))
909
909
910 @webcommand('annotate')
910 @webcommand('annotate')
911 def annotate(web):
911 def annotate(web):
912 """
912 """
913 /annotate/{revision}/{path}
913 /annotate/{revision}/{path}
914 ---------------------------
914 ---------------------------
915
915
916 Show changeset information for each line in a file.
916 Show changeset information for each line in a file.
917
917
918 The ``ignorews``, ``ignorewsamount``, ``ignorewseol``, and
918 The ``ignorews``, ``ignorewsamount``, ``ignorewseol``, and
919 ``ignoreblanklines`` query string arguments have the same meaning as
919 ``ignoreblanklines`` query string arguments have the same meaning as
920 their ``[annotate]`` config equivalents. It uses the hgrc boolean
920 their ``[annotate]`` config equivalents. It uses the hgrc boolean
921 parsing logic to interpret the value. e.g. ``0`` and ``false`` are
921 parsing logic to interpret the value. e.g. ``0`` and ``false`` are
922 false and ``1`` and ``true`` are true. If not defined, the server
922 false and ``1`` and ``true`` are true. If not defined, the server
923 default settings are used.
923 default settings are used.
924
924
925 The ``fileannotate`` template is rendered.
925 The ``fileannotate`` template is rendered.
926 """
926 """
927 fctx = webutil.filectx(web.repo, web.req)
927 fctx = webutil.filectx(web.repo, web.req)
928 f = fctx.path()
928 f = fctx.path()
929 parity = paritygen(web.stripecount)
929 parity = paritygen(web.stripecount)
930 ishead = fctx.filerev() in fctx.filelog().headrevs()
930 ishead = fctx.filerev() in fctx.filelog().headrevs()
931
931
932 # parents() is called once per line and several lines likely belong to
932 # parents() is called once per line and several lines likely belong to
933 # same revision. So it is worth caching.
933 # same revision. So it is worth caching.
934 # TODO there are still redundant operations within basefilectx.parents()
934 # TODO there are still redundant operations within basefilectx.parents()
935 # and from the fctx.annotate() call itself that could be cached.
935 # and from the fctx.annotate() call itself that could be cached.
936 parentscache = {}
936 parentscache = {}
937 def parents(f):
937 def parents(f):
938 rev = f.rev()
938 rev = f.rev()
939 if rev not in parentscache:
939 if rev not in parentscache:
940 parentscache[rev] = []
940 parentscache[rev] = []
941 for p in f.parents():
941 for p in f.parents():
942 entry = {
942 entry = {
943 'node': p.hex(),
943 'node': p.hex(),
944 'rev': p.rev(),
944 'rev': p.rev(),
945 }
945 }
946 parentscache[rev].append(entry)
946 parentscache[rev].append(entry)
947
947
948 for p in parentscache[rev]:
948 for p in parentscache[rev]:
949 yield p
949 yield p
950
950
951 def annotate(**map):
951 def annotate(**map):
952 if fctx.isbinary():
952 if fctx.isbinary():
953 mt = (mimetypes.guess_type(fctx.path())[0]
953 mt = (mimetypes.guess_type(fctx.path())[0]
954 or 'application/octet-stream')
954 or 'application/octet-stream')
955 lines = [dagop.annotateline(fctx=fctx.filectx(fctx.filerev()),
955 lines = [dagop.annotateline(fctx=fctx.filectx(fctx.filerev()),
956 lineno=1, text='(binary:%s)' % mt)]
956 lineno=1, text='(binary:%s)' % mt)]
957 else:
957 else:
958 lines = webutil.annotate(web.req, fctx, web.repo.ui)
958 lines = webutil.annotate(web.req, fctx, web.repo.ui)
959
959
960 previousrev = None
960 previousrev = None
961 blockparitygen = paritygen(1)
961 blockparitygen = paritygen(1)
962 for lineno, aline in enumerate(lines):
962 for lineno, aline in enumerate(lines):
963 f = aline.fctx
963 f = aline.fctx
964 rev = f.rev()
964 rev = f.rev()
965 if rev != previousrev:
965 if rev != previousrev:
966 blockhead = True
966 blockhead = True
967 blockparity = next(blockparitygen)
967 blockparity = next(blockparitygen)
968 else:
968 else:
969 blockhead = None
969 blockhead = None
970 previousrev = rev
970 previousrev = rev
971 yield {"parity": next(parity),
971 yield {"parity": next(parity),
972 "node": f.hex(),
972 "node": f.hex(),
973 "rev": rev,
973 "rev": rev,
974 "author": f.user(),
974 "author": f.user(),
975 "parents": parents(f),
975 "parents": parents(f),
976 "desc": f.description(),
976 "desc": f.description(),
977 "extra": f.extra(),
977 "extra": f.extra(),
978 "file": f.path(),
978 "file": f.path(),
979 "blockhead": blockhead,
979 "blockhead": blockhead,
980 "blockparity": blockparity,
980 "blockparity": blockparity,
981 "targetline": aline.lineno,
981 "targetline": aline.lineno,
982 "line": aline.text,
982 "line": aline.text,
983 "lineno": lineno + 1,
983 "lineno": lineno + 1,
984 "lineid": "l%d" % (lineno + 1),
984 "lineid": "l%d" % (lineno + 1),
985 "linenumber": "% 6d" % (lineno + 1),
985 "linenumber": "% 6d" % (lineno + 1),
986 "revdate": f.date()}
986 "revdate": f.date()}
987
987
988 diffopts = webutil.difffeatureopts(web.req, web.repo.ui, 'annotate')
988 diffopts = webutil.difffeatureopts(web.req, web.repo.ui, 'annotate')
989 diffopts = {k: getattr(diffopts, k) for k in diffopts.defaults}
989 diffopts = {k: getattr(diffopts, k) for k in diffopts.defaults}
990
990
991 return web.sendtemplate(
991 return web.sendtemplate(
992 'fileannotate',
992 'fileannotate',
993 file=f,
993 file=f,
994 annotate=annotate,
994 annotate=annotate,
995 path=webutil.up(f),
995 path=webutil.up(f),
996 symrev=webutil.symrevorshortnode(web.req, fctx),
996 symrev=webutil.symrevorshortnode(web.req, fctx),
997 rename=webutil.renamelink(fctx),
997 rename=webutil.renamelink(fctx),
998 permissions=fctx.manifest().flags(f),
998 permissions=fctx.manifest().flags(f),
999 ishead=int(ishead),
999 ishead=int(ishead),
1000 diffopts=diffopts,
1000 diffopts=diffopts,
1001 **pycompat.strkwargs(webutil.commonentry(web.repo, fctx)))
1001 **pycompat.strkwargs(webutil.commonentry(web.repo, fctx)))
1002
1002
1003 @webcommand('filelog')
1003 @webcommand('filelog')
1004 def filelog(web):
1004 def filelog(web):
1005 """
1005 """
1006 /filelog/{revision}/{path}
1006 /filelog/{revision}/{path}
1007 --------------------------
1007 --------------------------
1008
1008
1009 Show information about the history of a file in the repository.
1009 Show information about the history of a file in the repository.
1010
1010
1011 The ``revcount`` query string argument can be defined to control the
1011 The ``revcount`` query string argument can be defined to control the
1012 maximum number of entries to show.
1012 maximum number of entries to show.
1013
1013
1014 The ``filelog`` template will be rendered.
1014 The ``filelog`` template will be rendered.
1015 """
1015 """
1016
1016
1017 try:
1017 try:
1018 fctx = webutil.filectx(web.repo, web.req)
1018 fctx = webutil.filectx(web.repo, web.req)
1019 f = fctx.path()
1019 f = fctx.path()
1020 fl = fctx.filelog()
1020 fl = fctx.filelog()
1021 except error.LookupError:
1021 except error.LookupError:
1022 f = webutil.cleanpath(web.repo, web.req.qsparams['file'])
1022 f = webutil.cleanpath(web.repo, web.req.qsparams['file'])
1023 fl = web.repo.file(f)
1023 fl = web.repo.file(f)
1024 numrevs = len(fl)
1024 numrevs = len(fl)
1025 if not numrevs: # file doesn't exist at all
1025 if not numrevs: # file doesn't exist at all
1026 raise
1026 raise
1027 rev = webutil.changectx(web.repo, web.req).rev()
1027 rev = webutil.changectx(web.repo, web.req).rev()
1028 first = fl.linkrev(0)
1028 first = fl.linkrev(0)
1029 if rev < first: # current rev is from before file existed
1029 if rev < first: # current rev is from before file existed
1030 raise
1030 raise
1031 frev = numrevs - 1
1031 frev = numrevs - 1
1032 while fl.linkrev(frev) > rev:
1032 while fl.linkrev(frev) > rev:
1033 frev -= 1
1033 frev -= 1
1034 fctx = web.repo.filectx(f, fl.linkrev(frev))
1034 fctx = web.repo.filectx(f, fl.linkrev(frev))
1035
1035
1036 revcount = web.maxshortchanges
1036 revcount = web.maxshortchanges
1037 if 'revcount' in web.req.qsparams:
1037 if 'revcount' in web.req.qsparams:
1038 try:
1038 try:
1039 revcount = int(web.req.qsparams.get('revcount', revcount))
1039 revcount = int(web.req.qsparams.get('revcount', revcount))
1040 revcount = max(revcount, 1)
1040 revcount = max(revcount, 1)
1041 web.tmpl.defaults['sessionvars']['revcount'] = revcount
1041 web.tmpl.defaults['sessionvars']['revcount'] = revcount
1042 except ValueError:
1042 except ValueError:
1043 pass
1043 pass
1044
1044
1045 lrange = webutil.linerange(web.req)
1045 lrange = webutil.linerange(web.req)
1046
1046
1047 lessvars = copy.copy(web.tmpl.defaults['sessionvars'])
1047 lessvars = copy.copy(web.tmpl.defaults['sessionvars'])
1048 lessvars['revcount'] = max(revcount // 2, 1)
1048 lessvars['revcount'] = max(revcount // 2, 1)
1049 morevars = copy.copy(web.tmpl.defaults['sessionvars'])
1049 morevars = copy.copy(web.tmpl.defaults['sessionvars'])
1050 morevars['revcount'] = revcount * 2
1050 morevars['revcount'] = revcount * 2
1051
1051
1052 patch = 'patch' in web.req.qsparams
1052 patch = 'patch' in web.req.qsparams
1053 if patch:
1053 if patch:
1054 lessvars['patch'] = morevars['patch'] = web.req.qsparams['patch']
1054 lessvars['patch'] = morevars['patch'] = web.req.qsparams['patch']
1055 descend = 'descend' in web.req.qsparams
1055 descend = 'descend' in web.req.qsparams
1056 if descend:
1056 if descend:
1057 lessvars['descend'] = morevars['descend'] = web.req.qsparams['descend']
1057 lessvars['descend'] = morevars['descend'] = web.req.qsparams['descend']
1058
1058
1059 count = fctx.filerev() + 1
1059 count = fctx.filerev() + 1
1060 start = max(0, count - revcount) # first rev on this page
1060 start = max(0, count - revcount) # first rev on this page
1061 end = min(count, start + revcount) # last rev on this page
1061 end = min(count, start + revcount) # last rev on this page
1062 parity = paritygen(web.stripecount, offset=start - end)
1062 parity = paritygen(web.stripecount, offset=start - end)
1063
1063
1064 repo = web.repo
1064 repo = web.repo
1065 filelog = fctx.filelog()
1065 filelog = fctx.filelog()
1066 revs = [filerev for filerev in filelog.revs(start, end - 1)
1066 revs = [filerev for filerev in filelog.revs(start, end - 1)
1067 if filelog.linkrev(filerev) in repo]
1067 if filelog.linkrev(filerev) in repo]
1068 entries = []
1068 entries = []
1069
1069
1070 diffstyle = web.config('web', 'style')
1070 diffstyle = web.config('web', 'style')
1071 if 'style' in web.req.qsparams:
1071 if 'style' in web.req.qsparams:
1072 diffstyle = web.req.qsparams['style']
1072 diffstyle = web.req.qsparams['style']
1073
1073
1074 def diff(fctx, linerange=None):
1074 def diff(fctx, linerange=None):
1075 ctx = fctx.changectx()
1075 ctx = fctx.changectx()
1076 basectx = ctx.p1()
1076 basectx = ctx.p1()
1077 path = fctx.path()
1077 path = fctx.path()
1078 return webutil.diffs(web, ctx, basectx, [path], diffstyle,
1078 return webutil.diffs(web, ctx, basectx, [path], diffstyle,
1079 linerange=linerange,
1079 linerange=linerange,
1080 lineidprefix='%s-' % ctx.hex()[:12])
1080 lineidprefix='%s-' % ctx.hex()[:12])
1081
1081
1082 linerange = None
1082 linerange = None
1083 if lrange is not None:
1083 if lrange is not None:
1084 linerange = webutil.formatlinerange(*lrange)
1084 linerange = webutil.formatlinerange(*lrange)
1085 # deactivate numeric nav links when linerange is specified as this
1085 # deactivate numeric nav links when linerange is specified as this
1086 # would required a dedicated "revnav" class
1086 # would required a dedicated "revnav" class
1087 nav = templateutil.mappinglist([])
1087 nav = templateutil.mappinglist([])
1088 if descend:
1088 if descend:
1089 it = dagop.blockdescendants(fctx, *lrange)
1089 it = dagop.blockdescendants(fctx, *lrange)
1090 else:
1090 else:
1091 it = dagop.blockancestors(fctx, *lrange)
1091 it = dagop.blockancestors(fctx, *lrange)
1092 for i, (c, lr) in enumerate(it, 1):
1092 for i, (c, lr) in enumerate(it, 1):
1093 diffs = None
1093 diffs = None
1094 if patch:
1094 if patch:
1095 diffs = diff(c, linerange=lr)
1095 diffs = diff(c, linerange=lr)
1096 # follow renames accross filtered (not in range) revisions
1096 # follow renames accross filtered (not in range) revisions
1097 path = c.path()
1097 path = c.path()
1098 entries.append(dict(
1098 entries.append(dict(
1099 parity=next(parity),
1099 parity=next(parity),
1100 filerev=c.rev(),
1100 filerev=c.rev(),
1101 file=path,
1101 file=path,
1102 diff=diffs,
1102 diff=diffs,
1103 linerange=webutil.formatlinerange(*lr),
1103 linerange=webutil.formatlinerange(*lr),
1104 **pycompat.strkwargs(webutil.commonentry(repo, c))))
1104 **pycompat.strkwargs(webutil.commonentry(repo, c))))
1105 if i == revcount:
1105 if i == revcount:
1106 break
1106 break
1107 lessvars['linerange'] = webutil.formatlinerange(*lrange)
1107 lessvars['linerange'] = webutil.formatlinerange(*lrange)
1108 morevars['linerange'] = lessvars['linerange']
1108 morevars['linerange'] = lessvars['linerange']
1109 else:
1109 else:
1110 for i in revs:
1110 for i in revs:
1111 iterfctx = fctx.filectx(i)
1111 iterfctx = fctx.filectx(i)
1112 diffs = None
1112 diffs = None
1113 if patch:
1113 if patch:
1114 diffs = diff(iterfctx)
1114 diffs = diff(iterfctx)
1115 entries.append(dict(
1115 entries.append(dict(
1116 parity=next(parity),
1116 parity=next(parity),
1117 filerev=i,
1117 filerev=i,
1118 file=f,
1118 file=f,
1119 diff=diffs,
1119 diff=diffs,
1120 rename=webutil.renamelink(iterfctx),
1120 rename=webutil.renamelink(iterfctx),
1121 **pycompat.strkwargs(webutil.commonentry(repo, iterfctx))))
1121 **pycompat.strkwargs(webutil.commonentry(repo, iterfctx))))
1122 entries.reverse()
1122 entries.reverse()
1123 revnav = webutil.filerevnav(web.repo, fctx.path())
1123 revnav = webutil.filerevnav(web.repo, fctx.path())
1124 nav = revnav.gen(end - 1, revcount, count)
1124 nav = revnav.gen(end - 1, revcount, count)
1125
1125
1126 latestentry = entries[:1]
1126 latestentry = entries[:1]
1127
1127
1128 return web.sendtemplate(
1128 return web.sendtemplate(
1129 'filelog',
1129 'filelog',
1130 file=f,
1130 file=f,
1131 nav=nav,
1131 nav=nav,
1132 symrev=webutil.symrevorshortnode(web.req, fctx),
1132 symrev=webutil.symrevorshortnode(web.req, fctx),
1133 entries=entries,
1133 entries=entries,
1134 descend=descend,
1134 descend=descend,
1135 patch=patch,
1135 patch=patch,
1136 latestentry=latestentry,
1136 latestentry=latestentry,
1137 linerange=linerange,
1137 linerange=linerange,
1138 revcount=revcount,
1138 revcount=revcount,
1139 morevars=morevars,
1139 morevars=morevars,
1140 lessvars=lessvars,
1140 lessvars=lessvars,
1141 **pycompat.strkwargs(webutil.commonentry(web.repo, fctx)))
1141 **pycompat.strkwargs(webutil.commonentry(web.repo, fctx)))
1142
1142
1143 @webcommand('archive')
1143 @webcommand('archive')
1144 def archive(web):
1144 def archive(web):
1145 """
1145 """
1146 /archive/{revision}.{format}[/{path}]
1146 /archive/{revision}.{format}[/{path}]
1147 -------------------------------------
1147 -------------------------------------
1148
1148
1149 Obtain an archive of repository content.
1149 Obtain an archive of repository content.
1150
1150
1151 The content and type of the archive is defined by a URL path parameter.
1151 The content and type of the archive is defined by a URL path parameter.
1152 ``format`` is the file extension of the archive type to be generated. e.g.
1152 ``format`` is the file extension of the archive type to be generated. e.g.
1153 ``zip`` or ``tar.bz2``. Not all archive types may be allowed by your
1153 ``zip`` or ``tar.bz2``. Not all archive types may be allowed by your
1154 server configuration.
1154 server configuration.
1155
1155
1156 The optional ``path`` URL parameter controls content to include in the
1156 The optional ``path`` URL parameter controls content to include in the
1157 archive. If omitted, every file in the specified revision is present in the
1157 archive. If omitted, every file in the specified revision is present in the
1158 archive. If included, only the specified file or contents of the specified
1158 archive. If included, only the specified file or contents of the specified
1159 directory will be included in the archive.
1159 directory will be included in the archive.
1160
1160
1161 No template is used for this handler. Raw, binary content is generated.
1161 No template is used for this handler. Raw, binary content is generated.
1162 """
1162 """
1163
1163
1164 type_ = web.req.qsparams.get('type')
1164 type_ = web.req.qsparams.get('type')
1165 allowed = web.configlist("web", "allow_archive")
1165 allowed = web.configlist("web", "allow_archive")
1166 key = web.req.qsparams['node']
1166 key = web.req.qsparams['node']
1167
1167
1168 if type_ not in webutil.archivespecs:
1168 if type_ not in webutil.archivespecs:
1169 msg = 'Unsupported archive type: %s' % type_
1169 msg = 'Unsupported archive type: %s' % type_
1170 raise ErrorResponse(HTTP_NOT_FOUND, msg)
1170 raise ErrorResponse(HTTP_NOT_FOUND, msg)
1171
1171
1172 if not ((type_ in allowed or
1172 if not ((type_ in allowed or
1173 web.configbool("web", "allow" + type_))):
1173 web.configbool("web", "allow" + type_))):
1174 msg = 'Archive type not allowed: %s' % type_
1174 msg = 'Archive type not allowed: %s' % type_
1175 raise ErrorResponse(HTTP_FORBIDDEN, msg)
1175 raise ErrorResponse(HTTP_FORBIDDEN, msg)
1176
1176
1177 reponame = re.sub(br"\W+", "-", os.path.basename(web.reponame))
1177 reponame = re.sub(br"\W+", "-", os.path.basename(web.reponame))
1178 cnode = web.repo.lookup(key)
1178 cnode = web.repo.lookup(key)
1179 arch_version = key
1179 arch_version = key
1180 if cnode == key or key == 'tip':
1180 if cnode == key or key == 'tip':
1181 arch_version = short(cnode)
1181 arch_version = short(cnode)
1182 name = "%s-%s" % (reponame, arch_version)
1182 name = "%s-%s" % (reponame, arch_version)
1183
1183
1184 ctx = webutil.changectx(web.repo, web.req)
1184 ctx = webutil.changectx(web.repo, web.req)
1185 pats = []
1185 pats = []
1186 match = scmutil.match(ctx, [])
1186 match = scmutil.match(ctx, [])
1187 file = web.req.qsparams.get('file')
1187 file = web.req.qsparams.get('file')
1188 if file:
1188 if file:
1189 pats = ['path:' + file]
1189 pats = ['path:' + file]
1190 match = scmutil.match(ctx, pats, default='path')
1190 match = scmutil.match(ctx, pats, default='path')
1191 if pats:
1191 if pats:
1192 files = [f for f in ctx.manifest().keys() if match(f)]
1192 files = [f for f in ctx.manifest().keys() if match(f)]
1193 if not files:
1193 if not files:
1194 raise ErrorResponse(HTTP_NOT_FOUND,
1194 raise ErrorResponse(HTTP_NOT_FOUND,
1195 'file(s) not found: %s' % file)
1195 'file(s) not found: %s' % file)
1196
1196
1197 mimetype, artype, extension, encoding = webutil.archivespecs[type_]
1197 mimetype, artype, extension, encoding = webutil.archivespecs[type_]
1198
1198
1199 web.res.headers['Content-Type'] = mimetype
1199 web.res.headers['Content-Type'] = mimetype
1200 web.res.headers['Content-Disposition'] = 'attachment; filename=%s%s' % (
1200 web.res.headers['Content-Disposition'] = 'attachment; filename=%s%s' % (
1201 name, extension)
1201 name, extension)
1202
1202
1203 if encoding:
1203 if encoding:
1204 web.res.headers['Content-Encoding'] = encoding
1204 web.res.headers['Content-Encoding'] = encoding
1205
1205
1206 web.res.setbodywillwrite()
1206 web.res.setbodywillwrite()
1207 if list(web.res.sendresponse()):
1207 if list(web.res.sendresponse()):
1208 raise error.ProgrammingError('sendresponse() should not emit data '
1208 raise error.ProgrammingError('sendresponse() should not emit data '
1209 'if writing later')
1209 'if writing later')
1210
1210
1211 bodyfh = web.res.getbodyfile()
1211 bodyfh = web.res.getbodyfile()
1212
1212
1213 archival.archive(web.repo, bodyfh, cnode, artype, prefix=name,
1213 archival.archive(web.repo, bodyfh, cnode, artype, prefix=name,
1214 matchfn=match,
1214 matchfn=match,
1215 subrepos=web.configbool("web", "archivesubrepos"))
1215 subrepos=web.configbool("web", "archivesubrepos"))
1216
1216
1217 return []
1217 return []
1218
1218
1219 @webcommand('static')
1219 @webcommand('static')
1220 def static(web):
1220 def static(web):
1221 fname = web.req.qsparams['file']
1221 fname = web.req.qsparams['file']
1222 # a repo owner may set web.static in .hg/hgrc to get any file
1222 # a repo owner may set web.static in .hg/hgrc to get any file
1223 # readable by the user running the CGI script
1223 # readable by the user running the CGI script
1224 static = web.config("web", "static", None, untrusted=False)
1224 static = web.config("web", "static", None, untrusted=False)
1225 if not static:
1225 if not static:
1226 tp = web.templatepath or templater.templatepaths()
1226 tp = web.templatepath or templater.templatepaths()
1227 if isinstance(tp, str):
1227 if isinstance(tp, str):
1228 tp = [tp]
1228 tp = [tp]
1229 static = [os.path.join(p, 'static') for p in tp]
1229 static = [os.path.join(p, 'static') for p in tp]
1230
1230
1231 staticfile(static, fname, web.res)
1231 staticfile(static, fname, web.res)
1232 return web.res.sendresponse()
1232 return web.res.sendresponse()
1233
1233
1234 @webcommand('graph')
1234 @webcommand('graph')
1235 def graph(web):
1235 def graph(web):
1236 """
1236 """
1237 /graph[/{revision}]
1237 /graph[/{revision}]
1238 -------------------
1238 -------------------
1239
1239
1240 Show information about the graphical topology of the repository.
1240 Show information about the graphical topology of the repository.
1241
1241
1242 Information rendered by this handler can be used to create visual
1242 Information rendered by this handler can be used to create visual
1243 representations of repository topology.
1243 representations of repository topology.
1244
1244
1245 The ``revision`` URL parameter controls the starting changeset. If it's
1245 The ``revision`` URL parameter controls the starting changeset. If it's
1246 absent, the default is ``tip``.
1246 absent, the default is ``tip``.
1247
1247
1248 The ``revcount`` query string argument can define the number of changesets
1248 The ``revcount`` query string argument can define the number of changesets
1249 to show information for.
1249 to show information for.
1250
1250
1251 The ``graphtop`` query string argument can specify the starting changeset
1251 The ``graphtop`` query string argument can specify the starting changeset
1252 for producing ``jsdata`` variable that is used for rendering graph in
1252 for producing ``jsdata`` variable that is used for rendering graph in
1253 JavaScript. By default it has the same value as ``revision``.
1253 JavaScript. By default it has the same value as ``revision``.
1254
1254
1255 This handler will render the ``graph`` template.
1255 This handler will render the ``graph`` template.
1256 """
1256 """
1257
1257
1258 if 'node' in web.req.qsparams:
1258 if 'node' in web.req.qsparams:
1259 ctx = webutil.changectx(web.repo, web.req)
1259 ctx = webutil.changectx(web.repo, web.req)
1260 symrev = webutil.symrevorshortnode(web.req, ctx)
1260 symrev = webutil.symrevorshortnode(web.req, ctx)
1261 else:
1261 else:
1262 ctx = web.repo['tip']
1262 ctx = web.repo['tip']
1263 symrev = 'tip'
1263 symrev = 'tip'
1264 rev = ctx.rev()
1264 rev = ctx.rev()
1265
1265
1266 bg_height = 39
1266 bg_height = 39
1267 revcount = web.maxshortchanges
1267 revcount = web.maxshortchanges
1268 if 'revcount' in web.req.qsparams:
1268 if 'revcount' in web.req.qsparams:
1269 try:
1269 try:
1270 revcount = int(web.req.qsparams.get('revcount', revcount))
1270 revcount = int(web.req.qsparams.get('revcount', revcount))
1271 revcount = max(revcount, 1)
1271 revcount = max(revcount, 1)
1272 web.tmpl.defaults['sessionvars']['revcount'] = revcount
1272 web.tmpl.defaults['sessionvars']['revcount'] = revcount
1273 except ValueError:
1273 except ValueError:
1274 pass
1274 pass
1275
1275
1276 lessvars = copy.copy(web.tmpl.defaults['sessionvars'])
1276 lessvars = copy.copy(web.tmpl.defaults['sessionvars'])
1277 lessvars['revcount'] = max(revcount // 2, 1)
1277 lessvars['revcount'] = max(revcount // 2, 1)
1278 morevars = copy.copy(web.tmpl.defaults['sessionvars'])
1278 morevars = copy.copy(web.tmpl.defaults['sessionvars'])
1279 morevars['revcount'] = revcount * 2
1279 morevars['revcount'] = revcount * 2
1280
1280
1281 graphtop = web.req.qsparams.get('graphtop', ctx.hex())
1281 graphtop = web.req.qsparams.get('graphtop', ctx.hex())
1282 graphvars = copy.copy(web.tmpl.defaults['sessionvars'])
1282 graphvars = copy.copy(web.tmpl.defaults['sessionvars'])
1283 graphvars['graphtop'] = graphtop
1283 graphvars['graphtop'] = graphtop
1284
1284
1285 count = len(web.repo)
1285 count = len(web.repo)
1286 pos = rev
1286 pos = rev
1287
1287
1288 uprev = min(max(0, count - 1), rev + revcount)
1288 uprev = min(max(0, count - 1), rev + revcount)
1289 downrev = max(0, rev - revcount)
1289 downrev = max(0, rev - revcount)
1290 changenav = webutil.revnav(web.repo).gen(pos, revcount, count)
1290 changenav = webutil.revnav(web.repo).gen(pos, revcount, count)
1291
1291
1292 tree = []
1292 tree = []
1293 nextentry = []
1293 nextentry = []
1294 lastrev = 0
1294 lastrev = 0
1295 if pos != -1:
1295 if pos != -1:
1296 allrevs = web.repo.changelog.revs(pos, 0)
1296 allrevs = web.repo.changelog.revs(pos, 0)
1297 revs = []
1297 revs = []
1298 for i in allrevs:
1298 for i in allrevs:
1299 revs.append(i)
1299 revs.append(i)
1300 if len(revs) >= revcount + 1:
1300 if len(revs) >= revcount + 1:
1301 break
1301 break
1302
1302
1303 if len(revs) > revcount:
1303 if len(revs) > revcount:
1304 nextentry = [webutil.commonentry(web.repo, web.repo[revs[-1]])]
1304 nextentry = [webutil.commonentry(web.repo, web.repo[revs[-1]])]
1305 revs = revs[:-1]
1305 revs = revs[:-1]
1306
1306
1307 lastrev = revs[-1]
1307 lastrev = revs[-1]
1308
1308
1309 # We have to feed a baseset to dagwalker as it is expecting smartset
1309 # We have to feed a baseset to dagwalker as it is expecting smartset
1310 # object. This does not have a big impact on hgweb performance itself
1310 # object. This does not have a big impact on hgweb performance itself
1311 # since hgweb graphing code is not itself lazy yet.
1311 # since hgweb graphing code is not itself lazy yet.
1312 dag = graphmod.dagwalker(web.repo, smartset.baseset(revs))
1312 dag = graphmod.dagwalker(web.repo, smartset.baseset(revs))
1313 # As we said one line above... not lazy.
1313 # As we said one line above... not lazy.
1314 tree = list(item for item in graphmod.colored(dag, web.repo)
1314 tree = list(item for item in graphmod.colored(dag, web.repo)
1315 if item[1] == graphmod.CHANGESET)
1315 if item[1] == graphmod.CHANGESET)
1316
1316
1317 def fulltree():
1317 def fulltree():
1318 pos = web.repo[graphtop].rev()
1318 pos = web.repo[graphtop].rev()
1319 tree = []
1319 tree = []
1320 if pos != -1:
1320 if pos != -1:
1321 revs = web.repo.changelog.revs(pos, lastrev)
1321 revs = web.repo.changelog.revs(pos, lastrev)
1322 dag = graphmod.dagwalker(web.repo, smartset.baseset(revs))
1322 dag = graphmod.dagwalker(web.repo, smartset.baseset(revs))
1323 tree = list(item for item in graphmod.colored(dag, web.repo)
1323 tree = list(item for item in graphmod.colored(dag, web.repo)
1324 if item[1] == graphmod.CHANGESET)
1324 if item[1] == graphmod.CHANGESET)
1325 return tree
1325 return tree
1326
1326
1327 def jsdata():
1327 def jsdata():
1328 return [{'node': pycompat.bytestr(ctx),
1328 return [{'node': pycompat.bytestr(ctx),
1329 'graphnode': webutil.getgraphnode(web.repo, ctx),
1329 'graphnode': webutil.getgraphnode(web.repo, ctx),
1330 'vertex': vtx,
1330 'vertex': vtx,
1331 'edges': edges}
1331 'edges': edges}
1332 for (id, type, ctx, vtx, edges) in fulltree()]
1332 for (id, type, ctx, vtx, edges) in fulltree()]
1333
1333
1334 def nodes():
1334 def nodes():
1335 parity = paritygen(web.stripecount)
1335 parity = paritygen(web.stripecount)
1336 for row, (id, type, ctx, vtx, edges) in enumerate(tree):
1336 for row, (id, type, ctx, vtx, edges) in enumerate(tree):
1337 entry = webutil.commonentry(web.repo, ctx)
1337 entry = webutil.commonentry(web.repo, ctx)
1338 edgedata = [{'col': edge[0],
1338 edgedata = [{'col': edge[0],
1339 'nextcol': edge[1],
1339 'nextcol': edge[1],
1340 'color': (edge[2] - 1) % 6 + 1,
1340 'color': (edge[2] - 1) % 6 + 1,
1341 'width': edge[3],
1341 'width': edge[3],
1342 'bcolor': edge[4]}
1342 'bcolor': edge[4]}
1343 for edge in edges]
1343 for edge in edges]
1344
1344
1345 entry.update({'col': vtx[0],
1345 entry.update({'col': vtx[0],
1346 'color': (vtx[1] - 1) % 6 + 1,
1346 'color': (vtx[1] - 1) % 6 + 1,
1347 'parity': next(parity),
1347 'parity': next(parity),
1348 'edges': edgedata,
1348 'edges': edgedata,
1349 'row': row,
1349 'row': row,
1350 'nextrow': row + 1})
1350 'nextrow': row + 1})
1351
1351
1352 yield entry
1352 yield entry
1353
1353
1354 rows = len(tree)
1354 rows = len(tree)
1355
1355
1356 return web.sendtemplate(
1356 return web.sendtemplate(
1357 'graph',
1357 'graph',
1358 rev=rev,
1358 rev=rev,
1359 symrev=symrev,
1359 symrev=symrev,
1360 revcount=revcount,
1360 revcount=revcount,
1361 uprev=uprev,
1361 uprev=uprev,
1362 lessvars=lessvars,
1362 lessvars=lessvars,
1363 morevars=morevars,
1363 morevars=morevars,
1364 downrev=downrev,
1364 downrev=downrev,
1365 graphvars=graphvars,
1365 graphvars=graphvars,
1366 rows=rows,
1366 rows=rows,
1367 bg_height=bg_height,
1367 bg_height=bg_height,
1368 changesets=count,
1368 changesets=count,
1369 nextentry=nextentry,
1369 nextentry=nextentry,
1370 jsdata=lambda **x: jsdata(),
1370 jsdata=lambda **x: jsdata(),
1371 nodes=lambda **x: nodes(),
1371 nodes=lambda **x: nodes(),
1372 node=ctx.hex(),
1372 node=ctx.hex(),
1373 changenav=changenav)
1373 changenav=changenav)
1374
1374
1375 def _getdoc(e):
1375 def _getdoc(e):
1376 doc = e[0].__doc__
1376 doc = e[0].__doc__
1377 if doc:
1377 if doc:
1378 doc = _(doc).partition('\n')[0]
1378 doc = _(doc).partition('\n')[0]
1379 else:
1379 else:
1380 doc = _('(no help text available)')
1380 doc = _('(no help text available)')
1381 return doc
1381 return doc
1382
1382
1383 @webcommand('help')
1383 @webcommand('help')
1384 def help(web):
1384 def help(web):
1385 """
1385 """
1386 /help[/{topic}]
1386 /help[/{topic}]
1387 ---------------
1387 ---------------
1388
1388
1389 Render help documentation.
1389 Render help documentation.
1390
1390
1391 This web command is roughly equivalent to :hg:`help`. If a ``topic``
1391 This web command is roughly equivalent to :hg:`help`. If a ``topic``
1392 is defined, that help topic will be rendered. If not, an index of
1392 is defined, that help topic will be rendered. If not, an index of
1393 available help topics will be rendered.
1393 available help topics will be rendered.
1394
1394
1395 The ``help`` template will be rendered when requesting help for a topic.
1395 The ``help`` template will be rendered when requesting help for a topic.
1396 ``helptopics`` will be rendered for the index of help topics.
1396 ``helptopics`` will be rendered for the index of help topics.
1397 """
1397 """
1398 from .. import commands, help as helpmod # avoid cycle
1398 from .. import commands, help as helpmod # avoid cycle
1399
1399
1400 topicname = web.req.qsparams.get('node')
1400 topicname = web.req.qsparams.get('node')
1401 if not topicname:
1401 if not topicname:
1402 def topics(**map):
1402 def topics(**map):
1403 for entries, summary, _doc in helpmod.helptable:
1403 for entries, summary, _doc in helpmod.helptable:
1404 yield {'topic': entries[0], 'summary': summary}
1404 yield {'topic': entries[0], 'summary': summary}
1405
1405
1406 early, other = [], []
1406 early, other = [], []
1407 primary = lambda s: s.partition('|')[0]
1407 primary = lambda s: s.partition('|')[0]
1408 for c, e in commands.table.iteritems():
1408 for c, e in commands.table.iteritems():
1409 doc = _getdoc(e)
1409 doc = _getdoc(e)
1410 if 'DEPRECATED' in doc or c.startswith('debug'):
1410 if 'DEPRECATED' in doc or c.startswith('debug'):
1411 continue
1411 continue
1412 cmd = primary(c)
1412 cmd = primary(c)
1413 if cmd.startswith('^'):
1413 if cmd.startswith('^'):
1414 early.append((cmd[1:], doc))
1414 early.append((cmd[1:], doc))
1415 else:
1415 else:
1416 other.append((cmd, doc))
1416 other.append((cmd, doc))
1417
1417
1418 early.sort()
1418 early.sort()
1419 other.sort()
1419 other.sort()
1420
1420
1421 def earlycommands(**map):
1421 def earlycommands(**map):
1422 for c, doc in early:
1422 for c, doc in early:
1423 yield {'topic': c, 'summary': doc}
1423 yield {'topic': c, 'summary': doc}
1424
1424
1425 def othercommands(**map):
1425 def othercommands(**map):
1426 for c, doc in other:
1426 for c, doc in other:
1427 yield {'topic': c, 'summary': doc}
1427 yield {'topic': c, 'summary': doc}
1428
1428
1429 return web.sendtemplate(
1429 return web.sendtemplate(
1430 'helptopics',
1430 'helptopics',
1431 topics=topics,
1431 topics=topics,
1432 earlycommands=earlycommands,
1432 earlycommands=earlycommands,
1433 othercommands=othercommands,
1433 othercommands=othercommands,
1434 title='Index')
1434 title='Index')
1435
1435
1436 # Render an index of sub-topics.
1436 # Render an index of sub-topics.
1437 if topicname in helpmod.subtopics:
1437 if topicname in helpmod.subtopics:
1438 topics = []
1438 topics = []
1439 for entries, summary, _doc in helpmod.subtopics[topicname]:
1439 for entries, summary, _doc in helpmod.subtopics[topicname]:
1440 topics.append({
1440 topics.append({
1441 'topic': '%s.%s' % (topicname, entries[0]),
1441 'topic': '%s.%s' % (topicname, entries[0]),
1442 'basename': entries[0],
1442 'basename': entries[0],
1443 'summary': summary,
1443 'summary': summary,
1444 })
1444 })
1445
1445
1446 return web.sendtemplate(
1446 return web.sendtemplate(
1447 'helptopics',
1447 'helptopics',
1448 topics=topics,
1448 topics=topics,
1449 title=topicname,
1449 title=topicname,
1450 subindex=True)
1450 subindex=True)
1451
1451
1452 u = webutil.wsgiui.load()
1452 u = webutil.wsgiui.load()
1453 u.verbose = True
1453 u.verbose = True
1454
1454
1455 # Render a page from a sub-topic.
1455 # Render a page from a sub-topic.
1456 if '.' in topicname:
1456 if '.' in topicname:
1457 # TODO implement support for rendering sections, like
1457 # TODO implement support for rendering sections, like
1458 # `hg help` works.
1458 # `hg help` works.
1459 topic, subtopic = topicname.split('.', 1)
1459 topic, subtopic = topicname.split('.', 1)
1460 if topic not in helpmod.subtopics:
1460 if topic not in helpmod.subtopics:
1461 raise ErrorResponse(HTTP_NOT_FOUND)
1461 raise ErrorResponse(HTTP_NOT_FOUND)
1462 else:
1462 else:
1463 topic = topicname
1463 topic = topicname
1464 subtopic = None
1464 subtopic = None
1465
1465
1466 try:
1466 try:
1467 doc = helpmod.help_(u, commands, topic, subtopic=subtopic)
1467 doc = helpmod.help_(u, commands, topic, subtopic=subtopic)
1468 except error.Abort:
1468 except error.Abort:
1469 raise ErrorResponse(HTTP_NOT_FOUND)
1469 raise ErrorResponse(HTTP_NOT_FOUND)
1470
1470
1471 return web.sendtemplate(
1471 return web.sendtemplate(
1472 'help',
1472 'help',
1473 topic=topicname,
1473 topic=topicname,
1474 doc=doc)
1474 doc=doc)
1475
1475
1476 # tell hggettext to extract docstrings from these functions:
1476 # tell hggettext to extract docstrings from these functions:
1477 i18nfunctions = commands.values()
1477 i18nfunctions = commands.values()
@@ -1,737 +1,736
1 # hgweb/webutil.py - utility library for the web interface.
1 # hgweb/webutil.py - utility library for the web interface.
2 #
2 #
3 # Copyright 21 May 2005 - (c) 2005 Jake Edge <jake@edge2.net>
3 # Copyright 21 May 2005 - (c) 2005 Jake Edge <jake@edge2.net>
4 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
4 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
5 #
5 #
6 # This software may be used and distributed according to the terms of the
6 # This software may be used and distributed according to the terms of the
7 # GNU General Public License version 2 or any later version.
7 # GNU General Public License version 2 or any later version.
8
8
9 from __future__ import absolute_import
9 from __future__ import absolute_import
10
10
11 import copy
11 import copy
12 import difflib
12 import difflib
13 import os
13 import os
14 import re
14 import re
15
15
16 from ..i18n import _
16 from ..i18n import _
17 from ..node import hex, nullid, short
17 from ..node import hex, nullid, short
18
18
19 from .common import (
19 from .common import (
20 ErrorResponse,
20 ErrorResponse,
21 HTTP_BAD_REQUEST,
21 HTTP_BAD_REQUEST,
22 HTTP_NOT_FOUND,
22 HTTP_NOT_FOUND,
23 paritygen,
23 paritygen,
24 )
24 )
25
25
26 from .. import (
26 from .. import (
27 context,
27 context,
28 error,
28 error,
29 match,
29 match,
30 mdiff,
30 mdiff,
31 obsutil,
31 obsutil,
32 patch,
32 patch,
33 pathutil,
33 pathutil,
34 pycompat,
34 pycompat,
35 scmutil,
35 scmutil,
36 templatefilters,
36 templatefilters,
37 templatekw,
37 templatekw,
38 templateutil,
38 templateutil,
39 ui as uimod,
39 ui as uimod,
40 util,
40 util,
41 )
41 )
42
42
43 from ..utils import (
43 from ..utils import (
44 stringutil,
44 stringutil,
45 )
45 )
46
46
47 archivespecs = util.sortdict((
47 archivespecs = util.sortdict((
48 ('zip', ('application/zip', 'zip', '.zip', None)),
48 ('zip', ('application/zip', 'zip', '.zip', None)),
49 ('gz', ('application/x-gzip', 'tgz', '.tar.gz', None)),
49 ('gz', ('application/x-gzip', 'tgz', '.tar.gz', None)),
50 ('bz2', ('application/x-bzip2', 'tbz2', '.tar.bz2', None)),
50 ('bz2', ('application/x-bzip2', 'tbz2', '.tar.bz2', None)),
51 ))
51 ))
52
52
53 def archivelist(ui, nodeid, url=None):
53 def archivelist(ui, nodeid, url=None):
54 allowed = ui.configlist('web', 'allow_archive', untrusted=True)
54 allowed = ui.configlist('web', 'allow_archive', untrusted=True)
55 archives = []
55 archives = []
56
56
57 for typ, spec in archivespecs.iteritems():
57 for typ, spec in archivespecs.iteritems():
58 if typ in allowed or ui.configbool('web', 'allow' + typ,
58 if typ in allowed or ui.configbool('web', 'allow' + typ,
59 untrusted=True):
59 untrusted=True):
60 archives.append({
60 archives.append({
61 'type': typ,
61 'type': typ,
62 'extension': spec[2],
62 'extension': spec[2],
63 'node': nodeid,
63 'node': nodeid,
64 'url': url,
64 'url': url,
65 })
65 })
66
66
67 return templateutil.mappinglist(archives)
67 return templateutil.mappinglist(archives)
68
68
69 def up(p):
69 def up(p):
70 if p[0:1] != "/":
70 if p[0:1] != "/":
71 p = "/" + p
71 p = "/" + p
72 if p[-1:] == "/":
72 if p[-1:] == "/":
73 p = p[:-1]
73 p = p[:-1]
74 up = os.path.dirname(p)
74 up = os.path.dirname(p)
75 if up == "/":
75 if up == "/":
76 return "/"
76 return "/"
77 return up + "/"
77 return up + "/"
78
78
79 def _navseq(step, firststep=None):
79 def _navseq(step, firststep=None):
80 if firststep:
80 if firststep:
81 yield firststep
81 yield firststep
82 if firststep >= 20 and firststep <= 40:
82 if firststep >= 20 and firststep <= 40:
83 firststep = 50
83 firststep = 50
84 yield firststep
84 yield firststep
85 assert step > 0
85 assert step > 0
86 assert firststep > 0
86 assert firststep > 0
87 while step <= firststep:
87 while step <= firststep:
88 step *= 10
88 step *= 10
89 while True:
89 while True:
90 yield 1 * step
90 yield 1 * step
91 yield 3 * step
91 yield 3 * step
92 step *= 10
92 step *= 10
93
93
94 class revnav(object):
94 class revnav(object):
95
95
96 def __init__(self, repo):
96 def __init__(self, repo):
97 """Navigation generation object
97 """Navigation generation object
98
98
99 :repo: repo object we generate nav for
99 :repo: repo object we generate nav for
100 """
100 """
101 # used for hex generation
101 # used for hex generation
102 self._revlog = repo.changelog
102 self._revlog = repo.changelog
103
103
104 def __nonzero__(self):
104 def __nonzero__(self):
105 """return True if any revision to navigate over"""
105 """return True if any revision to navigate over"""
106 return self._first() is not None
106 return self._first() is not None
107
107
108 __bool__ = __nonzero__
108 __bool__ = __nonzero__
109
109
110 def _first(self):
110 def _first(self):
111 """return the minimum non-filtered changeset or None"""
111 """return the minimum non-filtered changeset or None"""
112 try:
112 try:
113 return next(iter(self._revlog))
113 return next(iter(self._revlog))
114 except StopIteration:
114 except StopIteration:
115 return None
115 return None
116
116
117 def hex(self, rev):
117 def hex(self, rev):
118 return hex(self._revlog.node(rev))
118 return hex(self._revlog.node(rev))
119
119
120 def gen(self, pos, pagelen, limit):
120 def gen(self, pos, pagelen, limit):
121 """computes label and revision id for navigation link
121 """computes label and revision id for navigation link
122
122
123 :pos: is the revision relative to which we generate navigation.
123 :pos: is the revision relative to which we generate navigation.
124 :pagelen: the size of each navigation page
124 :pagelen: the size of each navigation page
125 :limit: how far shall we link
125 :limit: how far shall we link
126
126
127 The return is:
127 The return is:
128 - a single element mappinglist
128 - a single element mappinglist
129 - containing a dictionary with a `before` and `after` key
129 - containing a dictionary with a `before` and `after` key
130 - values are dictionaries with `label` and `node` keys
130 - values are dictionaries with `label` and `node` keys
131 """
131 """
132 if not self:
132 if not self:
133 # empty repo
133 # empty repo
134 return templateutil.mappinglist([
134 return templateutil.mappinglist([
135 {'before': templateutil.mappinglist([]),
135 {'before': templateutil.mappinglist([]),
136 'after': templateutil.mappinglist([])},
136 'after': templateutil.mappinglist([])},
137 ])
137 ])
138
138
139 targets = []
139 targets = []
140 for f in _navseq(1, pagelen):
140 for f in _navseq(1, pagelen):
141 if f > limit:
141 if f > limit:
142 break
142 break
143 targets.append(pos + f)
143 targets.append(pos + f)
144 targets.append(pos - f)
144 targets.append(pos - f)
145 targets.sort()
145 targets.sort()
146
146
147 first = self._first()
147 first = self._first()
148 navbefore = [{'label': '(%i)' % first, 'node': self.hex(first)}]
148 navbefore = [{'label': '(%i)' % first, 'node': self.hex(first)}]
149 navafter = []
149 navafter = []
150 for rev in targets:
150 for rev in targets:
151 if rev not in self._revlog:
151 if rev not in self._revlog:
152 continue
152 continue
153 if pos < rev < limit:
153 if pos < rev < limit:
154 navafter.append({'label': '+%d' % abs(rev - pos),
154 navafter.append({'label': '+%d' % abs(rev - pos),
155 'node': self.hex(rev)})
155 'node': self.hex(rev)})
156 if 0 < rev < pos:
156 if 0 < rev < pos:
157 navbefore.append({'label': '-%d' % abs(rev - pos),
157 navbefore.append({'label': '-%d' % abs(rev - pos),
158 'node': self.hex(rev)})
158 'node': self.hex(rev)})
159
159
160 navafter.append({'label': 'tip', 'node': 'tip'})
160 navafter.append({'label': 'tip', 'node': 'tip'})
161
161
162 # TODO: maybe this can be a scalar object supporting tomap()
162 # TODO: maybe this can be a scalar object supporting tomap()
163 return templateutil.mappinglist([
163 return templateutil.mappinglist([
164 {'before': templateutil.mappinglist(navbefore),
164 {'before': templateutil.mappinglist(navbefore),
165 'after': templateutil.mappinglist(navafter)},
165 'after': templateutil.mappinglist(navafter)},
166 ])
166 ])
167
167
168 class filerevnav(revnav):
168 class filerevnav(revnav):
169
169
170 def __init__(self, repo, path):
170 def __init__(self, repo, path):
171 """Navigation generation object
171 """Navigation generation object
172
172
173 :repo: repo object we generate nav for
173 :repo: repo object we generate nav for
174 :path: path of the file we generate nav for
174 :path: path of the file we generate nav for
175 """
175 """
176 # used for iteration
176 # used for iteration
177 self._changelog = repo.unfiltered().changelog
177 self._changelog = repo.unfiltered().changelog
178 # used for hex generation
178 # used for hex generation
179 self._revlog = repo.file(path)
179 self._revlog = repo.file(path)
180
180
181 def hex(self, rev):
181 def hex(self, rev):
182 return hex(self._changelog.node(self._revlog.linkrev(rev)))
182 return hex(self._changelog.node(self._revlog.linkrev(rev)))
183
183
184 # TODO: maybe this can be a wrapper class for changectx/filectx list, which
184 # TODO: maybe this can be a wrapper class for changectx/filectx list, which
185 # yields {'ctx': ctx}
185 # yields {'ctx': ctx}
186 def _ctxsgen(context, ctxs):
186 def _ctxsgen(context, ctxs):
187 for s in ctxs:
187 for s in ctxs:
188 d = {
188 d = {
189 'node': s.hex(),
189 'node': s.hex(),
190 'rev': s.rev(),
190 'rev': s.rev(),
191 'user': s.user(),
191 'user': s.user(),
192 'date': s.date(),
192 'date': s.date(),
193 'description': s.description(),
193 'description': s.description(),
194 'branch': s.branch(),
194 'branch': s.branch(),
195 }
195 }
196 if util.safehasattr(s, 'path'):
196 if util.safehasattr(s, 'path'):
197 d['file'] = s.path()
197 d['file'] = s.path()
198 yield d
198 yield d
199
199
200 def _siblings(siblings=None, hiderev=None):
200 def _siblings(siblings=None, hiderev=None):
201 if siblings is None:
201 if siblings is None:
202 siblings = []
202 siblings = []
203 siblings = [s for s in siblings if s.node() != nullid]
203 siblings = [s for s in siblings if s.node() != nullid]
204 if len(siblings) == 1 and siblings[0].rev() == hiderev:
204 if len(siblings) == 1 and siblings[0].rev() == hiderev:
205 siblings = []
205 siblings = []
206 return templateutil.mappinggenerator(_ctxsgen, args=(siblings,))
206 return templateutil.mappinggenerator(_ctxsgen, args=(siblings,))
207
207
208 def difffeatureopts(req, ui, section):
208 def difffeatureopts(req, ui, section):
209 diffopts = patch.difffeatureopts(ui, untrusted=True,
209 diffopts = patch.difffeatureopts(ui, untrusted=True,
210 section=section, whitespace=True)
210 section=section, whitespace=True)
211
211
212 for k in ('ignorews', 'ignorewsamount', 'ignorewseol', 'ignoreblanklines'):
212 for k in ('ignorews', 'ignorewsamount', 'ignorewseol', 'ignoreblanklines'):
213 v = req.qsparams.get(k)
213 v = req.qsparams.get(k)
214 if v is not None:
214 if v is not None:
215 v = stringutil.parsebool(v)
215 v = stringutil.parsebool(v)
216 setattr(diffopts, k, v if v is not None else True)
216 setattr(diffopts, k, v if v is not None else True)
217
217
218 return diffopts
218 return diffopts
219
219
220 def annotate(req, fctx, ui):
220 def annotate(req, fctx, ui):
221 diffopts = difffeatureopts(req, ui, 'annotate')
221 diffopts = difffeatureopts(req, ui, 'annotate')
222 return fctx.annotate(follow=True, diffopts=diffopts)
222 return fctx.annotate(follow=True, diffopts=diffopts)
223
223
224 def parents(ctx, hide=None):
224 def parents(ctx, hide=None):
225 if isinstance(ctx, context.basefilectx):
225 if isinstance(ctx, context.basefilectx):
226 introrev = ctx.introrev()
226 introrev = ctx.introrev()
227 if ctx.changectx().rev() != introrev:
227 if ctx.changectx().rev() != introrev:
228 return _siblings([ctx.repo()[introrev]], hide)
228 return _siblings([ctx.repo()[introrev]], hide)
229 return _siblings(ctx.parents(), hide)
229 return _siblings(ctx.parents(), hide)
230
230
231 def children(ctx, hide=None):
231 def children(ctx, hide=None):
232 return _siblings(ctx.children(), hide)
232 return _siblings(ctx.children(), hide)
233
233
234 def renamelink(fctx):
234 def renamelink(fctx):
235 r = fctx.renamed()
235 r = fctx.renamed()
236 if r:
236 if r:
237 return templateutil.mappinglist([{'file': r[0], 'node': hex(r[1])}])
237 return templateutil.mappinglist([{'file': r[0], 'node': hex(r[1])}])
238 return templateutil.mappinglist([])
238 return templateutil.mappinglist([])
239
239
240 def nodetagsdict(repo, node):
240 def nodetagsdict(repo, node):
241 return templateutil.hybridlist(repo.nodetags(node), name='name')
241 return templateutil.hybridlist(repo.nodetags(node), name='name')
242
242
243 def nodebookmarksdict(repo, node):
243 def nodebookmarksdict(repo, node):
244 return templateutil.hybridlist(repo.nodebookmarks(node), name='name')
244 return templateutil.hybridlist(repo.nodebookmarks(node), name='name')
245
245
246 def nodebranchdict(repo, ctx):
246 def nodebranchdict(repo, ctx):
247 branches = []
247 branches = []
248 branch = ctx.branch()
248 branch = ctx.branch()
249 # If this is an empty repo, ctx.node() == nullid,
249 # If this is an empty repo, ctx.node() == nullid,
250 # ctx.branch() == 'default'.
250 # ctx.branch() == 'default'.
251 try:
251 try:
252 branchnode = repo.branchtip(branch)
252 branchnode = repo.branchtip(branch)
253 except error.RepoLookupError:
253 except error.RepoLookupError:
254 branchnode = None
254 branchnode = None
255 if branchnode == ctx.node():
255 if branchnode == ctx.node():
256 branches.append(branch)
256 branches.append(branch)
257 return templateutil.hybridlist(branches, name='name')
257 return templateutil.hybridlist(branches, name='name')
258
258
259 def nodeinbranch(repo, ctx):
259 def nodeinbranch(repo, ctx):
260 branches = []
260 branches = []
261 branch = ctx.branch()
261 branch = ctx.branch()
262 try:
262 try:
263 branchnode = repo.branchtip(branch)
263 branchnode = repo.branchtip(branch)
264 except error.RepoLookupError:
264 except error.RepoLookupError:
265 branchnode = None
265 branchnode = None
266 if branch != 'default' and branchnode != ctx.node():
266 if branch != 'default' and branchnode != ctx.node():
267 branches.append(branch)
267 branches.append(branch)
268 return templateutil.hybridlist(branches, name='name')
268 return templateutil.hybridlist(branches, name='name')
269
269
270 def nodebranchnodefault(ctx):
270 def nodebranchnodefault(ctx):
271 branches = []
271 branches = []
272 branch = ctx.branch()
272 branch = ctx.branch()
273 if branch != 'default':
273 if branch != 'default':
274 branches.append(branch)
274 branches.append(branch)
275 return templateutil.hybridlist(branches, name='name')
275 return templateutil.hybridlist(branches, name='name')
276
276
277 def _nodenamesgen(context, f, node, name):
277 def _nodenamesgen(context, f, node, name):
278 for t in f(node):
278 for t in f(node):
279 yield {name: t}
279 yield {name: t}
280
280
281 def showtag(repo, tmpl, t1, node=nullid):
281 def showtag(repo, t1, node=nullid):
282 args = (repo.nodetags, node, 'tag')
282 args = (repo.nodetags, node, 'tag')
283 return templateutil.mappinggenerator(_nodenamesgen, args=args, name=t1)
283 return templateutil.mappinggenerator(_nodenamesgen, args=args, name=t1)
284
284
285 def showbookmark(repo, tmpl, t1, node=nullid):
285 def showbookmark(repo, t1, node=nullid):
286 args = (repo.nodebookmarks, node, 'bookmark')
286 args = (repo.nodebookmarks, node, 'bookmark')
287 return templateutil.mappinggenerator(_nodenamesgen, args=args, name=t1)
287 return templateutil.mappinggenerator(_nodenamesgen, args=args, name=t1)
288
288
289 def branchentries(repo, stripecount, limit=0):
289 def branchentries(repo, stripecount, limit=0):
290 tips = []
290 tips = []
291 heads = repo.heads()
291 heads = repo.heads()
292 parity = paritygen(stripecount)
292 parity = paritygen(stripecount)
293 sortkey = lambda item: (not item[1], item[0].rev())
293 sortkey = lambda item: (not item[1], item[0].rev())
294
294
295 def entries(**map):
295 def entries(**map):
296 count = 0
296 count = 0
297 if not tips:
297 if not tips:
298 for tag, hs, tip, closed in repo.branchmap().iterbranches():
298 for tag, hs, tip, closed in repo.branchmap().iterbranches():
299 tips.append((repo[tip], closed))
299 tips.append((repo[tip], closed))
300 for ctx, closed in sorted(tips, key=sortkey, reverse=True):
300 for ctx, closed in sorted(tips, key=sortkey, reverse=True):
301 if limit > 0 and count >= limit:
301 if limit > 0 and count >= limit:
302 return
302 return
303 count += 1
303 count += 1
304 if closed:
304 if closed:
305 status = 'closed'
305 status = 'closed'
306 elif ctx.node() not in heads:
306 elif ctx.node() not in heads:
307 status = 'inactive'
307 status = 'inactive'
308 else:
308 else:
309 status = 'open'
309 status = 'open'
310 yield {
310 yield {
311 'parity': next(parity),
311 'parity': next(parity),
312 'branch': ctx.branch(),
312 'branch': ctx.branch(),
313 'status': status,
313 'status': status,
314 'node': ctx.hex(),
314 'node': ctx.hex(),
315 'date': ctx.date()
315 'date': ctx.date()
316 }
316 }
317
317
318 return entries
318 return entries
319
319
320 def cleanpath(repo, path):
320 def cleanpath(repo, path):
321 path = path.lstrip('/')
321 path = path.lstrip('/')
322 return pathutil.canonpath(repo.root, '', path)
322 return pathutil.canonpath(repo.root, '', path)
323
323
324 def changectx(repo, req):
324 def changectx(repo, req):
325 changeid = "tip"
325 changeid = "tip"
326 if 'node' in req.qsparams:
326 if 'node' in req.qsparams:
327 changeid = req.qsparams['node']
327 changeid = req.qsparams['node']
328 ipos = changeid.find(':')
328 ipos = changeid.find(':')
329 if ipos != -1:
329 if ipos != -1:
330 changeid = changeid[(ipos + 1):]
330 changeid = changeid[(ipos + 1):]
331
331
332 return scmutil.revsymbol(repo, changeid)
332 return scmutil.revsymbol(repo, changeid)
333
333
334 def basechangectx(repo, req):
334 def basechangectx(repo, req):
335 if 'node' in req.qsparams:
335 if 'node' in req.qsparams:
336 changeid = req.qsparams['node']
336 changeid = req.qsparams['node']
337 ipos = changeid.find(':')
337 ipos = changeid.find(':')
338 if ipos != -1:
338 if ipos != -1:
339 changeid = changeid[:ipos]
339 changeid = changeid[:ipos]
340 return scmutil.revsymbol(repo, changeid)
340 return scmutil.revsymbol(repo, changeid)
341
341
342 return None
342 return None
343
343
344 def filectx(repo, req):
344 def filectx(repo, req):
345 if 'file' not in req.qsparams:
345 if 'file' not in req.qsparams:
346 raise ErrorResponse(HTTP_NOT_FOUND, 'file not given')
346 raise ErrorResponse(HTTP_NOT_FOUND, 'file not given')
347 path = cleanpath(repo, req.qsparams['file'])
347 path = cleanpath(repo, req.qsparams['file'])
348 if 'node' in req.qsparams:
348 if 'node' in req.qsparams:
349 changeid = req.qsparams['node']
349 changeid = req.qsparams['node']
350 elif 'filenode' in req.qsparams:
350 elif 'filenode' in req.qsparams:
351 changeid = req.qsparams['filenode']
351 changeid = req.qsparams['filenode']
352 else:
352 else:
353 raise ErrorResponse(HTTP_NOT_FOUND, 'node or filenode not given')
353 raise ErrorResponse(HTTP_NOT_FOUND, 'node or filenode not given')
354 try:
354 try:
355 fctx = scmutil.revsymbol(repo, changeid)[path]
355 fctx = scmutil.revsymbol(repo, changeid)[path]
356 except error.RepoError:
356 except error.RepoError:
357 fctx = repo.filectx(path, fileid=changeid)
357 fctx = repo.filectx(path, fileid=changeid)
358
358
359 return fctx
359 return fctx
360
360
361 def linerange(req):
361 def linerange(req):
362 linerange = req.qsparams.getall('linerange')
362 linerange = req.qsparams.getall('linerange')
363 if not linerange:
363 if not linerange:
364 return None
364 return None
365 if len(linerange) > 1:
365 if len(linerange) > 1:
366 raise ErrorResponse(HTTP_BAD_REQUEST,
366 raise ErrorResponse(HTTP_BAD_REQUEST,
367 'redundant linerange parameter')
367 'redundant linerange parameter')
368 try:
368 try:
369 fromline, toline = map(int, linerange[0].split(':', 1))
369 fromline, toline = map(int, linerange[0].split(':', 1))
370 except ValueError:
370 except ValueError:
371 raise ErrorResponse(HTTP_BAD_REQUEST,
371 raise ErrorResponse(HTTP_BAD_REQUEST,
372 'invalid linerange parameter')
372 'invalid linerange parameter')
373 try:
373 try:
374 return util.processlinerange(fromline, toline)
374 return util.processlinerange(fromline, toline)
375 except error.ParseError as exc:
375 except error.ParseError as exc:
376 raise ErrorResponse(HTTP_BAD_REQUEST, pycompat.bytestr(exc))
376 raise ErrorResponse(HTTP_BAD_REQUEST, pycompat.bytestr(exc))
377
377
378 def formatlinerange(fromline, toline):
378 def formatlinerange(fromline, toline):
379 return '%d:%d' % (fromline + 1, toline)
379 return '%d:%d' % (fromline + 1, toline)
380
380
381 def succsandmarkers(context, mapping):
381 def succsandmarkers(context, mapping):
382 repo = context.resource(mapping, 'repo')
382 repo = context.resource(mapping, 'repo')
383 itemmappings = templatekw.showsuccsandmarkers(context, mapping)
383 itemmappings = templatekw.showsuccsandmarkers(context, mapping)
384 for item in itemmappings.tovalue(context, mapping):
384 for item in itemmappings.tovalue(context, mapping):
385 item['successors'] = _siblings(repo[successor]
385 item['successors'] = _siblings(repo[successor]
386 for successor in item['successors'])
386 for successor in item['successors'])
387 yield item
387 yield item
388
388
389 # teach templater succsandmarkers is switched to (context, mapping) API
389 # teach templater succsandmarkers is switched to (context, mapping) API
390 succsandmarkers._requires = {'repo', 'ctx'}
390 succsandmarkers._requires = {'repo', 'ctx'}
391
391
392 def whyunstable(context, mapping):
392 def whyunstable(context, mapping):
393 repo = context.resource(mapping, 'repo')
393 repo = context.resource(mapping, 'repo')
394 ctx = context.resource(mapping, 'ctx')
394 ctx = context.resource(mapping, 'ctx')
395
395
396 entries = obsutil.whyunstable(repo, ctx)
396 entries = obsutil.whyunstable(repo, ctx)
397 for entry in entries:
397 for entry in entries:
398 if entry.get('divergentnodes'):
398 if entry.get('divergentnodes'):
399 entry['divergentnodes'] = _siblings(entry['divergentnodes'])
399 entry['divergentnodes'] = _siblings(entry['divergentnodes'])
400 yield entry
400 yield entry
401
401
402 whyunstable._requires = {'repo', 'ctx'}
402 whyunstable._requires = {'repo', 'ctx'}
403
403
404 def commonentry(repo, ctx):
404 def commonentry(repo, ctx):
405 node = ctx.node()
405 node = ctx.node()
406 return {
406 return {
407 # TODO: perhaps ctx.changectx() should be assigned if ctx is a
407 # TODO: perhaps ctx.changectx() should be assigned if ctx is a
408 # filectx, but I'm not pretty sure if that would always work because
408 # filectx, but I'm not pretty sure if that would always work because
409 # fctx.parents() != fctx.changectx.parents() for example.
409 # fctx.parents() != fctx.changectx.parents() for example.
410 'ctx': ctx,
410 'ctx': ctx,
411 'rev': ctx.rev(),
411 'rev': ctx.rev(),
412 'node': hex(node),
412 'node': hex(node),
413 'author': ctx.user(),
413 'author': ctx.user(),
414 'desc': ctx.description(),
414 'desc': ctx.description(),
415 'date': ctx.date(),
415 'date': ctx.date(),
416 'extra': ctx.extra(),
416 'extra': ctx.extra(),
417 'phase': ctx.phasestr(),
417 'phase': ctx.phasestr(),
418 'obsolete': ctx.obsolete(),
418 'obsolete': ctx.obsolete(),
419 'succsandmarkers': succsandmarkers,
419 'succsandmarkers': succsandmarkers,
420 'instabilities': [{"instability": i} for i in ctx.instabilities()],
420 'instabilities': [{"instability": i} for i in ctx.instabilities()],
421 'whyunstable': whyunstable,
421 'whyunstable': whyunstable,
422 'branch': nodebranchnodefault(ctx),
422 'branch': nodebranchnodefault(ctx),
423 'inbranch': nodeinbranch(repo, ctx),
423 'inbranch': nodeinbranch(repo, ctx),
424 'branches': nodebranchdict(repo, ctx),
424 'branches': nodebranchdict(repo, ctx),
425 'tags': nodetagsdict(repo, node),
425 'tags': nodetagsdict(repo, node),
426 'bookmarks': nodebookmarksdict(repo, node),
426 'bookmarks': nodebookmarksdict(repo, node),
427 'parent': lambda **x: parents(ctx),
427 'parent': lambda **x: parents(ctx),
428 'child': lambda **x: children(ctx),
428 'child': lambda **x: children(ctx),
429 }
429 }
430
430
431 def changelistentry(web, ctx):
431 def changelistentry(web, ctx):
432 '''Obtain a dictionary to be used for entries in a changelist.
432 '''Obtain a dictionary to be used for entries in a changelist.
433
433
434 This function is called when producing items for the "entries" list passed
434 This function is called when producing items for the "entries" list passed
435 to the "shortlog" and "changelog" templates.
435 to the "shortlog" and "changelog" templates.
436 '''
436 '''
437 repo = web.repo
437 repo = web.repo
438 rev = ctx.rev()
438 rev = ctx.rev()
439 n = ctx.node()
439 n = ctx.node()
440 showtags = showtag(repo, web.tmpl, 'changelogtag', n)
440 showtags = showtag(repo, 'changelogtag', n)
441 files = listfilediffs(web.tmpl, ctx.files(), n, web.maxfiles)
441 files = listfilediffs(web.tmpl, ctx.files(), n, web.maxfiles)
442
442
443 entry = commonentry(repo, ctx)
443 entry = commonentry(repo, ctx)
444 entry.update(
444 entry.update(
445 allparents=lambda **x: parents(ctx),
445 allparents=lambda **x: parents(ctx),
446 parent=lambda **x: parents(ctx, rev - 1),
446 parent=lambda **x: parents(ctx, rev - 1),
447 child=lambda **x: children(ctx, rev + 1),
447 child=lambda **x: children(ctx, rev + 1),
448 changelogtag=showtags,
448 changelogtag=showtags,
449 files=files,
449 files=files,
450 )
450 )
451 return entry
451 return entry
452
452
453 def symrevorshortnode(req, ctx):
453 def symrevorshortnode(req, ctx):
454 if 'node' in req.qsparams:
454 if 'node' in req.qsparams:
455 return templatefilters.revescape(req.qsparams['node'])
455 return templatefilters.revescape(req.qsparams['node'])
456 else:
456 else:
457 return short(ctx.node())
457 return short(ctx.node())
458
458
459 def changesetentry(web, ctx):
459 def changesetentry(web, ctx):
460 '''Obtain a dictionary to be used to render the "changeset" template.'''
460 '''Obtain a dictionary to be used to render the "changeset" template.'''
461
461
462 showtags = showtag(web.repo, web.tmpl, 'changesettag', ctx.node())
462 showtags = showtag(web.repo, 'changesettag', ctx.node())
463 showbookmarks = showbookmark(web.repo, web.tmpl, 'changesetbookmark',
463 showbookmarks = showbookmark(web.repo, 'changesetbookmark', ctx.node())
464 ctx.node())
465 showbranch = nodebranchnodefault(ctx)
464 showbranch = nodebranchnodefault(ctx)
466
465
467 files = []
466 files = []
468 parity = paritygen(web.stripecount)
467 parity = paritygen(web.stripecount)
469 for blockno, f in enumerate(ctx.files()):
468 for blockno, f in enumerate(ctx.files()):
470 template = 'filenodelink' if f in ctx else 'filenolink'
469 template = 'filenodelink' if f in ctx else 'filenolink'
471 files.append(web.tmpl.generate(template, {
470 files.append(web.tmpl.generate(template, {
472 'node': ctx.hex(),
471 'node': ctx.hex(),
473 'file': f,
472 'file': f,
474 'blockno': blockno + 1,
473 'blockno': blockno + 1,
475 'parity': next(parity),
474 'parity': next(parity),
476 }))
475 }))
477
476
478 basectx = basechangectx(web.repo, web.req)
477 basectx = basechangectx(web.repo, web.req)
479 if basectx is None:
478 if basectx is None:
480 basectx = ctx.p1()
479 basectx = ctx.p1()
481
480
482 style = web.config('web', 'style')
481 style = web.config('web', 'style')
483 if 'style' in web.req.qsparams:
482 if 'style' in web.req.qsparams:
484 style = web.req.qsparams['style']
483 style = web.req.qsparams['style']
485
484
486 diff = diffs(web, ctx, basectx, None, style)
485 diff = diffs(web, ctx, basectx, None, style)
487
486
488 parity = paritygen(web.stripecount)
487 parity = paritygen(web.stripecount)
489 diffstatsgen = diffstatgen(ctx, basectx)
488 diffstatsgen = diffstatgen(ctx, basectx)
490 diffstats = diffstat(web.tmpl, ctx, diffstatsgen, parity)
489 diffstats = diffstat(web.tmpl, ctx, diffstatsgen, parity)
491
490
492 return dict(
491 return dict(
493 diff=diff,
492 diff=diff,
494 symrev=symrevorshortnode(web.req, ctx),
493 symrev=symrevorshortnode(web.req, ctx),
495 basenode=basectx.hex(),
494 basenode=basectx.hex(),
496 changesettag=showtags,
495 changesettag=showtags,
497 changesetbookmark=showbookmarks,
496 changesetbookmark=showbookmarks,
498 changesetbranch=showbranch,
497 changesetbranch=showbranch,
499 files=files,
498 files=files,
500 diffsummary=lambda **x: diffsummary(diffstatsgen),
499 diffsummary=lambda **x: diffsummary(diffstatsgen),
501 diffstat=diffstats,
500 diffstat=diffstats,
502 archives=web.archivelist(ctx.hex()),
501 archives=web.archivelist(ctx.hex()),
503 **pycompat.strkwargs(commonentry(web.repo, ctx)))
502 **pycompat.strkwargs(commonentry(web.repo, ctx)))
504
503
505 def listfilediffs(tmpl, files, node, max):
504 def listfilediffs(tmpl, files, node, max):
506 for f in files[:max]:
505 for f in files[:max]:
507 yield tmpl.generate('filedifflink', {'node': hex(node), 'file': f})
506 yield tmpl.generate('filedifflink', {'node': hex(node), 'file': f})
508 if len(files) > max:
507 if len(files) > max:
509 yield tmpl.generate('fileellipses', {})
508 yield tmpl.generate('fileellipses', {})
510
509
511 def diffs(web, ctx, basectx, files, style, linerange=None,
510 def diffs(web, ctx, basectx, files, style, linerange=None,
512 lineidprefix=''):
511 lineidprefix=''):
513
512
514 def prettyprintlines(lines, blockno):
513 def prettyprintlines(lines, blockno):
515 for lineno, l in enumerate(lines, 1):
514 for lineno, l in enumerate(lines, 1):
516 difflineno = "%d.%d" % (blockno, lineno)
515 difflineno = "%d.%d" % (blockno, lineno)
517 if l.startswith('+'):
516 if l.startswith('+'):
518 ltype = "difflineplus"
517 ltype = "difflineplus"
519 elif l.startswith('-'):
518 elif l.startswith('-'):
520 ltype = "difflineminus"
519 ltype = "difflineminus"
521 elif l.startswith('@'):
520 elif l.startswith('@'):
522 ltype = "difflineat"
521 ltype = "difflineat"
523 else:
522 else:
524 ltype = "diffline"
523 ltype = "diffline"
525 yield web.tmpl.generate(ltype, {
524 yield web.tmpl.generate(ltype, {
526 'line': l,
525 'line': l,
527 'lineno': lineno,
526 'lineno': lineno,
528 'lineid': lineidprefix + "l%s" % difflineno,
527 'lineid': lineidprefix + "l%s" % difflineno,
529 'linenumber': "% 8s" % difflineno,
528 'linenumber': "% 8s" % difflineno,
530 })
529 })
531
530
532 repo = web.repo
531 repo = web.repo
533 if files:
532 if files:
534 m = match.exact(repo.root, repo.getcwd(), files)
533 m = match.exact(repo.root, repo.getcwd(), files)
535 else:
534 else:
536 m = match.always(repo.root, repo.getcwd())
535 m = match.always(repo.root, repo.getcwd())
537
536
538 diffopts = patch.diffopts(repo.ui, untrusted=True)
537 diffopts = patch.diffopts(repo.ui, untrusted=True)
539 node1 = basectx.node()
538 node1 = basectx.node()
540 node2 = ctx.node()
539 node2 = ctx.node()
541 parity = paritygen(web.stripecount)
540 parity = paritygen(web.stripecount)
542
541
543 diffhunks = patch.diffhunks(repo, node1, node2, m, opts=diffopts)
542 diffhunks = patch.diffhunks(repo, node1, node2, m, opts=diffopts)
544 for blockno, (fctx1, fctx2, header, hunks) in enumerate(diffhunks, 1):
543 for blockno, (fctx1, fctx2, header, hunks) in enumerate(diffhunks, 1):
545 if style != 'raw':
544 if style != 'raw':
546 header = header[1:]
545 header = header[1:]
547 lines = [h + '\n' for h in header]
546 lines = [h + '\n' for h in header]
548 for hunkrange, hunklines in hunks:
547 for hunkrange, hunklines in hunks:
549 if linerange is not None and hunkrange is not None:
548 if linerange is not None and hunkrange is not None:
550 s1, l1, s2, l2 = hunkrange
549 s1, l1, s2, l2 = hunkrange
551 if not mdiff.hunkinrange((s2, l2), linerange):
550 if not mdiff.hunkinrange((s2, l2), linerange):
552 continue
551 continue
553 lines.extend(hunklines)
552 lines.extend(hunklines)
554 if lines:
553 if lines:
555 yield web.tmpl.generate('diffblock', {
554 yield web.tmpl.generate('diffblock', {
556 'parity': next(parity),
555 'parity': next(parity),
557 'blockno': blockno,
556 'blockno': blockno,
558 'lines': prettyprintlines(lines, blockno),
557 'lines': prettyprintlines(lines, blockno),
559 })
558 })
560
559
561 def compare(tmpl, context, leftlines, rightlines):
560 def compare(tmpl, context, leftlines, rightlines):
562 '''Generator function that provides side-by-side comparison data.'''
561 '''Generator function that provides side-by-side comparison data.'''
563
562
564 def compline(type, leftlineno, leftline, rightlineno, rightline):
563 def compline(type, leftlineno, leftline, rightlineno, rightline):
565 lineid = leftlineno and ("l%d" % leftlineno) or ''
564 lineid = leftlineno and ("l%d" % leftlineno) or ''
566 lineid += rightlineno and ("r%d" % rightlineno) or ''
565 lineid += rightlineno and ("r%d" % rightlineno) or ''
567 llno = '%d' % leftlineno if leftlineno else ''
566 llno = '%d' % leftlineno if leftlineno else ''
568 rlno = '%d' % rightlineno if rightlineno else ''
567 rlno = '%d' % rightlineno if rightlineno else ''
569 return tmpl.generate('comparisonline', {
568 return tmpl.generate('comparisonline', {
570 'type': type,
569 'type': type,
571 'lineid': lineid,
570 'lineid': lineid,
572 'leftlineno': leftlineno,
571 'leftlineno': leftlineno,
573 'leftlinenumber': "% 6s" % llno,
572 'leftlinenumber': "% 6s" % llno,
574 'leftline': leftline or '',
573 'leftline': leftline or '',
575 'rightlineno': rightlineno,
574 'rightlineno': rightlineno,
576 'rightlinenumber': "% 6s" % rlno,
575 'rightlinenumber': "% 6s" % rlno,
577 'rightline': rightline or '',
576 'rightline': rightline or '',
578 })
577 })
579
578
580 def getblock(opcodes):
579 def getblock(opcodes):
581 for type, llo, lhi, rlo, rhi in opcodes:
580 for type, llo, lhi, rlo, rhi in opcodes:
582 len1 = lhi - llo
581 len1 = lhi - llo
583 len2 = rhi - rlo
582 len2 = rhi - rlo
584 count = min(len1, len2)
583 count = min(len1, len2)
585 for i in xrange(count):
584 for i in xrange(count):
586 yield compline(type=type,
585 yield compline(type=type,
587 leftlineno=llo + i + 1,
586 leftlineno=llo + i + 1,
588 leftline=leftlines[llo + i],
587 leftline=leftlines[llo + i],
589 rightlineno=rlo + i + 1,
588 rightlineno=rlo + i + 1,
590 rightline=rightlines[rlo + i])
589 rightline=rightlines[rlo + i])
591 if len1 > len2:
590 if len1 > len2:
592 for i in xrange(llo + count, lhi):
591 for i in xrange(llo + count, lhi):
593 yield compline(type=type,
592 yield compline(type=type,
594 leftlineno=i + 1,
593 leftlineno=i + 1,
595 leftline=leftlines[i],
594 leftline=leftlines[i],
596 rightlineno=None,
595 rightlineno=None,
597 rightline=None)
596 rightline=None)
598 elif len2 > len1:
597 elif len2 > len1:
599 for i in xrange(rlo + count, rhi):
598 for i in xrange(rlo + count, rhi):
600 yield compline(type=type,
599 yield compline(type=type,
601 leftlineno=None,
600 leftlineno=None,
602 leftline=None,
601 leftline=None,
603 rightlineno=i + 1,
602 rightlineno=i + 1,
604 rightline=rightlines[i])
603 rightline=rightlines[i])
605
604
606 s = difflib.SequenceMatcher(None, leftlines, rightlines)
605 s = difflib.SequenceMatcher(None, leftlines, rightlines)
607 if context < 0:
606 if context < 0:
608 yield tmpl.generate('comparisonblock',
607 yield tmpl.generate('comparisonblock',
609 {'lines': getblock(s.get_opcodes())})
608 {'lines': getblock(s.get_opcodes())})
610 else:
609 else:
611 for oc in s.get_grouped_opcodes(n=context):
610 for oc in s.get_grouped_opcodes(n=context):
612 yield tmpl.generate('comparisonblock', {'lines': getblock(oc)})
611 yield tmpl.generate('comparisonblock', {'lines': getblock(oc)})
613
612
614 def diffstatgen(ctx, basectx):
613 def diffstatgen(ctx, basectx):
615 '''Generator function that provides the diffstat data.'''
614 '''Generator function that provides the diffstat data.'''
616
615
617 stats = patch.diffstatdata(
616 stats = patch.diffstatdata(
618 util.iterlines(ctx.diff(basectx, noprefix=False)))
617 util.iterlines(ctx.diff(basectx, noprefix=False)))
619 maxname, maxtotal, addtotal, removetotal, binary = patch.diffstatsum(stats)
618 maxname, maxtotal, addtotal, removetotal, binary = patch.diffstatsum(stats)
620 while True:
619 while True:
621 yield stats, maxname, maxtotal, addtotal, removetotal, binary
620 yield stats, maxname, maxtotal, addtotal, removetotal, binary
622
621
623 def diffsummary(statgen):
622 def diffsummary(statgen):
624 '''Return a short summary of the diff.'''
623 '''Return a short summary of the diff.'''
625
624
626 stats, maxname, maxtotal, addtotal, removetotal, binary = next(statgen)
625 stats, maxname, maxtotal, addtotal, removetotal, binary = next(statgen)
627 return _(' %d files changed, %d insertions(+), %d deletions(-)\n') % (
626 return _(' %d files changed, %d insertions(+), %d deletions(-)\n') % (
628 len(stats), addtotal, removetotal)
627 len(stats), addtotal, removetotal)
629
628
630 def diffstat(tmpl, ctx, statgen, parity):
629 def diffstat(tmpl, ctx, statgen, parity):
631 '''Return a diffstat template for each file in the diff.'''
630 '''Return a diffstat template for each file in the diff.'''
632
631
633 stats, maxname, maxtotal, addtotal, removetotal, binary = next(statgen)
632 stats, maxname, maxtotal, addtotal, removetotal, binary = next(statgen)
634 files = ctx.files()
633 files = ctx.files()
635
634
636 def pct(i):
635 def pct(i):
637 if maxtotal == 0:
636 if maxtotal == 0:
638 return 0
637 return 0
639 return (float(i) / maxtotal) * 100
638 return (float(i) / maxtotal) * 100
640
639
641 fileno = 0
640 fileno = 0
642 for filename, adds, removes, isbinary in stats:
641 for filename, adds, removes, isbinary in stats:
643 template = 'diffstatlink' if filename in files else 'diffstatnolink'
642 template = 'diffstatlink' if filename in files else 'diffstatnolink'
644 total = adds + removes
643 total = adds + removes
645 fileno += 1
644 fileno += 1
646 yield tmpl.generate(template, {
645 yield tmpl.generate(template, {
647 'node': ctx.hex(),
646 'node': ctx.hex(),
648 'file': filename,
647 'file': filename,
649 'fileno': fileno,
648 'fileno': fileno,
650 'total': total,
649 'total': total,
651 'addpct': pct(adds),
650 'addpct': pct(adds),
652 'removepct': pct(removes),
651 'removepct': pct(removes),
653 'parity': next(parity),
652 'parity': next(parity),
654 })
653 })
655
654
656 class sessionvars(templateutil.wrapped):
655 class sessionvars(templateutil.wrapped):
657 def __init__(self, vars, start='?'):
656 def __init__(self, vars, start='?'):
658 self._start = start
657 self._start = start
659 self._vars = vars
658 self._vars = vars
660
659
661 def __getitem__(self, key):
660 def __getitem__(self, key):
662 return self._vars[key]
661 return self._vars[key]
663
662
664 def __setitem__(self, key, value):
663 def __setitem__(self, key, value):
665 self._vars[key] = value
664 self._vars[key] = value
666
665
667 def __copy__(self):
666 def __copy__(self):
668 return sessionvars(copy.copy(self._vars), self._start)
667 return sessionvars(copy.copy(self._vars), self._start)
669
668
670 def itermaps(self, context):
669 def itermaps(self, context):
671 separator = self._start
670 separator = self._start
672 for key, value in sorted(self._vars.iteritems()):
671 for key, value in sorted(self._vars.iteritems()):
673 yield {'name': key,
672 yield {'name': key,
674 'value': pycompat.bytestr(value),
673 'value': pycompat.bytestr(value),
675 'separator': separator,
674 'separator': separator,
676 }
675 }
677 separator = '&'
676 separator = '&'
678
677
679 def join(self, context, mapping, sep):
678 def join(self, context, mapping, sep):
680 # could be '{separator}{name}={value|urlescape}'
679 # could be '{separator}{name}={value|urlescape}'
681 raise error.ParseError(_('not displayable without template'))
680 raise error.ParseError(_('not displayable without template'))
682
681
683 def show(self, context, mapping):
682 def show(self, context, mapping):
684 return self.join(context, '')
683 return self.join(context, '')
685
684
686 def tovalue(self, context, mapping):
685 def tovalue(self, context, mapping):
687 return self._vars
686 return self._vars
688
687
689 class wsgiui(uimod.ui):
688 class wsgiui(uimod.ui):
690 # default termwidth breaks under mod_wsgi
689 # default termwidth breaks under mod_wsgi
691 def termwidth(self):
690 def termwidth(self):
692 return 80
691 return 80
693
692
694 def getwebsubs(repo):
693 def getwebsubs(repo):
695 websubtable = []
694 websubtable = []
696 websubdefs = repo.ui.configitems('websub')
695 websubdefs = repo.ui.configitems('websub')
697 # we must maintain interhg backwards compatibility
696 # we must maintain interhg backwards compatibility
698 websubdefs += repo.ui.configitems('interhg')
697 websubdefs += repo.ui.configitems('interhg')
699 for key, pattern in websubdefs:
698 for key, pattern in websubdefs:
700 # grab the delimiter from the character after the "s"
699 # grab the delimiter from the character after the "s"
701 unesc = pattern[1:2]
700 unesc = pattern[1:2]
702 delim = re.escape(unesc)
701 delim = re.escape(unesc)
703
702
704 # identify portions of the pattern, taking care to avoid escaped
703 # identify portions of the pattern, taking care to avoid escaped
705 # delimiters. the replace format and flags are optional, but
704 # delimiters. the replace format and flags are optional, but
706 # delimiters are required.
705 # delimiters are required.
707 match = re.match(
706 match = re.match(
708 br'^s%s(.+)(?:(?<=\\\\)|(?<!\\))%s(.*)%s([ilmsux])*$'
707 br'^s%s(.+)(?:(?<=\\\\)|(?<!\\))%s(.*)%s([ilmsux])*$'
709 % (delim, delim, delim), pattern)
708 % (delim, delim, delim), pattern)
710 if not match:
709 if not match:
711 repo.ui.warn(_("websub: invalid pattern for %s: %s\n")
710 repo.ui.warn(_("websub: invalid pattern for %s: %s\n")
712 % (key, pattern))
711 % (key, pattern))
713 continue
712 continue
714
713
715 # we need to unescape the delimiter for regexp and format
714 # we need to unescape the delimiter for regexp and format
716 delim_re = re.compile(br'(?<!\\)\\%s' % delim)
715 delim_re = re.compile(br'(?<!\\)\\%s' % delim)
717 regexp = delim_re.sub(unesc, match.group(1))
716 regexp = delim_re.sub(unesc, match.group(1))
718 format = delim_re.sub(unesc, match.group(2))
717 format = delim_re.sub(unesc, match.group(2))
719
718
720 # the pattern allows for 6 regexp flags, so set them if necessary
719 # the pattern allows for 6 regexp flags, so set them if necessary
721 flagin = match.group(3)
720 flagin = match.group(3)
722 flags = 0
721 flags = 0
723 if flagin:
722 if flagin:
724 for flag in flagin.upper():
723 for flag in flagin.upper():
725 flags |= re.__dict__[flag]
724 flags |= re.__dict__[flag]
726
725
727 try:
726 try:
728 regexp = re.compile(regexp, flags)
727 regexp = re.compile(regexp, flags)
729 websubtable.append((regexp, format))
728 websubtable.append((regexp, format))
730 except re.error:
729 except re.error:
731 repo.ui.warn(_("websub: invalid regexp for %s: %s\n")
730 repo.ui.warn(_("websub: invalid regexp for %s: %s\n")
732 % (key, regexp))
731 % (key, regexp))
733 return websubtable
732 return websubtable
734
733
735 def getgraphnode(repo, ctx):
734 def getgraphnode(repo, ctx):
736 return (templatekw.getgraphnodecurrent(repo, ctx) +
735 return (templatekw.getgraphnodecurrent(repo, ctx) +
737 templatekw.getgraphnodesymbol(ctx))
736 templatekw.getgraphnodesymbol(ctx))
General Comments 0
You need to be logged in to leave comments. Login now