Re: [Orgmode] How to list tasks and their completion dates?
Hi Edi, there is no good way right not to make this list. - Carsten On Jun 19, 2008, at 9:32 PM, Edi Hance wrote: First, let me pass on my thanks for org-mode. It seems to be a great way to manage tasks using Emacs. How can I get a list of completed tasks and their completion dates? I've combed the Info docs and the web and could not find how to do it. I would like something like C-c a a l, but that only shows me the completed tasks for each day. Is there anyway to get a nice sorted list like: CategoryA: DONE Add xyz to the fobnitz <2008-06-10> CategoryB: DONE Fix foo in bar program <2008-06-12> Any ideas? I'm using Org-mode version 4.67c, which is included with GNU Emacs 22.2.1. Thanks very much. Edi ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
Re: [Orgmode] How to list tasks and their completion dates?
On Fri, Jun 20, 2008 at 1:02 AM, Edi Hance wrote: > How can I get a list of completed tasks and their > completion dates? I've combed the Info docs and the > web and could not find how to do it. I would like > something like C-c a a l, but that only shows me the > completed tasks for each day. Is there anyway to get a > nice sorted list like: > > CategoryA: DONE Add xyz to the fobnitz <2008-06-10> > CategoryB: DONE Fix foo in bar program <2008-06-12> Set up column view with CLOSED. May be llike so: (setq org-columns-default-format "%65ITEM(Task) %CLOSED") Then try `C-c a T', input `DONE' at the prompt. It should list DONE tasks. Switch to column view with 'C-c C-x C-c'. I think it kinda does what you want. > Any ideas? I'm using Org-mode version 4.67c, which is > included with GNU Emacs 22.2.1. Thanks very much. 6.05b has been released. HTH, -- Manish ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
Re: [Orgmode] How to list tasks and their completion dates?
Wow, Manish, you beat me to this one. Great. - Carsten On Jun 20, 2008, at 1:58 PM, Manish wrote: On Fri, Jun 20, 2008 at 1:02 AM, Edi Hance wrote: How can I get a list of completed tasks and their completion dates? I've combed the Info docs and the web and could not find how to do it. I would like something like C-c a a l, but that only shows me the completed tasks for each day. Is there anyway to get a nice sorted list like: CategoryA: DONE Add xyz to the fobnitz <2008-06-10> CategoryB: DONE Fix foo in bar program <2008-06-12> Set up column view with CLOSED. May be llike so: (setq org-columns-default-format "%65ITEM(Task) %CLOSED") Then try `C-c a T', input `DONE' at the prompt. It should list DONE tasks. Switch to column view with 'C-c C-x C-c'. I think it kinda does what you want. Any ideas? I'm using Org-mode version 4.67c, which is included with GNU Emacs 22.2.1. Thanks very much. 6.05b has been released. HTH, -- Manish ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
Re: [Orgmode] How to list tasks and their completion dates?
On Fri, Jun 20, 2008 at 5:31 PM, Carsten Dominik wrote: > Wow, Manish, you beat me to this one. Great. Thank YOU for the ever malleable Org. Personally, I have come to believe that anything is possible with Org and whatever can not be done (at present) can be implemented/worked around. -- Manish ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
[Orgmode] Autoloading failed to define function org-remember
Whenerver I call M-x org-remember I get this: Debugger entered--Lisp error: (error "Autoloading failed to define function org-remember") execute-extended-command(nil) call-interactively(execute-extended-command nil nil) I am using remember 1.9 and org 6.05b. Cezar ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
[Orgmode] Re: Autoloading failed to define function org-remember
Cezar Halmagean <[EMAIL PROTECTED]> writes: > Whenerver I call M-x org-remember I get this: > > Debugger entered--Lisp error: (error "Autoloading failed to define function > org-remember") > execute-extended-command(nil) > call-interactively(execute-extended-command nil nil) > > I am using remember 1.9 and org 6.05b. > Try to redo the build process for both. By the way, Remember 2.0 has been released. -- Paul ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
[Orgmode] org-publish
I am trying to use org-publish I have defined (setq org-publish-project-alist '(("RgrBlog" :base-directory "/home/rgr/.emacs.d/org-files/" :publishing-directory "~/webs/rgr/public_html/org-publish/" :section-numbers nil :author "rgr" :table-of-contents t :style ""))) But when I call org-publish I get nothing. Obviously I have missed something obvious (the directories are correct) since no files appear at all. Any help much appreciated. ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
Re: [Orgmode] org-publish
On Sat, Jun 21, 2008 at 6:57 AM, Richard G Riley wrote: > > I am trying to use org-publish > > I have defined > > (setq org-publish-project-alist > '(("RgrBlog" > :base-directory "/home/rgr/.emacs.d/org-files/" > :publishing-directory "~/webs/rgr/public_html/org-publish/" > :section-numbers nil > :author "rgr" > :table-of-contents t > :style " href=\"stylesheet.css\" > type=\"text/css\">"))) > > But when I call org-publish I get nothing. Obviously I have missed > something obvious (the directories are correct) since no files appear at > all. I have also been trying to make this work and have a similar setup. Not sure if this will help in your case but try adding: :publishing-function org-publish-org-to-html -- Manish ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode