123456789101112131415161718 |
- ;;; bugpile-controller -- elnode handlers and such for handling web
- ;;; POST/GET requests
- ;; (defvar bugpile-controller-docroot-handler nil)
- (defun bugpile-controller-init-handler (httpcon)
- "Serves the start-page of the Bugpile application"
- (elnode-send-file httpcon
- (iorg--org-to-html
- (concat
- (iorg-projects--get-project-info
- "bugpile" :view)
- "index.org"))))
- ;; TODO move urls from iorg to bugpile
- (provide 'bugpile-controller)
|