Re: [Orgmode] FR: Columnview Tables & Formulas

2008-09-07 Thread Russell Adams
On Sun, Sep 07, 2008 at 08:43:52AM +0200, Carsten Dominik wrote: > Hi Russel, > > > hmmm, an alternative would be to introduce a new property and do the > computation in the properties. I can see that it would be relatively > simple to define a TBLFM line that should be added to the table >

Re: [Orgmode] Passing an option to org-file-apps?

2008-09-07 Thread Carsten Dominik
On Jul 17, 2008, at 5:30 AM, anhnmncb wrote: Hi, list, I have an external link like this: [[file:~/doc/foo.pdf]] And I have configured to use xpdf to open it, but every time I open it, it always at the first page. If can I pass an option to xpdf, so after I finish reading, I change the

Re: [Orgmode] FR: Columnview Tables & Formulas

2008-09-07 Thread Carsten Dominik
No, not yet - but with the recently implemented mapping functions, it would not be so hard. Nice extension! Anyone interested in trying to write it? - Carsten On Sep 7, 2008, at 8:59 AM, Russell Adams wrote: On Sun, Sep 07, 2008 at 08:43:52AM +0200, Carsten Dominik wrote: Hi Russel, h

Re: [Orgmode] Re: [bug]x2 #+BEGIN_EXAMPLE can not work and #+BEGIN_SRC indent error

2008-09-07 Thread Carsten Dominik
Hi Tseng, I don't think the indentation function in Org is good enough to apply it to the entire file anyway, so no action on this thread. Sorry. - Carsten On Aug 3, 2008, at 2:04 PM, S.P.Tseng wrote: Bernt Hansen <[EMAIL PROTECTED]> writes: S.P.Tseng <[EMAIL PROTECTED]> writes: 2. Pr

Re: [Orgmode] Remember integration

2008-09-07 Thread Carsten Dominik
Hi Russel, remember-handler-functions is a hook that can contain several functions. The first function that returns non-nil is assumed to have done the work, so the other ons are not called. You can do (setq remember-handler-functions '(my-ledger-function org-remember- handler)) and

Re: [Orgmode] Passing an option to org-file-apps?

2008-09-07 Thread Daniel Clemente
Hi, > Something like this: > [[file:~/doc/foo.pdf 25]] > So org will invoke xpdf in this way: xpdf ~/doc/foo.pdf 25. > Maybe it's better: [[shell:xpdf ~/doc/foo.pdf 25]] since you want to pass „25“ to xpdf only. It is meaningless to pass the 25 *to the PDF*. -- Daniel

Re: [Orgmode] Passing an option to org-file-apps?

2008-09-07 Thread Sebastian Rose
Carsten Dominik wrote: Org has no mechanism to pass switches to external commands. But you can try to find a pdf viewer that supports going back to a previous location. For example, "Preview" in MacOS X does this, maybe there are also open source programs that do it. As you say 'xpdf' I a

Re: [Orgmode] org-mode opening org files

2008-09-07 Thread Carsten Dominik
Hi Richard, one way out would be to open all the org files early on in your Emac session. Once they are there, I believe they will not move back to the bottom of the history list - or am I mistaken here? - Carsten On Jul 30, 2008, at 7:30 PM, Richard G Riley wrote: Would it be possibly

Re: [Orgmode] format table column

2008-09-07 Thread Carsten Dominik
Hi Plutek, I would like to have this too, but unfortunately many browsers ignore alignment specified for an entire column - you need to put the alignment into each field. This was, so far, too annoying to implement. - Carsten On Aug 1, 2008, at 4:09 AM, plutek-infinity wrote: greetings!

Fwd: [Orgmode] Re: [bug]x2 #+BEGIN_EXAMPLE can not work and #+BEGIN_SRC indent error

2008-09-07 Thread S . P . Tseng
-- Forwarded message -- From: S. P. Tseng <[EMAIL PROTECTED]> Date: Sun, Sep 7, 2008 at 8:32 PM Subject: Re: [Orgmode] Re: [bug]x2 #+BEGIN_EXAMPLE can not work and #+BEGIN_SRC indent error To: Carsten Dominik <[EMAIL PROTECTED]> I think you misunderstand me. I never want to let

[Orgmode] Re: Passing an option to org-file-apps?

2008-09-07 Thread Jose A. Ortega Ruiz
An easy way of getting the desired behaviour is to use a custom link type: (org-add-link-type "pdf" 'my-follow-pdf-link 'identity) (defun my-follow-pdf-link (link) "Follow links of the type path/to/file:line-no" (when (string-match "\\(.+\\)@\\([0-9]+\\)$" link) (start-process "

Re: [Orgmode] Bug: Angle brackets in org-time-stamp-format loses in html export

2008-09-07 Thread Carsten Dominik
Hi Raman, I have thought about it, and I think you are right, we should remove it. This made more sense when we always skipped the text before the first heading, but now, this is not the default, so there is a simpler way to get text before the first heading. OK, it is gone. - Carsten O

Re: [Orgmode] Graphical Line in File

2008-09-07 Thread Carsten Dominik
On Sep 5, 2008, at 4:36 PM, Parker, Matthew wrote: This is a really (*really*) trivial problem, but one that I've seen many times, is annoying, and I wonder if anyone knows an easy fix. I'll get these long lines (not text just some graphical artifact) off the left of comments. See image atta

Re: [Orgmode] {Feature Request] Categories in icalendar export

2008-09-07 Thread Carsten Dominik
On Sep 3, 2008, at 8:40 AM, Charles philip Chan wrote: Hello: Is it possible to have the tags (minus the colons) as a comma separated list for the "Categories" field in icalendar export? I usually have a GTD context as the first tag. This will allow me to see them as separate lists on my

Re: [Orgmode] HTML export problems

2008-09-07 Thread Carsten Dominik
Fixed, thanks. - Carsten On Aug 23, 2008, at 9:27 PM, David O'Toole wrote: The first paragraph before any heading is exported, but without surrounding P paragraph tags; the remaining paragraphs (whether before other headings, or after those headings) all have P tags and this is messing up the

Re: [Orgmode] format table column

2008-09-07 Thread plutek-infinity
>Date: Sun, 7 Sep 2008 10:58:14 +0200 >From: Carsten Dominik <[EMAIL PROTECTED]> >Hi Plutek, > >I would like to have this too, but unfortunately many browsers ignore >alignment specified for an entire column - you need to put the >alignment into each field. This was, so far, too annoying to

Re: [Orgmode] FR: Columnview Tables & Formulas

2008-09-07 Thread Eric Schulte
Carsten Dominik <[EMAIL PROTECTED]> writes: > No, not yet - but with the recently implemented mapping functions, it > would not be so hard. Nice extension! Anyone interested in trying to > write it? > > - Carsten I second that it would be very nice to be able to specify calc/elisp functions to

[Orgmode] spreadsheet in org

2008-09-07 Thread Richard G Riley
Here is a straightforward spreadsheet: * Test org-mode spreadsheet for cash books | | Name | Cash | |---+--+| | _ | |cashforward | | | | 68000 | | _ | | cashtake | |

Fwd: [Orgmode] Re: [bug]x2 #+BEGIN_EXAMPLE can not work and #+BEGIN_SRC indent error

2008-09-07 Thread S . P . Tseng
-- Forwarded message -- From: S. P. Tseng <[EMAIL PROTECTED]> Date: Mon, Sep 8, 2008 at 8:53 AM Subject: Re: [Orgmode] Re: [bug]x2 #+BEGIN_EXAMPLE can not work and #+BEGIN_SRC indent error To: Carsten Dominik <[EMAIL PROTECTED]> Carsten Dominik <[EMAIL PROTECTED]> writes: > Well,