[Orgmode] Weird behaviour with org-yank and org-startup-indented

2010-10-15 Thread Julien Danjou
not. I've found that setting org-startup-indented to nil fix that behaviour. What's wrong? -- Julien Danjou // ᐰhttp://julien.danjou.info ___ 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

Re: [Orgmode] Weird behaviour with org-yank and org-startup-indented

2010-10-18 Thread Julien Danjou
selection seems to return the start of the line. I've done this then: * TODO Blalaundo I go on `u', press C-space, then C-e. The M-; and execute (x-selection-value), which returns: "undo". So far so good. But if I go on `u'

Re: [Orgmode] Weird behaviour with org-yank and org-startup-indented

2010-10-20 Thread Julien Danjou
On Mon, Oct 18 2010, Julien Danjou wrote: > I've done this then: > > * TODO Blalaundo > > I go on `u', press C-space, then C-e. The M-; and execute > (x-selection-value), which returns: "undo". > > So far so good. But if I go on `u', press C-sp

Re: [Orgmode] Weird behaviour with org-yank and org-startup-indented

2010-10-20 Thread Julien Danjou
it is: :-) I did not mean to be rude. :) -- Julien Danjou // ᐰhttp://julien.danjou.info ___ 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] [PATCH] Fix typo

2010-10-28 Thread Julien Danjou
Signed-off-by: Julien Danjou --- ORGWEBPAGE/Changes.org |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ORGWEBPAGE/Changes.org b/ORGWEBPAGE/Changes.org index 549aed4..9a6b934 100644 --- a/ORGWEBPAGE/Changes.org +++ b/ORGWEBPAGE/Changes.org @@ -374,7 +374,7 @@ on Worg

[Orgmode] [PATCH] org-compat: defalias string-match-p rather than defun

2010-10-29 Thread Julien Danjou
Signed-off-by: Julien Danjou --- lisp/org-compat.el |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/org-compat.el b/lisp/org-compat.el index d55a83e..47a6599 100644 --- a/lisp/org-compat.el +++ b/lisp/org-compat.el @@ -372,11 +372,11 @@ TIME defaults to the

[Orgmode] [PATCH] org-agenda: add support for category icons

2010-10-29 Thread Julien Danjou
Signed-off-by: Julien Danjou --- doc/org.texi |4 +++ lisp/org-agenda.el | 65 +++ 2 files changed, 63 insertions(+), 6 deletions(-) diff --git a/doc/org.texi b/doc/org.texi index aa4f30b..41121d3 100644 --- a/doc/org.texi +++ b/doc

Re: [Orgmode] [PATCH] Fix typo

2010-10-29 Thread Julien Danjou
On Fri, Oct 29 2010, Bastien wrote: > PS: merging using pw didn't work so I did the change manually, > meaning it will appear as *mine* - hope you don't mind! You're forgiven. :) -- Julien Danjou // ᐰhttp://julien.danjou.info

[Orgmode] [PATCH] org-agenda: return multiple results when sexp return a string with "; "

2010-11-03 Thread Julien Danjou
ng results on "; " allows to have an independant entry on each event and displays things correctly. Signed-off-by: Julien Danjou --- lisp/org.el |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index cb99712..effe9b2 100644 --- a/li

Re: [Orgmode] Re: extremely weird "bad sexp" errors with org-google-weather [was: extremely weird "bad sexp" errors]

2010-11-04 Thread Julien Danjou
On Wed, Nov 03 2010, Niels Giesen wrote: > Of course, having this error intercepted in org-google-weather or in the > general handling by org-mode would be preferable. I've added such a fix, hoping it will work better. :) -- Julien Danjou // ᐰhttp://julien.

[Orgmode] [PATCH] org-agenda: fix org-agenda-category-icon-alist defcustom type

2010-11-05 Thread Julien Danjou
* list/org-agenda.el (org-agenda-category-icon-alist): Fix defcustom type. Signed-off-by: Julien Danjou --- lisp/org-agenda.el | 15 +++ 1 files changed, 7 insertions(+), 8 deletions(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 9dbda4d..68aaa86 100644 --- a

Re: [Accepted] [Orgmode] org-agenda: fix org-agenda-category-icon-alist defcustom type

2010-11-05 Thread Julien Danjou
On Fri, Nov 05 2010, Bastien Guerry wrote: Thanks. Clearly this patch works fine, but it's probably not as good as it could be. I suck at defcustom, so if anyone can do a better job on the properties part, please go ahead. -- Julien Danjou // ᐰhttp://julien.danjou

[Orgmode] [PATCH 1/2] org-agenda: introduce org-agenda-today and org-agenda-get-day-face

2010-11-08 Thread Julien Danjou
-today. Signed-off-by: Julien Danjou --- lisp/org-agenda.el | 65 ++- 1 files changed, 33 insertions(+), 32 deletions(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 583e670..98371e6 100644 --- a/lisp/org-agenda.el +++ b/lisp/org

[Orgmode] [PATCH 2/2] org-agenda: add org-agenda-day-face-function

2010-11-08 Thread Julien Danjou
* lisp/org-agenda.el (org-agenda-day-face-function): New variable. (org-agenda-get-day-face): Use org-agenda-day-face-function. Signed-off-by: Julien Danjou --- lisp/org-agenda.el | 20 +++- 1 files changed, 15 insertions(+), 5 deletions(-) diff --git a/lisp/org-agenda.el b

Re: [Orgmode] [PATCH 1/2] org-agenda: introduce org-agenda-today and org-agenda-get-day-face

2010-11-08 Thread Julien Danjou
6ff Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Mon, 8 Nov 2010 18:23:07 +0100 Subject: [PATCH] org-agenda: add org-agenda-day-face-function * lisp/org-agenda.el (org-agenda-day-face-function): New variable. (org-agenda-get-day-face): Use org-agenda-day-face-function. Signed-off-by:

[Orgmode] Re: [PATCH 1/2] org-agenda: introduce org-agenda-today and org-agenda-get-day-face

2010-11-09 Thread Julien Danjou
On Mon, Nov 08 2010, Julien Danjou wrote: I just noticed a little bug if org-agenda-todayp is called with nil as argument. Here's a fixed version of that patch. >From c93cf37f9c41f3fb71fd44e0ce2a4c9ba30224cc Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Mon, 8 Nov 2010 15:25:

Re: [Orgmode] [PATCH 2/2] org-agenda: add org-agenda-day-face-function

2010-11-12 Thread Julien Danjou
Sep 17 00:00:00 2001 From: Julien Danjou Date: Mon, 8 Nov 2010 15:25:22 +0100 Subject: [PATCH] org-agenda: introduce org-agenda-today, org-agenda-get-day-face and org-agenda-day-face-function * lisp/org-agenda.el (org-agenda-today): New function. (org-agenda-get-day-face): New function. (org-timel

Re: [Orgmode] [PATCH 2/2] org-agenda: add org-agenda-day-face-function

2010-11-12 Thread Julien Danjou
gory) (string= "Vacation" category)) (return 'org-agenda-date-weekend)) (when face (return face))) -- Julien Danjou // ᐰhttp://julien.danjou.info ___ Emacs-orgm

[Orgmode] [PATCH] org-agenda: convert category to string

2010-11-24 Thread Julien Danjou
* org-agenda.el (org-format-agenda-item): Convert category to a string if it is a symbol. This fixes the following call to org-agenda-get-category-icon which fails if category is not a string. Signed-off-by: Julien Danjou --- lisp/org-agenda.el |4 +++- 1 files changed, 3 insertions(+), 1

[Orgmode] [PATCH] Add org-agenda-todo-ignore-timestamp

2010-11-25 Thread Julien Danjou
* lisp/org-agenda.el: Add org-agenda-todo-ignore-timestamp. (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item): Honor org-agenda-todo-ignore-timestamp. * doc/org.texi: Mention org-agenda-todo-ignore-timestamp. Signed-off-by: Julien Danjou --- doc/org.texi |8 -- lisp

[Orgmode] [PATCH] org-agenda: rework ndays and span handling

2010-11-29 Thread Julien Danjou
org-agenda-ndays by org-agenda-current-span. * org.texi, orgguide.texi: Replace org-agenda-ndays by org-agenda-span. Signed-off-by: Julien Danjou --- Hi, This patch is pretty huge, so I'll give a bit of context about it. I'm weird, but I used org-agenda-ndays set to 14. Unfortuna

Re: [Orgmode] [PATCH] org-agenda: rework ndays and span handling

2010-11-29 Thread Julien Danjou
for custom commands though, any volunteer? -- Julien Danjou // ᐰhttp://julien.danjou.info pgpfEpUZzKv7e.pgp Description: PGP signature ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http

Re: [Orgmode] Re: Enhancing the Org/Gnus experience

2010-11-29 Thread Julien Danjou
ng which augments what you sent with some simple error > handling. That looks like something I'd like to see added to Gnus. If one of you can provide a clean patch and have signed FSF papers I'd be happy to review and merge it. -- Julien Danjou // ᐰhttp://julien.danjou.info pgpW

[Orgmode] [PATCH 1/4] Rename org-agenda-today to org-today.

2010-11-29 Thread Julien Danjou
Signed-off-by: Julien Danjou --- lisp/org-agenda.el | 18 ++ lisp/org.el|6 ++ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 48856c9..aee7ca7 100644 --- a/lisp/org-agenda.el +++ b/lisp/org

[Orgmode] [PATCH 4/4] org: use org-today in habits auto repeat

2010-11-29 Thread Julien Danjou
* org.el (org-auto-repeat-maybe): Use org-today. Signed-off-by: Julien Danjou --- lisp/org.el |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 6c4c433..7a76559 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -11393,13 +11393,13 @@ This

[Orgmode] [PATCH 2/4] org-habit: Use org-today.

2010-11-29 Thread Julien Danjou
* org-habit.el: Use org-today. Signed-off-by: Julien Danjou --- lisp/org-habit.el | 10 +++--- 1 files changed, 3 insertions(+), 7 deletions(-) diff --git a/lisp/org-habit.el b/lisp/org-habit.el index 394b4fb..04a2328 100644 --- a/lisp/org-habit.el +++ b/lisp/org-habit.el @@ -197,10

[Orgmode] [PATCH 3/4] org-capture: use org-today

2010-11-29 Thread Julien Danjou
* org-capture.el: Use org-today. Signed-off-by: Julien Danjou --- lisp/org-capture.el |9 ++--- 1 files changed, 2 insertions(+), 7 deletions(-) diff --git a/lisp/org-capture.el b/lisp/org-capture.el index a5c6a4d..7d0f1ac 100644 --- a/lisp/org-capture.el +++ b/lisp/org-capture.el

Re: [Orgmode] [PATCH 1/4] Rename org-agenda-today to org-today.

2010-11-30 Thread Julien Danjou
it has no sense to be defined as an agenda function. -- Julien Danjou // ᐰhttp://julien.danjou.info pgpSe927CaWnm.pgp Description: PGP signature ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@g

Re: [Orgmode] [PATCH] org-agenda: rework ndays and span handling

2010-12-01 Thread Julien Danjou
) to a given date, the view resets to the > default (well, to single day view in my case). I prefer the view to > remain as I have specified it last until I change it myself. Good catch. Patch updated fixing that. From 884f93e653ab82e37d34a72d33a87050e49d7493 Mon Sep 17 00:00:00 2001 From: J

Re: [Orgmode] [PATCH] org-agenda: rework ndays and span handling

2010-12-01 Thread Julien Danjou
ch on master. From f265c3fa8cbf448a13f4df5161b077cbad9dd659 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Fri, 26 Nov 2010 14:22:17 +0100 Subject: [PATCH] org-agenda: rework ndays and span handling * org-agenda.el (org-agenda-custom-commands-local-options): Allow org-agenda-span to be a symbol. (org-agenda-ndays): Make obsolet

[Orgmode] Re: [PATCH] org-agenda: rework ndays and span handling

2010-12-03 Thread Julien Danjou
wever this data is lost and replaced with '1 days' if > moving forwards or backwards in the agenda with 'f' and 'b' or jumping > to a date with 'j'. Yep, that's a bug. I've fixed it, new version attached. From 8c3bd1ca371bdb39ab1b64f323154a8135

Re: [Orgmode] Re: [PATCH] org-agenda: rework ndays and span handling

2010-12-03 Thread Julien Danjou
k it's ok. Here it is. From decbd6fdab2211c435dd174b84c3945c6aaf6346 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Fri, 26 Nov 2010 14:22:17 +0100 Subject: [PATCH] org-agenda: rework ndays and span handling * org-agenda.el (org-agenda-custom-commands-local-options): Allow org-agenda-span to be a symbol. (org-agenda-

Re: [Accepted] [Orgmode] Re: [PATCH] org-agenda: rework ndays and span handling

2010-12-06 Thread Julien Danjou
e next time! :) -- Julien Danjou // ᐰhttp://julien.danjou.info pgpEwFDkgqcjl.pgp Description: PGP signature ___ 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

Re: [Orgmode] Including current time in agenda

2010-12-06 Thread Julien Danjou
ks for any thoughts/suggestions. (defun jd:org-current-time () "Return current-time if date is today." (when (equal date (calendar-current-date)) (format-time-string "%H:%M Current time" (current-time And use %%(jd:org-current-time) in an entry. I think this is

Re: [Orgmode] Including current time in agenda

2010-12-06 Thread Julien Danjou
On Mon, Dec 06 2010, Suvayu Ali wrote: > That is exactly the information I want to have, but this only inserts an > entry in today's agenda without any timestamps. You are wrong. It does insert an entry with a timestamp. -- Julien Danjou // ᐰhttp://julien.danjou.info pgp2KU

[Orgmode] [PATCH] org-agenda: rewrite mode-line

2010-12-06 Thread Julien Danjou
-agenda-toggle-time-grid): Stop calling org-agenda-set-mode-name. (org-agenda-set-mode-name): Rewrite mode-name value using dynamic evaluation with :eval and other advanced format. Signed-off-by: Julien Danjou --- lisp/org-agenda.el | 66 --- 1 files

[Orgmode] [PATCH] org: remove useless computed value in org-make-tags-matcher

2010-12-09 Thread Julien Danjou
* org.el (org-make-tags-matcher): Remove useless cat-p value. Signed-off-by: Julien Danjou --- lisp/org.el |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index e03e9ca..6474126 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -12381,7 +12381,7

[Orgmode] [PATCH] org-entry-properties: enhance docstring

2010-12-09 Thread Julien Danjou
* org.el (org-entry-properties): Enhance docstring. Signed-off-by: Julien Danjou --- lisp/org.el |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 6474126..b7ae6ae 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -13381,7 +13381,7 @@ if the

Re: [Orgmode] Re: Release 7.4

2010-12-10 Thread Julien Danjou
nge `org-version' in org.el. -- Julien Danjou ❱ http://julien.danjou.info pgpRHCdFniL7m.pgp Description: PGP signature ___ 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

Re: [Orgmode] [PATCH] org-agenda: rewrite mode-line

2010-12-12 Thread Julien Danjou
t-mode-name' whenever one of the value change used in that function changes. This is probably one of the reason why :eval property has been invented, I guess. :-) -- Julien Danjou ❱ http://julien.danjou.info pgpTGP7a2Vush.pgp Description: PG

[Orgmode] [PATCH] org: rework property set

2010-12-13 Thread Julien Danjou
completing-date))) You can read a birthday property value using `org-read-date', which is by far more convenient than the usual org-completing-read. Signed-off-by: Julien Danjou --- lisp/org-capture.el | 24 +--- lisp/org.el | 78 ++

[Orgmode] Re: [PATCH] org: rework property set

2010-12-14 Thread Julien Danjou
lly, but last time I did that IIRC and Carsten asked me to resend the patch with my text in the commit message. So please someone really tell me what I should do ! :-) -- Julien Danjou ❱ http://julien.danjou.info pgpNoC0pAskNu.pgp Description: PGP signature

Re: [Orgmode] Re: [PATCH] org: rework property set

2010-12-14 Thread Julien Danjou
..' you should write after the ---. Ok, I see what you mean. That's clear, I should have splitted my commit message in 2 parts. :) -- Julien Danjou ❱ http://julien.danjou.info pgpy60zsq8Yoz.pgp Description: PGP signature ___ Emacs-orgmode mai

[Orgmode] [PATCH 1/2] org-gnus: trim date

2010-12-14 Thread Julien Danjou
* org-gnus.el (org-gnus-store-link): Trim date. Signed-off-by: Julien Danjou --- lisp/org-gnus.el |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lisp/org-gnus.el b/lisp/org-gnus.el index fccd3e9..32641bf 100644 --- a/lisp/org-gnus.el +++ b/lisp/org-gnus.el @@ -151,7

[Orgmode] [PATCH 2/2] Allow to retrieve email link date

2010-12-14 Thread Julien Danjou
* org.el (org-email-link-description): Allow to retrieve email link date. Signed-off-by: Julien Danjou --- lisp/org.el |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 79c5bf8..7841198 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -1321,6

[Orgmode] [PATCH] org-agenda: allow to negate skip conditions

2010-12-14 Thread Julien Danjou
* org-agenda.el (org-agenda-skip-if): Allow to negate conditions. Signed-off-by: Julien Danjou --- lisp/org-agenda.el | 33 + 1 files changed, 21 insertions(+), 12 deletions(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index f476449..537a421 100644

Re: [Orgmode] [PATCH] org-agenda: allow to negate skip conditions

2010-12-14 Thread Julien Danjou
On Tue, Dec 14 2010, Julien Danjou wrote: > * org-agenda.el (org-agenda-skip-if): Allow to negate conditions. This was not meant to be sent as it is. Forget it. -- Julien Danjou ❱ http://julien.danjou.info pgpO9W4PRwX9A.pgp Description: PGP signat

Re: [Orgmode] Re: [PATCH] org: rework property set

2010-12-16 Thread Julien Danjou
t message, for sure. -- Julien Danjou ❱ http://julien.danjou.info pgper0bRLrfFv.pgp Description: PGP signature ___ 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] org: rework property set

2010-12-16 Thread Julien Danjou
duplication between `org-capture' and `org-set-property'. Signed-off-by: Julien Danjou --- lisp/org-capture.el | 24 +--- lisp/org.el | 78 ++ 2 files changed, 54 insertions(+), 48 deletions(-) diff --git a/lisp/org-cap

[Orgmode] [PATCH] Fix org-agenda-prefix-format docstring

2010-12-17 Thread Julien Danjou
* org-agenda.el (org-agenda-prefix-format): Add missing `search' item in docstring. Signed-off-by: Julien Danjou --- lisp/org-agenda.el |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 9af3eaa..48befb2 100644 --- a

[Orgmode] [PATCH 1/3] Add org-eval

2010-12-17 Thread Julien Danjou
* org-agenda.el (org-eval): New function. Signed-off-by: Julien Danjou --- lisp/org-agenda.el |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 19535b4..a23d7d7 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el

[Orgmode] [PATCH 2/3] org-capture: use org-eval

2010-12-17 Thread Julien Danjou
* org-capture.el (org-capture-fill-template): Use org-eval. --- lisp/org-capture.el |5 + 1 files changed, 1 insertions(+), 4 deletions(-) diff --git a/lisp/org-capture.el b/lisp/org-capture.el index b85b011..29ecbc1 100644 --- a/lisp/org-capture.el +++ b/lisp/org-capture.el @@ -1206,10 +

[Orgmode] [PATCH 3/3] org-agenda: allow %() in prefix format

2010-12-17 Thread Julien Danjou
* org-agenda.el (org-compile-prefix-format): Allow %() expression. Signed-off-by: Julien Danjou --- lisp/org-agenda.el | 25 +++-- 1 files changed, 15 insertions(+), 10 deletions(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index a23d7d7..e0b54b8 100644 --- a

[Orgmode] [PATCH] org-scan-tags: remove useless variable

2010-12-21 Thread Julien Danjou
* lisp/org.el (org-scan-tags): remove useless todo variable. Signed-off-by: Julien Danjou --- lisp/org.el |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 3cecca7..85898ab 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -12198,7 +12198,7

[Orgmode] [PATCH] Always return refreshed category

2010-12-22 Thread Julien Danjou
categories. (org-prepare-agenda-buffers): Do not manually refresh categories. It seems a very bad thing to call manually for a category refresh. It seems better to try to refresh if we do not have a category. Signed-off-by: Julien Danjou --- lisp/org-archive.el |1 - lisp/org-clock.el

[Orgmode] [PATCH] org-agenda: simplify start/stop/duration time computing

2010-12-22 Thread Julien Danjou
* org-agenda.el (org-format-agenda-item): Simplify time comuting. Signed-off-by: Julien Danjou --- lisp/org-agenda.el | 31 +++ 1 files changed, 11 insertions(+), 20 deletions(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 1cdaaa0..8f597f5 100644

[Orgmode] Re: [PATCH] Always return refreshed category

2010-12-23 Thread Julien Danjou
egory) > - (org-refresh-category-properties) > - (get-text-property pos 'org-category > + (progn (org-refresh-category-properties) > +(get-text-property pos 'org-category) > > (defun org-refresh-category-properties () >

[Orgmode] Re: [PATCH] Always return refreshed category

2010-12-24 Thread Julien Danjou
f95e9187a4d Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Fri, 24 Dec 2010 17:32:45 +0100 Subject: [PATCH] Fix ??? in category * org.el (org-refresh-category-properties): Do not set ??? as default category if no default. Signed-off-by: Julien Danjou --- lisp/org.el |3 +-- 1 files chang

[Orgmode] [PATCH] org-plist-delete rewrite

2010-12-24 Thread Julien Danjou
* org-macs.el (org-plist-delete): Rewrite faster. * org.el (org-plist-delete): Remove duplicate from org-macs.el. Signed-off-by: Julien Danjou --- lisp/org-macs.el | 16 +++- lisp/org.el | 10 -- 2 files changed, 7 insertions(+), 19 deletions(-) diff --git a/lisp

Re: [Orgmode] [PATCH] org-plist-delete rewrite

2010-12-24 Thread Julien Danjou
On Fri, Dec 24 2010, Julien Danjou wrote: Sorry, the replacement function is not that good since it can looks for value. But at least one of the 2 identical function should be removed, probably the one in org.el -- Julien Danjou ❱ http://julien.danjou.info pgp65KQpFmR00.pgp Description: PGP

Re: [Orgmode] Re: [PATCH] Always return refreshed category

2010-12-27 Thread Julien Danjou
ep 17 00:00:00 2001 From: Julien Danjou Date: Wed, 22 Dec 2010 15:00:27 +0100 Subject: [PATCH] Always return refreshed category * org-icalendar.el (org-print-icalendar-entries): Do not manually refresh categories. * org-clock.el (org-clock-insert-selection-line): Do not manually refresh

Re: [Orgmode] Re: [PATCH] Always return refreshed category

2010-12-27 Thread Julien Danjou
On Mon, Dec 27 2010, Julien Danjou wrote: > On Fri, Dec 24 2010, Carsten Dominik wrote: > >> I have reverted the patch for now. It would be great if the two of >> you could continue to try to fix it before we make another attempt. > > Here's an updated patch with

Re: [Orgmode] Re: [PATCH] Always return refreshed category

2011-01-03 Thread Julien Danjou
removed the removal from the patch. :) -- Julien Danjou ❱ http://julien.danjou.info pgpmRUCO36qvp.pgp Description: PGP signature ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://list

Re: [Orgmode] [RFC] Give org-format-agenda-item a real format

2011-01-17 Thread Julien Danjou
you feedback but probably not before next week due to > current commitments... Thanks Eric. I really need testing and review to push this forward. -- Julien Danjou ❱ http://julien.danjou.info pgp0EBnUYekKt.pgp Description: PGP signature ___ Emacs-

Re: [Orgmode] Encrypting org-mode files

2011-01-17 Thread Julien Danjou
On Mon, Jan 17 2011, Marcelo de Moraes Serpa wrote: > What is the de-facto way to encrypt using org? I now I can use GnuPG, > but I'd prefer something that integrates better and auto-decrypts when > the agenda is triggered. Take a look at `org-crypt' package. -- J

Re: [Orgmode] Re: Bug: Jumping to a date in the agenda changes view back to 'day' [7.4 (release_7.4.80.g0e5e5)]

2011-01-17 Thread Julien Danjou
c7f2 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Mon, 17 Jan 2011 16:05:28 +0100 Subject: [PATCH] Fix agenda span on date jump * org-agenda.el (org-agenda-list): Use org-agenda-current-span as a possible default span if it is set. Signed-off-by: Julien Danjou --- lisp/org-agenda.el |

Re: [Orgmode] Re: Enhancing the Org/Gnus experience

2011-01-17 Thread Julien Danjou
er stuff > (inlined code with = markers, etc.)... Any news on this? -- Julien Danjou ❱ http://julien.danjou.info pgpuVIh6l576r.pgp Description: PGP signature ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list.

Re: [Orgmode] Re: Bug: Jumping to a date in the agenda changes view back to 'day' [7.4 (release_7.4.80.g0e5e5)]

2011-01-17 Thread Julien Danjou
On Mon, Jan 17 2011, Julien Danjou wrote: > Attached is a patch that should fix that, even for future use of > `org-agenda-list' with the span unspecified. :) This patch has a side effect for me: my org-agenda-span is set to 14, and I've no way to reset it without quittin

Re: [Orgmode] Re: Bug: Jumping to a date in the agenda changes view back to 'day' [7.4 (release_7.4.80.g0e5e5)]

2011-01-17 Thread Julien Danjou
you define the "clever way" to me? :-) -- Julien Danjou ❱ http://julien.danjou.info pgpBMX1NWeXKX.pgp Description: PGP signature ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org ht

Re: [Orgmode] Re: Bug: Jumping to a date in the agenda changes view back to 'day' [7.4 (release_7.4.80.g0e5e5)]

2011-01-17 Thread Julien Danjou
On Mon, Jan 17 2011, Bernt Hansen wrote: > This should go to today and not the first day of the week. It does go on today. I cannot reproduce this problem (git version). -- Julien Danjou ❱ http://julien.danjou.info pgpc5IrwFnPpi.pgp Description: PGP signat

Re: [Orgmode] Re: Bug: Jumping to a date in the agenda changes view back to 'day' [7.4 (release_7.4.80.g0e5e5)]

2011-01-17 Thread Julien Danjou
On Mon, Jan 17 2011, Bernt Hansen wrote: > This consistently does not work for me with the following setup: Ok, with org-agenda-span set to 'week, I've a strange behavior too. I'll try to debug. -- Julien Danjou ❱ http://julien.danjou.info pgpKE7cqjTgAS.pgp Descript

Re: [Orgmode] Re: Bug: Jumping to a date in the agenda changes view back to 'day' [7.4 (release_7.4.80.g0e5e5)]

2011-01-17 Thread Julien Danjou
d not the first day of the week. Attached is a fix for that. From f566a5612560f997f4760144ca850dda5c06bc5e Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Mon, 17 Jan 2011 18:09:30 +0100 Subject: [PATCH] Fix org-agenda-goto-today not respecting the current span. * org-agenda.el (org-agenda-goto-today): Respect current span.

Re: [Orgmode] Re: Bug: Jumping to a date in the agenda changes view back to 'day' [7.4 (release_7.4.80.g0e5e5)]

2011-01-18 Thread Julien Danjou
do need an extra command for this, you > could do that under the "v" dispatcher in the agenda. > Maybe "v SPACE"? This is exactly what I meant! :-) I'd like to not to have to do `C-a a' once again to reset my view. Here's a patch for that. From f48b89a683f9ff

Re: [Orgmode] Re: Enhancing the Org/Gnus experience

2011-01-20 Thread Julien Danjou
a patch against Gnus, but it seems no, so I'll probably make one soon. -- Julien Danjou ❱ http://julien.danjou.info pgpRBBl07ta7u.pgp Description: PGP signature ___ 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

Re: [Orgmode] Re: Enhancing the Org/Gnus experience

2011-01-20 Thread Julien Danjou
On Thu, Jan 20 2011, Julien Danjou wrote: > Fine, I'll try to do that. I though you got already a patch against > Gnus, but it seems no, so I'll probably make one soon. Pushed in Gnus. -- Julien Danjou ❱ http://julien.danjou.info pgp93GgSuVAkg.pgp Descriptio

[Orgmode] [PATCH] org-agenda: fix start/end time in timerange

2011-01-22 Thread Julien Danjou
* org-agenda.el (org-agenda-get-blocks): Fix time of start/end of events with range. This display things like: <2011-01-22 Sat 14:00>--<2011-01-23 Sun 20:00> correctly, with the event starting at 14:00 and ending at 20:00. Signed-off-by: Julien Danjou --- lisp/org-agen

Re: [Orgmode] Re: Adding a new text/org mime type

2011-01-22 Thread Julien Danjou
> Please change it in the most sensible way. I've changed to text/x-org. -- Julien Danjou ❱ http://julien.danjou.info ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://

[Orgmode] Re: Adding a new text/org mime type

2011-01-23 Thread Julien Danjou
On Sun, Jan 23 2011, Štěpán Němec wrote: > Unless I'm missing something, you forgot to also replace your other > additions in mm-decode.el and mm-uu.el. You are right, I think I grepped text/x-org unless of text/org. Too tired. :) -- Julien Danjou ❱ http://julien.

[Orgmode] [PATCH] Fix typo

2010-05-17 Thread Julien Danjou
Signed-off-by: Julien Danjou --- lisp/org-exp.el |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lisp/org-exp.el b/lisp/org-exp.el index a4f9ac3..024d802 100644 --- a/lisp/org-exp.el +++ b/lisp/org-exp.el @@ -887,7 +887,7 @@ value of `org-export-run-in-background

[Orgmode] [PATCH 1/2] Fix docstring for org-export-html-{pre, post}amble

2010-05-21 Thread Julien Danjou
Signed-off-by: Julien Danjou --- I had a hard time figuring out how it works, and after reading the source code, I think the docstring is wrong. lisp/org-html.el |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/org-html.el b/lisp/org-html.el index d5f4775

[Orgmode] [PATCH 2/2] Do not expand title in markups

2010-05-21 Thread Julien Danjou
If we expand `title', we may have HTML markup between the markups, which is not valid. Signed-off-by: Julien Danjou --- lisp/org-html.el |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lisp/org-html.el b/lisp/org-html.el index e7064ab..9a744cf 100644 --- a/lis

Re: [Orgmode] Re: A request: Moving away from ChangeLog

2010-05-21 Thread Julien Danjou
, and one for the user (what it changes in the software usage). That last one only if necessary. And with this, it's a win-win: you can generate changelog files, and you can read changelog while reading commit/bisecting/whatever git action you do. -- Julien Danjou // ᐰhttp://juli

Re: [Orgmode] Error when trying to push to Worg repo

2010-05-27 Thread Julien Danjou
On Thu, May 27 2010, Tassilo Horn wrote: > What's the problem? Looks like a permission problem in the git dir, probably on the server side. My 2¢, -- Julien Danjou // ᐰhttp://julien.danjou.info pgpiMbkkNhNEj.pgp Description: PGP s

[Orgmode] [PATCH] Fix missing : in documentation

2010-06-21 Thread Julien Danjou
Signed-off-by: Julien Danjou --- doc/org.texi |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/doc/org.texi b/doc/org.texi index 17615e0..8e00aad 100644 --- a/doc/org.texi +++ b/doc/org.texi @@ -6771,7 +6771,7 @@ following to one your your agenda files: * Anniversaries

[Orgmode] Entries title in agenda view

2010-06-21 Thread Julien Danjou
at i really lacks of context. I've to scroll down to the entry to read the echo area. Is there anyway to change the entry text to include its parent headings, or part of them? -- Julien Danjou // ᐰhttp://julien.danjou.info pgpeIIdldSPNY.pgp Descriptio

[Orgmode] [PATCH] org-feed: Fix RSS feed parsing when as attributes

2010-06-22 Thread Julien Danjou
I've RSS feeds with which does not work without that change. Signed-off-by: Julien Danjou --- lisp/org-feed.el |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lisp/org-feed.el b/lisp/org-feed.el index 37b2327..071ee79 100644 --- a/lisp/org-feed.el +++ b/lis

[Orgmode] Displaying inline remote images

2010-06-23 Thread Julien Danjou
Hi, Is there a way to display inline a remote image in an Org buffer? Like: [[http://orgmode.org/img/org-mode-unicorn.png]] -- Julien Danjou // ᐰhttp://julien.danjou.info pgpYd9shkcA2a.pgp Description: PGP signature ___ Emacs-orgmode mailing

[Orgmode] Getting a Google Maps' map for an entry

2010-06-29 Thread Julien Danjou
ck. patches or ideas. ;) Happy hacking. [1] http://julien.danjou.info/google-maps-el.html [2] http://git.naquadah.org/?p=~jd/jd-el.git;a=blob;f=org-location-google-maps.el;hb=HEAD -- Julien Danjou // ᐰhttp://julien.danjou.info pgp4yrTa8t63E.pgp Descri

[Orgmode] Re: Getting a Google Maps' map for an entry

2010-06-29 Thread Julien Danjou
value. Therefore you need to press 'w' (with an eventual prefix) to set a first zoom level. -- Julien Danjou // ᐰhttp://julien.danjou.info pgpLRyf3GUMml.pgp Description: PGP signature ___ Emacs-orgmode mailing list Please use `Reply All' t

Re: [Orgmode] Re: Getting a Google Maps' map for an entry

2010-06-29 Thread Julien Danjou
On Tue, Jun 29 2010, Thierry Volpiatto wrote: > You mean 'z' maybe? Yes, sorry, I meant z. -- Julien Danjou // ᐰhttp://julien.danjou.info pgpJEBpZTNxQP.pgp Description: PGP signature ___ Emacs-orgmode mailing list Please use `Reply

Re: [Orgmode] [PATCH] org-feed: Fix RSS feed parsing when as attributes

2010-06-29 Thread Julien Danjou
On Tue, Jun 22 2010, Julien Danjou wrote: > I've RSS feeds with which does not work without that change. May I dare ask a heads up on this? -- Julien Danjou // ᐰhttp://julien.danjou.info pgpZgQyHtqfob.pgp Description: PGP signature _

[Orgmode] Agenda and weather forecast

2010-09-08 Thread Julien Danjou
ther-el.html [2] http://julien.danjou.info/blog/ -- Julien Danjou // ᐰhttp://julien.danjou.info pgpQ7gyTKCyMS.pgp Description: PGP signature ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org

Re: [Orgmode] Agenda and weather forecast

2010-09-09 Thread Julien Danjou
various random strings. I wanted english text in °C, and that's the way I found. If you put "en" you will have °F. If you want german in °F… I think you're screwed up I think. :-) -- Julien Danjou // ᐰhttp://julien.danjou.info pgpR4eSPS9tHD.pgp Description: PGP signatu

Re: [Orgmode] Re: Agenda and weather forecast

2010-09-09 Thread Julien Danjou
lity to customize the returned string soon. -- Julien Danjou // ᐰhttp://julien.danjou.info pgpIWIrfJTyDV.pgp Description: PGP signature ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.or

Re: [Orgmode] Agenda and weather forecast

2010-09-09 Thread Julien Danjou
On Thu, Sep 09 2010, Jason McBrayer wrote: > Awesome tool. I've fixed a tiny bug, which was causing the "invalid > sexp" error for me. Good catch, patch applied. And good luck with the storm. -- Julien Danjou // ᐰhttp://julien.danjou.info pgpmcCcNig3tp.pgp Descr

[Orgmode] Re: Agenda and weather forecast

2010-09-09 Thread Julien Danjou
ing related to org-google-weather. Isn't is related to Org property inheritance directly? -- Julien Danjou // ᐰhttp://julien.danjou.info pgp9JLVEjweu7.pgp Description: PGP signature ___ Emacs-orgmode mailing list Please use `Reply All' to

Re: [Orgmode] Re: Agenda and weather forecast

2010-09-11 Thread Julien Danjou
: (decode-coding-region (point) (point-max) (detect-coding-region (point) (point-max) t)) (set-buffer-multibyte t) (setq data (xml-parse-region (point) (point-max))) This may not be the good way to do it. zh-cn pages seems to be in GB2312 encoding. Any hint welcome.

Re: [Orgmode] Agenda and weather forecast

2010-09-11 Thread Julien Danjou
On Sat, Sep 11 2010, Christopher Allan Webber wrote: > Adding (require 'cl) seems to fix things; patch included. Added, thanks. -- Julien Danjou // ᐰhttp://julien.danjou.info pgpdf9Mamf2I3.pgp Description: PGP signature ___ Emacs

Re: [Orgmode] Re: Agenda and weather forecast

2010-09-12 Thread Julien Danjou
On Sun, Sep 12 2010, Richard Riley wrote: > Here is a small patch to make it a bit cleaner in non GUI emacs (-nw) :- Good idea, merged, thanks. -- Julien Danjou // ᐰhttp://julien.danjou.info pgp41IIMG94UO.pgp Description: PGP signat

Re: [O] [contacts] No completion in Gnus

2011-10-05 Thread Julien Danjou
On Wed, Oct 05 2011, Jason Dunsmore wrote: > Is there anything else I'm missing? Are you using Emacs 24? -- Julien Danjou pgpIQEexbS42M.pgp Description: PGP signature

  1   2   >