[Orgmode] relative paths in links

2009-04-21 Thread Jörg Hagmann
Hi, when writing a relative link, e.g.: [[../index.html][Home]] This gets immediately converted to an absolute path: [[~/some/path/index.html][Home]] This is obviously useless when exporting to html. I'm sure I missed something, but what? Thanks, Jörg ___

[Orgmode] exporting without DEADLINE keyword

2009-04-21 Thread Yuval Hager
Hi, One of my uses to orgmode is to write an invoice, export it to PDF and send it to the customer. I like to mark the DEADLINE for the invoice, for my tracking, but I do not want that to show in the exported PDF this way, rather in a more subtle manner, like 'payment is due by '. I have looke

Re: [Orgmode] How to view tasks with certain Property tag in Agenda view

2009-04-21 Thread Manish
On Tue, Apr 21, 2009 at 6:11 AM, Varnit Suri wrote: > Thanks. I agree this is prolly a better approach. > > I did get things to work (see code in post-script) a bit using > your suggestion and: > http://orgmode.org/manual/Block-agenda.html#Block-agenda > http://orgmode.org/manual/Stor

Re: [Orgmode] Re: BUG: Navigating table to change fields

2009-04-21 Thread Carsten Dominik
On Apr 21, 2009, at 12:02 AM, Eric Schulte wrote: Maybe a list rather than a hook, say `org-cycle-actions'. Each element of the list could be called in the current context until one returns a non-nil result. Something like... (let ((pending org-cycle-actions) finished) (while (not fi

Re: [Orgmode] [PATCH] Add NOBLOCKING to org-default-properties

2009-04-21 Thread Carsten Dominik
Applied, thanks. - Carsten On Apr 21, 2009, at 4:37 AM, Bernt Hansen wrote: This allows setting the NOBLOCKING property by hitting C-c C-c on the :PROPERTIES: drawer --- This patch is available at git://git.norang.ca/org-mode.git for- carsten lisp/org.el |2 +- 1 files changed, 1 inser

Re: [Orgmode] [PATCH] Revert "Jump to selected clock task when starting the clock"

2009-04-21 Thread Carsten Dominik
Reverted, thanks. - Carsten On Apr 21, 2009, at 4:37 AM, Bernt Hansen wrote: This reverts commit 61dfa0c67fcb47351f2139160ad7f59d7e742254. This wasn't such a great idea after all. There is one case where this is really annoying - if you are in the middle of displaying an agenda view with lot

Re: [Orgmode] Re: BUG: Navigating table to change fields

2009-04-21 Thread Carsten Dominik
On Apr 21, 2009, at 12:51 AM, Bernt Hansen wrote: That would probably be better. I just copied my current setup from discussions on the org-mode list about yasnippet. Is there anything I can do to help make that happen? I have added this hook, see my other message. I guess what you can do

[Orgmode] Headline with 2 timestamps is displayed only once in the agenda

2009-04-21 Thread Tassilo Horn
Hi all, I have this entry in an org-file. --8<---cut here---start->8--- ** Übung Grundlagen der Softwaretechnik (B 016):teaching: <2009-04-22 Wed 08:30-10:00 +1w> <2009-04-29 Wed 10:15-11:45> (Für Hannes übernehmen) --8<---cut here

Re: [Orgmode] Headline with 2 timestamps is displayed only once in the agenda

2009-04-21 Thread Carsten Dominik
On Apr 21, 2009, at 11:03 AM, Tassilo Horn wrote: Hi all, I have this entry in an org-file. --8<---cut here---start->8--- ** Übung Grundlagen der Softwaretechnik (B 016):teaching: <2009-04-22 Wed 08:30-10:00 +1w> <2009-04-29 Wed 10:15-11:45> (Fü

Re: [Orgmode] Custom_ID problem with org-info.js display

2009-04-21 Thread Carsten Dominik
Sebastian still needs to fix org-info.js for the new setup. - Carsten On Apr 21, 2009, at 1:54 AM, Xin Shi wrote: Hello Experts, I've tried to use the new feature in 6.26a for custom IDs. Unfortunately, those sections have the custom IDs won't show up properly in the javascript page. I u

[Orgmode] checkbox statistics

2009-04-21 Thread Richard KLINDA
Hello, currently checkbox statistics only takes into account checkboxes on a single indent level. I would prefer checkbox statistics to show the total number of checkboxes below them, regardless of level. Currently: , | ** TODO [0/2] job |1) [-] 1 | * [X] a | * [X] b |

Re: [Orgmode] Custom_ID problem with org-info.js display

2009-04-21 Thread Sebastian Rose
Hi, yes, my fault. I didn't get around to adjust org-info.js to the new custom-ID feature. But this will happen tonight for sure. Sorry for the delay. The new version will be compatible with the ancient export. Regards, Sebastian Xin Shi writes: > Hello Experts, > > I've tried to use the

Re: [Orgmode] Custom_ID problem with org-info.js display

2009-04-21 Thread Sebastian Rose
OK. Should work now. Old human readable IDs in headline's anchors are still prefered. Also, org-info.js is now minified (no obfuscation) to decrease the file size by about 40%. For those interested in hacking it, the plain org-info.js was moved to org-info-src.js. You may pull the script fro

Re: [Orgmode] Emacs 21

2009-04-21 Thread Sebastian Rose
Hm - the only function we now use from the url package is `url-unhex'. That is just: (defun url-unhex (x) (if (> x ?9) (if (>= x ?a) (+ 10 (- x ?a)) (+ 10 (- x ?A))) (- x ?0))) As it's only 6 lines of code: How would we define the function if the package is no

Re: [Orgmode] Custom_ID problem with org-info.js display

2009-04-21 Thread Carsten Dominik
On Apr 21, 2009, at 1:31 PM, Sebastian Rose wrote: OK. Should work now. Old human readable IDs in headline's anchors are still prefered. Also, org-info.js is now minified (no obfuscation) to decrease the file size by about 40%. For those interested in hacking it, the plain org-info.js w

Re: [Orgmode] relative paths in links

2009-04-21 Thread Matthew Lundin
Hi Jörg, Jörg Hagmann writes: > Hi, > > when writing a relative link, e.g.: > > [[../index.html][Home]] > > This gets immediately converted to an absolute path: > > [[~/some/path/index.html][Home]] > > This is obviously useless when exporting to html. I'm sure I missed > something, but what? Yo

[Orgmode] Emacs 21

2009-04-21 Thread Carsten Dominik
Hi, I was just notified that Org-mode no longer installs properly on Emacs 21. The reason for this is that org-protocol.el requires the url.el package which apparently does not exist in Emacs 21. While you can - run uncompiled Org on Emacs 21 without using org-protocol - try to find url.el for

Re: [Orgmode] Emacs 21

2009-04-21 Thread Carsten Dominik
On Apr 21, 2009, at 2:19 PM, Sebastian Rose wrote: Hm - the only function we now use from the url package is `url-unhex'. That is just: (defun url-unhex (x) (if (> x ?9) (if (>= x ?a) (+ 10 (- x ?a)) (+ 10 (- x ?A))) (- x ?0))) As it's only 6 lines of code: Ho

Re: [Orgmode] checkbox statistics

2009-04-21 Thread Carsten Dominik
This is how it used to be a long time ago, and then we changed it, upon the request of several users. - Carsten On Apr 21, 2009, at 12:47 PM, Richard KLINDA wrote: Hello, currently checkbox statistics only takes into account checkboxes on a single indent level. I would prefer checkbox stat

[Orgmode] C-u C-c C-x C-j to directly jump to the task with there is just one?

2009-04-21 Thread Bastien
When the list of recent tasks only has one item, would it make sense to directly jump to it? Or maybe people use `C-u C-c C-x C-j' as a way to check what has been done (without jumping to the task)? -- Bastien ___ Emacs-orgmode mailing list Remember

[Orgmode] Re: C-u C-c C-x C-j to directly jump to the task with there is just one?

2009-04-21 Thread Bernt Hansen
Bastien writes: > When the list of recent tasks only has one item, would it make sense to > directly jump to it? Or maybe people use `C-u C-c C-x C-j' as a way to > check what has been done (without jumping to the task)? For the prefix only it would probably be okay to just jump there if there

Re: [Orgmode] exporting without DEADLINE keyword

2009-04-21 Thread Carsten Dominik
On Apr 21, 2009, at 9:06 AM, Yuval Hager wrote: Hi, One of my uses to orgmode is to write an invoice, export it to PDF and send it to the customer. I like to mark the DEADLINE for the invoice, for my tracking, but I do not want that to show in the exported PDF this way, rather in a more

Re: [Orgmode] Custom_ID problem with org-info.js display

2009-04-21 Thread Sebastian Rose
Hmm - the script supports two kinds of human readable IDs now. The old ones (which where defined in the anchor inside the the headline), and the new ones, which are now defined in the headlines 'id' property. Which one is now to prefer? What I did now, is to remove the regexp search at all (`^s

Re: [Orgmode] Custom_ID problem with org-info.js display

2009-04-21 Thread Carsten Dominik
On Apr 21, 2009, at 4:16 PM, Sebastian Rose wrote: Hmm - the script supports two kinds of human readable IDs now. The old ones (which where defined in the anchor inside the the headline), and the new ones, which are now defined in the headlines 'id' property. Which one is now to prefer? Wha

[Orgmode] Re: Headline with 2 timestamps is displayed only once in the agenda

2009-04-21 Thread Tassilo Horn
Carsten Dominik writes: Hi Carsten, >> What do I have to do to make that entry showing up twice on 29th >> April? > > Make the second one a SCHEDULED time stamp, for example. When Org > collects entries for the day, it goes through the files, once for > plain time stamps, once for scheduled, on

Re: [Orgmode] Re: C-u C-c C-x C-j to directly jump to the task with there is just one?

2009-04-21 Thread Carsten Dominik
How about making RET an alias for either the task currently being clocked, or the most recently clocked one, or the default task, first one of this sequence that exists? Hmmm, not sure if this really makes a difference - Carsten On Apr 21, 2009, at 3:33 PM, Bernt Hansen wrote: Bastien w

[Orgmode] Re: Emacs 21

2009-04-21 Thread Leo
On 2009-04-21 13:25 +0100, Carsten Dominik wrote: > Still, official Emacs 21 support will stop. I think this is more than OK. There are tons of past releases still around that runs nicely on Emacs 21. > - Carsten -- .: Leo :. [ sdl.web AT gmail.com ] .: I use Emacs :. ___

Re: [Orgmode] Re: C-u C-c C-x C-j to directly jump to the task with there is just one?

2009-04-21 Thread Bernt Hansen
The current task [c] and the first task [1] are always the same aren't they? So using '1' for that already works. Maybe a better solution is to make it work without the prefix? Go to the current clocking task and if there is none then go to the last clocked task (if you can find it) otherwise is

Re: [Orgmode] Re: C-u C-c C-x C-j to directly jump to the task with there is just one?

2009-04-21 Thread Carsten Dominik
On Apr 21, 2009, at 7:22 PM, Bernt Hansen wrote: The current task [c] and the first task [1] are always the same aren't they? So using '1' for that already works. Maybe a better solution is to make it work without the prefix? Go to the current clocking task and if there is none then go to th

Re: [Orgmode] Re: C-u C-c C-x C-j to directly jump to the task with there is just one?

2009-04-21 Thread Bernt Hansen
One problem with that might be if people (including me) use C-c C-x C-j to see if the clock is running :) I've mapped F11 = C-c C-x C-j so I just hit that key all the time. If it beeps and says 'no active clock' then I know I have to start the clock on something. Jumping to the last clocked item

[Orgmode] Using [/] or [%]

2009-04-21 Thread David Ellis
The manual includes the following: To keep the overview over the fraction of subtasks that are already completed, insert either ‘[/]’ or ‘[%]’ anywhere in the headline. These cookies will be updates each time the todo status of a child changes. For example: * Organize Party [33%] ** TOD

[Orgmode] Re: Using [/] or [%]

2009-04-21 Thread Bernt Hansen
David Ellis writes: > The manual includes the following: > > To keep the overview over the fraction of subtasks that are already > completed, insert either ‘[/]’ or ‘[%]’ anywhere in the > headline. These cookies will be updates each time the todo status of a child > changes. For example: > >

Re: [Orgmode] Re: Using [/] or [%]

2009-04-21 Thread Nick Dokos
Bernt Hansen wrote: > David Ellis writes: > > > The manual includes the following: > > > > To keep the overview over the fraction of subtasks that are already > > completed, insert either ‘[/]’ or ‘[%]’ anywhere in the > > headline. These cookies will be updates each time the todo status of a

[Orgmode] BUG: Exporting and empty LOGBOOK drawers results in missing data in the export file

2009-04-21 Thread Bernt Hansen
I haven't been able to isolate this with a minimal emacs setup yet but I'm still working on it. I thought I should report it early anyway. I ran into this today - if you export a file to HTML that has an empty LOGBOOK drawer like this: , | * Task to Export | :LOGBOOK: | :END: | | Lots

Re: [Orgmode] Re: Counter cookies and mixed checkbox lists/subtasks

2009-04-21 Thread Carsten Dominik
On Apr 20, 2009, at 10:00 AM, Ulf Stegemann wrote: Hi Carsten, Carsten Dominik wrote: Hmmm, I am still not convinced, in particular about adding new syntax. One thing I could imagine though, is this: If an entry has checkboxes, always put those into the cookie, not the children. Or maybe

Re: [Orgmode] Re: C-u C-c C-x C-j to directly jump to the task with there is just one?

2009-04-21 Thread Carsten Dominik
On Apr 21, 2009, at 8:38 PM, Bernt Hansen wrote: One problem with that might be if people (including me) use C-c C-x C-j to see if the clock is running :) I've mapped F11 = C-c C-x C-j so I just hit that key all the time. If it beeps and says 'no active clock' then I know I have to start th

Re: [Orgmode] BUG: Exporting and empty LOGBOOK drawers results in missing data in the export file

2009-04-21 Thread Carsten Dominik
Fixed, thanks. - Carsten On Apr 21, 2009, at 9:57 PM, Bernt Hansen wrote: I haven't been able to isolate this with a minimal emacs setup yet but I'm still working on it. I thought I should report it early anyway. I ran into this today - if you export a file to HTML that has an empty LOGBOOK