annotate lib/redmine/scm/adapters/mercurial/hg-template-0.9.5.tmpl @ 882:9e27d0747c77
bug_97
Close obsolete branch bug_97
author |
Chris Cannam |
date |
Fri, 25 Mar 2011 13:58:03 +0000 |
parents |
7c48bad7d85d |
children |
b859cc0c4fa1 |
rev |
line source |
Chris@0
|
1 changeset = 'This template must be used with --debug option\n'
|
Chris@0
|
2 changeset_quiet = 'This template must be used with --debug option\n'
|
Chris@0
|
3 changeset_verbose = 'This template must be used with --debug option\n'
|
Chris@0
|
4 changeset_debug = '<logentry revision="{rev}" node="{node|short}">\n<author>{author|escape}</author>\n<date>{date|isodate}</date>\n<paths>\n{files}{file_adds}{file_dels}{file_copies}</paths>\n<msg>{desc|escape}</msg>\n{tags}</logentry>\n\n'
|
Chris@0
|
5
|
Chris@0
|
6 file = '<path action="M">{file|escape}</path>\n'
|
Chris@0
|
7 file_add = '<path action="A">{file_add|escape}</path>\n'
|
Chris@0
|
8 file_del = '<path action="D">{file_del|escape}</path>\n'
|
Chris@0
|
9 file_copy = '<path-copied copyfrom-path="{source|escape}">{name|urlescape}</path-copied>\n'
|
Chris@0
|
10 tag = '<tag>{tag|escape}</tag>\n'
|
Chris@0
|
11 header='<?xml version="1.0" encoding="UTF-8" ?>\n<log>\n\n'
|
Chris@3
|
12 footer='</log>'
|