* Bug: various short questions about column view, code blocks and export [8.3.4 (release_8.3.4-759-g9508dc @ /home/youngfrog/sources/org-mode/lisp/)]
@ 2016-04-28 13:41 Nicolas Richard
2016-04-28 15:33 ` Nicolas Goaziou
0 siblings, 1 reply; 3+ messages in thread
From: Nicolas Richard @ 2016-04-28 13:41 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 128 bytes --]
Hi all,
The inlined file below contains both the material needed to reproduce
the problems I have and a description of those.
[-- Attachment #2: mytest.org --]
[-- Type: text/plain, Size: 1588 bytes --]
* a tree with some info for column view
:PROPERTIES:
:ID: monid
:COLUMNS: %25ITEM %PROP
:END:
** foo
:PROPERTIES:
:PROP: yow
:END:
** bar
:PROPERTIES:
:PROP: bow
:END:
** baz
:PROPERTIES:
:PROP: low
:END:
* show the column view here
#+BEGIN: columnview :hlines 1 :id monid :skip-empty-rows t
| ITEM | PROP |
|------+------|
| foo | yow |
| bar | bow |
| baz | low |
#+END:
* use the data from the column view in a src block
#+BEGIN_SRC elisp :var chap = mytable :exports results
'anything
#+END_SRC
* discussion
I open this org file with :
: emacs -q -L ~/sources/org-mode/lisp -l org.el --eval '(setq org-export-babel-evaluate nil)' tmp/mytest.org
where tmp/mytest.org is the name of the file.
First, I notice that adding the :ARCHIVE: tag to the first headline
and trying to show column view doesn't work. it seems to do
nothing. Ok so let's remove that tag again.
Now, hitting =C-c C-c= in the code block gives ~Reference not
found~. Which reference is it ? IDK.
Removing the TBLNAME line and hitting =C-c C-c= on the code block
again now gives ~Reference `mytable' not found in this buffer~. I
guess it's a better error ?
Now when I'm trying to export, I get the same errors as above, even
though I have =org-export-babel-evaluate= set to =nil=.
I honestly don't know if I'm doing it wrong or if it's org acting weird.
I have Org-mode version 8.3.4 (release_8.3.4-759-g9508dc @ /home/youngfrog/sources/org-mode/lisp/)
I have GNU Emacs 24.5.50.1 (i686-pc-linux-gnu, GTK+ Version 3.14.10) of 2015-05-18 on localhost
[-- Attachment #3: Type: text/plain, Size: 21 bytes --]
--
Nicolas Richard
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Bug: various short questions about column view, code blocks and export [8.3.4 (release_8.3.4-759-g9508dc @ /home/youngfrog/sources/org-mode/lisp/)]
2016-04-28 13:41 Bug: various short questions about column view, code blocks and export [8.3.4 (release_8.3.4-759-g9508dc @ /home/youngfrog/sources/org-mode/lisp/)] Nicolas Richard
@ 2016-04-28 15:33 ` Nicolas Goaziou
2016-04-28 15:50 ` Nicolas Richard
0 siblings, 1 reply; 3+ messages in thread
From: Nicolas Goaziou @ 2016-04-28 15:33 UTC (permalink / raw)
To: Nicolas Richard; +Cc: emacs-orgmode
Hello,
Nicolas Richard <nrichard@ulb.ac.be> writes:
> The inlined file below contains both the material needed to reproduce
> the problems I have and a description of those.
>
> * a tree with some info for column view
> :PROPERTIES:
> :ID: monid
> :COLUMNS: %25ITEM %PROP
> :END:
> ** foo
> :PROPERTIES:
> :PROP: yow
> :END:
> ** bar
> :PROPERTIES:
> :PROP: bow
> :END:
> ** baz
> :PROPERTIES:
> :PROP: low
> :END:
> * show the column view here
> #+BEGIN: columnview :hlines 1 :id monid :skip-empty-rows t
> | ITEM | PROP |
> |------+------|
> | foo | yow |
> | bar | bow |
> | baz | low |
> #+END:
> * use the data from the column view in a src block
> #+BEGIN_SRC elisp :var chap = mytable :exports results
> 'anything
> #+END_SRC
>
> * discussion
> I open this org file with :
> : emacs -q -L ~/sources/org-mode/lisp -l org.el --eval '(setq org-export-babel-evaluate nil)' tmp/mytest.org
> where tmp/mytest.org is the name of the file.
>
> First, I notice that adding the :ARCHIVE: tag to the first headline
> and trying to show column view doesn't work. it seems to do
> nothing. Ok so let's remove that tag again.
This is a feature. Archived subtrees are ignored when calling column
view. As you noticed, in this case, removing the tag is the way to go.
> Now, hitting =C-c C-c= in the code block gives ~Reference not
> found~. Which reference is it ? IDK.
There is no #+NAME: mytable in your example.
> Removing the TBLNAME line and hitting =C-c C-c= on the code block
> again now gives ~Reference `mytable' not found in this buffer~. I
> guess it's a better error ?
OK, so I guess there wase a TBLNAME line somewhere within the file. Be
sure it is located above the table, not above the dynamic block.
> Now when I'm trying to export, I get the same errors as above, even
> though I have =org-export-babel-evaluate= set to =nil=.
This is fixed. Thank you.
Regards,
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Bug: various short questions about column view, code blocks and export [8.3.4 (release_8.3.4-759-g9508dc @ /home/youngfrog/sources/org-mode/lisp/)]
2016-04-28 15:33 ` Nicolas Goaziou
@ 2016-04-28 15:50 ` Nicolas Richard
0 siblings, 0 replies; 3+ messages in thread
From: Nicolas Richard @ 2016-04-28 15:50 UTC (permalink / raw)
To: Nicolas Goaziou; +Cc: emacs-orgmode
Nicolas Goaziou <mail@nicolasgoaziou.fr> writes:
> This is a feature. Archived subtrees are ignored when calling column
> view. As you noticed, in this case, removing the tag is the way to go.
ok
> There is no #+NAME: mytable in your example.
> OK, so I guess there wase a TBLNAME line somewhere within the file.
Indeed, sorry, it was lost during the testing.
> Be sure it is located above the table, not above the dynamic block.
thanks, I did not realize this was the way to go :
#+BEGIN: columnview :hlines 1 :id monid :skip-empty-rows t
#+TBLNAME: mytable
...
#+END:
(I thought anything between BEGIN and END would be removed on the next
update -- but the TBLNAME line is kept.)
>> Now when I'm trying to export, I get the same errors as above, even
>> though I have =org-export-babel-evaluate= set to =nil=.
>
> This is fixed.
Indeed, thanks!
--
Nicolas
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-04-28 15:50 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-28 13:41 Bug: various short questions about column view, code blocks and export [8.3.4 (release_8.3.4-759-g9508dc @ /home/youngfrog/sources/org-mode/lisp/)] Nicolas Richard
2016-04-28 15:33 ` Nicolas Goaziou
2016-04-28 15:50 ` Nicolas Richard
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).