[O] Spreadsheet - issue with remote reference to named column

2015-09-10 Thread Daniel Gerber
Hi, The docs say that the REF argument to remote can be "@3$3 or $somename, valid in the referenced table". So, adapting the tutorial, the last column here should get the same values as the second one, right? | currency | rate (@r$c ref) | rate (named ref) | |--+-+---

Re: [O] [PATCH] Strip text properties from string code block arguments

2014-01-08 Thread Daniel Gerber
On 08/01/2014 17:31, Bastien wrote: Daniel Gerber writes: This change in org-babel-python-var-to-python makes python code blocks accept a string with text properties (as one gets when referring another code block). I guess there should be something similar for other languages. I've now

Re: [O] [PATCH] Strip text properties from string code block arguments

2014-01-08 Thread Daniel Gerber
Hi Bastien, On 07/01/2014 18:31, Bastien wrote: Daniel Gerber writes: This change in org-babel-python-var-to-python makes python code blocks accept a string with text properties (as one gets when referring another code block). I guess there should be something similar for other languages. I

[O] [PATCH] Strip text properties from string code block arguments

2014-01-07 Thread Daniel Gerber
Hi, This change in org-babel-python-var-to-python makes python code blocks accept a string with text properties (as one gets when referring another code block). I guess there should be something similar for other languages. diff --git a/lisp/ob-python.el b/lisp/ob-python.el index 1457682..baa

[O] Not all table formulas are updated when swapping columns

2013-12-16 Thread Daniel Gerber
Hi, A minor bug with spreadsheets: when swapping two columns in a table (alt+left), column formulas are updated only when defined in the first #+TBLFM: line. That is, this table | | | #+TBLFM: $1=1::$2=2 after swapping becomes (correctly) | | | #+TBLFM: $2=1::$1=2 but with this on

Re: [O] Ignored in-buffer settings and after-export hook

2013-12-03 Thread Daniel Gerber
esting the following patch? Yes it works for me. Thanks! Daniel Gerber

Re: [O] Ignored in-buffer settings and after-export hook

2013-08-29 Thread Daniel Gerber
Hello, I guess I can, but it means re-doing the mapping sources to exported file names. AFAICT, there is only one place where both the source and the output name are known: in `org-publish-file', right after a file has been published. We may add a hook there. Since, at that time, the current bu

Re: [O] Ignored in-buffer settings and after-export hook

2013-08-26 Thread Daniel Gerber
Hi, On 26/08/2013 13:45, Nicolas Goaziou wrote: Hello, Daniel Gerber writes: 2. Is the after-export hook gone with the new exporter framework? I used this to get the list of a project's exported files: (setq html-files-list () org-publish-after-export

[O] Ignored in-buffer settings and after-export hook

2013-08-25 Thread Daniel Gerber
Hi, Two difficulties in exporting to html5: 1. With the current master branch, some in-buffer settings are ignored: #+TITLE: Trying to export to html5 #+DESCRIPTION: this won't appear in the exported document... #+KEYWORDS: html5 exporter meta #+HTML_DOCTYPE: html5 #+AUTHOR: me

[O] [BUG] List argument to a shell code block

2013-07-15 Thread Daniel Gerber
Hello, It seems that passing a list to a shell code-block is broken: #+CALL: echo-sh(arg-list) #+RESULTS: echo-sh(arg-list) | 97 | | 98 | | 99 | | 120 | | 121 | | 122 | #+NAME: arg-list - abc - xyz #+NAME: echo-sh #+BEGIN_SRC sh :var arg=arg-list for a in $arg; do echo "$a" done #+END_