emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Bug: Property inheritance not working in columns [7.9.3f (release_7.9.3f-17-g7524ef @ /usr/share/emacs/24.3/lisp/org/)]
@ 2015-06-01 17:27 Nik Clayton
  0 siblings, 0 replies; 6+ messages in thread
From: Nik Clayton @ 2015-06-01 17:27 UTC (permalink / raw)
  To: emacs-orgmode

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

Property inheritance does not seem to work when running C-c C-x C-c
(org-columns).

Reproduction recipe:

1. Start emacs with "emacs -Q"

2. Evaluate the following to enable property inheritance, and to define
custom columns that include the value of the "PROJECT" property.

  (setq org-columns-default-format
        "%CATEGORY %15PROJECT(Project) %55ITEM(Task)")

  (setq org-use-property-inheritance t)

3. Load the following in to an org-mode buffer.

* TODO Test
  :PROPERTIES:
  :CATEGORY: Cat. Name
  :PROJECT: Proj. Name
  :END:

** TODO A subtask
   This is a subtask

** TODO Another subtask
   This is another subtask


4. Run C-c C-x C-c in the buffer to enable org-columns.


Expected result:

A buffer that looks something like:

CATEGORY  | Project          | Task
Cat. Name | Proj. Name       | * TODO Test
Cat. Name | Proj. Name       | ** TODO A subtask
Cat. Name | Proj. Name       | ** TODO Another subtask


Actual result:

A buffer where the "PROJECT" property has not been inherited, and looks
like this:

CATEGORY  | Project          | Task
Cat. Name | Proj. Name       | * TODO Test
Cat. Name |                  | ** TODO A subtask
Cat. Name |                  | ** TODO Another subtask


Inspecting the value of the variable org-columns-default-format with
M-x show-variable tells me:

org-columns-default-format's value is
"%CATEGORY %15PROJECT(Project) %55ITEM(Task)"
Original value was
"%25ITEM %TODO %3PRIORITY %TAGS"


I can also reproduce this on org-mode from the Git repository
(reproduced with 1a7364177046...) and it's also noted on
http://emacs.stackexchange.com/questions/7335.


Emacs  : GNU Emacs 24.3.1 (x86_64-pc-linux-gnu, GTK+ Version 3.10.7)
 of 2014-03-07 on lamiak, modified by Debian
Package: Org-mode version 7.9.3f (release_7.9.3f-17-g7524ef @
/usr/share/emacs/24.3/lisp/org/)

current state:
==============
(setq
 org-export-preprocess-before-selecting-backend-code-hook
'(org-beamer-select-beamer-code)
 org-tab-first-hook '(org-hide-block-toggle-maybe
      org-src-native-tab-command-maybe
      org-babel-hide-result-toggle-maybe
      org-babel-header-arg-expand)
 org-speed-command-hook '(org-speed-command-default-hook
  org-babel-speed-command-hook)
 org-occur-hook '(org-first-headline-recenter)
 org-metaup-hook '(org-babel-load-in-session-maybe)
 org-export-preprocess-before-normalizing-links-hook
'(org-remove-file-link-modifiers)
 org-confirm-shell-link-function 'yes-or-no-p
 org-columns-default-format "%CATEGORY %15Project(Project) %55ITEM(Task)"
 org-export-latex-final-hook '(org-beamer-amend-header org-beamer-fix-toc
       org-beamer-auto-fragile-frames
       org-beamer-place-default-actions-for-lists)
 org-export-latex-after-initial-vars-hook '(org-beamer-after-initial-vars)
 org-after-todo-state-change-hook '(org-clock-out-if-current)
 org-src-mode-hook '(org-src-babel-configure-edit-buffer
     org-src-mode-configure-edit-buffer)
 org-agenda-before-write-hook '(org-agenda-add-entry-text)
 org-babel-pre-tangle-hook '(save-buffer)
 org-mode-hook '(#[nil "\300\301\302\303\304$\207"
   [org-add-hook change-major-mode-hook org-show-block-all
    append local]
   5]
 #[nil "\300\301\302\303\304$\207"
   [org-add-hook change-major-mode-hook
    org-babel-show-result-all append local]
   5]
 org-babel-result-hide-spec org-babel-hide-all-hashes)
 org-ctrl-c-ctrl-c-hook '(org-babel-hash-at-point
  org-babel-execute-safely-maybe)
 org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers
  org-cycle-show-empty-lines
  org-optimize-window-after-visibility-change)
 org-export-latex-format-toc-function 'org-export-latex-format-toc-default
 org-export-blocks '((src org-babel-exp-src-block nil)
     (export-comment org-export-blocks-format-comment t)
     (ditaa org-export-blocks-format-ditaa nil)
     (dot org-export-blocks-format-dot nil))
 org-export-first-hook '(org-beamer-initialize-open-trackers)
 org-export-interblocks '((src org-babel-exp-non-block-elements))
 org-use-property-inheritance t
 org-confirm-elisp-link-function 'yes-or-no-p
 org-metadown-hook '(org-babel-pop-to-session-maybe)
 org-clock-out-hook '(org-clock-remove-empty-clock-drawer)
 )


-- 
http://try-dot-ch.blogspot.com/

[-- Attachment #2: Type: text/html, Size: 7066 bytes --]

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

* Bug: Property inheritance not working in columns [7.9.3f (release_7.9.3f-17-g7524ef @ /usr/share/emacs/24.3/lisp/org/)]
@ 2015-06-02 10:57 Nik Clayton
  2015-06-02 15:06 ` Nicolas Goaziou
  0 siblings, 1 reply; 6+ messages in thread
From: Nik Clayton @ 2015-06-02 10:57 UTC (permalink / raw)
  To: emacs-orgmode

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

Property inheritance does not seem to work when running C-c C-x C-c
(org-columns).

Reproduction recipe (I can also reproduce this on org-mode from the Git
repository
(reproduced with 1a7364177046... and it's also noted on
http://emacs.stackexchange.com/questions/7335).


1. Start emacs with "emacs -Q"

2. Evaluate the following to enable property inheritance, and to define
custom columns that include the value of the "PROJECT" property.

  (setq org-columns-default-format
        "%CATEGORY %15PROJECT(Project) %55ITEM(Task)")

  (setq org-use-property-inheritance t)

3. Load the following in to an org-mode buffer.

* TODO Test
  :PROPERTIES:
  :CATEGORY: Cat. Name
  :PROJECT: Proj. Name
  :END:

** TODO A subtask
   This is a subtask

** TODO Another subtask
   This is another subtask


4. Run C-c C-x C-c in the buffer to enable org-columns.


Expected result:

A buffer that looks something like:

CATEGORY  | Project          | Task
Cat. Name | Proj. Name       | * TODO Test
Cat. Name | Proj. Name       | ** TODO A subtask
Cat. Name | Proj. Name       | ** TODO Another subtask


Actual result:

A buffer where the "PROJECT" property has not been inherited, and looks
like this:

CATEGORY  | Project          | Task
Cat. Name | Proj. Name       | * TODO Test
Cat. Name |                  | ** TODO A subtask
Cat. Name |                  | ** TODO Another subtask


Inspecting the value of the variable org-columns-default-format with
M-x show-variable tells me:

org-columns-default-format's value is
"%CATEGORY %15PROJECT(Project) %55ITEM(Task)"
Original value was
"%25ITEM %TODO %3PRIORITY %TAGS"




Emacs  : GNU Emacs 24.3.1 (x86_64-pc-linux-gnu, GTK+ Version 3.10.7)
 of 2014-03-07 on lamiak, modified by Debian
Package: Org-mode version 7.9.3f (release_7.9.3f-17-g7524ef @
/usr/share/emacs/24.3/lisp/org/)

current state:
==============
(setq
 org-export-preprocess-before-selecting-backend-code-hook
'(org-beamer-select-beamer-code)
 org-tab-first-hook '(org-hide-block-toggle-maybe
      org-src-native-tab-command-maybe
      org-babel-hide-result-toggle-maybe
      org-babel-header-arg-expand)
 org-speed-command-hook '(org-speed-command-default-hook
  org-babel-speed-command-hook)
 org-occur-hook '(org-first-headline-recenter)
 org-metaup-hook '(org-babel-load-in-session-maybe)
 org-export-preprocess-before-normalizing-links-hook
'(org-remove-file-link-modifiers)
 org-confirm-shell-link-function 'yes-or-no-p
 org-columns-default-format "%CATEGORY %15Project(Project) %55ITEM(Task)"
 org-export-latex-final-hook '(org-beamer-amend-header org-beamer-fix-toc
       org-beamer-auto-fragile-frames
       org-beamer-place-default-actions-for-lists)
 org-export-latex-after-initial-vars-hook '(org-beamer-after-initial-vars)
 org-after-todo-state-change-hook '(org-clock-out-if-current)
 org-src-mode-hook '(org-src-babel-configure-edit-buffer
     org-src-mode-configure-edit-buffer)
 org-agenda-before-write-hook '(org-agenda-add-entry-text)
 org-babel-pre-tangle-hook '(save-buffer)
 org-mode-hook '(#[nil "\300\301\302\303\304$\207"
   [org-add-hook change-major-mode-hook org-show-block-all
    append local]
   5]
 #[nil "\300\301\302\303\304$\207"
   [org-add-hook change-major-mode-hook
    org-babel-show-result-all append local]
   5]
 org-babel-result-hide-spec org-babel-hide-all-hashes)
 org-ctrl-c-ctrl-c-hook '(org-babel-hash-at-point
  org-babel-execute-safely-maybe)
 org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers
  org-cycle-show-empty-lines
  org-optimize-window-after-visibility-change)
 org-export-latex-format-toc-function 'org-export-latex-format-toc-default
 org-export-blocks '((src org-babel-exp-src-block nil)
     (export-comment org-export-blocks-format-comment t)
     (ditaa org-export-blocks-format-ditaa nil)
     (dot org-export-blocks-format-dot nil))
 org-export-first-hook '(org-beamer-initialize-open-trackers)
 org-export-interblocks '((src org-babel-exp-non-block-elements))
 org-use-property-inheritance t
 org-confirm-elisp-link-function 'yes-or-no-p
 org-metadown-hook '(org-babel-pop-to-session-maybe)
 org-clock-out-hook '(org-clock-remove-empty-clock-drawer)
 )

[-- Attachment #2: Type: text/html, Size: 6881 bytes --]

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

* Re: Bug: Property inheritance not working in columns [7.9.3f (release_7.9.3f-17-g7524ef @ /usr/share/emacs/24.3/lisp/org/)]
  2015-06-02 10:57 Bug: Property inheritance not working in columns [7.9.3f (release_7.9.3f-17-g7524ef @ /usr/share/emacs/24.3/lisp/org/)] Nik Clayton
@ 2015-06-02 15:06 ` Nicolas Goaziou
  2015-06-02 15:55   ` Nik Clayton
  0 siblings, 1 reply; 6+ messages in thread
From: Nicolas Goaziou @ 2015-06-02 15:06 UTC (permalink / raw)
  To: Nik Clayton; +Cc: emacs-orgmode

Hello,

Nik Clayton <nik@ngo.org.uk> writes:

> Property inheritance does not seem to work when running C-c C-x C-c
> (org-columns).
>
> Reproduction recipe (I can also reproduce this on org-mode from the Git
> repository
> (reproduced with 1a7364177046... and it's also noted on
> http://emacs.stackexchange.com/questions/7335).
>
>
> 1. Start emacs with "emacs -Q"
>
> 2. Evaluate the following to enable property inheritance, and to define
> custom columns that include the value of the "PROJECT" property.
>
>   (setq org-columns-default-format
>         "%CATEGORY %15PROJECT(Project) %55ITEM(Task)")
>
>   (setq org-use-property-inheritance t)
>
> 3. Load the following in to an org-mode buffer.
>
> * TODO Test
>   :PROPERTIES:
>   :CATEGORY: Cat. Name
>   :PROJECT: Proj. Name
>   :END:
>
> ** TODO A subtask
>    This is a subtask
>
> ** TODO Another subtask
>    This is another subtask
>
>
> 4. Run C-c C-x C-c in the buffer to enable org-columns.
>
>
> Expected result:
>
> A buffer that looks something like:
>
> CATEGORY  | Project          | Task
> Cat. Name | Proj. Name       | * TODO Test
> Cat. Name | Proj. Name       | ** TODO A subtask
> Cat. Name | Proj. Name       | ** TODO Another subtask
>
>
> Actual result:
>
> A buffer where the "PROJECT" property has not been inherited, and looks
> like this:
>
> CATEGORY  | Project          | Task
> Cat. Name | Proj. Name       | * TODO Test
> Cat. Name |                  | ** TODO A subtask
> Cat. Name |                  | ** TODO Another subtask
>
>
> Inspecting the value of the variable org-columns-default-format with
> M-x show-variable tells me:
>
> org-columns-default-format's value is
> "%CATEGORY %15PROJECT(Project) %55ITEM(Task)"
> Original value was
> "%25ITEM %TODO %3PRIORITY %TAGS"

Fixed in 0f93638ce1b29792033231426a4555e538f5c959. Thank you.


Regards,

-- 
Nicolas Goaziou

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

* Re: Bug: Property inheritance not working in columns [7.9.3f (release_7.9.3f-17-g7524ef @ /usr/share/emacs/24.3/lisp/org/)]
  2015-06-02 15:06 ` Nicolas Goaziou
@ 2015-06-02 15:55   ` Nik Clayton
  2015-06-02 20:02     ` Nicolas Goaziou
  0 siblings, 1 reply; 6+ messages in thread
From: Nik Clayton @ 2015-06-02 15:55 UTC (permalink / raw)
  To: Nik Clayton, emacs-orgmode

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

Hi Nicolas,

On 2 June 2015 at 16:06, Nicolas Goaziou <mail@nicolasgoaziou.fr> wrote:

> Fixed in 0f93638ce1b29792033231426a4555e538f5c959. Thank you.
>

That was quick, thanks.

I also see the same problem in agenda view (org-agenda-columns)

N
-- 
http://try-dot-ch.blogspot.com/

[-- Attachment #2: Type: text/html, Size: 920 bytes --]

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

* Re: Bug: Property inheritance not working in columns [7.9.3f (release_7.9.3f-17-g7524ef @ /usr/share/emacs/24.3/lisp/org/)]
  2015-06-02 15:55   ` Nik Clayton
@ 2015-06-02 20:02     ` Nicolas Goaziou
  2015-06-03  8:36       ` Nik Clayton
  0 siblings, 1 reply; 6+ messages in thread
From: Nicolas Goaziou @ 2015-06-02 20:02 UTC (permalink / raw)
  To: Nik Clayton; +Cc: emacs-orgmode

Nik Clayton <nik@ngo.org.uk> writes:

> I also see the same problem in agenda view (org-agenda-columns)

Fixed in 03936a50f4fe9a261577d467098ed1080c61cb6e. Thank you.


Regards,

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

* Re: Bug: Property inheritance not working in columns [7.9.3f (release_7.9.3f-17-g7524ef @ /usr/share/emacs/24.3/lisp/org/)]
  2015-06-02 20:02     ` Nicolas Goaziou
@ 2015-06-03  8:36       ` Nik Clayton
  0 siblings, 0 replies; 6+ messages in thread
From: Nik Clayton @ 2015-06-03  8:36 UTC (permalink / raw)
  To: Nik Clayton, emacs-orgmode

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

On 2 June 2015 at 21:02, Nicolas Goaziou <mail@nicolasgoaziou.fr> wrote:

> Nik Clayton <nik@ngo.org.uk> writes:
>
> > I also see the same problem in agenda view (org-agenda-columns)
>
> Fixed in 03936a50f4fe9a261577d467098ed1080c61cb6e. Thank you.
>

Great. Thanks again -- N

-- 
http://try-dot-ch.blogspot.com/

[-- Attachment #2: Type: text/html, Size: 826 bytes --]

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

end of thread, other threads:[~2015-06-03  8:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-02 10:57 Bug: Property inheritance not working in columns [7.9.3f (release_7.9.3f-17-g7524ef @ /usr/share/emacs/24.3/lisp/org/)] Nik Clayton
2015-06-02 15:06 ` Nicolas Goaziou
2015-06-02 15:55   ` Nik Clayton
2015-06-02 20:02     ` Nicolas Goaziou
2015-06-03  8:36       ` Nik Clayton
  -- strict thread matches above, loose matches on Subject: below --
2015-06-01 17:27 Nik Clayton

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