[Orgmode] RELEASE: Org-mode 6.08a

2008-10-04 Thread Carsten Dominik
Hi I am releasing Org version 6.08. The biggest news is the integration of John Wiegley's attachment system that allows to keep a directory with file attachments for each entry. Great stuff. As usually, you can get the release through GIT, or at http://orgmode.org Enjoy! - Carsten Cha

Re: [Orgmode] uncommented call to debug in org-id

2008-10-04 Thread Carsten Dominik
Fixed, thanks. - Carsten On Oct 4, 2008, at 9:38 PM, Eric Schulte wrote: There's a debug call in org-id.el from the git repo that's tripping up my ical export. It should probably be commented out. ./org-id.el:306: (debug) -- Eric ___ Emacs-org

[Orgmode] Any iPhone devellopers here

2008-10-04 Thread Carsten Dominik
Hi, do we have any iPhone developer here on the list who would like to listen to my ideas about a (very simple) mobile arm (not version) of Org? - Carsten ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emac

Re: [Orgmode] Footnotes and org-export

2008-10-04 Thread Carsten Dominik
Hi Matthew, I guess one way to do this would be to write a hook function that, prior to export, colectes all the footnotes you have produced in your favorite markup and to put them in the normal ASCII format that Org can digest. I am not convinced that this is a good approach. Org ist su

[Orgmode] uncommented call to debug in org-id

2008-10-04 Thread Eric Schulte
There's a debug call in org-id.el from the git repo that's tripping up my ical export. It should probably be commented out. ./org-id.el:306: (debug) -- Eric ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs

Re: [Orgmode] Re: custom commands 'todo-tree' and org-agenda-skip-function

2008-10-04 Thread Carsten Dominik
On Oct 1, 2008, at 7:06 PM, Vladi Solutka wrote: Hi! Carsten Dominik uva.nl> writes: I'm currently playing with org-agenda-custom-commands and noticed that skipping scheduled entries does not work for todo-trees. Example: The following works fine for 'todo', but with 'todo-tree' (as used

Re: [Orgmode] Latex export & Prosper Presentation

2008-10-04 Thread Carsten Dominik
On Sep 26, 2008, at 6:33 PM, Russell Adams wrote: I've gotten a basic export to Prosper working for a presentation I'm writing to give this weekend. Here is the extra portion for .emacs: (setq org-export-latex-classes (cons '("prosper" "% BEGIN Prosper Defaults \\documentclass[pdf, contempo

Re: [Orgmode] orgtbl-mode and numerical keypad

2008-10-04 Thread Carsten Dominik
Fixed, thanks. - Carsten On Oct 4, 2008, at 11:16 AM, Rainer Thiel wrote: I have noticed a side-effect of orgtbl-mode that I suppose is not intended: Whenever orgtbl-mode is active, pressing any key on the numerical keypad (except for ) doesn't insert any character, but produces the followi

[Orgmode] Footnotes and org-export

2008-10-04 Thread mdl
First, let me say thank you to Carsten and everyone else for this wonderful note-taking/PIM/spreadsheet/everything-but-the-kitchen-sink software. It is one of the best computer tools I've ever used. As an Emacs neophyte, I remained humbled by the generosity of those with far superior computer skil

[Orgmode] orgtbl-mode and numerical keypad

2008-10-04 Thread Rainer Thiel
I have noticed a side-effect of orgtbl-mode that I suppose is not intended: Whenever orgtbl-mode is active, pressing any key on the numerical keypad (except for ) doesn't insert any character, but produces the following error message: "Wrong type argument: commandp, nil". As all relevant keys in

Re: [Orgmode] Spreadsheet and weighted means

2008-10-04 Thread Nicolas Goaziou
Hello, Carsten Dominik <[EMAIL PROTECTED]> writes: > (defun my-wmean (values weights) > (let ((vsum 0) (wsum 0)) >(while (and values weights) > (setq v (pop values) w (pop weights)) > (unless (equal "" v) > (setq vsum (+ vsum (* (string-to-number w) (string-to-number > v))) >