Hello,

I just switched from emacs-wiki based planner to muse based.

One of the first abnormalities is the following:
If I start "emacs somefile" then I get the error message: 
"muse-project-find-file: There is no page 2006.08.07 in project nil."

"somefile" is a file in an arbitrary directory not belonging to any
project directories. This was never a problem before I switched to muse.

thanks and greetings,

christian


My setting in .emacs look like follows:


;; muse
(require 'muse-mode)
(require 'muse-latex2png)
(require 'muse-html)
(require 'muse-colors)
(require 'muse-wiki)
(require 'muse-backlink)
(footnote-mode)
(muse-backlink-install)
(setq latex2png-scale-factor 1.2)
(setq muse-colors-evaluate-lisp-tags nil)

;; planner
(require 'planner)
(require 'planner-publish)
(require 'planner-id)
(require 'planner-cyclic)
(require 'planner-deadline)
(require 'planner-multi)
(require 'planner-accomplishments)
(require 'planner-lisp)
(require 'planner-appt)
(require 'planner-bibtex)
(require 'planner-calendar)
(require 'remember-planner)
;(require 'planner-registry)
;(planner-registry-initialize)
;(planner-registry-insinuate)




(setq planner-project "my_brain")

; planner key-bindings
(global-set-key (kbd "<f9> t") 'planner-create-task-from-buffer)
(global-set-key (kbd "<f9> n") 'remember)
(global-set-key (kbd "<f9> <f9>") 'planner-goto-today)
(global-set-key (kbd "<f9> u") 'planner-update-task)
(global-set-key (kbd "<f9> e") 'planner-edit-task-description)
(global-set-key (kbd "<f9> m") 'planner-copy-or-move-task) ; move to
different-date
(global-set-key (kbd "<f9> r") 'planner-replan-task) ; move to different
task-page

(require 'muse-project)
(setq muse-project-alist
      '(("planner"
         ("~/wiki" 
          :default "TaskPool"
          :major-mode planner-mode
          :visit-link planner-visit-link)
         (:base "planner-html"
          :path "~/wiki/web"
          :footer "~/wiki/web/planner/footer.html"
          :force-publish ("PlannerIndex")
          ))
        )
      )

; Further planner customisations
(planner-appt-use-tasks)
(setq mark-diary-entries-in-calendar t)
(setq planner-id-add-task-id t)
(setq remember-handler-functions '(remember-planner-append))
(setq remember-annotation-functions planner-annotation-functions)
(setq planner-carry-tasks-forward 5)
(setq planner-cyclic-diary-nag nil)
(setq planner-cyclic-diary-file (concat (planner-directory)
"/cyclic_tasks"))
(setq planner-appt-task-use-appointments-section-flag t)

; Run planner on startup
(plan)


_______________________________________________
Planner-el-discuss mailing list
[email protected]
https://mail.gna.org/listinfo/planner-el-discuss

Reply via email to