Fix more copyright years.
This commit is contained in:
parent
38c5045725
commit
fdc20f7792
|
@ -1,11 +1,10 @@
|
|||
;;; ob-fomus.el --- org-babel functions for fomus evaluation
|
||||
|
||||
;; Copyright (C) 2011 Torsten Anders
|
||||
;; Copyright (C) 2011, 2012 Torsten Anders
|
||||
|
||||
;; Author: Torsten Anders
|
||||
;; Keywords: literate programming, reproducible research
|
||||
;; Homepage: http://orgmode.org
|
||||
;; Version:
|
||||
|
||||
;;; License:
|
||||
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
;;; ob-oz.el --- org-babel functions for Oz evaluation
|
||||
|
||||
;; Copyright (C) 2009 Torsten Anders and Eric Schulte
|
||||
;; Copyright (C) 2009, 2012 Torsten Anders and Eric Schulte
|
||||
|
||||
;; Author: Torsten Anders and Eric Schulte
|
||||
;; Author: Torsten Anders and Eric Schulte
|
||||
;; Keywords: literate programming, reproducible research
|
||||
;; Homepage: http://orgmode.org
|
||||
;; Version: 0.02
|
||||
|
||||
;;; License:
|
||||
|
||||
|
@ -26,7 +25,7 @@
|
|||
|
||||
;;; Commentary:
|
||||
|
||||
;; Org-Babel support for evaluating Oz source code.
|
||||
;; Org-Babel support for evaluating Oz source code.
|
||||
;;
|
||||
;; Oz code is always send to the Oz Programming Environment (OPI), the
|
||||
;; Emacs mode and compiler interface for Oz programs. Therefore, only
|
||||
|
@ -71,7 +70,7 @@
|
|||
;; arrive then in any order) I could use IDs
|
||||
;; (e.g. integers). However, how do I do concurrency in Emacs Lisp,
|
||||
;; and how can I define org-babel-execute:oz concurrently.
|
||||
;;
|
||||
;;
|
||||
;; - Expressions are rarely used in Oz at the top-level, and using
|
||||
;; them in documentation and Literate Programs will cause
|
||||
;; confusion. Idea: hide expression from reader and instead show
|
||||
|
@ -94,10 +93,10 @@
|
|||
|
||||
;;
|
||||
;; Interface to communicate with Oz.
|
||||
;; (1) For statements without any results: oz-send-string
|
||||
;; (1) For statements without any results: oz-send-string
|
||||
;; (2) For expressions with a single result: oz-send-string-expression
|
||||
;; (defined in org-babel-oz-ResultsValue.el)
|
||||
;;
|
||||
;;
|
||||
|
||||
;; oz-send-string-expression implements an additional very direct
|
||||
;; communication between Org-babel and the Oz compiler. Communication
|
||||
|
@ -128,7 +127,7 @@
|
|||
"Path to the contrib/scripts directory in which
|
||||
StartOzServer.oz is located.")
|
||||
|
||||
(defvar org-babel-oz-port 6001
|
||||
(defvar org-babel-oz-port 6001
|
||||
"Port for communicating with Oz compiler.")
|
||||
(defvar org-babel-oz-OPI-socket nil
|
||||
"Socket for communicating with OPI.")
|
||||
|
@ -144,18 +143,18 @@ StartOzServer.oz is located.")
|
|||
|
||||
(defun org-babel-oz-create-socket ()
|
||||
(message "Create OPI socket for evaluating expressions")
|
||||
;; Start Oz directly
|
||||
;; Start Oz directly
|
||||
(run-oz)
|
||||
;; Create socket on Oz side (after Oz was started).
|
||||
(oz-send-string (concat "\\insert '" org-babel-oz-server-dir "StartOzServer.oz'"))
|
||||
;; Wait until socket is created before connecting to it.
|
||||
;; Quick hack: wait 3 sec
|
||||
;;
|
||||
;;
|
||||
;; extending time to 30 secs does not help when starting Emacs for
|
||||
;; the first time (and computer does nothing else)
|
||||
(sit-for 3)
|
||||
;; connect to OPI socket
|
||||
(setq org-babel-oz-OPI-socket
|
||||
(setq org-babel-oz-OPI-socket
|
||||
;; Creates a socket. I/O interface of Emacs sockets as for processes.
|
||||
(open-network-stream "*Org-babel-OPI-socket*" nil "localhost" org-babel-oz-port))
|
||||
;; install filter
|
||||
|
@ -166,7 +165,7 @@ StartOzServer.oz is located.")
|
|||
;; oz-send-string-expression turns is into synchronous...
|
||||
(defun oz-send-string-expression (string &optional wait-time)
|
||||
"Similar to oz-send-string, oz-send-string-expression sends a string to the OPI compiler. However, string must be expression and this function returns the result of the expression (as string). oz-send-string-expression is synchronous, wait-time allows to specify a maximum wait time. After wait-time is over with no result, the function returns nil."
|
||||
(if (not org-babel-oz-OPI-socket)
|
||||
(if (not org-babel-oz-OPI-socket)
|
||||
(org-babel-oz-create-socket))
|
||||
(let ((polling-delay 0.1)
|
||||
result)
|
||||
|
@ -176,11 +175,11 @@ StartOzServer.oz is located.")
|
|||
(let ((waited 0))
|
||||
(unwind-protect
|
||||
(progn
|
||||
(while
|
||||
(while
|
||||
;; stop loop if org-babel-oz-collected-result \= nil or waiting time is over
|
||||
(not (or (not (equal org-babel-oz-collected-result nil))
|
||||
(> waited wait-time)))
|
||||
(progn
|
||||
(progn
|
||||
(sit-for polling-delay)
|
||||
;; (message "org-babel-oz: next polling iteration")
|
||||
(setq waited (+ waited polling-delay))))
|
||||
|
@ -253,7 +252,7 @@ called by `org-babel-execute-src-block' via multiple-value-bind."
|
|||
;; (when vars
|
||||
;; (with-temp-buffer
|
||||
;; (insert var-lines) (write-file vars-file)
|
||||
;; (oz-mode)
|
||||
;; (oz-mode)
|
||||
;; ;; (inferior-oz-load-file) ; ??
|
||||
;; ))
|
||||
;; (current-buffer))))
|
||||
|
@ -262,7 +261,7 @@ called by `org-babel-execute-src-block' via multiple-value-bind."
|
|||
|
||||
;; TODO: testing... (simplified version of def in org-babel-prep-session:ocaml)
|
||||
;;
|
||||
;; BUG: does not work yet. Error: ad-Orig-error: buffer none doesn't exist or has no process
|
||||
;; BUG: does not work yet. Error: ad-Orig-error: buffer none doesn't exist or has no process
|
||||
;; UNUSED DEF
|
||||
(defun org-babel-oz-initiate-session (&optional session params)
|
||||
"If there is not a current inferior-process-buffer in SESSION
|
||||
|
@ -278,12 +277,12 @@ then create. Return the initialized session."
|
|||
specifying a var of the same value."
|
||||
(if (listp var)
|
||||
;; (concat "[" (mapconcat #'org-babel-oz-var-to-oz var ", ") "]")
|
||||
(eval var)
|
||||
(format "%s" var) ; don't preserve string quotes.
|
||||
(eval var)
|
||||
(format "%s" var) ; don't preserve string quotes.
|
||||
;; (format "%s" var)
|
||||
))
|
||||
|
||||
;; TODO:
|
||||
;; TODO:
|
||||
(defun org-babel-oz-table-or-string (results)
|
||||
"If the results look like a table, then convert them into an
|
||||
Emacs-lisp table, otherwise return the results as a string."
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
% Reference Card for Org Mode
|
||||
\def\orgversionnumber{7.5}
|
||||
\def\versionyear{2011} % latest update
|
||||
\def\year{2011} % latest copyright year
|
||||
\def\versionyear{2012} % latest update
|
||||
\def\year{2012} % latest copyright year
|
||||
|
||||
%**start of header
|
||||
\newcount\columnsperpage
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; org-annotate-file.el --- Annotate a file with org syntax
|
||||
|
||||
;; Copyright (C) 2008-2011 Philip Jackson
|
||||
;; Copyright (C) 2008-2012 Philip Jackson
|
||||
|
||||
;; Author: Philip Jackson <phil@shellarchive.co.uk>
|
||||
;; Version: 0.2
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
;;; org-bookmark.el - Support for links to bookmark
|
||||
;; Copyright (C) 2008-2011 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2008-2012 Free Software Foundation, Inc.
|
||||
;;
|
||||
;; Author: Tokuya Kameshima <kames AT fa2.so-net.ne.jp>
|
||||
;; Version: 1.0
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; org-checklist.el --- org functions for checklist handling
|
||||
|
||||
;; Copyright (C) 2008-2011 James TD Smith
|
||||
;; Copyright (C) 2008-2012 James TD Smith
|
||||
|
||||
;; Author: James TD Smith (@ ahktenzero (. mohorovi cc))
|
||||
;; Version: 1.0
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
;;;_. Headers
|
||||
;;;_ , License
|
||||
;; Copyright (C) 2009-2011 Tom Breton (Tehom)
|
||||
;; Copyright (C) 2009-2012 Tom Breton (Tehom)
|
||||
|
||||
;; This file is not part of GNU Emacs.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; org-collector --- collect properties into tables
|
||||
|
||||
;; Copyright (C) 2008-2011 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2008-2012 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Eric Schulte <schulte dot eric at gmail dot com>
|
||||
;; Keywords: outlines, hypermedia, calendar, wp, experimentation,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
;;; org-contribdir.el --- Mark the location of the contrib directory
|
||||
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
|
||||
;;
|
||||
;; Author: Carsten Dominik <carsten at orgmode dot org>
|
||||
;; Keywords: outlines, hypermedia, calendar, wp
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
;;; org-depend.el --- TODO dependencies for Org-mode
|
||||
;; Copyright (C) 2008-2011 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2008-2012 Free Software Foundation, Inc.
|
||||
;;
|
||||
;; Author: Carsten Dominik <carsten at orgmode dot org>
|
||||
;; Keywords: outlines, hypermedia, calendar, wp
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; org-element.el --- Parser And Applications for Org syntax
|
||||
|
||||
;; Copyright (C) 2011 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2011, 2012 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
|
||||
;; Keywords: outlines, hypermedia, calendar, wp
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; org-eval-light.el --- Display result of evaluating code in various languages (light)
|
||||
|
||||
;; Copyright (C) 2008-2011 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2008-2012 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Carsten Dominik <carsten at orgmode dot org>,
|
||||
;; Eric Schulte <schulte dot eric at gmail dot com>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
;;; org-eval.el --- Display result of evaluating code in various languages
|
||||
;; Copyright (C) 2008-2011 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2008-2012 Free Software Foundation, Inc.
|
||||
;;
|
||||
;; Author: Carsten Dominik <carsten at orgmode dot org>
|
||||
;; Keywords: outlines, hypermedia, calendar, wp
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; org-exp-bibtex.el --- Export bibtex fragments
|
||||
|
||||
;; Copyright (C) 2009-2011 Taru Karttunen
|
||||
;; Copyright (C) 2009-2012 Taru Karttunen
|
||||
|
||||
;; Author: Taru Karttunen <taruti@taruti.net>
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;; org-export-generic.el --- Export frameworg with custom backends
|
||||
|
||||
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Wes Hardaker <hardaker at users dot sourceforge dot net>
|
||||
;; Keywords: outlines, hypermedia, calendar, wp, export
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; org-export.el --- Generic Export Engine For Org
|
||||
|
||||
;; Copyright (C) 2011 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2011, 2012 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
|
||||
;; Keywords: outlines, hypermedia, calendar, wp
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; org-git-link.el --- Provide org links to specific file version
|
||||
|
||||
;; Copyright (C) 2009-2011 Reimar Finken
|
||||
;; Copyright (C) 2009-2012 Reimar Finken
|
||||
|
||||
;; Author: Reimar Finken <reimar.finken@gmx.de>
|
||||
;; Keywords: files, calendar, hypermedia
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; org-invoice.el --- Help manage client invoices in OrgMode
|
||||
;;
|
||||
;; Copyright (C) 2008-2011 pmade inc. (Peter Jones pjones@pmade.com)
|
||||
;; Copyright (C) 2008-2012 pmade inc. (Peter Jones pjones@pmade.com)
|
||||
;;
|
||||
;; This file is not part of GNU Emacs.
|
||||
;;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; org-jira.el --- add a jira:ticket protocol to Org
|
||||
(defconst org-jira-version "0.1")
|
||||
;; Copyright (C) 2008-2011 Jonathan Arkell.
|
||||
;; Copyright (C) 2008-2012 Jonathan Arkell.
|
||||
;; Author: Jonathan Arkell <jonnay@jonnay.net>
|
||||
|
||||
;; This file is not part of GNU Emacs.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; org-learn.el --- Implements SuperMemo's incremental learning algorithm
|
||||
|
||||
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: John Wiegley <johnw at gnu dot org>
|
||||
;; Keywords: outlines, hypermedia, calendar, wp
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; org-mac-iCal.el --- Imports events from iCal.app to the Emacs diary
|
||||
|
||||
;; Copyright (C) 2009-2011 Christopher Suckling
|
||||
;; Copyright (C) 2009-2012 Christopher Suckling
|
||||
|
||||
;; Author: Christopher Suckling <suckling at gmail dot com>
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; org-mairix.el - Support for hooking mairix search into Org for different MUAs
|
||||
;;
|
||||
;; Copyright (C) 2007-2011 Georg C. F. Greve
|
||||
;; Copyright (C) 2007-2012 Georg C. F. Greve
|
||||
;; mutt support by Adam Spiers <orgmode at adamspiers dot org>
|
||||
;;
|
||||
;; Author: Georg C. F. Greve <greve at fsfeurope dot org>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
;;; org-mtags.el --- Muse-like tags in Org-mode
|
||||
;; Copyright (C) 2008-2011 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2008-2012 Free Software Foundation, Inc.
|
||||
;;
|
||||
;; Author: Carsten Dominik <carsten at orgmode dot org>
|
||||
;; Keywords: outlines, hypermedia, calendar, wp
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
;;; org-sudoku.el --- Greate and solve SUDOKU games in Org tables
|
||||
;; Copyright (C) 2011 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2011, 2012 Free Software Foundation, Inc.
|
||||
;;
|
||||
;; Author: Carsten Dominik <carsten at orgmode dot org>
|
||||
;; Keywords: outlines, hypermedia, calendar, wp, games
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; org-track.el --- Track the most recent Org-mode version available.
|
||||
;;
|
||||
;; Copyright (C) 2009-2011
|
||||
;; Copyright (C) 2009-2012
|
||||
;; Free Software Foundation, Inc.
|
||||
;;
|
||||
;; Author: Bastien Guerry <bzg at altern dot org>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; org-xhtml.el --- XHTML export for Org-mode (uses org-lparse)
|
||||
|
||||
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Carsten Dominik <carsten at orgmode dot org>
|
||||
;; Keywords: outlines, hypermedia, calendar, wp
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; org2rem.el --- Convert org appointments into reminders
|
||||
|
||||
;; Copyright (C) 2006-2011 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2006-2012 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Bastien Guerry and Shatad Pratap
|
||||
;; Keywords: outlines, hypermedia, calendar, wp
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; orgtbl-sqlinsert.el --- orgtbl to SQL insert statements.
|
||||
|
||||
;; Copyright (C) 2008-2011 Free Software Foundation
|
||||
;; Copyright (C) 2008-2012 Free Software Foundation
|
||||
|
||||
;; Author: Jason Riedy <jason@acm.org>
|
||||
;; Keywords: org, tables, sql
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
%%% *************************************************************
|
||||
%%% Copyright (C) 2009 Torsten Anders (www.torsten-anders.de)
|
||||
%%% Copyright (C) 2009-2012 Torsten Anders (www.torsten-anders.de)
|
||||
%%% This program is free software; you can redistribute it and/or
|
||||
%%% modify it under the terms of the GNU General Public License
|
||||
%%% as published by the Free Software Foundation; either version 2
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# org2hpda - a small utility to generate hipster pda style printouts from org mode
|
||||
# Copyright (C) 2007 Christian Egli
|
||||
# Copyright (C) 2007-2012 Christian Egli
|
||||
#
|
||||
# Version: 0.6
|
||||
#
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
The files OrgOdtContentTemplate.xml and OrgOdtStyles.xml have the
|
||||
following copyright information:
|
||||
|
||||
Copyright (C) 2010-2011 Free Software Foundation, Inc.
|
||||
Copyright (C) 2010-2012 Free Software Foundation, Inc.
|
||||
|
||||
These files are part of GNU Emacs.
|
||||
|
||||
|
|
Loading…
Reference in New Issue