[O] [PATCH] Org attach: use vc to find the git dir if it exists

2013-08-12 Thread Rémi Vanicat
Org attach use to fail to commit the attached file in git or git annex when the .git repository is not in the data sub-directory. This new code will use vc-git to find the .git file, and from this do what is needed for committing file into git or git annex. --- lisp/org-attach.el | 9 +

Re: [O] [WORG] How to ediff folded Org files?

2013-08-01 Thread Rémi Vanicat
this to org-mode (at least in contrib, or worg) would be really cool. -- Rémi Vanicat

Re: [O] [OT] Gnus mail tutorial?

2013-05-25 Thread Rémi Vanicat
Chua does) where one use dovecot to read maildir, letting gnus to connect to dovecot instead of reading maildir directly. -- Rémi Vanicat

Re: [O] Android MobileOrg: appointments without SCHEDULED/DEADLINE

2013-04-24 Thread Rémi Vanicat
Eric S Fraga e.fr...@ucl.ac.uk writes: Rémi Vanicat vani...@debian.org writes: Karl Voit devn...@karl-voit.at writes: Hi! * Matthew Jones bsdmatb...@gmail.com wrote: - If you have issues and you don't tell us then we have no way of helping you and the problem might not go away. I

Re: [O] Android MobileOrg and appointments; ICS export and Google Calendar

2013-04-23 Thread Rémi Vanicat
don't know what differ in my config, but here, entries with active time stamps are synced with my mobile agenda using MobileOrg on android. -- Rémi Vanicat

Re: [O] Android MobileOrg: appointments without SCHEDULED/DEADLINE

2013-04-23 Thread Rémi Vanicat
is that it do not translate 2013-05-07 Tue 9:00-11:00 +1w in a recurring event, and I would really like this to be solved. [...] -- Rémi Vanicat

[O] [PATCH] Re: orgtbl-to-generic with lfmt (wrong usage or bug)

2013-03-22 Thread Rémi Vanicat
*))) -- 1.7.10.4 -- Rémi Vanicat

Re: [O] Bugs in org-cycle-internal-local?

2012-12-27 Thread Rémi Vanicat
Bastien b...@altern.org writes: Rémi Vanicat vani...@debian.org writes: [...] Well, it was, I just skipped it inadvertantly. I can reproduce the problem, but don't have an easy fix at hand. If you find one, please let us know. This seem to do it From

Re: [O] Bugs in org-cycle-internal-local?

2012-12-18 Thread Rémi Vanicat
Bastien b...@altern.org writes: Hi Rémi, Rémi Vanicat vani...@debian.org writes: I've tried to use visibility cycling in outline minor mode[1] with ruby, I tried your minor mode with the minimal snippet you gave and it works well here. did you let the two space before the both def

[O] Bugs in org-cycle-internal-local?

2012-12-17 Thread Rémi Vanicat
) (define-key outline-minor-mode-map [(backtab)] 'org-global-cycle))) #+end_src [1]:http://orgmode.org/worg/org-faq.html#use-visibility-cycling-in-outline-mode -- Rémi Vanicat

Re: [O] MobileOrg, webdav, correct use of org-mobile-directory?

2012-08-20 Thread Rémi Vanicat
stamp-sync .SUFFIXES: .dat .org .stmp .org.stmp: curl -u $(USER):$(PASSWD) -T $ $(URL) touch $@ .dat.stmp: curl -u $(USER):$(PASSWD) -T $ $(URL) touch $@ clean: rm *.stmp #+end_src -- Rémi Vanicat

Re: [O] Org tasks from gnus

2012-04-23 Thread Rémi Vanicat
-expansion.html for other %:something. -- Rémi Vanicat

Re: [O] why was makefile changed to produce this?

2011-10-19 Thread Rémi Vanicat
~ emacs23-common: /usr/share/emacs/23.3/lisp/textmodes/makeinfo.elc emacs23-el: /usr/share/emacs/23.3/lisp/textmodes/makeinfo.el.gz [...] if updated regularly apt-file's database will contain every files in every package in debian. -- Rémi Vanicat

Re: [O] MobileOrg: Push more than the current week?

2011-07-04 Thread Rémi Vanicat
-on-weekday (string-to-number (format-time-string %w))) (org-mobile-push))) #+end_src [...] -- Rémi Vanicat

[O] [PATCH] Don't call calendar-absolute-from-gregorian in org-diary-class

2011-07-03 Thread Rémi Vanicat
calendar-absolute-from-gregorian return a number of day. But the result is used as if it was a (year month day) list. --- lisp/org-agenda.el |6 ++ 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 2bec518..66af554 100644 ---

Re: [O] [FEATURE] mobile-org on android don't show the hours of the event

2011-06-07 Thread Rémi Vanicat
Carsten Dominik carsten.domi...@gmail.com writes: Hi Remi, On Apr 3, 2011, at 1:45 PM, Rémi Vanicat wrote: Hello list, When looking at the agenda on my phone, I can't see the hours of the events I'm looking at. It seem the information is available (it's in the agenda.org that is used

Re: [O] Org Contacts, Gnus and Yasnippet Not Playing Nicely

2011-05-24 Thread Rémi Vanicat
/fallback-behavior () (setq yas/fallback-behavior '(apply completion-at-point))) (add-hook 'message-mode-hook 'set-yas/fallback-behavior) #+end_src -- Rémi Vanicat

[O] [FEATURE] mobile-org on android don't show the hours of the event

2011-04-03 Thread Rémi Vanicat
to the file mobile-checksums. pl (point-at-eol (delete-region (point-at-bol) (point-at-eol)) + (when time + (insert time )) (insert line before prefix /before) (beginning-of-line 1)) (and (looking-at [ \t]+) (replace-match ))) -- 1.7.4.1 -- Rémi Vanicat

[Orgmode] Re: Diary in ical export

2011-02-02 Thread Rémi Vanicat
, for more information look at the icalendar.el. this : %%(diary-anniversary 12 20 2010) My Son's %d%s Birthday. don't seen to be exported, but this: %%(diary-anniversary 12 20 2010) My Son's %d%s Birthday. is exported -- Rémi Vanicat ___ Emacs-orgmode

[Orgmode] [PATCH] Add explicit time zone to datetime exported to ical.

2010-12-22 Thread Rémi Vanicat
When exporting to ical, using localtime is incompatible with some software, using explicit universal time may failed with daylight saving time, so we need another possibility, that is localtime with explicit timezone. --- lisp/org-icalendar.el | 30 +- 1 files

[Orgmode] Re: Request for suggestions: multiple revision control systems/repositories + org

2010-12-19 Thread Rémi Vanicat
files org-mobile just work. It is `org-mobile-push’ and `org-mobile-pull’ that put a copy of all this in `org-mobile-directory’. -- Rémi Vanicat ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org

[Orgmode] Re: Including current time in agenda

2010-12-06 Thread Rémi Vanicat
this possibility. Great. That is exactly the information I want to have, but this only inserts an entry in today's agenda without any timestamps. you need to put the %%(jd:org-current-time) at the beginning of line, with no space before it whatsoever. -- Rémi Vanicat

[Orgmode] Exporting org-diary-class to icalendar

2010-12-06 Thread Rémi Vanicat
-return-value res) ad-do-it))) (ad-activate 'icalendar--convert-to-ical) --8---cut here---end---8--- -- Rémi Vanicat ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs

[Orgmode] Re: MobileOrg Android 0.4.5

2010-11-23 Thread Rémi Vanicat
preuve ou le témoignage que ce qui est recherché n'existe pas. -- Rémi Vanicat ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[Orgmode] Re: [PROPOSAL] Quick and easy installation instructions

2010-09-26 Thread Rémi Vanicat
saw me get the oh debian cold shoulder ... ;) LOL. On Debian you should use update-info-dir ( as in $ update-info-dir /path/to/infos to generate the dir file. (This may work on others distribution too, I don't know if it is a Debian specific tools) [...] -- Rémi Vanicat

[Orgmode] Re: Adding entries to Google calendar

2010-09-10 Thread Rémi Vanicat
) But there are still some problems with this. I'm now trying to make it work, but it's not of release quality yet. -- Rémi Vanicat ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman

[Orgmode] [PATCH] Allow iCalendar to use UTC for exported date-time.

2010-09-10 Thread Rémi Vanicat
Define a new variable org-icalendar-use-UTC-date-time that when non-nil make icalendar exporter to use UTC date-time for better compatibility with some other software (as GCALDaemon). --- lisp/org-icalendar.el | 16 ++-- 1 files changed, 14 insertions(+), 2 deletions(-) diff --git

[Orgmode] Re: ical export - google calendar woes

2010-09-10 Thread Rémi Vanicat
/Indianapolis or America/Indiana/Indianapolis all don't work either). The patch I just send here (http://article.gmane.org/gmane.emacs.orgmode/30207) should solve this issue. -- Rémi Vanicat ___ Emacs-orgmode mailing list Please use `Reply All' to send

[Orgmode] Re: ical export - google calendar woes

2010-09-10 Thread Rémi Vanicat
Rémi Vanicat vani...@debian.org writes: [...] The patch I just send here (http://article.gmane.org/gmane.emacs.orgmode/30207) should solve this issue. Mmm sending mail too early With this patch you have to set org-icalendar-use-UTC-date-time to t for it to work. -- Rémi Vanicat

[Orgmode] Re: [google] updated awk script for google to org conversion

2010-07-12 Thread Rémi Vanicat
that the file will only grow without being changed in the part that is already in the buffer. [...] -- Rémi Vanicat ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman

[Orgmode] Re: Hide timestamps for several days time range in agenda

2010-07-12 Thread Rémi Vanicat
Julien Barnier jul...@no-log.org writes: Hi, I'm currently trying to use the agenda a bit more, but there is one thing I didn't manage : If i've got a several days timerange entry, such as the following : *** 2010-07-22 jeu.--2010-07-23 ven. Paris [...] My question is : how do I hide

[Orgmode] Re: Non-breaking space

2010-04-29 Thread Rémi Vanicat
8 space) -- Rémi Vanicat ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[Orgmode] Re: Linking Mail ?

2010-04-29 Thread Rémi Vanicat
://www.emacswiki.org/emacs/GnusSpeed It's slow because I use nnimap :) A good solution for gnus+imap is http://sachachua.com/wp/2008/05/geek-how-to-use-offlineimap-and-the-dovecot-mail-server-to-read-your-gmail-in-emacs-efficiently/ Of course, it's way to much complicated, but it work. -- Rémi

[Orgmode] Re: Support (or not) for Emacs 21, and XEmacs

2010-04-16 Thread Rémi Vanicat
: will that branch be updated when I pull the next time? Not with you described config. -- Rémi Vanicat ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[Orgmode] Re: Where ends a subtree?

2010-03-28 Thread Rémi Vanicat
use org-mode another, better way? Add your todo at the end of the headline? put a ** rest of the headline subtree after the todo ? -- Rémi Vanicat ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode

[Orgmode] Re: Where ends a subtree?

2010-03-28 Thread Rémi Vanicat
: On Saturday 27 March 2010 05:27 am, Franz Heuser wrote: Hi, [...] -- Rémi Vanicat ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[Orgmode] Re: [babel] using tramp when tangling

2010-03-17 Thread Rémi Vanicat
)) (add-to-list 'path-collector file-name) --8---cut here---end---8--- -- Rémi Vanicat ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http

[Orgmode] Re: [OT] Emacs for email?

2009-12-02 Thread Rémi Vanicat
for actions to respond to which means you're using an inbox as a todo list. This is not effective. To come back to the initial discussion, note that gnus is well adapted for this: by default, a read mail do not show-up anymore, making everything automatically archived. [...] -- Rémi Vanicat

[Orgmode] Re: [OT] Emacs for email?

2009-12-02 Thread Rémi Vanicat
) to read my mail So: gmail --- offlineimap --- maildir --- dovecot --- gnus It is complicated, but I can read my mail from any computer, using gnus+IMAP if it's one of my computer, and gmail webmail for the rest. -- Rémi Vanicat ___ Emacs-orgmode

[Orgmode] Re: [OT] Emacs for email?

2009-12-02 Thread Rémi Vanicat
) or the topic (topic are a hierarchical organization of group). For this you use posting-style. -- Rémi Vanicat ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman

[Orgmode] Re: Cut the lines in the end

2009-09-14 Thread Rémi Vanicat
of course) -- Rémi Vanicat ___ 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