aboutsummaryrefslogtreecommitdiff
path: root/org-drill.el
diff options
context:
space:
mode:
authorPhillip Lord <phillip.lord@russet.org.uk>2019-06-02 17:25:56 +0100
committerPhillip Lord <phillip.lord@russet.org.uk>2019-06-02 17:25:56 +0100
commit939f2a65b2e5097d56d3c4422aa3a11e4d71d6ff (patch)
tree9118ee405563fb869a7c8a1d0e5350c4ea365184 /org-drill.el
parent6959903b99fce6cbf4db93711e95117fd5cd879d (diff)
downloadorg-drill-939f2a65b2e5097d56d3c4422aa3a11e4d71d6ff.tar.gz
org-drill-939f2a65b2e5097d56d3c4422aa3a11e4d71d6ff.zip
Enable cask testing
- Update headers to standard - Add Makefile, Cask and docker scripts - Add test directory - .gitignore
Diffstat (limited to 'org-drill.el')
-rw-r--r--org-drill.el97
1 files changed, 52 insertions, 45 deletions
diff --git a/org-drill.el b/org-drill.el
index 4bc8dde..1d47aa0 100644
--- a/org-drill.el
+++ b/org-drill.el
@@ -1,48 +1,54 @@
-;;; -*- coding: utf-8-unix -*-
-;;; org-drill.el - Self-testing using spaced repetition
-;;;
-;;; Copyright (C) 2010-2015 Paul Sexton
-;;;
-;;; Author: Paul Sexton <eeeickythump@gmail.com>
-;;; Version: 2.6.1
-;;; Keywords: flashcards, memory, learning, memorization
-;;; Repository at http://bitbucket.org/eeeickythump/org-drill/
-;;;
-;;; This file is not part of GNU Emacs.
-;;;
-;;; 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 3 of the License, or
-;;; (at your option) any later version.
-;;;
-;;; This program is distributed in the hope that it will be useful,
-;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-;;; GNU General Public License for more details.
-;;;
-;;; You should have received a copy of the GNU General Public License
-;;; along with this program. If not, see <http://www.gnu.org/licenses/>.
-;;;
-;;;
-;;; Synopsis
-;;; ========
-;;;
-;;; Within an Org mode outline or outlines, headings and associated content are
-;;; treated as "flashcards". Spaced repetition algorithms are used to conduct
-;;; interactive "drill sessions", where a selection of these flashcards is
-;;; presented to the student in random order. The student rates his or her
-;;; recall of each item, and this information is used to schedule the item for
-;;; later revision.
-;;;
-;;; Each drill session can be restricted to topics in the current buffer
-;;; (default), one or several files, all agenda files, or a subtree. A single
-;;; topic can also be tested.
-;;;
-;;; Different "card types" can be defined, which present their information to
-;;; the student in different ways.
-;;;
-;;; See the file README.org for more detailed documentation.
+;;; org-drill.el --- Self-testing using spaced repetition -*- coding: utf-8-unix -*-
+;;; Header:
+
+;; Maintainer: Phillip Lord <phillip.lord@russet.org.uk>
+;; Author: Paul Sexton <eeeickythump@gmail.com>
+;; Version: 2.7
+;; Package-Requires: ((emacs "25.3") (seq "2.14"))
+;; Keywords: flashcards, memory, learning, memorization
+;; Repository at https://gitlab.com/phillord/org-drill/issues
+;;
+;; This file is not part of GNU Emacs.
+;;
+;; Copyright (C) 2018-2019 Phillip Lord
+;; Copyright (C) 2010-2015 Paul Sexton
+;;
+;;
+;; 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 3 of the License, or
+;; (at your option) any later version.
+;;
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;; GNU General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see <http://www.gnu.org/licenses/>.
+;;
+;;
+
+;;; Commentary:
+;;
+;; Within an Org mode outline or outlines, headings and associated content are
+;; treated as "flashcards". Spaced repetition algorithms are used to conduct
+;; interactive "drill sessions", where a selection of these flashcards is
+;; presented to the student in random order. The student rates his or her
+;; recall of each item, and this information is used to schedule the item for
+;; later revision.
+;;
+;; Each drill session can be restricted to topics in the current buffer
+;; (default), one or several files, all agenda files, or a subtree. A single
+;; topic can also be tested.
+;;
+;; Different "card types" can be defined, which present their information to
+;; the student in different ways.
+;;
+;; See the file README.org for more detailed documentation.
+
+;;; Code:
(eval-when-compile (require 'cl))
(eval-when-compile (require 'hi-lock))
@@ -50,7 +56,7 @@
(require 'hi-lock)
(require 'org)
(require 'org-id)
-(require 'org-learn)
+;;(require 'org-learn)
(require 'savehist)
(require 'seq)
@@ -3996,3 +4002,4 @@ shuffling is done in place."
(sit-for 0.3))
(provide 'org-drill)
+;;; org-drill.el ends here