emacs-wiki-discuss
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[emacs-wiki-discuss] Tasks are not being moved forward


From: Karl Schmid
Subject: [emacs-wiki-discuss] Tasks are not being moved forward
Date: Mon, 16 Jan 2006 04:04:36 -0500
User-agent: KMail/1.9.1

Hello,

I just freshly installed the latest versions of muse and planner from the arch 
repository. Things seem to be working OK, except that unfinished tasks are 
not being moved forward.

As described in the planner manual, I added the following to .emacs:

(setq planner-carry-tasks-forward 7)

However, older, unifished tasks are not carried forward until today. This 
feature worked before the upgrade, but now it does not anymore.

Any ideas why?

Thanks,

Karl

--------------------------------------

Here is the relevant section of my .emacs:

(add-to-list 'load-path "/usr/local/share/emacs/site-lisp/muse")

(require 'muse)          ; load generic module     
(require 'muse-mode)     ; load authoring mode
(require 'muse-colors)     
(require 'muse-html)     ; load publishing styles I use
(require 'muse-latex)
(require 'muse-texinfo)
(require 'muse-docbook)
(require 'outline)       ; I like outline-style faces
(require 'muse-wiki)     ; load Wiki support

;; publish in the lab journal
(require 'muse-project)
     
(setq muse-project-alist
    '(
      ("Labjournal"
       ("~/documents/labjournal"
        :force-publish("WikiIndex") 
        :default "FrontPage")
       (:base "html" :path "~/documents/labjournal/html")
       (:base "pdf" :path "~/documents/labjournal/pdf"))
       ("Plans"
       ("~/documents/plans/"
        :default "TaskPool"
        :major-mode planner-mode
        :visit-link planner-visit-link)
       (:base "html"
          :path "~/documents/plans/html"))))

;;(custom-set-variables
;; '(muse-file-extension "muse"))

(setq muse-wiki-allow-nonexistent-wikiword t)

(defun my-muse-project-find-file (project)
    (interactive)
      (let ((muse-current-project (muse-project project)))
            (call-interactively 'muse-project-find-file)))

;; Sets C-c p l to bring up Labjournal
(global-set-key "\C-cpl" #'(lambda () (interactive)
(my-muse-project-find-file "Labjournal")))

;; Sets C-c p p to bring up Plans
(global-set-key "\C-cpp" #'(lambda () (interactive)
(my-muse-project-find-file "Plans")))

;;
;; planner-muse
;;

(require 'planner)
(require 'planner-publish)

(setq planner-directory "~/documents/plans")
(setq planner-project "Plans")
(add-to-list 'load-path "~/documents/labjournal")
(add-to-list 'load-path "~/documents/plans")

(global-set-key (kbd "<f9> t") 'planner-create-task-from-buffer)

(setq planner-carry-tasks-forward 7)


-- 
-------------------------------------------------------------------------
 Email: schmid--at--ice.mpg.de





reply via email to

[Prev in Thread] Current Thread [Next in Thread]