Add some necessary comments
This commit is contained in:
parent
81d569edc2
commit
03f74924f1
1 changed files with 14 additions and 0 deletions
14
eliss.el
14
eliss.el
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue