Paul Lussier <[EMAIL PROTECTED]> writes:

> Is there an easy way to use both day pages and a main page?  What I'm
> after is to have a main page with reverse-chronological note numbers,
> ala blog-style, but to have those same notes show up on day pages.

Related snippets of code:

;;;_+ Chronological notes on day pages and reverse-chronological on plan pages

(defun sacha/planner-twiddle-chronological-notes ()
  "Use chronological notes on day pages and reverse-chronological notes on plan 
pages.
People visit my site once a day, so chronologically-ordered notes
are easier for them to understand. People visit plan pages less
often, so new things should be closer to the top."
  (set (make-variable-buffer-local 'planner-reverse-chronological-notes)
       (not (string-match planner-date-regexp
                          (or (planner-page-name) "")))))
(add-hook 'planner-mode-hook 'sacha/planner-twiddle-chronological-notes)

As for keeping tasks only on the day page: something on
planner-mark-task-hook that moves completed tasks to just the day page
might do the trick...

-- 
Sacha Chua <[EMAIL PROTECTED]> - http://sacha.free.net.ph/
Technology evangelist wannabe and apprentice of all things
University of Toronto - IBM Center for Advanced Studies, Toronto
Interest: enterprise social computing (particularly bookmarking)

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

Reply via email to