6147b2ec90981e0623badc1cc47d7c82880b214b
[bpt/emacs.git] / etc / srecode / default.srt
1 ;;; default.srt --- SRecode templates for srecode-template-mode
2
3 ;; Copyright (C) 2007-2013 Free Software Foundation, Inc.
4
5 ;; Author: Eric M. Ludlam <eric@siege-engine.com>
6
7 ;; This file is part of GNU Emacs.
8
9 ;; GNU Emacs is free software: you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation, either version 3 of the License, or
12 ;; (at your option) any later version.
13
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
21
22 set mode "default"
23
24 set comment_start "#"
25
26 set COPYRIGHT "This program is free software; you can redistribute it and/or
27 modify it under the terms of the GNU General Public License as
28 published by the Free Software Foundation, either version 3 of the
29 License, or (at your option) any later version.
30
31 This program is distributed in the hope that it will be useful, but
32 WITHOUT ANY WARRANTY; without even the implied warranty of
33 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
34 General Public License for more details.
35
36 You should have received a copy of the GNU General Public License
37 along with this program. If not, see http://www.gnu.org/licenses/."
38
39 set DOLLAR "$"
40
41 context file
42
43 template copyright
44 ----
45 {{COPYRIGHT:srecode-comment-prefix}}
46 ----
47
48 template filecomment :file :user :time
49 ----
50 {{comment_start}} {{FILENAME}} --- {{^}}
51 {{comment_prefix}}
52 {{comment_prefix}} Copyright (C) {{YEAR}} {{?AUTHOR}}
53 {{comment_prefix}}
54 {{comment_prefix}} Author: {{AUTHOR}} <{{EMAIL}}>{{#RCS}}
55 {{comment_prefix}} X-RCS: {{DOLLAR}}Id{{DOLLAR}}{{/RCS}}
56 {{comment_prefix}}
57 {{>:copyright}}
58 {{comment_end}}
59 ----
60
61 ;; end