aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-11-12 09:03:46 -0800
committerGlenn Morris2013-11-12 09:03:46 -0800
commit439d6b1c9bc790f8ae344a8caaeb5164123d8f0c (patch)
tree59d6c748fd00bc2d508d02321df9e08109895db2
parent02934b678e47fdbb19b4a20452f3f04f78e3beae (diff)
downloademacs-439d6b1c9bc790f8ae344a8caaeb5164123d8f0c.tar.gz
emacs-439d6b1c9bc790f8ae344a8caaeb5164123d8f0c.zip
Fix and standardize some copyright and license notices
* ob-abc.el: Add year, part of Emacs, standardize license text. * ob-ebnf.el: Part of Emacs, standardize license text. * ob-makefile.el: Fix years. * org-macro.el, ox-beamer.el, ox-latex.el, ox-org.el: Part of Emacs. * ox-ascii.el, ox-md.el, ox.el: Use range for years, part of Emacs. * ox-html.el: Part of Emacs. (org-html-scripts): Add 2013 to copyright years. (org-html-infojs-template): Set copyright holder to FSF. * ox-icalendar.el: Part of Emacs, fix years. * ox-texinfo.el: Copyright to FSF, use range for years.
-rw-r--r--lisp/org/ob-abc.el20
-rw-r--r--lisp/org/ob-ebnf.el18
-rw-r--r--lisp/org/ob-makefile.el2
-rw-r--r--lisp/org/org-macro.el2
-rw-r--r--lisp/org/ox-ascii.el4
-rw-r--r--lisp/org/ox-beamer.el4
-rw-r--r--lisp/org/ox-html.el8
-rw-r--r--lisp/org/ox-icalendar.el4
-rw-r--r--lisp/org/ox-latex.el2
-rw-r--r--lisp/org/ox-md.el4
-rw-r--r--lisp/org/ox-org.el4
-rw-r--r--lisp/org/ox-texinfo.el2
-rw-r--r--lisp/org/ox.el4
13 files changed, 46 insertions, 32 deletions
diff --git a/lisp/org/ob-abc.el b/lisp/org/ob-abc.el
index a980b0225d4..09f2e63fabb 100644
--- a/lisp/org/ob-abc.el
+++ b/lisp/org/ob-abc.el
@@ -1,28 +1,26 @@
1;;; ob-abc.el --- org-babel functions for template evaluation 1;;; ob-abc.el --- org-babel functions for template evaluation
2 2
3;; Copyright (C) Free Software Foundation 3;; Copyright (C) 2013 Free Software Foundation, Inc.
4 4
5;; Author: William Waites 5;; Author: William Waites
6;; Keywords: literate programming, music 6;; Keywords: literate programming, music
7;; Homepage: http://www.tardis.ed.ac.uk/wwaites 7;; Homepage: http://www.tardis.ed.ac.uk/wwaites
8;; Version: 0.01 8;; Version: 0.01
9 9
10;;; License: 10;; This file is part of GNU Emacs.
11 11
12;; This program is free software; you can redistribute it and/or modify 12;; GNU Emacs is free software: you can redistribute it and/or modify
13;; it under the terms of the GNU General Public License as published by 13;; it under the terms of the GNU General Public License as published by
14;; the Free Software Foundation; either version 3, or (at your option) 14;; the Free Software Foundation, either version 3 of the License, or
15;; any later version. 15;; (at your option) any later version.
16;; 16
17;; This program is distributed in the hope that it will be useful, 17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of 18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details. 20;; GNU General Public License for more details.
21;; 21
22;; You should have received a copy of the GNU General Public License 22;; You should have received a copy of the GNU General Public License
23;; along with GNU Emacs; see the file COPYING. If not, write to the 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25;; Boston, MA 02110-1301, USA.
26 24
27;;; Commentary: 25;;; Commentary:
28 26
diff --git a/lisp/org/ob-ebnf.el b/lisp/org/ob-ebnf.el
index 8c98d305d3e..753f25f1c5c 100644
--- a/lisp/org/ob-ebnf.el
+++ b/lisp/org/ob-ebnf.el
@@ -7,22 +7,20 @@
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 1.00 8;; Version: 1.00
9 9
10;;; License: 10;; This file is part of GNU Emacs.
11 11
12;; This program is free software; you can redistribute it and/or modify 12;; GNU Emacs is free software: you can redistribute it and/or modify
13;; it under the terms of the GNU General Public License as published by 13;; it under the terms of the GNU General Public License as published by
14;; the Free Software Foundation; either version 3, or (at your option) 14;; the Free Software Foundation, either version 3 of the License, or
15;; any later version. 15;; (at your option) any later version.
16;; 16
17;; This program is distributed in the hope that it will be useful, 17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of 18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details. 20;; GNU General Public License for more details.
21;; 21
22;; You should have received a copy of the GNU General Public License 22;; You should have received a copy of the GNU General Public License
23;; along with GNU Emacs; see the file COPYING. If not, write to the 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25;; Boston, MA 02110-1301, USA.
26 24
27;;; Commentary: 25;;; Commentary:
28 26
diff --git a/lisp/org/ob-makefile.el b/lisp/org/ob-makefile.el
index 7b0ff932c49..517b5a683b0 100644
--- a/lisp/org/ob-makefile.el
+++ b/lisp/org/ob-makefile.el
@@ -1,6 +1,6 @@
1;;; ob-makefile.el --- org-babel functions for makefile evaluation 1;;; ob-makefile.el --- org-babel functions for makefile evaluation
2 2
3;; Copyright (C) 2009-2012 Free Software Foundation, Inc. 3;; Copyright (C) 2009-2013 Free Software Foundation, Inc.
4 4
5;; Author: Eric Schulte and Thomas S. Dye 5;; Author: Eric Schulte and Thomas S. Dye
6;; Keywords: literate programming, reproducible research 6;; Keywords: literate programming, reproducible research
diff --git a/lisp/org/org-macro.el b/lisp/org/org-macro.el
index fa74d8341b5..61e9243b825 100644
--- a/lisp/org/org-macro.el
+++ b/lisp/org/org-macro.el
@@ -5,6 +5,8 @@
5;; Author: Nicolas Goaziou <n.goaziou@gmail.com> 5;; Author: Nicolas Goaziou <n.goaziou@gmail.com>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7 7
8;; This file is part of GNU Emacs.
9
8;; GNU Emacs is free software: you can redistribute it and/or modify 10;; GNU Emacs is free software: you can redistribute it and/or modify
9;; it under the terms of the GNU General Public License as published by 11;; it under the terms of the GNU General Public License as published by
10;; the Free Software Foundation, either version 3 of the License, or 12;; the Free Software Foundation, either version 3 of the License, or
diff --git a/lisp/org/ox-ascii.el b/lisp/org/ox-ascii.el
index 32262cc9a6c..430bc6e618b 100644
--- a/lisp/org/ox-ascii.el
+++ b/lisp/org/ox-ascii.el
@@ -1,10 +1,12 @@
1;;; ox-ascii.el --- ASCII Back-End for Org Export Engine 1;;; ox-ascii.el --- ASCII Back-End for Org Export Engine
2 2
3;; Copyright (C) 2012, 2013 Free Software Foundation, Inc. 3;; Copyright (C) 2012-2013 Free Software Foundation, Inc.
4 4
5;; Author: Nicolas Goaziou <n.goaziou at gmail dot com> 5;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7 7
8;; This file is part of GNU Emacs.
9
8;; GNU Emacs is free software: you can redistribute it and/or modify 10;; GNU Emacs is free software: you can redistribute it and/or modify
9;; it under the terms of the GNU General Public License as published by 11;; it under the terms of the GNU General Public License as published by
10;; the Free Software Foundation, either version 3 of the License, or 12;; the Free Software Foundation, either version 3 of the License, or
diff --git a/lisp/org/ox-beamer.el b/lisp/org/ox-beamer.el
index c5074f6819d..2868944c957 100644
--- a/lisp/org/ox-beamer.el
+++ b/lisp/org/ox-beamer.el
@@ -1,11 +1,13 @@
1;;; ox-beamer.el --- Beamer Back-End for Org Export Engine 1;;; ox-beamer.el --- Beamer Back-End for Org Export Engine
2 2
3;; Copyright (C) 2007-2013 Free Software Foundation, Inc. 3;; Copyright (C) 2007-2013 Free Software Foundation, Inc.
4 4
5;; Author: Carsten Dominik <carsten.dominik AT gmail DOT com> 5;; Author: Carsten Dominik <carsten.dominik AT gmail DOT com>
6;; Nicolas Goaziou <n.goaziou AT gmail DOT com> 6;; Nicolas Goaziou <n.goaziou AT gmail DOT com>
7;; Keywords: org, wp, tex 7;; Keywords: org, wp, tex
8 8
9;; This file is part of GNU Emacs.
10
9;; GNU Emacs is free software: you can redistribute it and/or modify 11;; 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 12;; 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 13;; the Free Software Foundation, either version 3 of the License, or
diff --git a/lisp/org/ox-html.el b/lisp/org/ox-html.el
index c47cc8610ad..5aeaaf7bccf 100644
--- a/lisp/org/ox-html.el
+++ b/lisp/org/ox-html.el
@@ -1,11 +1,13 @@
1;;; ox-html.el --- HTML Back-End for Org Export Engine 1;;; ox-html.el --- HTML Back-End for Org Export Engine
2 2
3;; Copyright (C) 2011-2013 Free Software Foundation, Inc. 3;; Copyright (C) 2011-2013 Free Software Foundation, Inc.
4 4
5;; Author: Carsten Dominik <carsten at orgmode dot org> 5;; Author: Carsten Dominik <carsten at orgmode dot org>
6;; Jambunathan K <kjambunathan at gmail dot com> 6;; Jambunathan K <kjambunathan at gmail dot com>
7;; Keywords: outlines, hypermedia, calendar, wp 7;; Keywords: outlines, hypermedia, calendar, wp
8 8
9;; This file is part of GNU Emacs.
10
9;; GNU Emacs is free software: you can redistribute it and/or modify 11;; 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 12;; 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 13;; the Free Software Foundation, either version 3 of the License, or
@@ -184,7 +186,7 @@ the headline itself.")
184@licstart The following is the entire license notice for the 186@licstart The following is the entire license notice for the
185JavaScript code in this tag. 187JavaScript code in this tag.
186 188
187Copyright (C) 2012 Free Software Foundation, Inc. 189Copyright (C) 2012-2013 Free Software Foundation, Inc.
188 190
189The JavaScript code in this tag is free software: you can 191The JavaScript code in this tag is free software: you can
190redistribute it and/or modify it under the terms of the GNU 192redistribute it and/or modify it under the terms of the GNU
@@ -381,7 +383,7 @@ means to use the maximum value consistent with other options."
381 * @licstart The following is the entire license notice for the 383 * @licstart The following is the entire license notice for the
382 * JavaScript code in %SCRIPT_PATH. 384 * JavaScript code in %SCRIPT_PATH.
383 * 385 *
384 * Copyright (C) 2012-2013 Sebastian Rose 386 * Copyright (C) 2012-2013 Free Software Foundation, Inc.
385 * 387 *
386 * 388 *
387 * The JavaScript code in this tag is free software: you can 389 * The JavaScript code in this tag is free software: you can
diff --git a/lisp/org/ox-icalendar.el b/lisp/org/ox-icalendar.el
index 8dfe836c9f5..7c4b4bfbce4 100644
--- a/lisp/org/ox-icalendar.el
+++ b/lisp/org/ox-icalendar.el
@@ -1,12 +1,14 @@
1;;; ox-icalendar.el --- iCalendar Back-End for Org Export Engine 1;;; ox-icalendar.el --- iCalendar Back-End for Org Export Engine
2 2
3;; Copyright (C) 2004-2012 Free Software Foundation, Inc. 3;; Copyright (C) 2004-2013 Free Software Foundation, Inc.
4 4
5;; Author: Carsten Dominik <carsten at orgmode dot org> 5;; Author: Carsten Dominik <carsten at orgmode dot org>
6;; Nicolas Goaziou <n dot goaziou at gmail dot com> 6;; Nicolas Goaziou <n dot goaziou at gmail dot com>
7;; Keywords: outlines, hypermedia, calendar, wp 7;; Keywords: outlines, hypermedia, calendar, wp
8;; Homepage: http://orgmode.org 8;; Homepage: http://orgmode.org
9 9
10;; This file is part of GNU Emacs.
11
10;; GNU Emacs is free software: you can redistribute it and/or modify 12;; GNU Emacs is free software: you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by 13;; it under the terms of the GNU General Public License as published by
12;; the Free Software Foundation, either version 3 of the License, or 14;; the Free Software Foundation, either version 3 of the License, or
diff --git a/lisp/org/ox-latex.el b/lisp/org/ox-latex.el
index 1da7f9bbc6d..4dc0fd07376 100644
--- a/lisp/org/ox-latex.el
+++ b/lisp/org/ox-latex.el
@@ -5,6 +5,8 @@
5;; Author: Nicolas Goaziou <n.goaziou at gmail dot com> 5;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7 7
8;; This file is part of GNU Emacs.
9
8;; GNU Emacs is free software: you can redistribute it and/or modify 10;; GNU Emacs is free software: you can redistribute it and/or modify
9;; it under the terms of the GNU General Public License as published by 11;; it under the terms of the GNU General Public License as published by
10;; the Free Software Foundation, either version 3 of the License, or 12;; the Free Software Foundation, either version 3 of the License, or
diff --git a/lisp/org/ox-md.el b/lisp/org/ox-md.el
index 7d540787d98..811c4e5805e 100644
--- a/lisp/org/ox-md.el
+++ b/lisp/org/ox-md.el
@@ -1,10 +1,12 @@
1;;; ox-md.el --- Markdown Back-End for Org Export Engine 1;;; ox-md.el --- Markdown Back-End for Org Export Engine
2 2
3;; Copyright (C) 2012, 2013 Free Software Foundation, Inc. 3;; Copyright (C) 2012-2013 Free Software Foundation, Inc.
4 4
5;; Author: Nicolas Goaziou <n.goaziou@gmail.com> 5;; Author: Nicolas Goaziou <n.goaziou@gmail.com>
6;; Keywords: org, wp, markdown 6;; Keywords: org, wp, markdown
7 7
8;; This file is part of GNU Emacs.
9
8;; GNU Emacs is free software: you can redistribute it and/or modify 10;; GNU Emacs is free software: you can redistribute it and/or modify
9;; it under the terms of the GNU General Public License as published by 11;; it under the terms of the GNU General Public License as published by
10;; the Free Software Foundation, either version 3 of the License, or 12;; the Free Software Foundation, either version 3 of the License, or
diff --git a/lisp/org/ox-org.el b/lisp/org/ox-org.el
index 41798b3e123..cecad56326e 100644
--- a/lisp/org/ox-org.el
+++ b/lisp/org/ox-org.el
@@ -1,10 +1,12 @@
1;;; ox-org.el --- Org Back-End for Org Export Engine 1;;; ox-org.el --- Org Back-End for Org Export Engine
2 2
3;; Copyright (C) 2013 Free Software Foundation, Inc. 3;; Copyright (C) 2013 Free Software Foundation, Inc.
4 4
5;; Author: Nicolas Goaziou <n.goaziou@gmail.com> 5;; Author: Nicolas Goaziou <n.goaziou@gmail.com>
6;; Keywords: org, wp 6;; Keywords: org, wp
7 7
8;; This file is part of GNU Emacs.
9
8;; GNU Emacs is free software: you can redistribute it and/or modify 10;; GNU Emacs is free software: you can redistribute it and/or modify
9;; it under the terms of the GNU General Public License as published by 11;; it under the terms of the GNU General Public License as published by
10;; the Free Software Foundation, either version 3 of the License, or 12;; the Free Software Foundation, either version 3 of the License, or
diff --git a/lisp/org/ox-texinfo.el b/lisp/org/ox-texinfo.el
index 5967978456b..dcc9b790763 100644
--- a/lisp/org/ox-texinfo.el
+++ b/lisp/org/ox-texinfo.el
@@ -1,6 +1,6 @@
1;;; ox-texinfo.el --- Texinfo Back-End for Org Export Engine 1;;; ox-texinfo.el --- Texinfo Back-End for Org Export Engine
2 2
3;; Copyright (C) 2012, 2013 Jonathan Leech-Pepin 3;; Copyright (C) 2012-2013 Free Software Foundation, Inc.
4;; Author: Jonathan Leech-Pepin <jonathan.leechpepin at gmail dot com> 4;; Author: Jonathan Leech-Pepin <jonathan.leechpepin at gmail dot com>
5;; Keywords: outlines, hypermedia, calendar, wp 5;; Keywords: outlines, hypermedia, calendar, wp
6 6
diff --git a/lisp/org/ox.el b/lisp/org/ox.el
index f7566945a81..69dca685464 100644
--- a/lisp/org/ox.el
+++ b/lisp/org/ox.el
@@ -1,10 +1,12 @@
1;;; ox.el --- Generic Export Engine for Org Mode 1;;; ox.el --- Generic Export Engine for Org Mode
2 2
3;; Copyright (C) 2012, 2013 Free Software Foundation, Inc. 3;; Copyright (C) 2012-2013 Free Software Foundation, Inc.
4 4
5;; Author: Nicolas Goaziou <n.goaziou at gmail dot com> 5;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7 7
8;; This file is part of GNU Emacs.
9
8;; GNU Emacs is free software: you can redistribute it and/or modify 10;; GNU Emacs is free software: you can redistribute it and/or modify
9;; it under the terms of the GNU General Public License as published by 11;; it under the terms of the GNU General Public License as published by
10;; the Free Software Foundation, either version 3 of the License, or 12;; the Free Software Foundation, either version 3 of the License, or