emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* capturing headings with |||
@ 2009-06-18 10:18 Giovanni Ridolfi
  2009-06-18 15:37 ` Carsten Dominik
  0 siblings, 1 reply; 5+ messages in thread
From: Giovanni Ridolfi @ 2009-06-18 10:18 UTC (permalink / raw)
  To: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 2106 bytes --]

Dear all,
I have found a strange behaviour in capturing column view.

Org-mode version 6.27trans  (of the 08th of June 2009)
GNU Emacs 23.0.94.1 (i386-mingw-nt5.1.2600) of 2009-05-24 on SOFT-MJASON

1. vertical bars in the heading
given the file file.org
----------file.org-------------
    -*- mode: org; -*-
* problems in the properties table
:PROPERTIES:
:COLUMNS: %40ITEM(What?) %Date %7Revision(Rev.) %TODO %Note 
:Date: 
:Revision:
:Note:
:END:
#+BEGIN: columnview :hlines 1 :id local
#+END:
** Temperature in four zones of the kiln
:PROPERTIES:
:Date: 
:Revision: R33
:Note: kiln 1
:END:
*** DONE thermocouple:  <----|  |  |  |---T
    CLOSED: [2009-06-18 gio 11:39]
:PROPERTIES:
:Date: 
:Revision: R1-0509
:Note: at last!
:END:
*** COMMENT hello
:PROPERTIES:
:Date: [2009-06-18 gio]
:Revision: R0
:Note: Even me!!!!
:END:
-------------------------------------

When I view the column view, everything is fine (see image attached).

However when I capture the "local" view, the vertical bars in the <<DONE thermocouple>> 
heading "||"  (see the red circle in the image attached)
are considered as column separators and the table becomes:

| What?                                    | Date             | Rev. | TODO | Note        |   |         |      |          |
|------------------------------------------+------------------+------+------+-------------+---+---------+------+----------|
| * bugs in the table                      |                  |      |      |             |   |         |      |          |
| ** Temperature in four zones of the kiln |                  | R33  |      | kiln 1      |   |         |      |          |
| *** thermocouple:  <----                 |                  |      |      | ---T        |   | R1-0509 | DONE | at last! |
| *** COMMENT hello                        | [2009-06-18 gio] | R0   |      | Even me!!!! |   |         |      |          |

Is it my fault or is it a bug ?-)

2. Is it possible to exclude the heading with the COMMENT keyword from the 
   column view?

cheers,
Giovanni


      

[-- Attachment #2: column-view.png --]
[-- Type: image/png, Size: 25585 bytes --]

[-- Attachment #3: Type: text/plain, Size: 204 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Remember: 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: capturing headings with |||
  2009-06-18 10:18 Giovanni Ridolfi
@ 2009-06-18 15:37 ` Carsten Dominik
  0 siblings, 0 replies; 5+ messages in thread
From: Carsten Dominik @ 2009-06-18 15:37 UTC (permalink / raw)
  To: Giovanni Ridolfi; +Cc: emacs-orgmode


On Jun 18, 2009, at 12:18 PM, Giovanni Ridolfi wrote:

> Dear all,
> I have found a strange behaviour in capturing column view.
>
> Org-mode version 6.27trans  (of the 08th of June 2009)
> GNU Emacs 23.0.94.1 (i386-mingw-nt5.1.2600) of 2009-05-24 on SOFT- 
> MJASON
>
> 1. vertical bars in the heading
> given the file file.org
> ----------file.org-------------
>    -*- mode: org; -*-
> * problems in the properties table
> :PROPERTIES:
> :COLUMNS: %40ITEM(What?) %Date %7Revision(Rev.) %TODO %Note
> :Date:
> :Revision:
> :Note:
> :END:
> #+BEGIN: columnview :hlines 1 :id local
> #+END:
> ** Temperature in four zones of the kiln
> :PROPERTIES:
> :Date:
> :Revision: R33
> :Note: kiln 1
> :END:
> *** DONE thermocouple:  <----|  |  |  |---T
>    CLOSED: [2009-06-18 gio 11:39]
> :PROPERTIES:
> :Date:
> :Revision: R1-0509
> :Note: at last!
> :END:
> *** COMMENT hello
> :PROPERTIES:
> :Date: [2009-06-18 gio]
> :Revision: R0
> :Note: Even me!!!!
> :END:
> -------------------------------------
>
> When I view the column view, everything is fine (see image attached).
>
> However when I capture the "local" view, the vertical bars in the  
> <<DONE thermocouple>>
> heading "||"  (see the red circle in the image attached)
> are considered as column separators and the table becomes:
>
> | What?                                    | Date             | Rev.  
> | TODO | Note        |   |         |      |          |
> |------------------------------------------+------------------+------ 
> +------+-------------+---+---------+------+----------|
> | * bugs in the table                      |                  |       
> |      |             |   |         |      |          |
> | ** Temperature in four zones of the kiln |                  | R33   
> |      | kiln 1      |   |         |      |          |
> | *** thermocouple:  <----                 |                  |       
> |      | ---T        |   | R1-0509 | DONE | at last! |
> | *** COMMENT hello                        | [2009-06-18 gio] | R0    
> |      | Even me!!!! |   |         |      |          |
>
> Is it my fault or is it a bug ?-)

It is a bug, the vertical bar should be escaped when capturing.
It is now.

>
> 2. Is it possible to exclude the heading with the COMMENT keyword  
> from the
>   column view?


Yes, I changed that as well.

- Carsten

>
> cheers,
> Giovanni
>
>
> <column-view.png>_______________________________________________
> Emacs-orgmode mailing list
> Remember: 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: capturing headings with |||
@ 2009-06-19 13:09 Giovanni Ridolfi
  2009-06-19 13:33 ` Carsten Dominik
  0 siblings, 1 reply; 5+ messages in thread
From: Giovanni Ridolfi @ 2009-06-19 13:09 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: emacs-orgmode


--- Gio 18/6/09, Carsten Dominik <carsten.dominik@gmail.com> ha scritto:
> 
> It is a bug, the vertical bar should be escaped when
> capturing.
> It is now.

Org-mode version 6.27trans  (of the 19th of June 2009 12:16)
GNU Emacs 23.0.94.1 (i386-mingw-nt5.1.2600) of 2009-05-24 on SOFT-MJASON

...well I can't save my column view anymore, neither update an
existing block.  =:-/

cheers,
Giovanni




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: capturing headings with |||
  2009-06-19 13:09 capturing headings with ||| Giovanni Ridolfi
@ 2009-06-19 13:33 ` Carsten Dominik
  0 siblings, 0 replies; 5+ messages in thread
From: Carsten Dominik @ 2009-06-19 13:33 UTC (permalink / raw)
  To: Giovanni Ridolfi; +Cc: emacs-orgmode


On Jun 19, 2009, at 3:09 PM, Giovanni Ridolfi wrote:

>
> --- Gio 18/6/09, Carsten Dominik <carsten.dominik@gmail.com> ha  
> scritto:
>>
>> It is a bug, the vertical bar should be escaped when
>> capturing.
>> It is now.
>
> Org-mode version 6.27trans  (of the 19th of June 2009 12:16)
> GNU Emacs 23.0.94.1 (i386-mingw-nt5.1.2600) of 2009-05-24 on SOFT- 
> MJASON
>
> ...well I can't save my column view anymore, neither update an
> existing block.  =:-/

It does work for me, with your original exaample....

- Carsten

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: capturing headings with |||
@ 2009-06-19 13:56 Giovanni Ridolfi
  0 siblings, 0 replies; 5+ messages in thread
From: Giovanni Ridolfi @ 2009-06-19 13:56 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: emacs-orgmode


My fault!

I should have re-loaded emacs.

sorry for the noise :-(

Giovanni




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-06-19 13:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-06-19 13:09 capturing headings with ||| Giovanni Ridolfi
2009-06-19 13:33 ` Carsten Dominik
  -- strict thread matches above, loose matches on Subject: below --
2009-06-19 13:56 Giovanni Ridolfi
2009-06-18 10:18 Giovanni Ridolfi
2009-06-18 15:37 ` Carsten Dominik

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).