RE: [Orgmode] bug in todo state change tracking?

2008-06-09 Thread Dominik, C.
Hi Brian, I cannot reproduce this, works fine for me. - Carsten -Original Message- From: [EMAIL PROTECTED] on behalf of [EMAIL PROTECTED] Sent: Mon 6/2/2008 6:15 AM To: emacs-orgmode@gnu.org Subject: [Orgmode] bug in todo state change tracking? Hi Carsten and all, I think I've

RE: [Orgmode] archival mirroring source headline structure?

2008-06-09 Thread Dominik, C.
Hi Adam, I agree that this would be nice, but I believe it is almost impossible to make this stable. Because the user is free to add to and change the tree in the Org buffer, it is very easy to break this mechanism. Also, the general case to puttin things into the correct place in the archive is

RE: [Orgmode] [PATCH] Allow 'prefix' to be set on the command line

2008-06-09 Thread Dominik, C.
Is this a syntax understood by all make programs? Nice, I am taking the patch. Thanks. - Carsten -Original Message- From: [EMAIL PROTECTED] on behalf of Peter Jones Sent: Tue 6/3/2008 3:34 AM To: emacs-orgmode@gnu.org Subject: [Orgmode] [PATCH] Allow 'prefix' to be set on the command

[Orgmode] export only the body (with out postamble) as html?

2008-06-09 Thread Manoj Srivastava
Hi, I have started using org-mode to write my ikiwiki blog entries[0], and I have had to strip out the header and the footer from the generated HTML file (since ikiwiki already has complex templates to give my pages the correct look and feel). Would it be possible to get a

RE: [Orgmode] [PATCH]new org-columns-nth-allowed-value function and keys

2008-06-09 Thread Dominik, C.
Hi Levin, this is an interesting patch, thank you very much. I will not add the vi keys - maybe you would like to write that up as a setup and add it to the FAQ in Worg? Picking the nth allowed value I do like a lot, and I am putting that in, at least for now. I might change it at some point so

RE: [Orgmode] export only the body (with out postamble) as html?

2008-06-09 Thread Dominik, C.
Hi Manoj, the function `org-export-region-as-html' can be called with a body-only option, and can also return a string instead of creating a buffer with the output. You can write your own wrapper that writes this strig to a file if that is what you need. HTH. - Carsten -Original

Re: [Orgmode] archival mirroring source headline structure?

2008-06-09 Thread Adam Spiers
On Mon, Jun 09, 2008 at 09:01:22AM +0200, Dominik, C. wrote: Hi Adam, I agree that this would be nice, but I believe it is almost impossible to make this stable. Because the user is free to add to and change the tree in the Org buffer, it is very easy to break this mechanism. If I

RE: [Orgmode] bug in todo state change tracking?

2008-06-09 Thread Peter Rayner
I *think* I'm seeing the same thing: My org-todo-keywords is set as: (setq org-todo-keywords '((sequence TODO(t!@) STARTED(s!@) WAITING(w!@) DELEGATED(l!@) APPT(a!@) | DONE(d!@) DEFERRED(e!@) CANCELLED(x!@ and I have org-use-fast-todo-selection set to t In the agenda view when I type tw the

Re: [Orgmode] [PATCH] Allow 'prefix' to be set on the command line

2008-06-09 Thread Eddward DeVilla
I'm not sure if I read the diff right. It replaces the equal sign '=' with '?=' right? I don't see that in the description of posix make. (http://www.opengroup.org/onlinepubs/009695399/utilities/make.html) Also, if you look at section Macros for the phrase, Macro definitions shall be taken

[Orgmode] Bug: HTML Export Hangs in 6.04c

2008-06-09 Thread Adr3nal D0S
This one seems to be fairly easy to reproduce. But I had trouble narrowing it down due to the size of the file I was using. I had a #+BEGIN_EXAMPLE line with no #+END_EXAMPLE line and did a C-c C-e h to export the file as HTML, Emacs hangs until I C-g. I did not test all export modes, but it

RE: [Orgmode] Bug: HTML Export Hangs in 6.04c

2008-06-09 Thread Dominik, C.
Fixed, thanks. - Carsten -Original Message- From: [EMAIL PROTECTED] on behalf of Adr3nal D0S Sent: Mon 6/9/2008 4:57 PM To: emacs-orgmode@gnu.org Subject: [Orgmode] Bug: HTML Export Hangs in 6.04c This one seems to be fairly easy to reproduce. But I had trouble narrowing it down due

[Orgmode] Re: Allow 'prefix' to be set on the command line

2008-06-09 Thread Peter Jones
Dominik, C. [EMAIL PROTECTED] writes: Is this a syntax understood by all make programs? Nice, I am taking the patch. Thanks. It works with BSD Make, and GNU Make, I can't speak for Microsoft's version of Make (nmake), but I don't believe it works there. It's not POSIX, but I'm not sure if

[Orgmode] org-return-follows-link and the TTY

2008-06-09 Thread Phil Jackson
Hi Carsten/All, I'm a --without-x user and set org-return-follows-link. When I hit enter on a link it simply inserts \n. If I apply this patch: diff --git a/generic/.elisp/org/lisp/org.el b/generic/.elisp/org/lisp/org.el index 878482d..4c8adb2 100644 --- a/generic/.elisp/org/lisp/org.el +++

RE: [Orgmode] org-return-follows-link and the TTY

2008-06-09 Thread Dominik, C.
That s very strange, it works for me without problems. Can anyone else reproduce this problem? Thanks. - Carsten -Original Message- From: [EMAIL PROTECTED] on behalf of Phil Jackson Sent: Mon 6/9/2008 10:23 PM To: emacs-orgmode@gnu.org Subject: [Orgmode] org-return-follows-link and

RE: [Orgmode] bug in todo state change tracking?

2008-06-09 Thread Dominik, C.
Hi Peter, this is different, your setting is incorrect. You need to remove all the !, because it is either ! or @. - Carsten -Original Message- From: [EMAIL PROTECTED] on behalf of Peter Rayner Sent: Mon 6/9/2008 2:51 PM To: Emacs-orgmode@gnu.org Subject: RE: [Orgmode] bug in todo

RE: [Orgmode] archival mirroring source headline structure?

2008-06-09 Thread Dominik, C.
Hi Adam, I mean more complex possibilities, like * A ** B *** C *** D Archive C, do more work, then archive A. The possibilities are endless, it seems to me. - Carsten -Original Message- From: [EMAIL PROTECTED] on behalf of Adam Spiers Sent: Mon 6/9/2008 1:52 PM To: org-mode mailing

RE: [Orgmode] use non-alphabet ascii as todo keywords?

2008-06-09 Thread Dominik, C.
Unfortunately, Org relies on the fact that a TODO keyword ends at a word end that can be matched with the regular expression \\. So you would have to make and - into word characters. That can be done, but I fear it might break something else. Worth a try, though. - Carsten -Original

RE: [Orgmode] use non-alphabet ascii as todo keywords?

2008-06-09 Thread Dominik, C.
And here is how to do this: (add-hook 'org-mode-hook (lambda () (modify-syntax-entry ?- w org-mode-syntax-table) (modify-syntax-entry ? w org-mode-syntax-table))) Give it a try and report your experiences! Might actually work well. HTH - Carsten -Original Message- From:

[Orgmode] Re: use non-alphabet ascii as todo keywords?

2008-06-09 Thread William Xu
Dominik, C. [EMAIL PROTECTED] writes: And here is how to do this: (add-hook 'org-mode-hook (lambda () (modify-syntax-entry ?- w org-mode-syntax-table) (modify-syntax-entry ? w org-mode-syntax-table))) Give it a try and report your experiences! Might actually work well. Yeah,