[Orgmode] Re: Running debian + emacs on my Android G1

2009-11-29 Thread Ivan Kanis
Friedrich Delgado Friedrichs frie...@nomaden.org wrote: I just upgraded (!) my G1 to CyanogenMod yesterday, because I want to try out emacs on it, too. I am wondering if you can you stills make call with the CyanogenMod? Take care, -- Ivan Kanis http://kanis.fr Nothing in life

[Orgmode] appointment implement variable warning time

2009-12-28 Thread Ivan Kanis
as it's already pretty complex. How could I add the number of minute in an entry in a way that's not obtrusive? Thanks for your ideas. -- Ivan Kanis http://kanis.fr Parting is all we know of heaven, And all we need of hell. -- Emily Dickinson

[O] bug#9695: allowed date range

2011-10-13 Thread Ivan Kanis
After investigating further 2011-10-17 --2011-10-30 works but not 2011-10-17--2011-10-30. The regexp for a timestamp is defined in org-ts-regexp : \\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}[^\r\n]*?\\) Shouldn't the trailing space be optional? -- Ivan Kanis http://kanis.fr When you're looking

[O] [PATCH] integration with bbdb 3.0

2011-12-28 Thread Ivan Kanis
Hi Bastien, The following patch fixes linking bbdb 3.0 records. Let me know if the patch needs improvement. Take care, Ivan Kanis diff --git a/emacs/org/org-bbdb.el b/emacs/org/org-bbdb.el index 61f8258..ddb7e4a 100644 --- a/emacs/org/org-bbdb.el +++ b/emacs/org/org-bbdb.el @@ -118,6 +118,9

Re: [O] [PATCH] integration with bbdb 3.0

2011-12-31 Thread Ivan Kanis
Carsten Dominik carsten.domi...@gmail.com wrote: On 28.12.2011, at 20:06, Ivan Kanis wrote: Hi Bastien, The following patch fixes linking bbdb 3.0 records. Let me know if the patch needs improvement. Have you signed FSF papers? Hi Carsten, Yes I have. -- Ivan Kanis http://kanis.fr I

[O] resolving conflicting appointments

2011-04-15 Thread Ivan Kanis
Hello, At the last two org camps we talked about conflicting appointments. I was thinking we could display on top of the calendar an agenda view of the target date. That way we can quickly see potential conflicts before confirming an appointment. What do you think? Take care, -- Ivan Kanis http

[O] Capturing outgoing gnus e-mail

2014-06-14 Thread Ivan Kanis
Hi, I would like to capture outgoing e-mail in my org file. I use the gcc mechanism in gnus with a nnml backend. I think I have read on the org mailing list that someone has implemented that feature. I did a search but could not find the article. I tried implementing it myself. I had a look at

[O] random weekly event

2014-07-15 Thread Ivan Kanis
Hi, I need to have org agenda (and then appt) manage an event once a week. The catch is that is should happen at a random day and hour. My thinking is that populating programmatically a year entry is probably the sanest way to go about it. Has anyone else done it? Ivan -- Repeated reboots of

Re: [O] random weekly event

2014-07-16 Thread Ivan Kanis
July, 15 at 23:58 Thorsten Jolitz wrote: Ivan Kanis i...@kanis.fr writes: I need to have org agenda (and then appt) manage an event once a week. The catch is that is should happen at a random day and hour. My thinking is that populating programmatically a year entry is probably the sanest

Re: [O] Org Community

2013-03-11 Thread Ivan Kanis
March, 10 at 13:01 Scott Randby wrote: However, I am concerned about the future of org. There is one individual who is poisoning the atmosphere by engaging in unfair and unfounded name calling that simply should not be included in messages to this list. I think we should ignore him. I have

Re: [O] Org-mode as a replacement for Google Reader

2013-03-26 Thread Ivan Kanis
Le 26 Mars à 13h49, Karl Voit a écrit : TL;DR: org-feed.el is not a doable replacement for Google Reader. What about alternatives? I use newsticker, it's part of emacs. -- Aide-toi, l'État ne t'aidera pas. -- Auguste Detœuf

Re: [O] Looking for a way to scrape a webpage to a org-mode note (text+images)

2013-04-16 Thread Ivan Kanis
April, 15 at 20:38 Itai kloog wrote: im looking for a way/wondering if anyone has a homebrew script he uses, to scrape a webpage into org. This is a long, long shot. I wrote some basic emacs-w3m scraping to login to Facebook. You will need to know elisp to make anything out of it.

[O] org-macro need to provide org-macs

2013-04-18 Thread Ivan Kanis
Just add (require 'org-macs) in org-macro.el. -- Elle n'était vêtue que de bonnes fortunes du jeu ou de la sottise de ses amants. -- Antoine Furetière

[O] APPT_WARNTIME not honored anymore in 8.0

2013-04-19 Thread Ivan Kanis
Hi, Suppose I have the following entry: ** Karaoke 2012-09-21 Fri 20:00 +1w :PROPERTIES: :APPT_WARNTIME: 17 :END: I should get a notice 17mn before 20:00 that I need to go to karaoke. Now it does the default 90mn. It's a regression. I might have time next week to look into it. --

Re: [O] APPT_WARNTIME not honored anymore in 8.0

2013-04-20 Thread Ivan Kanis
April, 19 at 19:48 Bastien wrote: I should get a notice 17mn before 20:00 that I need to go to karaoke. Now it does the default 90mn. It's a regression. I can't reproduce this -- I assume you added the appointment with `org-agenda-to-appt', right? AFAIK yes. I might have time next week to

[O] hard coded autoload file

2013-04-25 Thread Ivan Kanis
Hello, It seems each file has the name of the autoload file hard coded at the end. For example at the end org-element.el: ;; Local variables: ;; generated-autoload-file: org-loaddefs.el ;; End: It sucks for me as I generate autoload with a different name. I made a workaround so it's fine. I

Re: [O] hard coded autoload file

2013-04-26 Thread Ivan Kanis
April, 26 at 8:36 Bastien wrote: It sucks for me as I generate autoload with a different name. I made a workaround so it's fine. Why do you generate autoloads with a different name? I do my own packaging. I started before ELPA and el-get existed. I was dissatisfied with the Debian way. Now

[O] [PATCH] fix appointment warn time

2013-04-26 Thread Ivan Kanis
It seemed to be a boundary error. (point) was at the end of the timestamp which doesn't hold the org-appt-warntime property. foo.org illustrate what I have seen. Evaling the get-property sexp returns nil. The patch adds a function that goes at the beginning of the header to get the property. As

Re: [O] [PATCH] fix appointment warn time

2013-04-27 Thread Ivan Kanis
April, 26 at 19:01 Bastien wrote: The patch adds a function that goes at the beginning of the header to get the property. As a bonus it turns the string into a number. Please let me know if the patch is accepted or needs improvement. Can you try the attached patch instead? It works great

Re: [O] [PATCH] fix appointment warn time

2013-04-28 Thread Ivan Kanis
April, 27 at 14:02 Bastien wrote: It works great and it looks less expensive. Thank you! Great -- thanks for testing this. Still, I need to really understand what real problem it fixes... is it because some of your functions needs to check the property or is it during regular use of Org?

Re: [O] [PATCH] fix appointment warn time

2013-04-28 Thread Ivan Kanis
April, 28 at 10:59 Bastien wrote: Without your patch you should see that warntime is nil. Mhh... I don't see this. The call to (org-agenda) in your (progn...) will refresh the text-properties in foo.org and C-u C-x = show the property in both the agenda and foo.org. I clearly miss

Re: [O] [PATCH] fix appointment warn time

2013-05-14 Thread Ivan Kanis
Le 14 Mai à 10h36, Bastien a écrit : I tried it again on a more recent emacs (bzr from two weeks ago). Same result. Are you sure you removed your patch? :D Mhh... yes, I'm sure. Can anyone else reproduce Ivan's problem? Are you using bzr emacs? -- D'autres civilisations que la nôtre ont

Re: [O] [PATCH] fix appointment warn time

2013-05-14 Thread Ivan Kanis
Le 14 Mai à 13h49, Bastien a écrit : Can anyone else reproduce Ivan's problem? Are you using bzr emacs? Now I recall it happens on 24.1 and bzr. Let's hope someone else can reproduce. -- La différence entre un bon et un mauvais architecte réside en ce que le mauvais succombe à toutes les

Re: [O] [PATCH] fix appointment warn time

2013-05-14 Thread Ivan Kanis
Le 14 Mai à 16h08, Bastien a écrit : Hi Miguel, Miguel Ruiz rbeni...@yahoo.es writes: Yes, I can. Both Emacs 24.3 with Org-mode version 7.9.4 (7.9.4-1-ga5435f-elpa) and Org-mode version 8.0.2 (release_8.0.2-71-g5a1400) exhibits the problem than Ivan reports. For me it is solved with

[O] customize category width in agenda

2013-06-20 Thread Ivan Kanis
If I read the manual correctly the category is 10 characters wide. Is there a way to reduce it? -- New guy cross-connected phone lines with AC power bus. -- BOFH excuse #38

Re: [O] customize category width in agenda

2013-06-20 Thread Ivan Kanis
June, 20 at 15:03 Carsten Dominik wrote: On Jun 20, 2013, at 9:30 AM, Ivan Kanis i...@kanis.fr wrote: If I read the manual correctly the category is 10 characters wide. Is there a way to reduce it? Yes, you can, take a look at the variable org-agenda-prefix-format HTH Perfect

[O] Emacs Barcamp

2013-08-13 Thread Ivan Kanis
Hi, Following the success of the emacs conference, Bastien and I would like to arrange a barcamp. This is something informal involving about twelve persons. I envision this to be in Europe. It would be in French or English, I don't care. I am good at organizing stuff. I am a bad MC and bad

Re: [O] Emacs Barcamp

2013-08-14 Thread Ivan Kanis
Le 13 Août à 21h03, joa...@verona.se a écrit : It was I that mentioned Stockholm. Our company has an office we could probably use. But I think places to be are probably easy to come by, so do what you feel is easiest! How many people can sit at your office meeting room? I would like to visit

Re: [O] Emacs Barcamp

2013-08-14 Thread Ivan Kanis
Le 13 Août à 20h59, Nic Ferrier a écrit : I probably wouldn't attend if it's a weekend thing though so this would have to be a last resort. Thanks for offering venues. It's a weekend thing. -- Un roman commence par un coup de dés. -- Roger Vailland

Re: [O] Emacs Barcamp

2013-08-14 Thread Ivan Kanis
Le 14 Août à 15h39, joa...@verona.se a écrit : How many people can sit at your office meeting room? I would like to visit Stockholm. The office is limited to 150 people by fire regulations I think. But that would be crowded. I would like to be about 12. More is too much for me to handle.

Re: [O] Emacs Barcamp

2013-08-14 Thread Ivan Kanis
Le 14 Août à 16h38, joa...@verona.se a écrit : BTW with only 12 people it would be fun to do stuff like hands-on sessions and hacker sessions, WDYT? That's the spirit of a barcamp! Let's wait on Bastien's reply. -- L'histoire est un roman qui a été ; le roman est de l'histoire qui aurait pu

Re: [O] Emacs Barcamp

2013-08-19 Thread Ivan Kanis
Le 16 Août à 10h08, joa...@verona.se a écrit : Ivan Kanis i...@kanis.fr writes: Le 14 Août à 16h38, joa...@verona.se a écrit : BTW with only 12 people it would be fun to do stuff like hands-on sessions and hacker sessions, WDYT? That's the spirit of a barcamp! Let's wait on Bastien's

Re: [O] Emacs Barcamp

2013-08-22 Thread Ivan Kanis
August, 20 at 11:22 Bastien wrote: So I suggest we coordinate with each other, set the date/location in Paris, then announce it publicly. OK, when? -- Interference between the keyboard and the chair. -- BOFH excuse #58

[O] Training on how to program Emacs

2014-02-13 Thread Ivan Kanis
Hello, I will give a 3 days training in Nantes on how to extend Emacs with elisp. If there is interest I can talk also about org meta programming with org babel. The training date is from June, 30 to July, 2. I will speak in french (or English if everyone is comfortable with it). The maximum

[Orgmode] Agenda view with tags filter

2007-11-19 Thread Ivan Kanis
possible. Maybe I have missed something? Kind regards, -- Ivan Kanis http://kanis.fr Only the wise possess ideas; the greater part of mankind are possessed by them. -- Samuel Taylor Coleridge ___ Emacs-orgmode mailing list Remember: use `Reply

[Orgmode] Re: Agenda view with tags filter

2007-11-19 Thread Ivan Kanis
Hi Bastien, Bastien [EMAIL PROTECTED] writes: I was wondering if it's possible to have an agenda view with a filter on tags. Fox example I would like to have a daily agenda with only the :home: tag item listed. I suspect you're using an old version of Org. What version of Org are you

[Orgmode] Re: Agenda view with tags filter

2007-11-21 Thread Ivan Kanis
Bastien [EMAIL PROTECTED] writes: (org-add-agenda-custom-command '(h agenda ((org-agenda-skip-function '(org-agenda-skip-entry 'notregexp :home:)) (org-agenda-overriding-header Agenda with :home: tag: Thanks for the tip, you code did not quite work for me. I think

[Orgmode] Re: my GTD setup

2007-12-23 Thread Ivan Kanis
David O'Toole [EMAIL PROTECTED] writes: ;; This file is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation; either version 3, or (at your option) ;; any later version. Hi David, thanks

[Orgmode] Re: my GTD setup

2007-12-23 Thread Ivan Kanis
William Henney [EMAIL PROTECTED] writes: On Dec 23, 2007 5:20 AM, Ivan Kanis [EMAIL PROTECTED] wrote: David O'Toole [EMAIL PROTECTED] writes: ;; This file is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published

[Orgmode] Re: Strange bug, request for more info

2008-02-04 Thread Ivan Kanis
Carsten Dominik [EMAIL PROTECTED] writes: The bug happens when being in the agenda and trying to goto or show the origin location of an agenda entry by pressing SPC or RET. John reports that sometimes (for him several times a day), Hi Carsten, I have seen the bug and never thought much of

[Orgmode] Re: Opening links to Outlook items from Org mode (may be a FR)

2008-08-22 Thread Ivan Kanis
Manish [EMAIL PROTECTED] writes: I have to use Office and envy folks that can link to their emails (Gnus, VM etc.) and contacts (bbdb) from Org mode. I have a macro that moves outlook to local e-mail that can be picked by gnus. If you are interested, I will post it. -- Ivan http://kanis.fr

Re: [Orgmode] Re: Opening links to Outlook items from Org mode (may be a FR)

2008-08-25 Thread Ivan Kanis
Manish [EMAIL PROTECTED] writes: On Fri, Aug 22, 2008 at 1:14 PM, Ivan Kanis wrote: Manish writes: I have to use Office and envy folks that can link to their emails (Gnus, VM etc.) and contacts (bbdb) from Org mode. I have a macro that moves outlook to local e-mail that can be picked

[O] Org Camp Paris

2012-09-15 Thread Ivan Kanis
Hi Bastien, The last time we did this was two years ago IIRC. How about we organize it again? Is Frederic Couchet on the org mailing list? -- Ivan Kanis http://ivan.kanis.fr Good breeding consists in concealing how much we think of ourselves and how little we think of the other person

[O] Short article on how I implement my GTD

2012-10-22 Thread Ivan Kanis
Hi Org moders, I have written a short article: http://ivan.kanis.fr/gtd-and-org-mode.html If there's enough interest I will writ more. Take care, -- Ivan Kanis http://ivan.kanis.fr We must strive to reach that simplicity that lies beyond sophistication. -- John Gardner

[O] Emacs user conference

2012-12-06 Thread Ivan Kanis
can give a talk on GTD with org mode. And since we are speaking of GTD, what need to happens next for this event to happen? -- Ivan Kanis http://ivan.kanis.fr Don't look back unless you intend to go that way. -- Marc Holm

Re: [O] Emacs user conference

2012-12-07 Thread Ivan Kanis
or August because most people takes their holiday then... [1] Take care, Ivan Kanis [1] Well in France at least ;)

Re: [O] Emacs user conference

2012-12-08 Thread Ivan Kanis
to be part of it if it happens, I have some experience with organizing big events. That's great. I have never done it. -- Ivan Kanis http://ivan.kanis.fr 'Tis better to have loved and lost Than never have loved at all. -- Alfred, Lord Tennyson

[O] Emacs conference 30/3/2013 in London

2012-12-18 Thread Ivan Kanis
Hello, I am forwarding Alex e-mail from the emacs conference mailing list. I can confirm that the date for the conf is 30th March. It will be held at Forward, here: http://www.forward.co.uk/contact The venue can hold 100 people and there are various breakout areas, which I think will be ideal

[O] [RFC] warn time for appointments

2012-02-04 Thread Ivan Kanis
with you I will find the time to do it. Take care, -- Ivan Kanis http://kanis.fr Nothing in life is to be feared. It is only to be understood. -- Marie Curie

[O] patch for warning time (first baby sted)

2012-02-19 Thread Ivan Kanis
Hi, This patch implements warn time for org appt. It only works on emacs bzr (the variable appt-warning-time-regexp appears in it). You need to add the warntime in the text of the entry, like so : * doctor warntime 10 2012-02-19 10:00 or * doctor warntime 10 2012-02-19 10:00 The patch is

[O] agenda appt warn time (baby step part 2)

2012-02-23 Thread Ivan Kanis
Hi, The previous patch I sent was completely buggy. This one works but doesn't fulfill my RFC. I think the warn time should be somewhere within the time stamp... diff --git a/emacs/org/org-agenda.el b/emacs/org/org-agenda.el index 780794e..2a8e926 100644 --- a/emacs/org/org-agenda.el +++

Re: [O] [RFC] warn time for appointments

2012-03-23 Thread Ivan Kanis
In bzr emacs there is a new variable called appt-warning-time-regexp. It contains a string for how many minutes we want to be reminded of an appointment... I got no reply to my RFC and to my tentative patches. Does that mean everybody is happy with the default 12 minutes warning time? -- Ivan

Re: [O] [RFC] warn time for appointments

2012-03-25 Thread Ivan Kanis
Peter Münster pmli...@free.fr wrote: On Fri, Mar 23 2012, Ivan Kanis wrote: I got no reply to my RFC and to my tentative patches. Does that mean everybody is happy with the default 12 minutes warning time? No, I'm not happy with 12 minutes. But there is https://github.com/p-m/org-notify

Re: [O] agenda appt warn time (baby step part 2)

2012-04-24 Thread Ivan Kanis
-notify.el by Peter? Someone suggested that on the mailing list. It's on my todo list. -- Ivan Kanis http://ivan.kanis.fr Art washes from the soul the dust of everyday life. -- Pablo Picasso

[O] implement appt warntime

2012-07-16 Thread Ivan Kanis
SCHEDULED: 2012-07-16 Mon 10:00 :PROPERTIES: :WARNTIME: 5 :END: Would you integrate such a functionality? I might code it if I find the time. Take care, -- Ivan Kanis http://ivan.kanis.fr A great teacher is one who realizes that he himself is also a student and whose goal is not dictate

Re: [O] implement appt warntime

2012-08-19 Thread Ivan Kanis
Hi Bastien, Bastien b...@gnu.org a écrit Hi Ivan, Ivan Kanis ivan.ka...@googlemail.com writes: I could use properties instead. For example: ** an appointment with a reminder 5 minutes before 10:00 SCHEDULED: 2012-07-16 Mon 10:00 :PROPERTIES: :WARNTIME: 5 :END: I've

Re: [O] implement appt warntime

2012-08-21 Thread Ivan Kanis
Hey Bastien, Bastien b...@altern.org wrote: Indeed. It should works fine now, please test and tell me. Works great, thank you! -- Ivan Kanis http://ivan.kanis.fr If it works, it's obsolete. -- Marshall McLuhan

[Orgmode] Re: Org-mode and appt

2010-04-17 Thread Ivan Kanis
://kanis.fr/appointment-implement-variable-warning-time.html -- Ivan Kanis http://kanis.fr When you're looking at life In a strange new room Maybe drowning soon Is this the start of it all? -- Ian Curtis ___ Emacs-orgmode mailing list Please use

[Orgmode] stuck project and check boxes

2010-08-27 Thread Ivan Kanis
? Kind regards, -- Ivan Kanis http://kanis.fr Only the wise possess ideas; the greater part of mankind are possessed by them. -- Samuel Taylor Coleridge ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode

Re: [O] (org-agenda-to-appt) with sexp org-diary-class entry?

2014-12-08 Thread Ivan Kanis
December, 05 at 8:39 Benjamin Slade wrote: None of my events which are scheduled with org-diary-class sexp entries seem to get pushed with (org-agenda-to-appt) (for triggering alarms etc.). Is this simply a limitation of sexp org-diary-class? Is there are workaround, or would it be better