[Orgmode] Spreadsheet and weighted means

2008-09-20 Thread Nicolas Goaziou
Hello, I stumbled upon this problem : I'd like to compute the weighted mean of some values, even though cells might be empty. In fact, I'm aiming at something like this : | | Coeff. |0.2 |0.5 | 1 | |---++++| | Name | Mean | Tes

[Orgmode] Needless opening of threads in org-wl

2008-09-20 Thread Dhruv Bansal
I like to link to Wanderlust emails from Org Mode. I just downloaded the latest git version and linking to WL emails works as advertised except that I wind up sitting for five minutes as every thread in my 13,000 message inbox is opened. Is there a reason for this behavior? I "fixed" the problem

[Orgmode] [PATCH 0/9] Update my last patchset

2008-09-20 Thread James TD Smith
I've updated my last patchset so it applies to the current version, and added a few more patches I have written since then. The following series implements... --- James TD Smith (9): Some bugfixes for org-plot. Add a % expansion for inserting properties in remember buffers. Add

[Orgmode] [PATCH 1/9] Some improvements to the modeline clock display

2008-09-20 Thread James TD Smith
Allow users to specify a maximum length for the modeline clock. Add an option to limit the length of the clock string in the modeline. When the limit is in effect, the full item text is included in the tooltip on the clock string. Make clicking on the clock string now goes to the currently clocked

[Orgmode] [PATCH 2/9] Fix X clipboard handling in emacs21

2008-09-20 Thread James TD Smith
Add a new function to org-compat to fetch clipboard values in emacs21 and xemacs. Use this function to fetch the clipboard when x-selection-value is unavailable. --- lisp/ChangeLog |9 + lisp/org-compat.el | 13 - lisp/org-remember.el | 12 ++-- lisp/o

[Orgmode] [PATCH 3/9] Show durations of clocked times in timeline

2008-09-20 Thread James TD Smith
In the timeline display in the agenda, show the length of time clocked as well as the start and end times. --- lisp/ChangeLog |3 +++ lisp/org-agenda.el | 14 -- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index bcefdab..38

[Orgmode] [PATCH 4/9] Fix link display in imenus and the refile interface

2008-09-20 Thread James TD Smith
Replace links with their descriptions in when generating the items for imenus and the refile interface. --- lisp/ChangeLog |4 lisp/org.el|8 +++- 2 files changed, 11 insertions(+), 1 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3896ddf..b52700d 100755 ---

[Orgmode] [PATCH 5/9] Fix note insertion in entries with drawers.

2008-09-20 Thread James TD Smith
The code to find the insertion point after a heading for notes was not skipping over drawers, resulting in notes being added inbetween the scheduling keywords and the first drawer. Notes are now inserted after any drawers in an item. --- lisp/ChangeLog |2 ++ lisp/org.el| 41 +++

[Orgmode] [PATCH 6/9] Add some functions for handling checklists.

2008-09-20 Thread James TD Smith
Add a module to contrib for handling repeated tasks which require checking off a list of items. --- contrib/ChangeLog |5 ++ contrib/lisp/org-checklist.el | 110 + 2 files changed, 115 insertions(+), 0 deletions(-) create mode 100644 contr

[Orgmode] [PATCH 7/9] Add some new interaction between remember and clocked tasks

2008-09-20 Thread James TD Smith
Add %< expansion. This tells org-remember to add the item to the currently clocked task. Often while I'm working on something I find other related things which need to be done and this makes it possible to use a remember template to add a TODO item in the right place. Add %l expansion for the curr

[Orgmode] [PATCH 8/9] Add a % expansion for inserting properties in remember buffers.

2008-09-20 Thread James TD Smith
--- lisp/ChangeLog |3 +++ lisp/org-remember.el | 19 +-- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0b40a6e..07872eb 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2008-09-20 James TD Smit

[Orgmode] [PATCH 9/9] Some bugfixes for org-plot.

2008-09-20 Thread James TD Smith
* Handle tables where the first line is an hline. * Put commas at the end of the line in generated scripts --- lisp/org-plot.el | 13 +++-- 1 files changed, 7 insertions(+), 6 deletions(-) diff --git a/lisp/org-plot.el b/lisp/org-plot.el index 874790c..f8e268d 100644 --- a/lisp/org-plo

Re: [Orgmode] Make timestamps appear in each item header of the _archive file

2008-09-20 Thread munco munco
Hi Carsten Thanks very much for your suggestions. I gave the column view method a go and (after some configuration) it works just great. Thanks for your help, as well as the most excellent org-mode. Cheers Adam On Sun, Sep 14, 2008 at 4:13 PM, Carsten Dominik <[EMAIL PROTECTED]> wrote: > Hi, >

[Orgmode] minor bug: org-remember without target file buffer causes error

2008-09-20 Thread Samuel Wales
In org-mode 6.06b, c-c c-c after org-remember without first finding the target file causes wrong type argument stringp, nil error. Trying it again works OK. This is not a problem for me. Perhaps the relevant function, org-remember-handler, can be broken into smaller functions for easier debugging

Re: [Orgmode] [PATCH 0/9] Update my last patchset

2008-09-20 Thread Carsten Dominik
Hi James, bummer, I *did* forget about the previous patch series, thanks so much for bringing it up again. I am frusrated with my git skills. I did put all your patches into a separate mailbox and then did git-am, which failed miserably. Any idea what I might be doing wrong? I can app

[Orgmode] Mairix & Mutt

2008-09-20 Thread Russell Adams
Tonight I cobbled together a quick hack to let me store links from an external mutt session directly into Org as a link via paste from the X windows paste buffer. I thought I would share. Documentation is in the comment header of the script. The workflow goes like this: - Reading email in Mutt,

Re: [Orgmode] [PATCH 4/9] Fix link display in imenus and the refile interface

2008-09-20 Thread Carsten Dominik
Hi James, I am not accepting this particular patch in its current form. It does not work for links to do not have a description part. Also, it relies on replace-regexp-in-string, which does not exist in XEmacs I believe. I am still thinking about %< patch (patch 7/9), need to test is a bi

Re: [Orgmode] minor bug: org-remember without target file buffer causes error

2008-09-20 Thread Carsten Dominik
Hi Samuel, I cannot reproduce this bug. Please try again with 6.07b, and if it persists, make me a test case with configuration. Thanks. - Carsten P.S. Yes, org-remember-handler is a monster... On Sep 21, 2008, at 6:42 AM, Samuel Wales wrote: In org-mode 6.06b, c-c c-c after org-re