##// 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,5 +1,9 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 = ''
General Comments 0
You need to be logged in to leave comments. Login now