Re: [O] notify, when something to do

2011-11-01 Thread Peter Münster
On Sun, Oct 23 2011, Bastien wrote: - Perhaps the main problem: appt does not know about warning periods. There are items with -3d, other with -5M[1]. There is only one universal appt-message-warning-time. Would it be possible, to have a individual warning-time for each todo-item,

Re: [O] notify, when something to do

2011-10-25 Thread Marcelo de Moraes Serpa
Ha, the XMPP idea really appeals to me, endless possibilities :D Thanks for sharing. On Mon, Oct 24, 2011 at 10:01 AM, Christopher Allan Webber cweb...@dustycloud.org wrote: Hey Peter, I also do appointments with orgmode.. I have it hooked up so that it sends me messages via XMPP/Jabber.

Re: [O] notify, when something to do

2011-10-24 Thread Sebastien Vauban
Bastien, Bastien wrote: - How to distinguish between SCHEDULED and DEADLINE? I'll investigate... I introduced the ability to use (org-agenda-to-appt nil t :scheduled) if you just want to get scheduled appointments. This might speeds things and make them more flexible. I have the

Re: [O] notify, when something to do

2011-10-24 Thread Christopher Allan Webber
Hey Peter, I also do appointments with orgmode.. I have it hooked up so that it sends me messages via XMPP/Jabber. Possibly useful to you: http://dustycloud.org/blog/2010/11/21/emacs-appointment-notifications-via-xmpp pmli...@free.fr (Peter Münster) writes: Hello, I would like to be

Re: [O] notify, when something to do

2011-10-23 Thread Tassilo Horn
pmli...@free.fr (Peter Münster) writes: Hi Peter, I would like to be notified[1], when a todo item enters the warning period, scheduled time, or deadline. I export my org entries as appt alarms, so that I get system notifications 15 minutes before meetings (every 1 minute until I discard

Re: [O] notify, when something to do

2011-10-23 Thread Tassilo Horn
Tassilo Horn tass...@member.fsf.org writes: (defvar th-notify-title-to-id-map (make-hash-table :test 'string=) Maps TITLE values of notifications to the last notification ID. If ID is -1, then any further notifications with that body will be skipped.) (defun th-notify (rest args)

Re: [O] notify, when something to do

2011-10-23 Thread Peter Münster
On Sun, Oct 23 2011, Tassilo Horn wrote: pmli...@free.fr (Peter Münster) writes: I would like to be notified[1], when a todo item enters the warning period, scheduled time, or deadline. I export my org entries as appt alarms, so that I get system notifications 15 minutes before meetings

Re: [O] notify, when something to do

2011-10-23 Thread Tassilo Horn
pmli...@free.fr (Peter Münster) writes: Hi Peter, First, I took a look at the lines (org-agenda-to-appt t) (appt-activate 1) This is already a good starting point, just 3 remarks: - I think, I'll need a filter for org-agenda-to-appt, because I only want TODO items. Should be no

Re: [O] notify, when something to do

2011-10-23 Thread Bastien
Hi Tassilo, Tassilo Horn tass...@member.fsf.org writes: But maybe one could change `org-agenda-to-appt' to accept also a function as filter. Done. You can now use a fonction as a filter. It will filter through entries. the only mandatory argument for this function will be an entry, i.e.

Re: [O] notify, when something to do

2011-10-23 Thread Bastien
Hi Peter, pmli...@free.fr (Peter Münster) writes: - I think, I'll need a filter for org-agenda-to-appt, because I only want TODO items. Should be no problem. Yes -- just use a function who tries to match the TODO keyword against the entry. - How to distinguish between SCHEDULED and

Re: [O] notify, when something to do

2011-10-23 Thread Tassilo Horn
Bastien b...@altern.org wrote: Hi Tassilo, Tassilo Horn tass...@member.fsf.org writes: But maybe one could change `org-agenda-to-appt' to accept also a function as filter. Done. You can now use a fonction as a filter. It will filter through entries. the only mandatory argument