Re: [O] Importing from Oddmuse?

2013-10-31 Thread Marcin Borkowski
Dnia 2013-10-30, o godz. 18:44:53 Peter Davis p...@pfdstudio.com napisał(a): On Thu, Oct 31, 2013 at 02:38:48AM +0530, Jambunathan K wrote: Peter Davis p...@pfdstudio.com writes: I've used Oddmuse for years to maintain my own personal Wiki, but now I'm looking to move to Org mode.

Re: [O] [RFC] [PATCH] [parser] org-element.el: Handle block parameters

2013-10-31 Thread Nicolas Goaziou
Hello, Aaron Ecay aarone...@gmail.com writes: 2013ko urriak 30an, Nicolas Goaziou-ek idatzi zuen: IIRC, I already suggested a solution with Babel for this problem. There's no need to complicate core Org syntax for such a specific case. And I already said why I disagree that your proposal

Re: [O] RLT (hebrew) tables and org-odt-export-to-odt problems

2013-10-31 Thread Uwe Brauer
Jambunathan == Jambunathan K Jambunathan writes: In LibreOffice, Right click on the table-Table-Text Direction-Right-to-Left. I attach three files. r2ltableOO.odt has been generated by OO, and displays the text as intended. r2ltableorg.org is the org file and displays the text

Re: [O] [RFC] Slight change to asynchronous export

2013-10-31 Thread Nicolas Goaziou
Hello, Rick Frankel r...@rickster.com writes: On 2013-10-30 06:00, Nicolas Goaziou wrote: Helo, For reference, here is the suggested patch. Is there any strong point against it? looks great to me. Applied. Regards, -- Nicolas Goaziou

Re: [O] [PATCH] hide inline-tasks in 'children visibility state

2013-10-31 Thread Nicolas Goaziou
Hello, co...@online.de (Jonas Hörsch) writes: one more patch, which takes care of re-hiding inline-tasks properly. finally it is possible to work with longer inline tasks without them getting always in the way. Thank you for the patch. Here are a few comments. Subject: [PATCH]

Re: [O] [PATCH] Longtable continuation strings customizable

2013-10-31 Thread Nicolas Goaziou
Hello, t...@tsdye.com (Thomas S. Dye) writes: I have this, based on the example above: #+name: tsd-continuation-strings #+begin_src emacs-lisp (defun my-personal-table-continuation-strings (row backend info) (when (org-export-derived-backend-p 'latex)

Re: [O] make new links show as figures?

2013-10-31 Thread Alan Schmitt
r...@rickster.com writes: On 2013-10-26 08:10, John Kitchin wrote: Other than having to repeat yourself, wouldn't the [[custom:file.ext][file:file.png]] syntax allow for most/all of the use cases mentioned? rick Yes, I think [[custom:file.ext][file:file.png]] would cover all those

[O] check if properties drawer exists before creating or manipulating?

2013-10-31 Thread Matt Price
(still trying to set properties automatically when a minor-mode is set, see first message in thread) Is there a simple way to check if the properties drawer exists before creating one? I'm trying to add a hook to org-insert-heading-hook that will create a property drawer if one doesn't exist; I

[O] check if properties drawer exists before creating or manipulating?

2013-10-31 Thread Matt Price
Is there a simple way to check if the properties drawer exists before creating one? I'm trying to add a hook to org-insert-heading-hook that will create a property drawer if one doesn't exist (see my earlier email, in which I ask,

Re: [O] linebreak after tag of headline in ox-latex.el

2013-10-31 Thread Rasmus Rempling
Sorry for the delayed answer. Yes, you are right, sort of. In my set-up, the todo ended up as a paragraph environment. I have changed my export class in order to export the todo as a subsection or subsubsection. This gives the correct result. My error is of course in line with the latex

Re: [O] check if properties drawer exists before creating or manipulating?

2013-10-31 Thread Marcin Borkowski
Dnia 2013-10-31, o godz. 10:18:01 Matt Price mopto...@gmail.com napisał(a): Is there a simple way to check if the properties drawer exists before creating one? I'm trying to add a hook to org-insert-heading-hook that will create a property drawer if one doesn't exist (see my earlier email, in

Re: [O] check if properties drawer exists before creating or manipulating?

2013-10-31 Thread Nick Dokos
Matt Price mopto...@gmail.com writes: (still trying to set properties automatically when a minor-mode is set, see first message in thread) Is there a simple way to check if the properties drawer exists before creating one? I'm trying to add a hook to org-insert-heading-hook that will create

Re: [O] make new links show as figures?

2013-10-31 Thread Rick Frankel
On 2013-10-31 06:04, Alan Schmitt wrote: r...@rickster.com writes: So it turns out that this is a REALLY simple patch (two characters): +++ b/lisp/org.el @@ -18853,7 +18853,7 @@ BEG and END default to the buffer boundaries. (widen) (setq beg (or beg (point-min)) end (or end (point-max)))

Re: [O] make new links show as figures?

2013-10-31 Thread Cook, Malcolm
So it turns out that this is a REALLY simple patch (two characters): +++ b/lisp/org.el @@ -18853,7 +18853,7 @@ BEG and END default to the buffer boundaries. (widen) (setq beg (or beg (point-min)) end (or end (point-max))) (goto-char beg) - (let ((re (concat

[O] Bug? org-set-tags never uses ido

2013-10-31 Thread Anders Johansson
Greetings, I want to use ido everywhere and wanted to know why this doesn't seem to work for setting org-mode tags (it never has for me). Using edebug to step through the call to org-icompleting-read which org-set-tags does I can see that it never gets to using ido since the last condition

Re: [O] Arbitrary lisp functions in column-attributes

2013-10-31 Thread Mark Edgington
Hello all, Since the formatting on my earlier post was bad, I'm re-posting this with a bit more information: I would really appreciate it if it were possible to specify an arbitrary lisp function to process node-properties when creating a column view. Currently it is possible to have something

Re: [O] make new links show as figures?

2013-10-31 Thread Rick Frankel
On 2013-10-31 12:20, Cook, Malcolm wrote: So it turns out that this is a REALLY simple patch (two characters): +++ b/lisp/org.el @@ -18853,7 +18853,7 @@ BEG and END default to the buffer boundaries. (widen) (setq beg (or beg (point-min)) end (or end (point-max))) (goto-char beg) -

Re: [O] make new links show as figures?

2013-10-31 Thread Alan Schmitt
r...@rickster.com writes: So, I've done some testing of the export functions (html and latex only) and found the following behaviors with this patch: - HTML - image in description only displayed if the protocol (file:) is included. - LaTeX - same, required file: protocol in description -

Re: [O] Arbitrary lisp functions in column-attributes

2013-10-31 Thread Aaron Ecay
Hi Mark, This seems like an intriguing idea. I have just one question: how would this interact with editing in column view? Would function-valued property columns be read only? Or do you have something different in mind? -- Aaron Ecay

Re: [O] [RFC] [PATCH] [parser] org-element.el: Handle block parameters

2013-10-31 Thread Aaron Ecay
Hi Nicolas, 2013ko urriak 31an, Nicolas Goaziou-ek idatzi zuen: [...] Moreover, your proposal, IMO, is not well-enough defined. You merely add a free-form string and call it parameters. Parameters for what? Which syntax: a plist, switches? I think a plist would work fine, indeed. Why

Re: [O] [RFC] [PATCH] [parser] org-element.el: Handle block parameters

2013-10-31 Thread Nicolas Goaziou
Hello, Aaron Ecay aarone...@gmail.com writes: Very interesting. I did not realize that #+header: could apply to elements other than babel blocks. (Babel blocks are all that is documented in the manual, for example.) But a quick experiment shows that they can. I think #+header with a

Re: [O] [RFC] Do not declare drawers to use them

2013-10-31 Thread Nicolas Goaziou
Hello, Carsten Dominik carsten.domi...@gmail.com writes: On 21.10.2013, at 12:03, Nicolas Goaziou n.goaz...@gmail.com wrote: Hello, Carsten Dominik carsten.domi...@gmail.com writes: I think one objection agains this patch is that, I think, MobileOrg relies on #+DRAWERS lines to be

Re: [O] [PATCH] Longtable continuation strings customizable

2013-10-31 Thread Thomas S. Dye
Nicolas Goaziou n.goaz...@gmail.com writes: In a nutshell: (defun my-personal-table-continuation-strings (row backend info) (when (org-export-derived-backend-p backend 'latex) (replace-regexp-in-string multicolumn{[0-9]+}{l}{\\(.*\\)} \\ldots\\ continued from previous

[O] Org Mode Customization Survey 2013

2013-10-31 Thread Mike McLean
All As discussed a few days ago on this list, Carsten and the other developers are interested in what and how us users are customizing Org mode. This was first done in 2009, so a re-do of the survey is useful as is for how people are using Org now, as well as a comparison to the past. Carsten

Re: [O] Bug? org-set-tags never uses ido

2013-10-31 Thread Eric Abrahamsen
Anders Johansson mejlaande...@gmail.com writes: Greetings, I want to use ido everywhere and wanted to know why this doesn't seem to work for setting org-mode tags (it never has for me). Using edebug to step through the call to org-icompleting-read which org-set-tags does I can see that it

[O] Beamer and org-language source blocks?

2013-10-31 Thread James Harkins
Maybe there is something obvious I'm missing, but I'm having considerable trouble using org-language source code blocks in Beamer export. The objective is to show a little of the org code that made the presentation. This means including some headers. I had thought that declaring the source

Re: [O] Writing Challenge

2013-10-31 Thread Ivan Andrus
I'm really sorry I didn't reply sooner. I was out of town, and then I forgot to follow up. On Oct 27, 2013, at 2:07 AM, Alan Schmitt alan.schm...@polytechnique.org wrote: Hi Ivan, darthand...@gmail.com writes: Very interesting! I have been working on a mode which gives the current