* [babel] Bug? export with 'hidden' tables
@ 2011-02-28 18:41 Andreas Leha
2011-02-28 18:56 ` Eric Schulte
0 siblings, 1 reply; 5+ messages in thread
From: Andreas Leha @ 2011-02-28 18:41 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1.1: Type: text/plain, Size: 973 bytes --]
Hi all,
I used to have parameters in org tables, which were in secions marked
with 'noexport'. Since this weekend, this does not work for me anymore.
Is this a bug or am I doing sth wrong here?
Regards,
Andreas
PS: the example (try to export)
====================
* Parameters :noexport:
#+CAPTION: Directories
#+LABEL: tbl:directories
#+tblname: tbl_directories
| directory | path |
|----------------+--------|
| data directory | /home/ |
| plot directory | /home/ |
| code directory | /home/ |
#+CAPTION: Data Files
#+LABEL: tbl:data_files
#+tblname: tbl_data_files
| file | path |
|---------------------+--------|
| original data | data |
| original data (csv) | data_m |
* Test
#+begin_src R :session :exports results :results silent :var
data_dir=tbl_directories[2,1]
library("tikzDevice")
#+end_src
====================
[-- Attachment #1.2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 6432 bytes --]
[-- Attachment #2: Type: text/plain, Size: 201 bytes --]
_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [babel] Bug? export with 'hidden' tables
2011-02-28 18:41 [babel] Bug? export with 'hidden' tables Andreas Leha
@ 2011-02-28 18:56 ` Eric Schulte
2011-02-28 19:17 ` Andreas Leha
0 siblings, 1 reply; 5+ messages in thread
From: Eric Schulte @ 2011-02-28 18:56 UTC (permalink / raw)
To: Andreas Leha; +Cc: emacs-orgmode
Hi Andreas,
I don't know about :noexport:, but to keep a subtree from exporting, I
use the COMMENT keyword in the title, which can be done with the
`org-toggle-comment' command bound to C-c ;.
Hope this helps -- Eric
Andreas Leha <andreas.leha@med.uni-goettingen.de> writes:
> Hi all,
>
> I used to have parameters in org tables, which were in secions marked
> with 'noexport'. Since this weekend, this does not work for me anymore.
> Is this a bug or am I doing sth wrong here?
>
> Regards,
> Andreas
>
> PS: the example (try to export)
> ====================
> * Parameters :noexport:
> #+CAPTION: Directories
> #+LABEL: tbl:directories
> #+tblname: tbl_directories
> | directory | path |
> |----------------+--------|
> | data directory | /home/ |
> | plot directory | /home/ |
> | code directory | /home/ |
>
> #+CAPTION: Data Files
> #+LABEL: tbl:data_files
> #+tblname: tbl_data_files
> | file | path |
> |---------------------+--------|
> | original data | data |
> | original data (csv) | data_m |
>
>
> * Test
> #+begin_src R :session :exports results :results silent :var
> data_dir=tbl_directories[2,1]
> library("tikzDevice")
> #+end_src
>
>
> ====================
>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [babel] Bug? export with 'hidden' tables
2011-02-28 18:56 ` Eric Schulte
@ 2011-02-28 19:17 ` Andreas Leha
2011-02-28 19:32 ` Eric Schulte
0 siblings, 1 reply; 5+ messages in thread
From: Andreas Leha @ 2011-02-28 19:17 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1.1: Type: text/plain, Size: 3376 bytes --]
Hi Eric,
thanks a lot for this quick answer. I indeed was not aware of the
COMMENT keyword.
Unfortunately it does not solve the problem. When I try to export the
sample file below I still get:
'if: reference 'tbl_directories' not found in this buffer'
Cheers,
Andreas
PS: the sample (try to export it)
======================
* COMMENT Parameters
#+CAPTION: Directories
#+LABEL: tbl:directories
#+tblname: tbl_directories
| directory | path |
|----------------+--------|
| data directory | /home/ |
| plot directory | /home/ |
| code directory | /home/ |
#+CAPTION: Data Files
#+LABEL: tbl:data_files
#+tblname: tbl_data_files
| file | path |
|---------------------+--------|
| original data | data |
| original data (csv) | data_m |
* Test
#+begin_src R :session :exports results :results silent :var
data_dir=tbl_directories[2,1]
library("tikzDevice")
#+end_src
======================
Am 28.02.2011 19:56, schrieb Eric Schulte:
> Hi Andreas,
>
> I don't know about :noexport:, but to keep a subtree from exporting, I
> use the COMMENT keyword in the title, which can be done with the
> `org-toggle-comment' command bound to C-c ;.
>
> Hope this helps -- Eric
>
> Andreas Leha <andreas.leha@med.uni-goettingen.de> writes:
>
>
>> Hi all,
>>
>> I used to have parameters in org tables, which were in secions marked
>> with 'noexport'. Since this weekend, this does not work for me anymore.
>> Is this a bug or am I doing sth wrong here?
>>
>> Regards,
>> Andreas
>>
>> PS: the example (try to export)
>> ====================
>> * Parameters :noexport:
>> #+CAPTION: Directories
>> #+LABEL: tbl:directories
>> #+tblname: tbl_directories
>> | directory | path |
>> |----------------+--------|
>> | data directory | /home/ |
>> | plot directory | /home/ |
>> | code directory | /home/ |
>>
>> #+CAPTION: Data Files
>> #+LABEL: tbl:data_files
>> #+tblname: tbl_data_files
>> | file | path |
>> |---------------------+--------|
>> | original data | data |
>> | original data (csv) | data_m |
>>
>>
>> * Test
>> #+begin_src R :session :exports results :results silent :var
>> data_dir=tbl_directories[2,1]
>> library("tikzDevice")
>> #+end_src
>>
>>
>> ====================
>>
>> _______________________________________________
>> Emacs-orgmode mailing list
>> Please use `Reply All' to send replies to the list.
>> Emacs-orgmode@gnu.org
>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
--
Andreas Leha
Universitätsmedizin Göttingen
Abteilung Medizinische Statistik
Humboldtallee 32
37073 Göttingen
Tel: +49 (0)551 39-10710
Fax: +49 (0)551 39-4995
http://www.ams.med.uni-goettingen.de/amsneu/leha.html
University Medical Center Göttingen
Department for Medical Statistics
Humboldtallee 32
37073 Göttingen
Germany
Phone: +49 (0) 551 39-10710
Fax: +49 (0) 551 39-4995
http://www.ams.med.uni-goettingen.de/amsneu/leha-en.html
[-- Attachment #1.2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 6432 bytes --]
[-- Attachment #2: Type: text/plain, Size: 201 bytes --]
_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [babel] Bug? export with 'hidden' tables
2011-02-28 19:17 ` Andreas Leha
@ 2011-02-28 19:32 ` Eric Schulte
2011-03-01 7:01 ` Andreas Leha
0 siblings, 1 reply; 5+ messages in thread
From: Eric Schulte @ 2011-02-28 19:32 UTC (permalink / raw)
To: Andreas Leha; +Cc: emacs-orgmode
Ah,
This is a bug I introduced in one of my weekend commits. I've just
pushed up a fix.
Thanks for catching this -- Eric
Andreas Leha <andreas.leha@med.uni-goettingen.de> writes:
> Hi Eric,
>
> thanks a lot for this quick answer. I indeed was not aware of the
> COMMENT keyword.
>
> Unfortunately it does not solve the problem. When I try to export the
> sample file below I still get:
> 'if: reference 'tbl_directories' not found in this buffer'
>
> Cheers,
> Andreas
>
> PS: the sample (try to export it)
> ======================
>
> * COMMENT Parameters
> #+CAPTION: Directories
> #+LABEL: tbl:directories
> #+tblname: tbl_directories
> | directory | path |
> |----------------+--------|
> | data directory | /home/ |
> | plot directory | /home/ |
> | code directory | /home/ |
>
> #+CAPTION: Data Files
> #+LABEL: tbl:data_files
> #+tblname: tbl_data_files
> | file | path |
> |---------------------+--------|
> | original data | data |
> | original data (csv) | data_m |
>
>
> * Test
> #+begin_src R :session :exports results :results silent :var
> data_dir=tbl_directories[2,1]
> library("tikzDevice")
> #+end_src
>
> ======================
>
>
> Am 28.02.2011 19:56, schrieb Eric Schulte:
>> Hi Andreas,
>>
>> I don't know about :noexport:, but to keep a subtree from exporting, I
>> use the COMMENT keyword in the title, which can be done with the
>> `org-toggle-comment' command bound to C-c ;.
>>
>> Hope this helps -- Eric
>>
>> Andreas Leha <andreas.leha@med.uni-goettingen.de> writes:
>>
>>
>>> Hi all,
>>>
>>> I used to have parameters in org tables, which were in secions marked
>>> with 'noexport'. Since this weekend, this does not work for me anymore.
>>> Is this a bug or am I doing sth wrong here?
>>>
>>> Regards,
>>> Andreas
>>>
>>> PS: the example (try to export)
>>> ====================
>>> * Parameters :noexport:
>>> #+CAPTION: Directories
>>> #+LABEL: tbl:directories
>>> #+tblname: tbl_directories
>>> | directory | path |
>>> |----------------+--------|
>>> | data directory | /home/ |
>>> | plot directory | /home/ |
>>> | code directory | /home/ |
>>>
>>> #+CAPTION: Data Files
>>> #+LABEL: tbl:data_files
>>> #+tblname: tbl_data_files
>>> | file | path |
>>> |---------------------+--------|
>>> | original data | data |
>>> | original data (csv) | data_m |
>>>
>>>
>>> * Test
>>> #+begin_src R :session :exports results :results silent :var
>>> data_dir=tbl_directories[2,1]
>>> library("tikzDevice")
>>> #+end_src
>>>
>>>
>>> ====================
>>>
>>> _______________________________________________
>>> Emacs-orgmode mailing list
>>> Please use `Reply All' to send replies to the list.
>>> Emacs-orgmode@gnu.org
>>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>>>
>> _______________________________________________
>> Emacs-orgmode mailing list
>> Please use `Reply All' to send replies to the list.
>> Emacs-orgmode@gnu.org
>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [babel] Bug? export with 'hidden' tables
2011-02-28 19:32 ` Eric Schulte
@ 2011-03-01 7:01 ` Andreas Leha
0 siblings, 0 replies; 5+ messages in thread
From: Andreas Leha @ 2011-03-01 7:01 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1.1: Type: text/plain, Size: 4200 bytes --]
Thanks for the quick fix! Works nicely again!
Am 28.02.2011 20:32, schrieb Eric Schulte:
> Ah,
>
> This is a bug I introduced in one of my weekend commits. I've just
> pushed up a fix.
>
> Thanks for catching this -- Eric
>
> Andreas Leha <andreas.leha@med.uni-goettingen.de> writes:
>
>
>> Hi Eric,
>>
>> thanks a lot for this quick answer. I indeed was not aware of the
>> COMMENT keyword.
>>
>> Unfortunately it does not solve the problem. When I try to export the
>> sample file below I still get:
>> 'if: reference 'tbl_directories' not found in this buffer'
>>
>> Cheers,
>> Andreas
>>
>> PS: the sample (try to export it)
>> ======================
>>
>> * COMMENT Parameters
>> #+CAPTION: Directories
>> #+LABEL: tbl:directories
>> #+tblname: tbl_directories
>> | directory | path |
>> |----------------+--------|
>> | data directory | /home/ |
>> | plot directory | /home/ |
>> | code directory | /home/ |
>>
>> #+CAPTION: Data Files
>> #+LABEL: tbl:data_files
>> #+tblname: tbl_data_files
>> | file | path |
>> |---------------------+--------|
>> | original data | data |
>> | original data (csv) | data_m |
>>
>>
>> * Test
>> #+begin_src R :session :exports results :results silent :var
>> data_dir=tbl_directories[2,1]
>> library("tikzDevice")
>> #+end_src
>>
>> ======================
>>
>>
>> Am 28.02.2011 19:56, schrieb Eric Schulte:
>>
>>> Hi Andreas,
>>>
>>> I don't know about :noexport:, but to keep a subtree from exporting, I
>>> use the COMMENT keyword in the title, which can be done with the
>>> `org-toggle-comment' command bound to C-c ;.
>>>
>>> Hope this helps -- Eric
>>>
>>> Andreas Leha <andreas.leha@med.uni-goettingen.de> writes:
>>>
>>>
>>>
>>>> Hi all,
>>>>
>>>> I used to have parameters in org tables, which were in secions marked
>>>> with 'noexport'. Since this weekend, this does not work for me anymore.
>>>> Is this a bug or am I doing sth wrong here?
>>>>
>>>> Regards,
>>>> Andreas
>>>>
>>>> PS: the example (try to export)
>>>> ====================
>>>> * Parameters :noexport:
>>>> #+CAPTION: Directories
>>>> #+LABEL: tbl:directories
>>>> #+tblname: tbl_directories
>>>> | directory | path |
>>>> |----------------+--------|
>>>> | data directory | /home/ |
>>>> | plot directory | /home/ |
>>>> | code directory | /home/ |
>>>>
>>>> #+CAPTION: Data Files
>>>> #+LABEL: tbl:data_files
>>>> #+tblname: tbl_data_files
>>>> | file | path |
>>>> |---------------------+--------|
>>>> | original data | data |
>>>> | original data (csv) | data_m |
>>>>
>>>>
>>>> * Test
>>>> #+begin_src R :session :exports results :results silent :var
>>>> data_dir=tbl_directories[2,1]
>>>> library("tikzDevice")
>>>> #+end_src
>>>>
>>>>
>>>> ====================
>>>>
>>>> _______________________________________________
>>>> Emacs-orgmode mailing list
>>>> Please use `Reply All' to send replies to the list.
>>>> Emacs-orgmode@gnu.org
>>>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>>>>
>>>>
>>> _______________________________________________
>>> Emacs-orgmode mailing list
>>> Please use `Reply All' to send replies to the list.
>>> Emacs-orgmode@gnu.org
>>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>>>
>>>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
--
Andreas Leha
Universitätsmedizin Göttingen
Abteilung Medizinische Statistik
Humboldtallee 32
37073 Göttingen
Tel: +49 (0)551 39-10710
Fax: +49 (0)551 39-4995
http://www.ams.med.uni-goettingen.de/amsneu/leha.html
University Medical Center Göttingen
Department for Medical Statistics
Humboldtallee 32
37073 Göttingen
Germany
Phone: +49 (0) 551 39-10710
Fax: +49 (0) 551 39-4995
http://www.ams.med.uni-goettingen.de/amsneu/leha-en.html
[-- Attachment #1.2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 6432 bytes --]
[-- Attachment #2: Type: text/plain, Size: 201 bytes --]
_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-03-01 7:00 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-28 18:41 [babel] Bug? export with 'hidden' tables Andreas Leha
2011-02-28 18:56 ` Eric Schulte
2011-02-28 19:17 ` Andreas Leha
2011-02-28 19:32 ` Eric Schulte
2011-03-01 7:01 ` Andreas Leha
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).