emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Re: org-mode and remind integration
@ 2009-02-11 14:23 Sharad Pratap
  2009-02-11 15:21 ` Carsten Dominik
  0 siblings, 1 reply; 7+ messages in thread
From: Sharad Pratap @ 2009-02-11 14:23 UTC (permalink / raw)
  To: danielemc; +Cc: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 355 bytes --]

Hi Daniel,

Your regular expression working fine!!, I have made few change with
same regular expression, and it has worked for me.

I wish `org2rem' could be as robust as `org-export-icalendar'.

Like me you also want orgmode outside editor, So I have added to
executable script `org2remind' and `show-agenda'.

-- 
Regard
        (`
        _) h a r a d

[-- Attachment #1.2: Type: text/html, Size: 457 bytes --]

[-- Attachment #2: org2rem.el.patch --]
[-- Type: text/x-patch, Size: 2355 bytes --]

--- org2rem.el.old	2009-01-09 09:00:48.000000000 +0000
+++ org2rem.el.new	2009-02-11 13:59:16.777712000 +0000
@@ -34,13 +34,21 @@
 (eval-when-compile
   (require 'cl))
 
+(defvar org2rem-pure-timestamps-string  ;we need it.
+ (concat  "\\(" org-deadline-string "\\|"
+          org-scheduled-string  "\\)\\{0\\}"))
+
 (defvar org2rem-scheduled-reminders nil)
 (defvar org2rem-deadline-reminders nil)
+(defvar org2rem-pure-timestamps-reminders nil)
+
 (defvar pure-time nil)
 (defvar org2rem-scheduled-remind-file 
   "~/.reminders.org.scheduled")
 (defvar org2rem-deadline-remind-file 
   "~/.reminders.org.deadline")
+(defvar org2rem-pure-timestamps-remind-file
+  "~/.reminders.org.pure-timestamps")
 
 (defun org2rem-list-reminders (regexp)
   "Make a list of appointments. 
@@ -95,9 +103,15 @@
 
 	  (setq rem-task (concat "REM" rem-time "MSG "  task "%")
 		)
-	  (if (equal regexp org-scheduled-string)
-	      (push rem-task org2rem-scheduled-reminders)
-	    (push rem-task org2rem-deadline-reminders)))))))
+
+          (cond
+           ((equal regexp org2rem-pure-timestamps-string)
+            (push rem-task org2rem-pure-timestamps-reminders))
+           ((equal regexp org-scheduled-string)
+            (push rem-task org2rem-scheduled-reminders))
+           ((equal regexp org-deadline-string)
+            (push rem-task org2rem-deadline-reminders))
+           ))))))
 
 (defun org2rem-write-file (file reminders)
   "Write reminders list to files."
@@ -116,13 +130,19 @@
   (interactive)
   (setq org2rem-scheduled-reminders nil)
   (setq org2rem-deadline-reminders nil)
+  (setq org2rem-pure-timestamps-string nil)
   (save-window-excursion
     (org2rem-list-reminders org-scheduled-string)
     (org2rem-list-reminders org-deadline-string)
-    (org2rem-write-file "~/.reminders.org.scheduled" 
+    (org2rem-list-reminders org2rem-pure-timestamps-string)
+
+    (org2rem-write-file org2rem-scheduled-remind-file ;"~/.reminders.org.scheduled" 
 			org2rem-scheduled-reminders)
-    (org2rem-write-file "~/.reminders.org.deadline"
-			org2rem-deadline-reminders)))
+    (org2rem-write-file org2rem-deadline-remind-file ;"~/.reminders.org.deadline"
+			org2rem-deadline-reminders)
+    (org2rem-write-file org2rem-pure-timestamps-remind-file ;"~/.reminders.org.pure-timestamps"
+			org2rem-pure-timestamps-reminders)
+    ))
 
 
 \f

[-- Attachment #3: org2remind --]
[-- Type: application/octet-stream, Size: 847 bytes --]

#! /usr/bin/emacs --script


(load-file "~/.emacs")
(require 'org2rem)

(defun org2remind ()
  "batch org2rem function"
  (setq org2rem-scheduled-reminders nil)
  (setq org2rem-deadline-reminders nil)
  (setq org2rem-pure-timestamps-string nil)
  (save-window-excursion
    (find-file "~/my/test.org")
    (org2rem-list-reminders org-scheduled-string)
    (org2rem-list-reminders org-deadline-string)
    (org2rem-list-reminders org2rem-pure-timestamps-string)

    (org2rem-write-file org2rem-scheduled-remind-file ;"~/.reminders.org.scheduled" 
			org2rem-scheduled-reminders)
    (org2rem-write-file org2rem-deadline-remind-file ;"~/.reminders.org.deadline"
			org2rem-deadline-reminders)
    (org2rem-write-file org2rem-pure-timestamps-remind-file ;"~/.reminders.org.pure-timestamps"
			org2rem-pure-timestamps-reminders)
    ))

(org2remind)

[-- Attachment #4: show-agenda --]
[-- Type: application/octet-stream, Size: 1611 bytes --]

#!/usr/bin/emacs --script
;;
;; be.el
;; 
;; Made by s
;; Login   <s@taj>
;; 
;; Started on  Wed Feb  4 21:51:00 2009 s
;; Last update Wed Feb 11 17:17:09 2009 Sharad Pratap


(setq
 european-calendar-style nil
 diary-mail-days 7 
 diary-file "~/.Organize/emacs/diary/diary")

(org-batch-agenda "a"
                  european-calendar-style nil
                  diary-mail-days 12
                  org-agenda-ndays 20
                  diary-file "~/.Organize/emacs/diary/diary"
                  org-agenda-files
                  (file-expand-wildcards "~/.Organize/emacs/org/*/*.org"))
;                   org-agenda-files
;                   (quote 
;                    (
;                     "~/.Organize/emacs/org/myself/test.org"
;                     )))
;                  )

;;;      emacs -batch -l ~/.emacs -eval '(org-batch-agenda "t")' | lpr

;;; You may also modify parameters on the fly like this:

;;;      emacs -batch -l ~/.emacs                                      \
;;;         -eval '(org-batch-agenda "a"                               \
;;;                  org-agenda-ndays 300                              \
;;;                  org-agenda-include-diary nil                      \
;;;                  org-agenda-files (quote ("~/org/project.org")))'  \
;;;         | lpr

;;;     (org-batch-agenda "S")



;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; from: http://www.mail-archive.com/emacs-orgmode@gnu.org/msg10679.html
;;emacs --batch --no-init-file -q  -l ~/.emacs.slim --eval "(progn
;;(org-agenda-list) (princ (buffer-string)))" 2> /dev/null

[-- Attachment #5: Type: text/plain, Size: 204 bytes --]

_______________________________________________
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

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Re: org-mode and remind integration
  2009-02-11 14:23 org-mode and remind integration Sharad Pratap
@ 2009-02-11 15:21 ` Carsten Dominik
  2009-02-11 15:33   ` Sharad Pratap
  0 siblings, 1 reply; 7+ messages in thread
From: Carsten Dominik @ 2009-02-11 15:21 UTC (permalink / raw)
  To: Sharad Pratap; +Cc: emacs-orgmode

I have not followed this discussion - should I apply this patch
to org2rem.el in the distribution?

- Carsten

On Feb 11, 2009, at 3:23 PM, Sharad Pratap wrote:

> Hi Daniel,
>
> Your regular expression working fine!!, I have made few change with
> same regular expression, and it has worked for me.
>
> I wish `org2rem' could be as robust as `org-export-icalendar'.
>
> Like me you also want orgmode outside editor, So I have added to
> executable script `org2remind' and `show-agenda'.
>
> --  
> Regard
>         (`
>         _) h a r a d
> <org2rem.el.patch><org2remind><show- 
> agenda>_______________________________________________
> 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

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Re: org-mode and remind integration
  2009-02-11 15:21 ` Carsten Dominik
@ 2009-02-11 15:33   ` Sharad Pratap
       [not found]     ` <8B4F1B14-BD08-4446-B642-9D0DAEAD56D2@uva.nl>
  0 siblings, 1 reply; 7+ messages in thread
From: Sharad Pratap @ 2009-02-11 15:33 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 788 bytes --]

Hi Carsten,
Please do apply it, (if you find it is fine.)
I have joined this mailing list today only,
so not able to include all peoples in thread.

On Wed, Feb 11, 2009 at 8:51 PM, Carsten Dominik <dominik@science.uva.nl>wrote:

> I have not followed this discussion - should I apply this patch
> to org2rem.el in the distribution?
>
> - Carsten
>
>
> On Feb 11, 2009, at 3:23 PM, Sharad Pratap wrote:
>
>  Hi Daniel,
>>
>> Your regular expression working fine!!, I have made few change with
>> same regular expression, and it has worked for me.
>>
>> I wish `org2rem' could be as robust as `org-export-icalendar'.
>>
>> Like me you also want orgmode outside editor, So I have added to
>> executable script `org2remind' and `show-agenda'.
>>
>
-- 
Regard
        (`
        _) h a r a d

[-- Attachment #1.2: Type: text/html, Size: 1606 bytes --]

[-- Attachment #2: Type: text/plain, Size: 204 bytes --]

_______________________________________________
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

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Re: org-mode and remind integration
       [not found]     ` <8B4F1B14-BD08-4446-B642-9D0DAEAD56D2@uva.nl>
@ 2009-02-11 23:42       ` Daniel Martins
  2009-02-12 13:22         ` Sharad Pratap
  0 siblings, 1 reply; 7+ messages in thread
From: Daniel Martins @ 2009-02-11 23:42 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: Bastien Guerry, emacs-orgmode@gnu.org


[-- Attachment #1.1: Type: text/plain, Size: 1458 bytes --]

Thanks Sharap,

Since my child was born last month I did not have much time. Therefore, I
did not test org2rem.

I did not tested the last suggestion of Carsten but you seem to overcome the
problem I encountered.

I am also suggest to include this patch to expand Bastien original
org2rem.el

Whenever I have time (to sleep!) I will test your scripts.

Daniel





2009/2/11 Carsten Dominik <dominik@science.uva.nl>

> Hi Bastien,
> you wrote the original org2rem.el  Do you agree we should apply this patch?
> I have not tested it as I do not use remind.
>
> - Carsten
>
> On Feb 11, 2009, at 4:33 PM, Sharad Pratap wrote:
>
> Hi Carsten,
> Please do apply it, (if you find it is fine.)
> I have joined this mailing list today only,
> so not able to include all peoples in thread.
>
> On Wed, Feb 11, 2009 at 8:51 PM, Carsten Dominik <dominik@science.uva.nl>wrote:
>
>> I have not followed this discussion - should I apply this patch
>> to org2rem.el in the distribution?
>>
>> - Carsten
>>
>>
>> On Feb 11, 2009, at 3:23 PM, Sharad Pratap wrote:
>>
>>  Hi Daniel,
>>>
>>> Your regular expression working fine!!, I have made few change with
>>> same regular expression, and it has worked for me.
>>>
>>> I wish `org2rem' could be as robust as `org-export-icalendar'.
>>>
>>> Like me you also want orgmode outside editor, So I have added to
>>> executable script `org2remind' and `show-agenda'.
>>>
>>
> --
> Regard
>         (`
>         _) h a r a d
>
>
>

[-- Attachment #1.2: Type: text/html, Size: 2736 bytes --]

[-- Attachment #2: Type: text/plain, Size: 204 bytes --]

_______________________________________________
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

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Re: org-mode and remind integration
  2009-02-11 23:42       ` Daniel Martins
@ 2009-02-12 13:22         ` Sharad Pratap
       [not found]           ` <A5094B1B-1F14-4395-938E-2AB57422C776@uva.nl>
  0 siblings, 1 reply; 7+ messages in thread
From: Sharad Pratap @ 2009-02-12 13:22 UTC (permalink / raw)
  To: Daniel Martins; +Cc: Bastien Guerry, emacs-orgmode@gnu.org


[-- Attachment #1.1: Type: text/plain, Size: 2236 bytes --]

Hi Daniel,

Actually I have used your proposed _regular expression_ only,
and little rearrangement.

> Since my child was born last month I did not have much time. Therefore, I
> did not test org2rem.

Many congratulations to you on your sweet little bundle of joy!!

I did not tested the last suggestion of Carsten but you seem to overcome the
> problem I encountered.

I also wanted to remove these three
    (defvar org2rem-scheduled-reminders nil)
    (defvar org2rem-deadline-reminders nil)
    (defvar org2rem-pure-timestamps-reminders nil)
global variables, with next patch by this week end.

And finally Thanks you very much Daniel for `org2rem.el' I am regular user
of `remind'.

On Thu, Feb 12, 2009 at 5:12 AM, Daniel Martins <danielemc@gmail.com> wrote:

> Thanks Sharap,
>
> Since my child was born last month I did not have much time. Therefore, I
> did not test org2rem.
>
> I did not tested the last suggestion of Carsten but you seem to overcome
> the problem I encountered.
>
> I am also suggest to include this patch to expand Bastien original
> org2rem.el
>
> Whenever I have time (to sleep!) I will test your scripts.
>
> Daniel
>
>
>
>
>
> 2009/2/11 Carsten Dominik <dominik@science.uva.nl>
>
> Hi Bastien,
>> you wrote the original org2rem.el  Do you agree we should apply this
>> patch?
>> I have not tested it as I do not use remind.
>>
>> - Carsten
>>
>> On Feb 11, 2009, at 4:33 PM, Sharad Pratap wrote:
>>
>> Hi Carsten,
>> Please do apply it, (if you find it is fine.)
>> I have joined this mailing list today only,
>> so not able to include all peoples in thread.
>>
>> On Wed, Feb 11, 2009 at 8:51 PM, Carsten Dominik <dominik@science.uva.nl>wrote:
>>
>>> I have not followed this discussion - should I apply this patch
>>> to org2rem.el in the distribution?
>>>
>>> - Carsten
>>>
>>>
>>> On Feb 11, 2009, at 3:23 PM, Sharad Pratap wrote:
>>>
>>>  Hi Daniel,
>>>>
>>>> Your regular expression working fine!!, I have made few change with
>>>> same regular expression, and it has worked for me.
>>>>
>>>> I wish `org2rem' could be as robust as `org-export-icalendar'.
>>>>
>>>> Like me you also want orgmode outside editor, So I have added to
>>>> executable script `org2remind' and `show-agenda'.
>>>>
>>>

[-- Attachment #1.2: Type: text/html, Size: 4368 bytes --]

[-- Attachment #2: Type: text/plain, Size: 204 bytes --]

_______________________________________________
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

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Re: org-mode and remind integration
       [not found]             ` <5fb1c7f40902151410s16b415ddqfbfb986a8a89fba0@mail.gmail.com>
@ 2009-02-15 22:43               ` Carsten Dominik
       [not found]                 ` <5fb1c7f40902160720x330896c2q530e38944463fdb9@mail.gmail.com>
  0 siblings, 1 reply; 7+ messages in thread
From: Carsten Dominik @ 2009-02-15 22:43 UTC (permalink / raw)
  To: Sharad Pratap; +Cc: Bastien Guerry, emacs-orgmode@gnu.org


[-- Attachment #1.1: Type: text/plain, Size: 3706 bytes --]

Hi Sharad,

thanks for your work.

Instead for making a big change to org-exp.el  I would much rather have
a separate files with these functions, and a change to org-exp.el
that is as minimal as possible.

- Carsten

On Feb 15, 2009, at 11:10 PM, Sharad Pratap wrote:

> Hi Dominik,
> I have added remind functions in `org-exp.el' by following icalendar,
> functions.
> As you must have known `ical2rem' kind of utilities is here, So I got
> at least remind is superset to ical, there should not be any problem.
>
> I have tested few things like.
> * remind `[' `%' handled
>
> In it two known bugs left.
> 1. Duplication of code, another copy of icalendar .function for  
> remind.
> 2. empty description returning a single newline, that causes ugly  
> output.
>
> I am attaching this with this mail `org-exp.el' (with remind)
> and full `org2rem.el' that I have not changed from last time,
> As I started work on `org-exp.el.'
>
> I will try to fix both 1, 2 as  I will get time.
> But I think for most of usage it will work nice.
>
> --
> Regards,
> Sharad
>
> On Fri, Feb 13, 2009 at 12:55 PM, Carsten Dominik <dominik@science.uva.nl 
> > wrote:
> Hi Sharad,
>
> instead of a new patch, please send me just a full new version of
> org2rem.el when you are done changing it.
> Thanks.
>
> - Carsten
>
> On Feb 12, 2009, at 2:22 PM, Sharad Pratap wrote:
>
>> Hi Daniel,
>>
>> Actually I have used your proposed _regular expression_ only,
>> and little rearrangement.
>> Since my child was born last month I did not have much time.  
>> Therefore, I did not test org2rem.
>> Many congratulations to you on your sweet little bundle of joy!!
>>
>> I did not tested the last suggestion of Carsten but you seem to  
>> overcome the problem I encountered.
>> I also wanted to remove these three
>>     (defvar org2rem-scheduled-reminders nil)
>>     (defvar org2rem-deadline-reminders nil)
>>     (defvar org2rem-pure-timestamps-reminders nil)
>> global variables, with next patch by this week end.
>>
>> And finally Thanks you very much Daniel for `org2rem.el' I am  
>> regular user of `remind'.
>>
>> On Thu, Feb 12, 2009 at 5:12 AM, Daniel Martins  
>> <danielemc@gmail.com> wrote:
>> Thanks Sharap,
>>
>> Since my child was born last month I did not have much time.  
>> Therefore, I did not test org2rem.
>>
>> I did not tested the last suggestion of Carsten but you seem to  
>> overcome the problem I encountered.
>>
>> I am also suggest to include this patch to expand Bastien original  
>> org2rem.el
>>
>> Whenever I have time (to sleep!) I will test your scripts.
>>
>> Daniel
>>
>>
>>
>>
>>
>> 2009/2/11 Carsten Dominik <dominik@science.uva.nl>
>>
>> Hi Bastien,
>>
>> you wrote the original org2rem.el  Do you agree we should apply  
>> this patch?
>> I have not tested it as I do not use remind.
>>
>> - Carsten
>>
>> On Feb 11, 2009, at 4:33 PM, Sharad Pratap wrote:
>>
>>> Hi Carsten,
>>> Please do apply it, (if you find it is fine.)
>>> I have joined this mailing list today only,
>>> so not able to include all peoples in thread.
>>>
>>> On Wed, Feb 11, 2009 at 8:51 PM, Carsten Dominik <dominik@science.uva.nl 
>>> > wrote:
>>> I have not followed this discussion - should I apply this patch
>>> to org2rem.el in the distribution?
>>>
>>> - Carsten
>>>
>>>
>>> On Feb 11, 2009, at 3:23 PM, Sharad Pratap wrote:
>>>
>>> Hi Daniel,
>>>
>>> Your regular expression working fine!!, I have made few change with
>>> same regular expression, and it has worked for me.
>>>
>>> I wish `org2rem' could be as robust as `org-export-icalendar'.
>>>
>>> Like me you also want orgmode outside editor, So I have added to
>>> executable script `org2remind' and `show-agenda'.
> <orgremind.el><org2rem.el>


[-- Attachment #1.2: Type: text/html, Size: 6317 bytes --]

[-- Attachment #2: Type: text/plain, Size: 204 bytes --]

_______________________________________________
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

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Re: org-mode and remind integration
       [not found]                 ` <5fb1c7f40902160720x330896c2q530e38944463fdb9@mail.gmail.com>
@ 2009-02-17 21:02                   ` Carsten Dominik
  0 siblings, 0 replies; 7+ messages in thread
From: Carsten Dominik @ 2009-02-17 21:02 UTC (permalink / raw)
  To: Sharad Pratap; +Cc: Bastien Guerry, emacs-orgmode@gnu.org


[-- Attachment #1.1: Type: text/plain, Size: 4903 bytes --]


On Feb 16, 2009, at 4:20 PM, Sharad Pratap wrote:

> Hi Carsten,
> Sorry,
> I have sent wrong file `orgremind.el,' won't have changes.
> it is actually `org-exp.el' that I have forgot to include.
>
> Yes I can put these function in `org2rem.el' but I am sending  
> correct file
> as correction of my previous mail.

Please do so.  Thanks.

- Carsten

>
>
> But Carsten, here is  number of different calendaring system present
> e.g.
> iCal
> remind
> Zsh calendar(man zsh-betacalsys)
>
> which all share similar feature, then here it would be better if  
> here is
> a generic framwork should be here on top of it, ical, remind, Zsh  
> calendar,
> interface we can add.
>
> (if you want to test it, please (setq org-remind-include-todo t),  
> for getting all todo's in remind
> and I were not able to make remind function auto-completable, so you  
> have to M-x org-export <enter>
> followed by `d' or `D' or `k'.)
>
> Regards and Thanks,
> Sharad
>
> On Mon, Feb 16, 2009 at 4:13 AM, Carsten Dominik <dominik@science.uva.nl 
> > wrote:
> Hi Sharad,
>
> thanks for your work.
>
> Instead for making a big change to org-exp.el  I would much rather  
> have
> a separate files with these functions, and a change to org-exp.el
> that is as minimal as possible.
>
> - Carsten
>
> On Feb 15, 2009, at 11:10 PM, Sharad Pratap wrote:
>
>> Hi Dominik,
>> I have added remind functions in `org-exp.el' by following icalendar,
>> functions.
>> As you must have known `ical2rem' kind of utilities is here, So I got
>> at least remind is superset to ical, there should not be any problem.
>>
>> I have tested few things like.
>> * remind `[' `%' handled
>>
>> In it two known bugs left.
>> 1. Duplication of code, another copy of icalendar .function for  
>> remind.
>> 2. empty description returning a single newline, that causes ugly  
>> output.
>>
>> I am attaching this with this mail `org-exp.el' (with remind)
>> and full `org2rem.el' that I have not changed from last time,
>> As I started work on `org-exp.el.'
>>
>> I will try to fix both 1, 2 as  I will get time.
>> But I think for most of usage it will work nice.
>>
>> --
>> Regards,
>> Sharad
>>
>> On Fri, Feb 13, 2009 at 12:55 PM, Carsten Dominik <dominik@science.uva.nl 
>> > wrote:
>> Hi Sharad,
>>
>> instead of a new patch, please send me just a full new version of
>> org2rem.el when you are done changing it.
>> Thanks.
>>
>> - Carsten
>>
>> On Feb 12, 2009, at 2:22 PM, Sharad Pratap wrote:
>>
>>> Hi Daniel,
>>>
>>> Actually I have used your proposed _regular expression_ only,
>>> and little rearrangement.
>>> Since my child was born last month I did not have much time.  
>>> Therefore, I did not test org2rem.
>>> Many congratulations to you on your sweet little bundle of joy!!
>>>
>>> I did not tested the last suggestion of Carsten but you seem to  
>>> overcome the problem I encountered.
>>> I also wanted to remove these three
>>>     (defvar org2rem-scheduled-reminders nil)
>>>     (defvar org2rem-deadline-reminders nil)
>>>     (defvar org2rem-pure-timestamps-reminders nil)
>>> global variables, with next patch by this week end.
>>>
>>> And finally Thanks you very much Daniel for `org2rem.el' I am  
>>> regular user of `remind'.
>>>
>>> On Thu, Feb 12, 2009 at 5:12 AM, Daniel Martins  
>>> <danielemc@gmail.com> wrote:
>>> Thanks Sharap,
>>>
>>> Since my child was born last month I did not have much time.  
>>> Therefore, I did not test org2rem.
>>>
>>> I did not tested the last suggestion of Carsten but you seem to  
>>> overcome the problem I encountered.
>>>
>>> I am also suggest to include this patch to expand Bastien original  
>>> org2rem.el
>>>
>>> Whenever I have time (to sleep!) I will test your scripts.
>>>
>>> Daniel
>>>
>>>
>>>
>>>
>>>
>>> 2009/2/11 Carsten Dominik <dominik@science.uva.nl>
>>>
>>> Hi Bastien,
>>>
>>> you wrote the original org2rem.el  Do you agree we should apply  
>>> this patch?
>>> I have not tested it as I do not use remind.
>>>
>>> - Carsten
>>>
>>> On Feb 11, 2009, at 4:33 PM, Sharad Pratap wrote:
>>>
>>>> Hi Carsten,
>>>> Please do apply it, (if you find it is fine.)
>>>> I have joined this mailing list today only,
>>>> so not able to include all peoples in thread.
>>>>
>>>> On Wed, Feb 11, 2009 at 8:51 PM, Carsten Dominik <dominik@science.uva.nl 
>>>> > wrote:
>>>> I have not followed this discussion - should I apply this patch
>>>> to org2rem.el in the distribution?
>>>>
>>>> - Carsten
>>>>
>>>>
>>>> On Feb 11, 2009, at 3:23 PM, Sharad Pratap wrote:
>>>>
>>>> Hi Daniel,
>>>>
>>>> Your regular expression working fine!!, I have made few change with
>>>> same regular expression, and it has worked for me.
>>>>
>>>> I wish `org2rem' could be as robust as `org-export-icalendar'.
>>>>
>>>> Like me you also want orgmode outside editor, So I have added to
>>>> executable script `org2remind' and `show-agenda'.
>> <orgremind.el><org2rem.el>
>
> <org-exp.el>


[-- Attachment #1.2: Type: text/html, Size: 7924 bytes --]

[-- Attachment #2: Type: text/plain, Size: 204 bytes --]

_______________________________________________
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

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2009-02-17 21:02 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-02-11 14:23 org-mode and remind integration Sharad Pratap
2009-02-11 15:21 ` Carsten Dominik
2009-02-11 15:33   ` Sharad Pratap
     [not found]     ` <8B4F1B14-BD08-4446-B642-9D0DAEAD56D2@uva.nl>
2009-02-11 23:42       ` Daniel Martins
2009-02-12 13:22         ` Sharad Pratap
     [not found]           ` <A5094B1B-1F14-4395-938E-2AB57422C776@uva.nl>
     [not found]             ` <5fb1c7f40902151410s16b415ddqfbfb986a8a89fba0@mail.gmail.com>
2009-02-15 22:43               ` Carsten Dominik
     [not found]                 ` <5fb1c7f40902160720x330896c2q530e38944463fdb9@mail.gmail.com>
2009-02-17 21:02                   ` Carsten Dominik

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).