Mercurial > hg > soundsoftware-site
annotate lib/redmine/scm/adapters/mercurial/hg-template-0.9.5.tmpl @ 1628:9c5f8e24dadc live tip
Quieten this cron script
author | Chris Cannam |
---|---|
date | Tue, 25 Aug 2020 11:38:49 +0100 |
parents | b859cc0c4fa1 |
children |
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@117 | 6 file = '<path action="M">{file|urlescape}</path>\n' |
Chris@117 | 7 file_add = '<path action="A">{file_add|urlescape}</path>\n' |
Chris@117 | 8 file_del = '<path action="D">{file_del|urlescape}</path>\n' |
Chris@117 | 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@3 | 12 footer='</log>' |