Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b73f1974
Commit
b73f1974
authored
Jan 04, 2012
by
Bastien Guerry
Browse files
Fix copyright year for Org files.
parent
7e67562f
Changes
96
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
35 additions
and
23 deletions
+35
-23
etc/org/README
etc/org/README
+1
-1
lisp/org/ob-R.el
lisp/org/ob-R.el
+1
-1
lisp/org/ob-asymptote.el
lisp/org/ob-asymptote.el
+1
-1
lisp/org/ob-awk.el
lisp/org/ob-awk.el
+1
-1
lisp/org/ob-clojure.el
lisp/org/ob-clojure.el
+1
-1
lisp/org/ob-comint.el
lisp/org/ob-comint.el
+1
-1
lisp/org/ob-css.el
lisp/org/ob-css.el
+1
-1
lisp/org/ob-ditaa.el
lisp/org/ob-ditaa.el
+16
-4
lisp/org/ob-dot.el
lisp/org/ob-dot.el
+1
-1
lisp/org/ob-emacs-lisp.el
lisp/org/ob-emacs-lisp.el
+1
-1
lisp/org/ob-eval.el
lisp/org/ob-eval.el
+1
-1
lisp/org/ob-exp.el
lisp/org/ob-exp.el
+1
-1
lisp/org/ob-fortran.el
lisp/org/ob-fortran.el
+1
-1
lisp/org/ob-gnuplot.el
lisp/org/ob-gnuplot.el
+1
-1
lisp/org/ob-haskell.el
lisp/org/ob-haskell.el
+1
-1
lisp/org/ob-java.el
lisp/org/ob-java.el
+1
-1
lisp/org/ob-js.el
lisp/org/ob-js.el
+1
-1
lisp/org/ob-keys.el
lisp/org/ob-keys.el
+1
-1
lisp/org/ob-latex.el
lisp/org/ob-latex.el
+1
-1
lisp/org/ob-lisp.el
lisp/org/ob-lisp.el
+1
-1
No files found.
etc/org/README
View file @
b73f1974
The files OrgOdtContentTemplate.xml and OrgOdtStyles.xml have the
following copyright information:
Copyright (C) 2010-201
1
Free Software Foundation, Inc.
Copyright (C) 2010-201
2
Free Software Foundation, Inc.
These file are part of GNU Emacs.
...
...
lisp/org/ob-R.el
View file @
b73f1974
;;; ob-R.el --- org-babel functions for R code evaluation
;; Copyright (C) 2009-201
1
Free Software Foundation, Inc.
;; Copyright (C) 2009-201
2
Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Dan Davison
...
...
lisp/org/ob-asymptote.el
View file @
b73f1974
;;; ob-asymptote.el --- org-babel functions for asymptote evaluation
;; Copyright (C) 2009-201
1
Free Software Foundation, Inc.
;; Copyright (C) 2009-201
2
Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research
...
...
lisp/org/ob-awk.el
View file @
b73f1974
;;; ob-awk.el --- org-babel functions for awk evaluation
;; Copyright (C) 201
1
Free Software Foundation, Inc.
;; Copyright (C) 201
2
Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research
...
...
lisp/org/ob-clojure.el
View file @
b73f1974
;;; ob-clojure.el --- org-babel functions for clojure evaluation
;; Copyright (C) 2009-201
1
Free Software Foundation, Inc.
;; Copyright (C) 2009-201
2
Free Software Foundation, Inc.
;; Author: Joel Boehland
;; Eric Schulte
...
...
lisp/org/ob-comint.el
View file @
b73f1974
;;; ob-comint.el --- org-babel functions for interaction with comint buffers
;; Copyright (C) 2009-201
1
Free Software Foundation, Inc.
;; Copyright (C) 2009-201
2
Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research, comint
...
...
lisp/org/ob-css.el
View file @
b73f1974
;;; ob-css.el --- org-babel functions for css evaluation
;; Copyright (C) 2009-201
1
Free Software Foundation, Inc.
;; Copyright (C) 2009-201
2
Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research
...
...
lisp/org/ob-ditaa.el
View file @
b73f1974
;;; ob-ditaa.el --- org-babel functions for ditaa evaluation
;; Copyright (C) 2009-201
1
Free Software Foundation, Inc.
;; Copyright (C) 2009-201
2
Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research
...
...
@@ -39,10 +39,22 @@
(
require
'ob
)
(
defvar
org-babel-default-header-args:ditaa
'
((
:results
.
"file"
)
(
:exports
.
"results"
)
(
:java
.
"-Dfile.encoding=UTF-8"
))
'
((
:results
.
"file"
)
(
:exports
.
"results"
)
(
:java
.
"-Dfile.encoding=UTF-8"
))
"Default arguments for evaluating a ditaa source block."
)
(
defvar
org-ditaa-jar-path
)
(
defcustom
org-ditaa-jar-path
nil
"Path for the ditaa jar file."
:group
'org-babel
:type
'string
)
(
defcustom
org-ditaa-jar-option
"-jar"
"Option for the ditaa jar file.
Do not leave leading or trailing spaces in this string."
:group
'org-babel
:type
'string
)
(
defun
org-babel-execute:ditaa
(
body
params
)
"Execute a block of Ditaa code with org-babel.
This function is called by `org-babel-execute-src-block'."
...
...
@@ -55,7 +67,7 @@ This function is called by `org-babel-execute-src-block'."
(
cmdline
(
cdr
(
assoc
:cmdline
params
)))
(
java
(
cdr
(
assoc
:java
params
)))
(
in-file
(
org-babel-temp-file
"ditaa-"
))
(
cmd
(
concat
"java "
java
"
-jar
"
(
cmd
(
concat
"java "
java
"
"
org-ditaa-jar-option
"
"
(
shell-quote-argument
(
expand-file-name
org-ditaa-jar-path
))
" "
cmdline
...
...
lisp/org/ob-dot.el
View file @
b73f1974
;;; ob-dot.el --- org-babel functions for dot evaluation
;; Copyright (C) 2009-201
1
Free Software Foundation, Inc.
;; Copyright (C) 2009-201
2
Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research
...
...
lisp/org/ob-emacs-lisp.el
View file @
b73f1974
;;; ob-emacs-lisp.el --- org-babel functions for emacs-lisp code evaluation
;; Copyright (C) 2009-201
1
Free Software Foundation, Inc
;; Copyright (C) 2009-201
2
Free Software Foundation, Inc
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research
...
...
lisp/org/ob-eval.el
View file @
b73f1974
;;; ob-eval.el --- org-babel functions for external code evaluation
;; Copyright (C) 2009-201
1
Free Software Foundation, Inc.
;; Copyright (C) 2009-201
2
Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research, comint
...
...
lisp/org/ob-exp.el
View file @
b73f1974
;;; ob-exp.el --- Exportation of org-babel source blocks
;; Copyright (C) 2009-201
1
Free Software Foundation, Inc.
;; Copyright (C) 2009-201
2
Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Dan Davison
...
...
lisp/org/ob-fortran.el
View file @
b73f1974
;;; ob-fortran.el --- org-babel functions for fortran
;; Copyright (C) 201
1
Sergey Litvinov, Eric Schulte
;; Copyright (C) 201
2
Sergey Litvinov, Eric Schulte
;; Authors: Sergey Litvinov (based on ob-C.el by Eric Schulte), Eric Schulte
;; Keywords: literate programming, reproducible research, fortran
...
...
lisp/org/ob-gnuplot.el
View file @
b73f1974
;;; ob-gnuplot.el --- org-babel functions for gnuplot evaluation
;; Copyright (C) 2009-201
1
Free Software Foundation, Inc.
;; Copyright (C) 2009-201
2
Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research
...
...
lisp/org/ob-haskell.el
View file @
b73f1974
;;; ob-haskell.el --- org-babel functions for haskell evaluation
;; Copyright (C) 2009-201
1
Free Software Foundation, Inc.
;; Copyright (C) 2009-201
2
Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research
...
...
lisp/org/ob-java.el
View file @
b73f1974
;;; ob-java.el --- org-babel functions for java evaluation
;; Copyright (C) 201
1
Free Software Foundation, Inc.
;; Copyright (C) 201
2
Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research
...
...
lisp/org/ob-js.el
View file @
b73f1974
;;; ob-js.el --- org-babel functions for Javascript
;; Copyright (C) 2010-201
1
Free Software Foundation
;; Copyright (C) 2010-201
2
Free Software Foundation
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research, js
...
...
lisp/org/ob-keys.el
View file @
b73f1974
;;; ob-keys.el --- key bindings for org-babel
;; Copyright (C) 2009-201
1
Free Software Foundation, Inc.
;; Copyright (C) 2009-201
2
Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research
...
...
lisp/org/ob-latex.el
View file @
b73f1974
;;; ob-latex.el --- org-babel functions for latex "evaluation"
;; Copyright (C) 2009-201
1
Free Software Foundation, Inc.
;; Copyright (C) 2009-201
2
Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research
...
...
lisp/org/ob-lisp.el
View file @
b73f1974
;;; ob-lisp.el --- org-babel functions for common lisp evaluation
;; Copyright (C) 2009-201
1
Free Software Foundation, Inc.
;; Copyright (C) 2009-201
2
Free Software Foundation, Inc.
;; Author: Joel Boehland
;; Eric Schulte
...
...
Prev
1
2
3
4
5
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment