Add some necessary comments

This commit is contained in:
Tom Willemse 2013-05-17 21:57:14 +02:00
parent 81d569edc2
commit 03f74924f1

View file

@ -1,7 +1,17 @@
;;; eliss --- Issue tracking with elnode and org-mode
;;; Commentary:
;; eliss is a web interface for issue tracking with `org-mode'. It
;; uses elnode to provide the web interface and edits a number of org
;; files to keep track of state and such.
(require 'elnode)
(require 'esxml)
(require 'cl-lib)
;;; Code:
(defvar eliss-data-directory "~/projects/eliss/projects")
(defun project-row (project)
@ -228,3 +238,7 @@
("^/\\([-a-zA-Z0-9]+\\)/\\([-a-z0-9:]+\\)/comment/$" . eliss-new-comment))))
(elnode-start 'eliss-handler :port 8028 :host "localhost")
(provide 'eliss)
;;; eliss.el ends here