]> code.delx.au - gnu-emacs/blob - etc/srecode/default.srt
* srecode: New directory for SRecode template files.
[gnu-emacs] / etc / srecode / default.srt
1 ;;; default.srt --- SRecode templates for srecode-template-mode
2
3 ;; Copyright (C) 2007, 2008, 2009 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 2, or (at
29 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; see the file COPYING. If not, write to
38 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
39 Boston, MA 02110-1301, USA."
40
41 set DOLLAR "$"
42
43 context file
44
45 template copyright
46 ----
47 {{COPYRIGHT:srecode-comment-prefix}}
48 ----
49
50 template filecomment :file :user :time
51 ----
52 {{comment_start}} {{FILENAME}} --- {{^}}
53 {{comment_prefix}}
54 {{comment_prefix}} Copyright (C) {{YEAR}} {{?AUTHOR}}
55 {{comment_prefix}}
56 {{comment_prefix}} Author: {{AUTHOR}} <{{EMAIL}}>{{#RCS}}
57 {{comment_prefix}} X-RCS: {{DOLLAR}}Id{{DOLLAR}}{{/RCS}}
58 {{comment_prefix}}
59 {{>:copyright}}
60 {{comment_end}}
61 ----
62
63 ;; end