##// END OF EJS Templates
hgweb: add changelog and search templates to raw style...
Alexander Plavin -
r19429:c8490dcc default
parent child Browse files
Show More
@@ -0,0 +1,5 b''
1 {header}
2 # HG shortlog
3 # Node ID {node}
4
5 {entries%changelogentry}
@@ -0,0 +1,6 b''
1 changeset: {node}
2 revision: {rev}
3 user: {author}
4 date: {date|rfc822date}
5 summary: {desc}
6 {branches%branchname}{tags%tagname}{bookmarks%bookmarkname}
@@ -0,0 +1,6 b''
1 {header}
2 # HG changesets search
3 # Node ID {node}
4 # Query "{query}"
5
6 {entries%changelogentry}
@@ -1,38 +1,42 b''
1 1 default = 'shortlog'
2 2 shortlog = "'raw' is not a browsable style"
3 changelog = changelog.tmpl
4 changelogentry = logentry.tmpl
5 search = search.tmpl
6 searchentry = logentry.tmpl
3 7 mimetype = 'text/plain; charset={encoding}'
4 8 header = ''
5 9 footer = ''
6 10 changeset = changeset.tmpl
7 11 difflineplus = '{line}'
8 12 difflineminus = '{line}'
9 13 difflineat = '{line}'
10 14 diffline = '{line}'
11 15 changesetparent = '# Parent {node}'
12 16 changesetchild = '# Child {node}'
13 17 filenodelink = ''
14 18 filenolink = ''
15 19 fileline = '{line}'
16 20 diffblock = '{lines}'
17 21 filediff = filediff.tmpl
18 22 fileannotate = fileannotate.tmpl
19 23 annotateline = '{author|user}@{rev}: {line}'
20 24 manifest = manifest.tmpl
21 25 direntry = 'drwxr-xr-x {basename}\n'
22 26 fileentry = '{permissions|permissions} {size} {basename}\n'
23 27 index = index.tmpl
24 28 notfound = notfound.tmpl
25 29 error = error.tmpl
26 30 indexentry = '{url}\n'
27 31 tags = '{entries%tagentry}'
28 32 tagentry = '{tag} {node}\n'
29 33 bookmarks = '{entries%bookmarkentry}'
30 34 bookmarkentry = '{bookmark} {node}\n'
31 35 branches = '{entries%branchentry}'
32 36 branchentry = '{branch} {node} {status}\n'
33 37 graph = graph.tmpl
34 38 graphnode = graphnode.tmpl
35 39 graphedge = graphedge.tmpl
36 40 bookmarkname = 'bookmark: {name}\n'
37 41 branchname = 'branch: {name}\n'
38 42 tagname = 'tag: {name}\n'
General Comments 0
You need to be logged in to leave comments. Login now