Show More
@@ -293,7 +293,7 b' class hgweb(object):' | |||||
293 | parity = 0 |
|
293 | parity = 0 | |
294 | for f in changes[3]: |
|
294 | for f in changes[3]: | |
295 | files.append(self.t("filenodelink", |
|
295 | files.append(self.t("filenodelink", | |
296 |
|
|
296 | node=hex(n), file=f, | |
297 | parity=parity)) |
|
297 | parity=parity)) | |
298 | parity = 1 - parity |
|
298 | parity = 1 - parity | |
299 |
|
299 | |||
@@ -313,10 +313,10 b' class hgweb(object):' | |||||
313 | files=files, |
|
313 | files=files, | |
314 | archives=self.archivelist(nodeid)) |
|
314 | archives=self.archivelist(nodeid)) | |
315 |
|
315 | |||
316 |
def filelog(self, f |
|
316 | def filelog(self, fctx): | |
|
317 | f = fctx.path() | |||
317 | cl = self.repo.changelog |
|
318 | cl = self.repo.changelog | |
318 |
fl = |
|
319 | fl = fctx.filelog() | |
319 | filenode = hex(fl.lookup(filenode)) |
|
|||
320 | count = fl.count() |
|
320 | count = fl.count() | |
321 |
|
321 | |||
322 | def entries(**map): |
|
322 | def entries(**map): | |
@@ -326,39 +326,32 b' class hgweb(object):' | |||||
326 | for i in range(count): |
|
326 | for i in range(count): | |
327 | n = fl.node(i) |
|
327 | n = fl.node(i) | |
328 | lr = fl.linkrev(n) |
|
328 | lr = fl.linkrev(n) | |
329 |
c |
|
329 | ctx = self.repo.changectx(lr) | |
330 | cs = cl.read(cl.node(lr)) |
|
|||
331 |
|
330 | |||
332 | l.insert(0, {"parity": parity, |
|
331 | l.insert(0, {"parity": parity, | |
333 | "filenode": hex(n), |
|
|||
334 | "filerev": i, |
|
332 | "filerev": i, | |
335 | "file": f, |
|
333 | "file": f, | |
336 | "node": hex(cn), |
|
334 | "node": hex(ctx.node()), | |
337 |
"author": c |
|
335 | "author": ctx.user(), | |
338 |
"date": c |
|
336 | "date": ctx.date(), | |
339 | "rename": self.renamelink(fl, n), |
|
337 | "rename": self.renamelink(fl, n), | |
340 | "parent": self.siblings(fl.parents(n), |
|
338 | "parent": self.siblings(fl.parents(n), | |
341 | fl.rev, file=f), |
|
339 | fl.rev, file=f), | |
342 | "child": self.siblings(fl.children(n), |
|
340 | "child": self.siblings(fl.children(n), | |
343 | fl.rev, file=f), |
|
341 | fl.rev, file=f), | |
344 |
"desc": c |
|
342 | "desc": ctx.description()}) | |
345 | parity = 1 - parity |
|
343 | parity = 1 - parity | |
346 |
|
344 | |||
347 | for e in l: |
|
345 | for e in l: | |
348 | yield e |
|
346 | yield e | |
349 |
|
347 | |||
350 |
yield self.t("filelog", file=f, |
|
348 | yield self.t("filelog", file=f, node=hex(fctx.node()), entries=entries) | |
351 |
|
349 | |||
352 |
def filerevision(self, f |
|
350 | def filerevision(self, fctx): | |
353 |
f |
|
351 | f = fctx.path() | |
354 | n = fl.lookup(node) |
|
352 | text = fctx.data() | |
355 | node = hex(n) |
|
353 | fl = fctx.filelog() | |
356 |
|
|
354 | n = fctx.filenode() | |
357 | changerev = fl.linkrev(n) |
|
|||
358 | cl = self.repo.changelog |
|
|||
359 | cn = cl.node(changerev) |
|
|||
360 | cs = cl.read(cn) |
|
|||
361 | mfn = cs[0] |
|
|||
362 |
|
355 | |||
363 | mt = mimetypes.guess_type(f)[0] |
|
356 | mt = mimetypes.guess_type(f)[0] | |
364 | rawtext = text |
|
357 | rawtext = text | |
@@ -375,22 +368,21 b' class hgweb(object):' | |||||
375 |
|
368 | |||
376 | yield self.t("filerevision", |
|
369 | yield self.t("filerevision", | |
377 | file=f, |
|
370 | file=f, | |
378 | filenode=node, |
|
|||
379 | path=_up(f), |
|
371 | path=_up(f), | |
380 | text=lines(), |
|
372 | text=lines(), | |
381 | raw=rawtext, |
|
373 | raw=rawtext, | |
382 | mimetype=mt, |
|
374 | mimetype=mt, | |
383 |
rev= |
|
375 | rev=fctx.rev(), | |
384 | node=hex(cn), |
|
376 | node=hex(fctx.node()), | |
385 |
author= |
|
377 | author=fctx.user(), | |
386 |
date= |
|
378 | date=fctx.date(), | |
387 | parent=self.siblings(fl.parents(n), fl.rev, file=f), |
|
379 | parent=self.siblings(fl.parents(n), fl.rev, file=f), | |
388 | child=self.siblings(fl.children(n), fl.rev, file=f), |
|
380 | child=self.siblings(fl.children(n), fl.rev, file=f), | |
389 | rename=self.renamelink(fl, n), |
|
381 | rename=self.renamelink(fl, n), | |
390 |
permissions= |
|
382 | permissions=fctx.manifest().execf(f)) | |
391 |
|
383 | |||
392 |
def fileannotate(self, f |
|
384 | def fileannotate(self, fctx): | |
393 | fctx = self.repo.filectx(f, fileid=node) |
|
385 | f = fctx.path() | |
394 | n = fctx.filenode() |
|
386 | n = fctx.filenode() | |
395 | fl = fctx.filelog() |
|
387 | fl = fctx.filelog() | |
396 |
|
388 | |||
@@ -407,7 +399,6 b' class hgweb(object):' | |||||
407 |
|
399 | |||
408 | yield {"parity": parity, |
|
400 | yield {"parity": parity, | |
409 | "node": hex(f.node()), |
|
401 | "node": hex(f.node()), | |
410 | "filenode": hex(fnode), |
|
|||
411 | "rev": f.rev(), |
|
402 | "rev": f.rev(), | |
412 | "author": name, |
|
403 | "author": name, | |
413 | "file": f.path(), |
|
404 | "file": f.path(), | |
@@ -415,7 +406,6 b' class hgweb(object):' | |||||
415 |
|
406 | |||
416 | yield self.t("fileannotate", |
|
407 | yield self.t("fileannotate", | |
417 | file=f, |
|
408 | file=f, | |
418 | filenode=node, |
|
|||
419 | annotate=annotate, |
|
409 | annotate=annotate, | |
420 | path=_up(f), |
|
410 | path=_up(f), | |
421 | rev=fctx.rev(), |
|
411 | rev=fctx.rev(), | |
@@ -682,6 +672,16 b' class hgweb(object):' | |||||
682 | mn = man.lookup(changeid) |
|
672 | mn = man.lookup(changeid) | |
683 | req.changectx = self.repo.changectx(man.linkrev(mn)) |
|
673 | req.changectx = self.repo.changectx(man.linkrev(mn)) | |
684 |
|
674 | |||
|
675 | if form.has_key('filenode'): | |||
|
676 | changeid = req.form['filenode'][0] | |||
|
677 | path = self.cleanpath(req.form['file'][0]) | |||
|
678 | try: | |||
|
679 | req.changectx = self.repo.changectx(changeid) | |||
|
680 | req.filectx = req.changectx.filectx(path) | |||
|
681 | except hg.RepoError: | |||
|
682 | req.filectx = self.repo.filectx(path, fileid=changeid) | |||
|
683 | req.changectx = req.filectx.changectx() | |||
|
684 | ||||
685 | self.refresh() |
|
685 | self.refresh() | |
686 |
|
686 | |||
687 | expand_form(req.form) |
|
687 | expand_form(req.form) | |
@@ -774,16 +774,13 b' class hgweb(object):' | |||||
774 | req.form['node'][0])) |
|
774 | req.form['node'][0])) | |
775 |
|
775 | |||
776 | def do_file(self, req): |
|
776 | def do_file(self, req): | |
777 |
req.write(self.filerevision( |
|
777 | req.write(self.filerevision(req.filectx)) | |
778 | req.form['filenode'][0])) |
|
|||
779 |
|
778 | |||
780 | def do_annotate(self, req): |
|
779 | def do_annotate(self, req): | |
781 |
req.write(self.fileannotate( |
|
780 | req.write(self.fileannotate(req.filectx)) | |
782 | req.form['filenode'][0])) |
|
|||
783 |
|
781 | |||
784 | def do_filelog(self, req): |
|
782 | def do_filelog(self, req): | |
785 |
req.write(self.filelog( |
|
783 | req.write(self.filelog(req.filectx)) | |
786 | req.form['filenode'][0])) |
|
|||
787 |
|
784 | |||
788 | def do_heads(self, req): |
|
785 | def do_heads(self, req): | |
789 | resp = " ".join(map(hex, self.repo.heads())) + "\n" |
|
786 | resp = " ".join(map(hex, self.repo.heads())) + "\n" |
@@ -10,7 +10,7 b'' | |||||
10 | </div> |
|
10 | </div> | |
11 |
|
11 | |||
12 | <div class="page_nav"> |
|
12 | <div class="page_nav"> | |
13 |
<a href="?cmd=summary;style=gitweb">summary</a> | <a href="?cmd=shortlog;style=gitweb">shortlog</a> | <a href="?cmd=changelog;style=gitweb">changelog</a> | <a href="?cmd=tags;style=gitweb">tags</a> | <a href="?mf=#node|short#;path=#path|urlescape#;style=gitweb">manifest</a> | <a href="?cmd=changeset;node=#node#;style=gitweb">changeset</a> | <a href="?cmd=file;file=#file|urlescape#;filenode=# |
|
13 | <a href="?cmd=summary;style=gitweb">summary</a> | <a href="?cmd=shortlog;style=gitweb">shortlog</a> | <a href="?cmd=changelog;style=gitweb">changelog</a> | <a href="?cmd=tags;style=gitweb">tags</a> | <a href="?mf=#node|short#;path=#path|urlescape#;style=gitweb">manifest</a> | <a href="?cmd=changeset;node=#node#;style=gitweb">changeset</a> | <a href="?cmd=file;file=#file|urlescape#;filenode=#node|short#;style=gitweb">file</a> | <a href="?cmd=filelog;file=#file|urlescape#;filenode=#node|short#;style=gitweb">revisions</a> | annotate | <a href="?cmd=annotate;file=#file|urlescape#;filenode=#node|short#;style=raw">raw</a><br/> | |
14 | </div> |
|
14 | </div> | |
15 |
|
15 | |||
16 | <div class="title">#file|escape#</div> |
|
16 | <div class="title">#file|escape#</div> |
@@ -9,9 +9,9 b'' | |||||
9 | <a href="?tags=">tags</a> |
|
9 | <a href="?tags=">tags</a> | |
10 | <a href="?cs=#node|short#">changeset</a> |
|
10 | <a href="?cs=#node|short#">changeset</a> | |
11 | <a href="?mf=#node|short#;path=#path|urlescape#">manifest</a> |
|
11 | <a href="?mf=#node|short#;path=#path|urlescape#">manifest</a> | |
12 |
<a href="?f=# |
|
12 | <a href="?f=#node|short#;file=#file|urlescape#">file</a> | |
13 |
<a href="?fl=# |
|
13 | <a href="?fl=#node|short#;file=#file|urlescape#">revisions</a> | |
14 |
<a href="?fa=# |
|
14 | <a href="?fa=#node|short#;file=#file|urlescape#;style=raw">raw</a> | |
15 | </div> |
|
15 | </div> | |
16 |
|
16 | |||
17 | <h2>Annotate #file|escape#</h2> |
|
17 | <h2>Annotate #file|escape#</h2> |
@@ -8,9 +8,9 b'' | |||||
8 | <a href="?sl=#rev#">shortlog</a> |
|
8 | <a href="?sl=#rev#">shortlog</a> | |
9 | <a href="?tags=">tags</a> |
|
9 | <a href="?tags=">tags</a> | |
10 | <a href="?cs=#node|short#">changeset</a> |
|
10 | <a href="?cs=#node|short#">changeset</a> | |
11 |
<a href="?f=# |
|
11 | <a href="?f=#node|short#;file=#file|urlescape#">file</a> | |
12 |
<a href="?fl=# |
|
12 | <a href="?fl=#node|short#;file=#file|urlescape#">revisions</a> | |
13 |
<a href="?fa=# |
|
13 | <a href="?fa=#node|short#;file=#file|urlescape#">annotate</a> | |
14 | <a href="?fd=#node|short#;file=#file|urlescape#;style=raw">raw</a> |
|
14 | <a href="?fd=#node|short#;file=#file|urlescape#;style=raw">raw</a> | |
15 | </div> |
|
15 | </div> | |
16 |
|
16 |
@@ -10,7 +10,7 b'' | |||||
10 | </div> |
|
10 | </div> | |
11 |
|
11 | |||
12 | <div class="page_nav"> |
|
12 | <div class="page_nav"> | |
13 |
<a href="?cmd=summary;style=gitweb">summary</a> | <a href="?cmd=shortlog;style=gitweb">shortlog</a> | <a href="?cmd=changelog;style=gitweb">changelog</a> | <a href="?cmd=tags;style=gitweb">tags</a> | <a href="?cmd=file;file=#file|urlescape#;filenode=# |
|
13 | <a href="?cmd=summary;style=gitweb">summary</a> | <a href="?cmd=shortlog;style=gitweb">shortlog</a> | <a href="?cmd=changelog;style=gitweb">changelog</a> | <a href="?cmd=tags;style=gitweb">tags</a> | <a href="?cmd=file;file=#file|urlescape#;filenode=#node|short#;style=gitweb">file</a> | revisions | <a href="?cmd=annotate;file=#file|urlescape#;filenode=#node|short#;style=gitweb">annotate</a> | <a href="?fl=#node|short#;file=#file|urlescape#;style=rss">rss</a><br/> | |
14 | </div> |
|
14 | </div> | |
15 |
|
15 | |||
16 | <div class="title" >#file|urlescape#</div> |
|
16 | <div class="title" >#file|urlescape#</div> |
@@ -10,8 +10,8 b'' | |||||
10 | <a href="?cl=tip">changelog</a> |
|
10 | <a href="?cl=tip">changelog</a> | |
11 | <a href="?sl=tip">shortlog</a> |
|
11 | <a href="?sl=tip">shortlog</a> | |
12 | <a href="?tags=">tags</a> |
|
12 | <a href="?tags=">tags</a> | |
13 |
<a href="?f=# |
|
13 | <a href="?f=#node|short#;file=#file|urlescape#">file</a> | |
14 |
<a href="?fa=# |
|
14 | <a href="?fa=#node|short#;file=#file|urlescape#">annotate</a> | |
15 | <a type="application/rss+xml" href="?fl=0;file=#file|urlescape#;style=rss">rss</a> |
|
15 | <a type="application/rss+xml" href="?fl=0;file=#file|urlescape#;style=rss">rss</a> | |
16 | </div> |
|
16 | </div> | |
17 |
|
17 |
@@ -1,6 +1,6 b'' | |||||
1 | <item> |
|
1 | <item> | |
2 | <title>#desc|strip|firstline|strip|escape#</title> |
|
2 | <title>#desc|strip|firstline|strip|escape#</title> | |
3 |
<link>#url#?f=# |
|
3 | <link>#url#?f=#node|short#;file=#file|urlescape#</link> | |
4 | <description><![CDATA[#desc|strip|escape|addbreaks#]]></description> |
|
4 | <description><![CDATA[#desc|strip|escape|addbreaks#]]></description> | |
5 | <author>#author|obfuscate#</author> |
|
5 | <author>#author|obfuscate#</author> | |
6 | <pubDate>#date|rfc822date#</pubDate>> |
|
6 | <pubDate>#date|rfc822date#</pubDate>> |
@@ -6,9 +6,9 b'' | |||||
6 | <tr> |
|
6 | <tr> | |
7 | <th class="revision">revision #filerev#:</td> |
|
7 | <th class="revision">revision #filerev#:</td> | |
8 | <td class="node"> |
|
8 | <td class="node"> | |
9 |
<a href="?f=# |
|
9 | <a href="?f=#node|short#;file=#file|urlescape#">#node|short#</a> | |
10 | <a href="?fd=#node|short#;file=#file|urlescape#">(diff)</a> |
|
10 | <a href="?fd=#node|short#;file=#file|urlescape#">(diff)</a> | |
11 |
<a href="?fa=# |
|
11 | <a href="?fa=#node|short#;file=#file|urlescape#">(annotate)</a> | |
12 | </td> |
|
12 | </td> | |
13 | </tr> |
|
13 | </tr> | |
14 | #rename%filelogrename# |
|
14 | #rename%filelogrename# |
@@ -10,7 +10,7 b'' | |||||
10 | </div> |
|
10 | </div> | |
11 |
|
11 | |||
12 | <div class="page_nav"> |
|
12 | <div class="page_nav"> | |
13 |
<a href="?cmd=summary;style=gitweb">summary</a> | <a href="?cmd=shortlog;style=gitweb">shortlog</a> | <a href="?cmd=changelog;style=gitweb">changelog</a> | <a href="?cmd=tags;style=gitweb">tags</a> | <a href="?mf=#node|short#;path=#path|urlescape#;style=gitweb">manifest</a> | <a href="?cmd=changeset;node=#node#;style=gitweb">changeset</a> | file | <a href="?cmd=filelog;file=#file|urlescape#;filenode=# |
|
13 | <a href="?cmd=summary;style=gitweb">summary</a> | <a href="?cmd=shortlog;style=gitweb">shortlog</a> | <a href="?cmd=changelog;style=gitweb">changelog</a> | <a href="?cmd=tags;style=gitweb">tags</a> | <a href="?mf=#node|short#;path=#path|urlescape#;style=gitweb">manifest</a> | <a href="?cmd=changeset;node=#node#;style=gitweb">changeset</a> | file | <a href="?cmd=filelog;file=#file|urlescape#;filenode=#node|short#;style=gitweb">revisions</a> | <a href="?cmd=annotate;file=#file|urlescape#;filenode=#node|short#;style=gitweb">annotate</a> | <a href="?cmd=file;file=#file|urlescape#;filenode=#node#;style=raw">raw</a><br/> | |
14 | </div> |
|
14 | </div> | |
15 |
|
15 | |||
16 | <div class="title">#file|escape#</div> |
|
16 | <div class="title">#file|escape#</div> |
@@ -9,9 +9,9 b'' | |||||
9 | <a href="?tags=">tags</a> |
|
9 | <a href="?tags=">tags</a> | |
10 | <a href="?cs=#node|short#">changeset</a> |
|
10 | <a href="?cs=#node|short#">changeset</a> | |
11 | <a href="?mf=#node|short#;path=#path|urlescape#">manifest</a> |
|
11 | <a href="?mf=#node|short#;path=#path|urlescape#">manifest</a> | |
12 |
<a href="?fl=# |
|
12 | <a href="?fl=#node|short#;file=#file|urlescape#">revisions</a> | |
13 |
<a href="?fa=# |
|
13 | <a href="?fa=#node|short#;file=#file|urlescape#">annotate</a> | |
14 |
<a href="?f=# |
|
14 | <a href="?f=#node|short#;file=#file|urlescape#;style=raw">raw</a> | |
15 | </div> |
|
15 | </div> | |
16 |
|
16 | |||
17 | <h2>#file|escape#</h2> |
|
17 | <h2>#file|escape#</h2> |
@@ -8,21 +8,21 b' shortlogentry = shortlogentry.tmpl' | |||||
8 | naventry = '<a href="?cl=#rev#">#label|escape#</a> ' |
|
8 | naventry = '<a href="?cl=#rev#">#label|escape#</a> ' | |
9 | navshortentry = '<a href="?sl=#rev#">#label|escape#</a> ' |
|
9 | navshortentry = '<a href="?sl=#rev#">#label|escape#</a> ' | |
10 | filedifflink = '<a href="?fd=#node|short#;file=#file|urlescape#">#file|escape#</a> ' |
|
10 | filedifflink = '<a href="?fd=#node|short#;file=#file|urlescape#">#file|escape#</a> ' | |
11 |
filenodelink = '<a href="?f=# |
|
11 | filenodelink = '<a href="?f=#node|short#;file=#file|urlescape#">#file|escape#</a> ' | |
12 | fileellipses = '...' |
|
12 | fileellipses = '...' | |
13 | changelogentry = changelogentry.tmpl |
|
13 | changelogentry = changelogentry.tmpl | |
14 | searchentry = changelogentry.tmpl |
|
14 | searchentry = changelogentry.tmpl | |
15 | changeset = changeset.tmpl |
|
15 | changeset = changeset.tmpl | |
16 | manifest = manifest.tmpl |
|
16 | manifest = manifest.tmpl | |
17 | manifestdirentry = '<tr class="parity#parity#"><td><tt>drwxr-xr-x</tt> <td><a href="?mf=#node|short#;path=#path|urlescape#">#basename|escape#/</a>' |
|
17 | manifestdirentry = '<tr class="parity#parity#"><td><tt>drwxr-xr-x</tt> <td><a href="?mf=#node|short#;path=#path|urlescape#">#basename|escape#/</a>' | |
18 |
manifestfileentry = '<tr class="parity#parity#"><td><tt>#permissions|permissions#</tt> <td><a href="?f=# |
|
18 | manifestfileentry = '<tr class="parity#parity#"><td><tt>#permissions|permissions#</tt> <td><a href="?f=#node|short#;file=#file|urlescape#">#basename|escape#</a>' | |
19 | filerevision = filerevision.tmpl |
|
19 | filerevision = filerevision.tmpl | |
20 | fileannotate = fileannotate.tmpl |
|
20 | fileannotate = fileannotate.tmpl | |
21 | filediff = filediff.tmpl |
|
21 | filediff = filediff.tmpl | |
22 | filelog = filelog.tmpl |
|
22 | filelog = filelog.tmpl | |
23 | fileline = '<div class="parity#parity#"><span class="lineno">#linenumber#</span>#line|escape#</div>' |
|
23 | fileline = '<div class="parity#parity#"><span class="lineno">#linenumber#</span>#line|escape#</div>' | |
24 | filelogentry = filelogentry.tmpl |
|
24 | filelogentry = filelogentry.tmpl | |
25 |
annotateline = '<tr class="parity#parity#"><td class="annotate"><a href="?fa=# |
|
25 | annotateline = '<tr class="parity#parity#"><td class="annotate"><a href="?fa=#node|short#;file=#file|urlescape#">#author|obfuscate#@#rev#</a></td><td><pre>#line|escape#</pre></td></tr>' | |
26 | difflineplus = '<span class="plusline">#line|escape#</span>' |
|
26 | difflineplus = '<span class="plusline">#line|escape#</span>' | |
27 | difflineminus = '<span class="minusline">#line|escape#</span>' |
|
27 | difflineminus = '<span class="minusline">#line|escape#</span>' | |
28 | difflineat = '<span class="atline">#line|escape#</span>' |
|
28 | difflineat = '<span class="atline">#line|escape#</span>' |
@@ -8,19 +8,19 b' error = error-gitweb.tmpl' | |||||
8 | naventry = '<a href="?cmd=changelog;rev=#rev#;style=gitweb">#label|escape#</a> ' |
|
8 | naventry = '<a href="?cmd=changelog;rev=#rev#;style=gitweb">#label|escape#</a> ' | |
9 | navshortentry = '<a href="?cmd=shortlog;rev=#rev#;style=gitweb">#label|escape#</a> ' |
|
9 | navshortentry = '<a href="?cmd=shortlog;rev=#rev#;style=gitweb">#label|escape#</a> ' | |
10 | filedifflink = '<a href="?cmd=filediff;node=#node#;file=#file|urlescape#;style=gitweb">#file|escape#</a> ' |
|
10 | filedifflink = '<a href="?cmd=filediff;node=#node#;file=#file|urlescape#;style=gitweb">#file|escape#</a> ' | |
11 |
filenodelink = '<tr class="parity#parity#"><td><a class="list" href="">#file|escape#</a></td><td></td><td class="link"><a href="? |
|
11 | filenodelink = '<tr class="parity#parity#"><td><a class="list" href="">#file|escape#</a></td><td></td><td class="link"><a href="?f=#node|short#;file=#file|urlescape#;style=gitweb">file</a> | <a href="?fa=#node|short#;file=#file|urlescape#;style=gitweb">annotate</a> | <!-- FIXME: <a href="?fd=#node|short#;file=#file|urlescape#;style=gitweb">diff</a> | --> <a href="?cmd=filelog;filenode=#node|short#;file=#file|urlescape#;style=gitweb">revisions</a></td></tr>' | |
12 | fileellipses = '...' |
|
12 | fileellipses = '...' | |
13 | changelogentry = changelogentry-gitweb.tmpl |
|
13 | changelogentry = changelogentry-gitweb.tmpl | |
14 | searchentry = changelogentry-gitweb.tmpl |
|
14 | searchentry = changelogentry-gitweb.tmpl | |
15 | changeset = changeset-gitweb.tmpl |
|
15 | changeset = changeset-gitweb.tmpl | |
16 | manifest = manifest-gitweb.tmpl |
|
16 | manifest = manifest-gitweb.tmpl | |
17 | manifestdirentry = '<tr class="parity#parity#"><td style="font-family:monospace">drwxr-xr-x</td><td><a href="?mf=#node|short#;path=#path|urlescape#;style=gitweb">#basename|escape#/</a></td><td class="link"><a href="?mf=#node|short#;path=#path|urlescape#;style=gitweb">manifest</a></td></tr>' |
|
17 | manifestdirentry = '<tr class="parity#parity#"><td style="font-family:monospace">drwxr-xr-x</td><td><a href="?mf=#node|short#;path=#path|urlescape#;style=gitweb">#basename|escape#/</a></td><td class="link"><a href="?mf=#node|short#;path=#path|urlescape#;style=gitweb">manifest</a></td></tr>' | |
18 |
manifestfileentry = '<tr class="parity#parity#"><td style="font-family:monospace">#permissions|permissions#</td><td class="list"><a class="list" href="?f=# |
|
18 | manifestfileentry = '<tr class="parity#parity#"><td style="font-family:monospace">#permissions|permissions#</td><td class="list"><a class="list" href="?f=#node|short#;file=#file|urlescape#;style=gitweb">#basename|escape#</a></td><td class="link"><a href="?f=#node|short#;file=#file|urlescape#;style=gitweb">file</a> | <a href="?fl=#node|short#;file=#file|urlescape#;style=gitweb">revisions</a> | <a href="?fa=#node|short#;file=#file|urlescape#;style=gitweb">annotate</a></td></tr>' | |
19 | filerevision = filerevision-gitweb.tmpl |
|
19 | filerevision = filerevision-gitweb.tmpl | |
20 | fileannotate = fileannotate-gitweb.tmpl |
|
20 | fileannotate = fileannotate-gitweb.tmpl | |
21 | filelog = filelog-gitweb.tmpl |
|
21 | filelog = filelog-gitweb.tmpl | |
22 | fileline = '<div style="font-family:monospace" class="parity#parity#"><pre><span class="linenr"> #linenumber#</span> #line|escape#</pre></div>' |
|
22 | fileline = '<div style="font-family:monospace" class="parity#parity#"><pre><span class="linenr"> #linenumber#</span> #line|escape#</pre></div>' | |
23 |
annotateline = '<tr style="font-family:monospace" class="parity#parity#"><td class="linenr" style="text-align: right;"><a href="?fa=# |
|
23 | annotateline = '<tr style="font-family:monospace" class="parity#parity#"><td class="linenr" style="text-align: right;"><a href="?fa=#node|short#;file=#file|urlescape#;style=gitweb">#author|obfuscate#@#rev#</a></td><td><pre>#line|escape#</pre></td></tr>' | |
24 | difflineplus = '<div style="color:#008800;">#line|escape#</div>' |
|
24 | difflineplus = '<div style="color:#008800;">#line|escape#</div>' | |
25 | difflineminus = '<div style="color:#cc0000;">#line|escape#</div>' |
|
25 | difflineminus = '<div style="color:#cc0000;">#line|escape#</div>' | |
26 | difflineat = '<div style="color:#990099;">#line|escape#</div>' |
|
26 | difflineat = '<div style="color:#990099;">#line|escape#</div>' | |
@@ -46,5 +46,5 b' filediffchild = \'<tr><th class="child">c' | |||||
46 | filelogchild = '<tr><td align="right">child #rev#: </td><td><a href="?cmd=file;file=#file|urlescape#;filenode=#node#;style=gitweb">#node|short#</a></td></tr>' |
|
46 | filelogchild = '<tr><td align="right">child #rev#: </td><td><a href="?cmd=file;file=#file|urlescape#;filenode=#node#;style=gitweb">#node|short#</a></td></tr>' | |
47 | shortlog = shortlog-gitweb.tmpl |
|
47 | shortlog = shortlog-gitweb.tmpl | |
48 | shortlogentry = '<tr class="parity#parity#"><td class="age"><i>#date|age# ago</i></td><td><i>#author#</i></td><td><a class="list" href="?cmd=changeset;node=#node|short#;style=gitweb"><b>#desc|strip|firstline|escape#</b></a></td><td class="link"><a href="?cmd=changeset;node=#node|short#;style=gitweb">changeset</a> | <a href="?cmd=manifest;manifest=#node|short#;path=/;style=gitweb">manifest</a></td></tr>' |
|
48 | shortlogentry = '<tr class="parity#parity#"><td class="age"><i>#date|age# ago</i></td><td><i>#author#</i></td><td><a class="list" href="?cmd=changeset;node=#node|short#;style=gitweb"><b>#desc|strip|firstline|escape#</b></a></td><td class="link"><a href="?cmd=changeset;node=#node|short#;style=gitweb">changeset</a> | <a href="?cmd=manifest;manifest=#node|short#;path=/;style=gitweb">manifest</a></td></tr>' | |
49 |
filelogentry = '<tr class="parity#parity#"><td class="age"><i>#date|age# ago</i></td><td><a class="list" href="?cmd=changeset;node=#node|short#;style=gitweb"><b>#desc|strip|firstline|escape#</b></a></td><td class="link"><a href="?f=#node|short#;file=#file|urlescape#;style=gitweb">file</a> | <!-- FIXME: <a href="?fd=#node|short#;file=#file|urlescape#;style=gitweb">diff</a> | --> <a href="?fa=# |
|
49 | filelogentry = '<tr class="parity#parity#"><td class="age"><i>#date|age# ago</i></td><td><a class="list" href="?cmd=changeset;node=#node|short#;style=gitweb"><b>#desc|strip|firstline|escape#</b></a></td><td class="link"><a href="?f=#node|short#;file=#file|urlescape#;style=gitweb">file</a> | <!-- FIXME: <a href="?fd=#node|short#;file=#file|urlescape#;style=gitweb">diff</a> | --> <a href="?fa=#node|short#;file=#file|urlescape#;style=gitweb">annotate</a> #rename%filelogrename#</td></tr>' | |
50 | archiveentry = ' | <a href="?ca=#node|short#;type=#type|urlescape#">#type|escape#</a> ' |
|
50 | archiveentry = ' | <a href="?ca=#node|short#;type=#type|urlescape#">#type|escape#</a> ' |
General Comments 0
You need to be logged in to leave comments.
Login now