annotate lib/redmine/scm/adapters/mercurial/hg-template-0.9.5.tmpl @ 8:0c83d98252d9 yuya

* Add custom repo prefix and proper auth realm, remove auth cache (seems like an unwise feature), pass DB handle around, various other bits of tidying
author Chris Cannam
date Thu, 12 Aug 2010 15:31:37 +0100
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>'