annotate lib/redmine/scm/adapters/mercurial/hg-template-1.0.tmpl @ 507:0c939c159af4 redmine-1.2

Update to Redmine 1.2.1 on 1.2-stable branch (Redmine SVN rev 6270)
author Chris Cannam
date Thu, 14 Jul 2011 10:32:19 +0100
parents 8661b858af72
children b859cc0c4fa1 cbb26bc654de
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@119 4 changeset_debug = '<logentry revision="{rev}" node="{node|short}">\n<author>{author|escape}</author>\n<date>{date|isodatesec}</date>\n<paths>\n{file_mods}{file_adds}{file_dels}{file_copies}</paths>\n<msg>{desc|escape}</msg>\n{tags}</logentry>\n\n'
Chris@0 5
Chris@119 6 file_mod = '<path action="M">{file_mod|urlescape}</path>\n'
Chris@119 7 file_add = '<path action="A">{file_add|urlescape}</path>\n'
Chris@119 8 file_del = '<path action="D">{file_del|urlescape}</path>\n'
Chris@119 9 file_copy = '<path-copied copyfrom-path="{source|urlescape}">{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@0 12 # footer="</log>"