* bizarre: checkbox in properties, counting does not work with subheadings
@ 2022-07-28 12:27 Uwe Brauer
2022-10-17 8:08 ` Ihor Radchenko
2024-01-29 15:13 ` Ihor Radchenko
0 siblings, 2 replies; 4+ messages in thread
From: Uwe Brauer @ 2022-07-28 12:27 UTC (permalink / raw)
To: emacs-orgmode
Hi
Please consider
#+begin_src
* Everything [3/4]
:PROPERTIES:
:COLUMNS: %TODO %ITEM %Nr %Comp1 %Comp2
:COMP1: [3/4]
:COMP2: [3/4]
:TODO: [ ]
:END:
** DONE Books
:PROPERTIES:
:Nr: 1
:Comp1: [X]
:Comp2: [X]
:END:
** DONE Car
:PROPERTIES:
:Nr: 2
:Comp1: [X]
:Comp2: [X]
:END:
** DONE Food
:PROPERTIES:
:Nr: 3
:Comp1: [ ]
:Comp2: [X]
:END:
*** WAIT Computer
:PROPERTIES:
:Nr: 4
:Comp1: [X]
:Comp2: [ ]
:END:
#+BEGIN: columnview :maxlevel 2 :skip-empty-rows t :hlines 1 :indent nil :format "%5TODO(Status) %5Nr(Nr) %5Comp1(Comp1){X/} %5Comp2(Comp2){X/}"
| Status | Nr | Comp1 | Comp2 |
|--------+----+-------+-------|
| | | [3/4] | [3/4] |
| DONE | 1 | [X] | [X] |
| TODO | 2 | [X] | [X] |
| DONE | 3 | [ ] | [X] |
| WAIT | 4 | [X] | [ ] |
#+END:
#+end_src
Everything is as expected, now I will lower the level of the first and
last subheaders and the statistics of the checkbox turns nuts:
#+begin_src
* Everything [3/4]
:PROPERTIES:
:COLUMNS: %TODO %ITEM %Nr %Comp1 %Comp2
:COMP1: [1/1]
:COMP2: [1/1]
:TODO: [ ]
:END:
*** DONE Books
:PROPERTIES:
:Nr: 1
:Comp1: [X]
:Comp2: [X]
:END:
** DONE Car
:PROPERTIES:
:Nr: 2
:Comp1: [X]
:Comp2: [X]
:END:
** DONE Food
:PROPERTIES:
:Nr: 3
:COMP1: [1/1]
:COMP2: [0/1]
:END:
**** WAIT Computer
:PROPERTIES:
:Nr: 4
:Comp1: [X]
:Comp2: [ ]
:END:
#+BEGIN: columnview :maxlevel 2 :skip-empty-rows t :hlines 1 :indent nil :format "%5TODO(Status) %5Nr(Nr) %5Comp1(Comp1){X/} %5Comp2(Comp2){X/}"
| Status | Nr | Comp1 | Comp2 |
|--------+----+-------+-------|
| | | [1/1] | [1/1] |
| DONE | 2 | [X] | [X] |
| DONE | 3 | [1/1] | [0/1] |
#+END:
#+end_src
Any idea how to avoid this? The expected behavior should be
#+begin_src
* Everything [3/4]
:PROPERTIES:
:COLUMNS: %TODO %ITEM %Nr %Comp1 %Comp2
:COMP1: [1/2]
:COMP2: [2/2]
:TODO: [ ]
:END:
** DONE Car
:PROPERTIES:
:Nr: 2
:Comp1: [X]
:Comp2: [X]
:END:
** DONE Food
:PROPERTIES:
:Nr: 3
:Comp1: [ ]
:Comp2: [X]
:END:
#+BEGIN: columnview :maxlevel 2 :skip-empty-rows t :hlines 1 :indent nil :format "%5TODO(Status) %5Nr(Nr) %5Comp1(Comp1){X/} %5Comp2(Comp2){X/}"
| Status | Nr | Comp1 | Comp2 |
|--------+----+-------+-------|
| | | [1/2] | [2/2] |
| DONE | 2 | [X] | [X] |
| DONE | 3 | [ ] | [X] |
#+END:
#+end_src
regards
Uwe Brauer
--
I strongly condemn Putin's war of aggression against the Ukraine.
I support to deliver weapons to Ukraine's military.
I support the ban of Russia from SWIFT.
I support the EU membership of the Ukraine.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: bizarre: checkbox in properties, counting does not work with subheadings
2022-07-28 12:27 bizarre: checkbox in properties, counting does not work with subheadings Uwe Brauer
@ 2022-10-17 8:08 ` Ihor Radchenko
2024-01-29 15:13 ` Ihor Radchenko
1 sibling, 0 replies; 4+ messages in thread
From: Ihor Radchenko @ 2022-10-17 8:08 UTC (permalink / raw)
To: Uwe Brauer; +Cc: emacs-orgmode
Uwe Brauer <oub@mat.ucm.es> writes:
> #+BEGIN: columnview :maxlevel 2 :skip-empty-rows t :hlines 1 :indent nil :format "%5TODO(Status) %5Nr(Nr) %5Comp1(Comp1){X/} %5Comp2(Comp2){X/}"
> | Status | Nr | Comp1 | Comp2 |
> |--------+----+-------+-------|
> | | | [3/4] | [3/4] |
> | DONE | 1 | [X] | [X] |
> | TODO | 2 | [X] | [X] |
> | DONE | 3 | [ ] | [X] |
> | WAIT | 4 | [X] | [ ] |
> #+END:
>
>
> #+end_src
>
> Everything is as expected, now I will lower the level of the first and
> last subheaders and the statistics of the checkbox turns nuts:
Confirmed.
The culprit is org-columns--compute-spec.
I do not fully understand how it works, but it feels like your scenario
breaks some implicit assumption in the function.
--
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: bizarre: checkbox in properties, counting does not work with subheadings
2022-07-28 12:27 bizarre: checkbox in properties, counting does not work with subheadings Uwe Brauer
2022-10-17 8:08 ` Ihor Radchenko
@ 2024-01-29 15:13 ` Ihor Radchenko
2024-02-29 10:03 ` Ihor Radchenko
1 sibling, 1 reply; 4+ messages in thread
From: Ihor Radchenko @ 2024-01-29 15:13 UTC (permalink / raw)
To: Uwe Brauer; +Cc: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 1044 bytes --]
Uwe Brauer <oub@mat.ucm.es> writes:
> * Everything [3/4]
> ...
> *** DONE Books
> ...
> ** DONE Car
> ...
> ** DONE Food
> ...
> *** WAIT Computer
> ...
> ... The expected behavior should be
>
> #+BEGIN: columnview :maxlevel 2 :skip-empty-rows t :hlines 1 :indent nil :format "%5TODO(Status) %5Nr(Nr) %5Comp1(Comp1){X/} %5Comp2(Comp2){X/}"
> | Status | Nr | Comp1 | Comp2 |
> |--------+----+-------+-------|
> | | | [1/2] | [2/2] |
> | DONE | 2 | [X] | [X] |
> | DONE | 3 | [ ] | [X] |
> #+END:
I am not sure if it is expected.
Why doesn't "DONE Books" contribute to the summary? It is also under
"Everything" headline and has a checkbox.
With the attached patch, the result would be the following:
#+BEGIN: columnview :maxlevel 2 :skip-empty-rows t :hlines 1 :indent nil :format "%5TODO(Status) %5Nr(Nr)%5Comp1(Comp1){X/} %5Comp2(Comp2){X/}"
| Status | Nr | Comp1 | Comp2 |
|--------+----+-------+-------|
| | | [3/3] | [2/3] |
| DONE | 2 | [X] | [X] |
| DONE | 3 | [1/1] | [0/1] |
#+END:
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-lisp-org-colview.el-Fix-computing-summary-with-low-l.patch --]
[-- Type: text/x-patch, Size: 1504 bytes --]
From a4927f9ea530db180efdaea6bb01511c03bb1051 Mon Sep 17 00:00:00 2001
Message-ID: <a4927f9ea530db180efdaea6bb01511c03bb1051.1706541069.git.yantar92@posteo.net>
From: Ihor Radchenko <yantar92@posteo.net>
Date: Mon, 29 Jan 2024 16:09:29 +0100
Subject: [PATCH] lisp/org-colview.el: Fix computing summary with low-level
first child
* lisp/org-colview.el (org-columns--compute-spec): Do not assume that
all the children of an entry have the same LAST-LEVEL. Handle
situation when the first child has lower level:
* Heading
****** Child 1
** Child 2
** Child 3
Reported-by: Uwe Brauer <oub@mat.ucm.es>
Link: https://orgmode.org/list/87wn8yj2i5.fsf@localhost
---
lisp/org-colview.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lisp/org-colview.el b/lisp/org-colview.el
index b1b79257b..39ca01502 100644
--- a/lisp/org-colview.el
+++ b/lisp/org-colview.el
@@ -1244,9 +1244,9 @@ (defun org-columns--compute-spec (spec &optional update)
;; property `org-summaries', in alist whose key is SPEC.
(let* ((summary
(and summarize
- (let ((values (append (and (/= last-level inminlevel)
- (aref lvals last-level))
- (aref lvals inminlevel))))
+ (let ((values
+ (cl-loop for l from (1+ level) to lmax
+ append (aref lvals l))))
(and values (funcall summarize values printf))))))
;; Leaf values are not summaries: do not mark them.
(when summary
--
2.43.0
[-- Attachment #3: Type: text/plain, Size: 224 bytes --]
--
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: bizarre: checkbox in properties, counting does not work with subheadings
2024-01-29 15:13 ` Ihor Radchenko
@ 2024-02-29 10:03 ` Ihor Radchenko
0 siblings, 0 replies; 4+ messages in thread
From: Ihor Radchenko @ 2024-02-29 10:03 UTC (permalink / raw)
To: Uwe Brauer; +Cc: emacs-orgmode
Ihor Radchenko <yantar92@posteo.net> writes:
> With the attached patch, the result would be the following:
Applied, onto main.
https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=ac1ed2bf8
Fixed.
--
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-02-29 10:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-28 12:27 bizarre: checkbox in properties, counting does not work with subheadings Uwe Brauer
2022-10-17 8:08 ` Ihor Radchenko
2024-01-29 15:13 ` Ihor Radchenko
2024-02-29 10:03 ` Ihor Radchenko
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).