NEW: For a prettier blog interface, see the Wordpress version!
Tasks
Priorities - A: high, B: medium, C: low; Status - _: unfinished, X: finished, C: cancelled, P: pending, o: in progress, >: delegated. Covey quadrants - Q1 & Q3: urgent, Q1 & Q2: important
| A1 | X | Write scheduler for mom {{Tasks:793}} (AdphotoScheduler) |
| A2 | X | Search for a string in title or notes. (AdphotoScheduler) |
| A3 | X | Add logic for database. (AdphotoScheduler) |
| A4 | X | Bugfix: wiki-like names in extended links from E-Mail from Oliver {{Tasks:891}} (EmacsWikiMode) |
| B1 | X | Bugfix: Get nil to work properly when rescheduling a task {{Tasks:898}} (PlannerModeCompletedTasks) |
| B2 | X | Bugfix: M-x remember on a page that does not exist yet from E-Mail from fouvry {{Tasks:853}} (PlannerModeCompletedTasks) |
| B3 | X | Bugfix: Track down that font-locking problem {{Tasks:917}} (PlannerModeCompletedTasks) |
| B4 | X | Bugfix: Get plan pages from calendar to show up in another page from E-Mail from Charles Philip Chan {{Tasks:915}} (EmacsWikiMode) |
| B5 | X | Allow images in links from ../../notebook/emacs/emacs-wiki/dev/emacs-wiki/emacs-wiki.el {{Tasks:910}} (EmacsWikiMode) |
| B6 | X | Bugfix: Always t the browse-url functions from E-Mail from Charles Philip Chan {{Tasks:914}} (EmacsWikiMode) |
| B7 | X | Download mozilla and upload it to the server {{Tasks:902}} (AdphotoScheduler) |
| B8 | X | Deploy scheduler {{Tasks:901}} (AdphotoScheduler) |
| B9 | X | Add authentication and logging {{Tasks:900}} (AdphotoScheduler) |
~/.diary schedule
Notes
1. emacs-wiki-link-url: return relative links
Categories: EmacsHacks#23 -- Permalink
(defadvice emacs-wiki-link-url (around sacha activate)
"Return relative links if possible."
ad-do-it
(when ad-return-value
(unless (emacs-wiki-wiki-url-p ad-return-value)
(setq ad-return-value
(file-relative-name
ad-return-value
(if (string-match "public_html" ad-return-value)
"../../public_html/notebook/plans"
"../../notebook/plans")))
(when (and sacha/emacs-wiki-use-absolute-url-flag
emacs-wiki-publishing-p)
(setq ad-return-value
(w3m-expand-url
ad-return-value
"http://sacha.sachachua.com/notebook/wiki/"))))))
I'd love to hear about any questions, comments, suggestions or links that you might have. Your comments will not be posted on this website immediately, but will be e-mailed to me first. You can use this form to get in touch with me, or e-mail me at sacha@sachachua.com .