Mercurial > public > mercurial-scm > hg
diff mercurial/templates/json/map @ 24588:0bf54479a9eb
json: implement {shortlog} and {changelog} templates
These are the same dispatch function under the hood. The only difference
is the default number of entries to render and the template to use. So
it makes sense to use a shared template.
Format for {changelistentry} is similar to {changeset}. However, there
are differences to argument names and their values preventing us from
(easily) using the same template. (Perhaps there is room to consolidate
the templates as a follow-up.)
We're currently not recording some data in {changelistentry} that exists
in {changeset}. This includes the branch name. This should be added in
a follow-up. For now, something is better than nothing.
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Tue, 31 Mar 2015 22:53:48 -0700 |
parents | 5ec4bda3097a |
children | 30a737ae9b7d |
line wrap: on
line diff
--- a/mercurial/templates/json/map Wed Apr 01 20:23:58 2015 -0700 +++ b/mercurial/templates/json/map Tue Mar 31 22:53:48 2015 -0700 @@ -1,8 +1,19 @@ mimetype = 'application/json' filerevision = '"not yet implemented"' search = '"not yet implemented"' -shortlog = '"not yet implemented"' -changelog = '"not yet implemented"' +# changelog and shortlog are the same web API but with different +# number of entries. +changelog = changelist.tmpl +shortlog = changelist.tmpl +changelistentry = '\{ + "node": {node|json}, + "date": {date|json}, + "desc": {desc|json}, + "bookmarks": [{join(bookmarks%changelistentryname, ", ")}], + "tags": [{join(tags%changelistentryname, ", ")}], + "user": {author|json} + }' +changelistentryname = '{name|json}' changeset = '\{ "node": {node|json}, "date": {date|json},