diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-05-17 16:27:50 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-05-17 16:27:50 -0400 |
commit | b81536ad49001abf292bd31a0dcbf57e387387b1 (patch) | |
tree | 722cac2e9eab46a3b18d930dcd37703df48ebeba /.emacs.d/org-7.4/contrib/lisp/org-jira.el | |
parent | 5b8794f1f5e82c1a220f36a724e5c8ce3335c462 (diff) |
Fiddle with emacs config (when to use -n, -c), get emacs using el-get.
Diffstat (limited to '.emacs.d/org-7.4/contrib/lisp/org-jira.el')
-rw-r--r-- | .emacs.d/org-7.4/contrib/lisp/org-jira.el | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/.emacs.d/org-7.4/contrib/lisp/org-jira.el b/.emacs.d/org-7.4/contrib/lisp/org-jira.el deleted file mode 100644 index d224c8f..0000000 --- a/.emacs.d/org-7.4/contrib/lisp/org-jira.el +++ /dev/null @@ -1,65 +0,0 @@ -;;; org-jira.el --- add a jira:ticket protocol to Org -(defconst org-jira-version "0.1") -;; Copyright (c)2008 Jonathan Arkell. (by)(nc)(sa) Some rights reserved. -;; Author: Jonathan Arkell <jonnay@jonnay.net> - -;; 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 version 2. - -;; 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. - -;; For a copy of the GNU General Public License, search the Internet, -;; or write to the Free Software Foundation, Inc., 59 Temple Place, -;; Suite 330, Boston, MA 02111-1307 USA - -;;; Commentary: -;; This adds a jira protocol to org mode. - -;;; Commands: -;; -;; Below are complete command list: -;; -;; -;;; Customizable Options: -;; -;; Below are customizable option list: -;; - -;; I had initially planned on adding bi-directional linking, so you -;; could store links from a jira ticket. I also wanted to import -;; tickets assigned to you as a task. However, I am no longer working -;; with JIRA, so this is now abandonware. - -;;; Installation: -;; Put org-jira.el somewhere in your load-path. -;; (Use M-x show-variable RET load-path to see what your load path is.) -;; Add this to your emacs init file, preferably after you load org mode. -;(require 'org-jira) - -;;; TODO: -;; - bi-directional links -;; - deeper importing, like tasks...? - -;;; CHANGELOG: -;; v 0.2 - ran through checkdoc -;; - Abandoned. -;; v 0.1 - Initial release - -(require 'jira) - -(org-add-link-type "jira" 'org-jira-open) - -(defun org-jira-open (path) - "Open a Jira Link from PATH." - (jira-show-issue path)) - - -(provide 'org-jira) - -;;; org-jira.el ends here |