aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-01-05 00:00:08 -0800
committerGlenn Morris2012-01-05 00:00:08 -0800
commitc7e9ed79544f1715b288eb5795963d4b5d8f1ff0 (patch)
tree75d6a3671adb24f45b296bae4cf58a696f050129
parentb12d695a8d60a5b4198b43eb245d61640b6c1e2e (diff)
downloademacs-c7e9ed79544f1715b288eb5795963d4b5d8f1ff0.tar.gz
emacs-c7e9ed79544f1715b288eb5795963d4b5d8f1ff0.zip
Copyright, license, and header fixes for Org.
-rw-r--r--lisp/org/ob-calc.el2
-rw-r--r--lisp/org/ob-emacs-lisp.el2
-rw-r--r--lisp/org/ob-fortran.el24
-rw-r--r--lisp/org/ob-js.el2
-rw-r--r--lisp/org/ob-perl.el2
-rw-r--r--lisp/org/ob-picolisp.el3
-rw-r--r--lisp/org/ob-python.el2
-rw-r--r--lisp/org/ob-ruby.el2
-rw-r--r--lisp/org/ob-scheme.el2
-rw-r--r--lisp/org/ob-screen.el2
-rw-r--r--lisp/org/ob-shen.el2
-rw-r--r--lisp/org/ob-sqlite.el2
-rw-r--r--lisp/org/org-eshell.el22
-rw-r--r--lisp/org/org-lparse.el11
-rw-r--r--lisp/org/org-mouse.el10
-rw-r--r--lisp/org/org-odt.el8
16 files changed, 47 insertions, 51 deletions
diff --git a/lisp/org/ob-calc.el b/lisp/org/ob-calc.el
index 6686c2754bf..f8ad7e3374e 100644
--- a/lisp/org/ob-calc.el
+++ b/lisp/org/ob-calc.el
@@ -1,6 +1,6 @@
1;;; ob-calc.el --- org-babel functions for calc code evaluation 1;;; ob-calc.el --- org-babel functions for calc code evaluation
2 2
3;; Copyright (C) 2010-2012 Free Software Foundation, Inc 3;; Copyright (C) 2010-2012 Free Software Foundation, Inc.
4 4
5;; Author: Eric Schulte 5;; Author: Eric Schulte
6;; Keywords: literate programming, reproducible research 6;; Keywords: literate programming, reproducible research
diff --git a/lisp/org/ob-emacs-lisp.el b/lisp/org/ob-emacs-lisp.el
index 99149789003..afbc20d5fc5 100644
--- a/lisp/org/ob-emacs-lisp.el
+++ b/lisp/org/ob-emacs-lisp.el
@@ -1,6 +1,6 @@
1;;; ob-emacs-lisp.el --- org-babel functions for emacs-lisp code evaluation 1;;; ob-emacs-lisp.el --- org-babel functions for emacs-lisp code evaluation
2 2
3;; Copyright (C) 2009-2012 Free Software Foundation, Inc 3;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
4 4
5;; Author: Eric Schulte 5;; Author: Eric Schulte
6;; Keywords: literate programming, reproducible research 6;; Keywords: literate programming, reproducible research
diff --git a/lisp/org/ob-fortran.el b/lisp/org/ob-fortran.el
index 753f628d0ca..b6305c42769 100644
--- a/lisp/org/ob-fortran.el
+++ b/lisp/org/ob-fortran.el
@@ -1,30 +1,32 @@
1;;; ob-fortran.el --- org-babel functions for fortran 1;;; ob-fortran.el --- org-babel functions for fortran
2 2
3;; Copyright (C) 2011-2012 Sergey Litvinov, Eric Schulte 3;; Copyright (C) 2011-2012 Free Software Foundation, Inc.
4 4
5;; Authors: Sergey Litvinov (based on ob-C.el by Eric Schulte), Eric Schulte 5;; Authors: Sergey Litvinov
6;; Eric Schulte
6;; Keywords: literate programming, reproducible research, fortran 7;; Keywords: literate programming, reproducible research, fortran
7;; Homepage: http://orgmode.org 8;; Homepage: http://orgmode.org
8;; Version: 7.8.02 9;; Version: 7.8.02
9 10
10;; This program is free software; you can redistribute it and/or modify 11;; This file is part of GNU Emacs.
12
13;; 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 14;; it under the terms of the GNU General Public License as published by
12;; the Free Software Foundation; either version 3, or (at your option) 15;; the Free Software Foundation, either version 3 of the License, or
13;; any later version. 16;; (at your option) any later version.
14;; 17
15;; This program is distributed in the hope that it will be useful, 18;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of 19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details. 21;; GNU General Public License for more details.
19;; 22
20;; You should have received a copy of the GNU General Public License 23;; You should have received a copy of the GNU General Public License
21;; along with GNU Emacs; see the file COPYING. If not, write to the 24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
22;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23;; Boston, MA 02110-1301, USA.
24 25
25;;; Commentary: 26;;; Commentary:
26 27
27;; Org-Babel support for evaluating fortran code. 28;; Org-Babel support for evaluating fortran code.
29;; Based on ob-C.el by Eric Schulte.
28 30
29;;; Code: 31;;; Code:
30(require 'ob) 32(require 'ob)
diff --git a/lisp/org/ob-js.el b/lisp/org/ob-js.el
index d71c0aba8d6..bbb7aa0855e 100644
--- a/lisp/org/ob-js.el
+++ b/lisp/org/ob-js.el
@@ -1,6 +1,6 @@
1;;; ob-js.el --- org-babel functions for Javascript 1;;; ob-js.el --- org-babel functions for Javascript
2 2
3;; Copyright (C) 2010-2012 Free Software Foundation 3;; Copyright (C) 2010-2012 Free Software Foundation, Inc.
4 4
5;; Author: Eric Schulte 5;; Author: Eric Schulte
6;; Keywords: literate programming, reproducible research, js 6;; Keywords: literate programming, reproducible research, js
diff --git a/lisp/org/ob-perl.el b/lisp/org/ob-perl.el
index dbd40dfc7fe..916eb029dbe 100644
--- a/lisp/org/ob-perl.el
+++ b/lisp/org/ob-perl.el
@@ -1,6 +1,6 @@
1;;; ob-perl.el --- org-babel functions for perl evaluation 1;;; ob-perl.el --- org-babel functions for perl evaluation
2 2
3;; Copyright (C) 2009-2012 Free Software Foundation 3;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
4 4
5;; Author: Dan Davison 5;; Author: Dan Davison
6;; Eric Schulte 6;; Eric Schulte
diff --git a/lisp/org/ob-picolisp.el b/lisp/org/ob-picolisp.el
index 20789340201..572b6590e8d 100644
--- a/lisp/org/ob-picolisp.el
+++ b/lisp/org/ob-picolisp.el
@@ -2,7 +2,8 @@
2 2
3;; Copyright (C) 2010-2012 Free Software Foundation, Inc. 3;; Copyright (C) 2010-2012 Free Software Foundation, Inc.
4 4
5;; Authors: Thorsten Jolitz and Eric Schulte 5;; Authors: Thorsten Jolitz
6;; Eric Schulte
6;; Keywords: literate programming, reproducible research 7;; Keywords: literate programming, reproducible research
7;; Homepage: http://orgmode.org 8;; Homepage: http://orgmode.org
8 9
diff --git a/lisp/org/ob-python.el b/lisp/org/ob-python.el
index dee6b07dccd..5e7a2f0e6b5 100644
--- a/lisp/org/ob-python.el
+++ b/lisp/org/ob-python.el
@@ -1,6 +1,6 @@
1;;; ob-python.el --- org-babel functions for python evaluation 1;;; ob-python.el --- org-babel functions for python evaluation
2 2
3;; Copyright (C) 2009-2012 Free Software Foundation 3;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
4 4
5;; Author: Eric Schulte 5;; Author: Eric Schulte
6;; Dan Davison 6;; Dan Davison
diff --git a/lisp/org/ob-ruby.el b/lisp/org/ob-ruby.el
index df8ae2cc4f1..19cce58d820 100644
--- a/lisp/org/ob-ruby.el
+++ b/lisp/org/ob-ruby.el
@@ -1,6 +1,6 @@
1;;; ob-ruby.el --- org-babel functions for ruby evaluation 1;;; ob-ruby.el --- org-babel functions for ruby evaluation
2 2
3;; Copyright (C) 2009-2012 Free Software Foundation 3;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
4 4
5;; Author: Eric Schulte 5;; Author: Eric Schulte
6;; Keywords: literate programming, reproducible research 6;; Keywords: literate programming, reproducible research
diff --git a/lisp/org/ob-scheme.el b/lisp/org/ob-scheme.el
index d0d03dd74ee..4bcde94235f 100644
--- a/lisp/org/ob-scheme.el
+++ b/lisp/org/ob-scheme.el
@@ -1,6 +1,6 @@
1;;; ob-scheme.el --- org-babel functions for Scheme 1;;; ob-scheme.el --- org-babel functions for Scheme
2 2
3;; Copyright (C) 2010-2012 Free Software Foundation 3;; Copyright (C) 2010-2012 Free Software Foundation, Inc.
4 4
5;; Author: Eric Schulte 5;; Author: Eric Schulte
6;; Keywords: literate programming, reproducible research, scheme 6;; Keywords: literate programming, reproducible research, scheme
diff --git a/lisp/org/ob-screen.el b/lisp/org/ob-screen.el
index 5f11b14339f..37cdb28690a 100644
--- a/lisp/org/ob-screen.el
+++ b/lisp/org/ob-screen.el
@@ -1,6 +1,6 @@
1;;; ob-screen.el --- org-babel support for interactive terminal 1;;; ob-screen.el --- org-babel support for interactive terminal
2 2
3;; Copyright (C) 2009-2012 Free Software Foundation 3;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
4 4
5;; Author: Benjamin Andresen 5;; Author: Benjamin Andresen
6;; Keywords: literate programming, interactive shell 6;; Keywords: literate programming, interactive shell
diff --git a/lisp/org/ob-shen.el b/lisp/org/ob-shen.el
index 7207cd9351b..8f4b13217c6 100644
--- a/lisp/org/ob-shen.el
+++ b/lisp/org/ob-shen.el
@@ -1,6 +1,6 @@
1;;; ob-shen.el --- org-babel functions for Shen 1;;; ob-shen.el --- org-babel functions for Shen
2 2
3;; Copyright (C) 2010-2012 Free Software Foundation 3;; Copyright (C) 2010-2012 Free Software Foundation, Inc.
4 4
5;; Author: Eric Schulte 5;; Author: Eric Schulte
6;; Keywords: literate programming, reproducible research, shen 6;; Keywords: literate programming, reproducible research, shen
diff --git a/lisp/org/ob-sqlite.el b/lisp/org/ob-sqlite.el
index d3a336a8af0..599113ca830 100644
--- a/lisp/org/ob-sqlite.el
+++ b/lisp/org/ob-sqlite.el
@@ -1,6 +1,6 @@
1;;; ob-sqlite.el --- org-babel functions for sqlite database interaction 1;;; ob-sqlite.el --- org-babel functions for sqlite database interaction
2 2
3;; Copyright (C) 2010-2012 Free Software Foundation 3;; Copyright (C) 2010-2012 Free Software Foundation, Inc.
4 4
5;; Author: Eric Schulte 5;; Author: Eric Schulte
6;; Keywords: literate programming, reproducible research 6;; Keywords: literate programming, reproducible research
diff --git a/lisp/org/org-eshell.el b/lisp/org/org-eshell.el
index 8c229bc1431..c386af86b8f 100644
--- a/lisp/org/org-eshell.el
+++ b/lisp/org/org-eshell.el
@@ -1,15 +1,16 @@
1;;; org-eshell.el - Support for links to working directories in eshell 1;;; org-eshell.el - Support for links to working directories in eshell
2
2;; Copyright (C) 2011-2012 Free Software Foundation, Inc. 3;; Copyright (C) 2011-2012 Free Software Foundation, Inc.
3;; 4
4;; Author: Konrad Hinsen <konrad.hinsen AT fastmail.net> 5;; Author: Konrad Hinsen <konrad.hinsen AT fastmail.net>
5;; Version: 0.1 6;; Version: 0.1
6;; 7
7;; This file is part of GNU Emacs. 8;; This file is part of GNU Emacs.
8;; 9
9;; Emacs is free software; you can redistribute it and/or modify 10;; 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;; it under the terms of the GNU General Public License as published by
11;; the Free Software Foundation; either version 3, or (at your option) 12;; the Free Software Foundation, either version 3 of the License, or
12;; any later version. 13;; (at your option) any later version.
13 14
14;; GNU Emacs is distributed in the hope that it will be useful, 15;; GNU Emacs is distributed in the hope that it will be useful,
15;; but WITHOUT ANY WARRANTY; without even the implied warranty of 16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -17,10 +18,11 @@
17;; GNU General Public License for more details. 18;; GNU General Public License for more details.
18 19
19;; You should have received a copy of the GNU General Public License 20;; You should have received a copy of the GNU General Public License
20;; along with GNU Emacs; see the file COPYING. If not, write to the 21;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
21;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 22
22;; Boston, MA 02110-1301, USA. 23;;; Commentary:
23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 24
25;;; Code:
24 26
25(require 'org) 27(require 'org)
26(require 'eshell) 28(require 'eshell)
diff --git a/lisp/org/org-lparse.el b/lisp/org/org-lparse.el
index 682a6611d73..b13dc86e5a6 100644
--- a/lisp/org/org-lparse.el
+++ b/lisp/org/org-lparse.el
@@ -5,9 +5,8 @@
5;; Author: Jambunathan K <kjambunathan at gmail dot com> 5;; Author: Jambunathan K <kjambunathan at gmail dot com>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; 8
9;; This file is not (yet) part of GNU Emacs. 9;; This file is part of GNU Emacs.
10;; However, it is distributed under the same license.
11 10
12;; 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
13;; 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
@@ -21,8 +20,7 @@
21 20
22;; You should have received a copy of the GNU General Public License 21;; You should have received a copy of the GNU General Public License
23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 23
25;;
26;;; Commentary: 24;;; Commentary:
27 25
28;; `org-lparse' is the entry point for the generic line-oriented 26;; `org-lparse' is the entry point for the generic line-oriented
@@ -45,9 +43,6 @@
45;; convert documents between various formats. Use this to command, 43;; convert documents between various formats. Use this to command,
46;; for example, to convert odt file to doc or pdf format. 44;; for example, to convert odt file to doc or pdf format.
47 45
48;; See README.org file that comes with this library for answers to
49;; FAQs and more information on using this library.
50
51;;; Code: 46;;; Code:
52(eval-when-compile 47(eval-when-compile
53 (require 'cl)) 48 (require 'cl))
diff --git a/lisp/org/org-mouse.el b/lisp/org/org-mouse.el
index 65a21a92260..b1d9f22a4e0 100644
--- a/lisp/org/org-mouse.el
+++ b/lisp/org/org-mouse.el
@@ -1,13 +1,12 @@
1;;; org-mouse.el --- Better mouse support for org-mode 1;;; org-mouse.el --- Better mouse support for org-mode
2 2
3;; Copyright (C) 2006-2012 Free Software Foundation 3;; Copyright (C) 2006-2012 Free Software Foundation, Inc.
4;; 4
5;; Author: Piotr Zielinski <piotr dot zielinski at gmail dot com> 5;; Author: Piotr Zielinski <piotr dot zielinski at gmail dot com>
6;; Maintainer: Carsten Dominik <carsten at orgmode dot org> 6;; Maintainer: Carsten Dominik <carsten at orgmode dot org>
7 7
8;;
9;; This file is part of GNU Emacs. 8;; This file is part of GNU Emacs.
10;; 9
11;; 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
12;; 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
13;; the Free Software Foundation, either version 3 of the License, or 12;; the Free Software Foundation, either version 3 of the License, or
@@ -20,8 +19,7 @@
20 19
21;; You should have received a copy of the GNU General Public License 20;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. 21;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 22
24;;
25;;; Commentary: 23;;; Commentary:
26;; 24;;
27;; Org-mouse provides mouse support for org-mode. 25;; Org-mouse provides mouse support for org-mode.
diff --git a/lisp/org/org-odt.el b/lisp/org/org-odt.el
index e53f396a310..886efa014f3 100644
--- a/lisp/org/org-odt.el
+++ b/lisp/org/org-odt.el
@@ -5,9 +5,8 @@
5;; Author: Jambunathan K <kjambunathan at gmail dot com> 5;; Author: Jambunathan K <kjambunathan at gmail dot com>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; 8
9;; This file is not (yet) part of GNU Emacs. 9;; This file is part of GNU Emacs.
10;; However, it is distributed under the same license.
11 10
12;; 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
13;; 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
@@ -21,8 +20,7 @@
21 20
22;; You should have received a copy of the GNU General Public License 21;; You should have received a copy of the GNU General Public License
23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 23
25;;
26;;; Commentary: 24;;; Commentary:
27 25
28;;; Code: 26;;; Code: