map
89 lines
| 2.3 KiB
| text/plain
|
TextLexer
Gregory Szorc
|
r24544 | mimetype = 'application/json' | ||
filerevision = '"not yet implemented"' | ||||
search = '"not yet implemented"' | ||||
Gregory Szorc
|
r24588 | # 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}' | ||||
Gregory Szorc
|
r24563 | changeset = '\{ | ||
"node": {node|json}, | ||||
"date": {date|json}, | ||||
"desc": {desc|json}, | ||||
"branch": {if(branch, branch%changesetbranch, "default"|json)}, | ||||
"bookmarks": [{join(changesetbookmark, ", ")}], | ||||
"tags": [{join(changesettag, ", ")}], | ||||
"user": {author|json}, | ||||
Gregory Szorc
|
r24564 | "parents": [{join(parent%changesetparent, ", ")}], | ||
"phase": {phase|json} | ||||
Gregory Szorc
|
r24563 | }' | ||
changesetbranch = '{name|json}' | ||||
changesetbookmark = '{bookmark|json}' | ||||
changesettag = '{tag|json}' | ||||
changesetparent = '{node|json}' | ||||
Gregory Szorc
|
r24589 | manifest = '\{ | ||
"node": {node|json}, | ||||
"abspath": {path|json}, | ||||
"directories": [{join(dentries%direntry, ", ")}], | ||||
"files": [{join(fentries%fileentry, ", ")}], | ||||
"bookmarks": [{join(bookmarks%name, ", ")}], | ||||
"tags": [{join(tags%name, ", ")}] | ||||
}' | ||||
name = '{name|json}' | ||||
direntry = '\{ | ||||
"abspath": {path|json}, | ||||
"basename": {basename|json}, | ||||
"emptydirs": {emptydirs|json} | ||||
}' | ||||
fileentry = '\{ | ||||
"abspath": {file|json}, | ||||
"basename": {basename|json}, | ||||
"date": {date|json}, | ||||
"size": {size|json}, | ||||
"flags": {permissions|json} | ||||
}' | ||||
Gregory Szorc
|
r24545 | tags = '\{ | ||
"node": {node|json}, | ||||
"tags": [{join(entriesnotip%tagentry, ", ")}] | ||||
}' | ||||
tagentry = '\{ | ||||
"tag": {tag|json}, | ||||
"node": {node|json}, | ||||
"date": {date|json} | ||||
}' | ||||
Gregory Szorc
|
r24546 | bookmarks = '\{ | ||
"node": {node|json}, | ||||
"bookmarks": [{join(entries%bookmarkentry, ", ")}] | ||||
}' | ||||
bookmarkentry = '\{ | ||||
"bookmark": {bookmark|json}, | ||||
"node": {node|json}, | ||||
"date": {date|json} | ||||
}' | ||||
Gregory Szorc
|
r24547 | branches = '\{ | ||
"branches": [{join(entries%branchentry, ", ")}] | ||||
}' | ||||
branchentry = '\{ | ||||
"branch": {branch|json}, | ||||
"node": {node|json}, | ||||
"date": {date|json}, | ||||
"status": {status|json} | ||||
}' | ||||
Gregory Szorc
|
r24544 | summary = '"not yet implemented"' | ||
filediff = '"not yet implemented"' | ||||
filecomparison = '"not yet implemented"' | ||||
fileannotate = '"not yet implemented"' | ||||
filelog = '"not yet implemented"' | ||||
graph = '"not yet implemented"' | ||||
helptopics = '"not yet implemented"' | ||||
help = '"not yet implemented"' | ||||
filenodelink = '' | ||||
filenolink = '' | ||||