##// 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 default = 'shortlog'
1 default = 'shortlog'
2 shortlog = "'raw' is not a browsable style"
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 mimetype = 'text/plain; charset={encoding}'
7 mimetype = 'text/plain; charset={encoding}'
4 header = ''
8 header = ''
5 footer = ''
9 footer = ''
6 changeset = changeset.tmpl
10 changeset = changeset.tmpl
7 difflineplus = '{line}'
11 difflineplus = '{line}'
8 difflineminus = '{line}'
12 difflineminus = '{line}'
9 difflineat = '{line}'
13 difflineat = '{line}'
10 diffline = '{line}'
14 diffline = '{line}'
11 changesetparent = '# Parent {node}'
15 changesetparent = '# Parent {node}'
12 changesetchild = '# Child {node}'
16 changesetchild = '# Child {node}'
13 filenodelink = ''
17 filenodelink = ''
14 filenolink = ''
18 filenolink = ''
15 fileline = '{line}'
19 fileline = '{line}'
16 diffblock = '{lines}'
20 diffblock = '{lines}'
17 filediff = filediff.tmpl
21 filediff = filediff.tmpl
18 fileannotate = fileannotate.tmpl
22 fileannotate = fileannotate.tmpl
19 annotateline = '{author|user}@{rev}: {line}'
23 annotateline = '{author|user}@{rev}: {line}'
20 manifest = manifest.tmpl
24 manifest = manifest.tmpl
21 direntry = 'drwxr-xr-x {basename}\n'
25 direntry = 'drwxr-xr-x {basename}\n'
22 fileentry = '{permissions|permissions} {size} {basename}\n'
26 fileentry = '{permissions|permissions} {size} {basename}\n'
23 index = index.tmpl
27 index = index.tmpl
24 notfound = notfound.tmpl
28 notfound = notfound.tmpl
25 error = error.tmpl
29 error = error.tmpl
26 indexentry = '{url}\n'
30 indexentry = '{url}\n'
27 tags = '{entries%tagentry}'
31 tags = '{entries%tagentry}'
28 tagentry = '{tag} {node}\n'
32 tagentry = '{tag} {node}\n'
29 bookmarks = '{entries%bookmarkentry}'
33 bookmarks = '{entries%bookmarkentry}'
30 bookmarkentry = '{bookmark} {node}\n'
34 bookmarkentry = '{bookmark} {node}\n'
31 branches = '{entries%branchentry}'
35 branches = '{entries%branchentry}'
32 branchentry = '{branch} {node} {status}\n'
36 branchentry = '{branch} {node} {status}\n'
33 graph = graph.tmpl
37 graph = graph.tmpl
34 graphnode = graphnode.tmpl
38 graphnode = graphnode.tmpl
35 graphedge = graphedge.tmpl
39 graphedge = graphedge.tmpl
36 bookmarkname = 'bookmark: {name}\n'
40 bookmarkname = 'bookmark: {name}\n'
37 branchname = 'branch: {name}\n'
41 branchname = 'branch: {name}\n'
38 tagname = 'tag: {name}\n'
42 tagname = 'tag: {name}\n'
General Comments 0
You need to be logged in to leave comments. Login now