* org-archive-done
@ 2006-06-14 7:52 nielsgiesen
2006-06-14 9:51 ` org-archive-done Carsten Dominik
2006-06-15 23:18 ` org-archive-done Daniel J. Sinder
0 siblings, 2 replies; 7+ messages in thread
From: nielsgiesen @ 2006-06-14 7:52 UTC (permalink / raw)
To: emacs-orgmode
How about a function org-archive-done, that archives any tree in the
buffer labelled DONE?
One might refine this to archive trees absolutely done, so that---even
when a heading is labelled DONE---it looks to its subtrees to check
whether they have no label which states the opposite.
Also, I think it only nice/useful for top-level headings, not below.
Perhaps an optional argument could be given as to the time elapsed
since a tree was DONE.
Regards,
Niels Giesen
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: org-archive-done
2006-06-14 7:52 org-archive-done nielsgiesen
@ 2006-06-14 9:51 ` Carsten Dominik
2006-06-15 23:18 ` org-archive-done Daniel J. Sinder
1 sibling, 0 replies; 7+ messages in thread
From: Carsten Dominik @ 2006-06-14 9:51 UTC (permalink / raw)
To: nielsgiesen; +Cc: emacs-orgmode
Yes, I think this would be a good idea. I'll put it on my list.
- Carsten
On Jun 14, 2006, at 9:52, nielsgiesen@ibbu.nl wrote:
>
> How about a function org-archive-done, that archives any tree in the
> buffer labelled DONE?
>
> One might refine this to archive trees absolutely done, so that---even
> when a heading is labelled DONE---it looks to its subtrees to check
> whether they have no label which states the opposite.
>
> Also, I think it only nice/useful for top-level headings, not below.
>
> Perhaps an optional argument could be given as to the time elapsed
> since a tree was DONE.
>
> Regards,
>
> Niels Giesen
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
>
--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: org-archive-done
2006-06-14 7:52 org-archive-done nielsgiesen
2006-06-14 9:51 ` org-archive-done Carsten Dominik
@ 2006-06-15 23:18 ` Daniel J. Sinder
[not found] ` <f7ace8d973d1c1a267efc937f401693e@science.uva.nl>
1 sibling, 1 reply; 7+ messages in thread
From: Daniel J. Sinder @ 2006-06-15 23:18 UTC (permalink / raw)
To: emacs-orgmode
nielsgiesen@ibbu.nl wrote:
> How about a function org-archive-done, that archives any tree in the
> buffer labelled DONE?
>
> One might refine this to archive trees absolutely done, so that---even
> when a heading is labelled DONE---it looks to its subtrees to check
> whether they have no label which states the opposite.
>
> Also, I think it only nice/useful for top-level headings, not below.
>
I like the idea proposed by Niels, but I'd want to be able to call
it for a tree too, not just the top-level of a whole file. In other
words, I'd like to prune any chosen tree to archive DONE items under
it. Perhaps an example is best...
--- .org file before archiving ---
* Tasks
** TODO Task 1
** DONE Task 2
** TODO Project A
*** TODO Task A1
*** DONE Task A2
** DONE Project B
*** DONE Task B1
*** DONE Task B2
--- .org file after archive of top-level tree ---
* Tasks
** TODO Task 1
** TODO Project A
*** TODO Task A1
*** DONE Task A2
--- _archive file after archive of top-level tree ---
* Tasks
** DONE Task 2
** DONE Project B
*** DONE Task B1
*** DONE Task B2
Dan
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: org-archive-done
[not found] ` <44946A6F.7020508@gmail.com>
@ 2006-06-18 7:05 ` Carsten Dominik
2006-06-18 7:59 ` org-archive-done Daniel J. Sinder
0 siblings, 1 reply; 7+ messages in thread
From: Carsten Dominik @ 2006-06-18 7:05 UTC (permalink / raw)
To: emacs-orgmode
Hi Daniel,
thanks for taking the time to discuss this through.
On Jun 17, 2006, at 22:47, Daniel J. Sinder wrote:
> OK, so now we've come full circle -- this is very nearly the current
> behavior, except instead of archiving the whole subtree, it would only
> archive DONE entries from within the subtree. I think this is perhaps
> the best solution (and easiest to implement, right?).
Yes it is, and I think this is what I will implement.
However,..
> I have just one final thought....and it's just a thought because I
> don't understand how org-mode is implemented....
> What if, instead of archiving *moving* subtrees, it left them in place
> but *hid* them in a semi-permanent way. By that I mean, they'd be
> hidden just like the collapsing org-mode normally does, but they would
> never expand, unless a special show-archived-subtrees variable was
> non-nil.
this is a very interesting and original idea! I really like it. It
would mean that subitems that are done remain in place, but don't use
space on the screen. I am not sure if I like the term "archiving" for
this. "Locking" seems to be better.
The implementation could for example be TAG based: All subtrees with a
TAG :LOCKED: will never open when attacked with TAB (visibility
cycling). This can be done using org-cycle-hook.
Proof of concept:
(defvar org-locked-subtrees t
"Non-nil means, allow locked subtrees.")
(defun org-hide-locked-subtrees (state)
"Re-hide all locked subtrees after a visibility state change."
(interactive)
(when (and org-locked-subtrees
(not (memq state '(overview folded))))
(save-excursion
(let* ((globalp (memq state '(contents all)))
(beg (if globalp (point-min) (point)))
(end (if globalp (point-max) (org-end-of-subtree)
(point))))
(goto-char beg)
(while (re-search-forward ":LOCKED:" nil t)
(and (org-on-heading-p) (hide-subtree))
(org-end-of-subtree))))))
(add-hook 'org-cycle-hook 'org-hide-locked-subtrees 'append)
Then all that is needed is
- an easy way to toggle org-locked-subtrees (to allow looking at
locked trees occasionally)
- and easy way to toggle the LOCKED tag
- An automatic locker that goes through the subitems of a given
level N heading, locking all subtrees that do not have any
open TODO items.
This is great. I'll do something like this. Thanks.
- Carsten
> P.S. Thank you very much for org mode. I find I'm using it more and
> more: README files, task lists, etc. I've recently even impressed my
> technical leader at work (Qualcomm, San Diego) with how organized I
> am, mostly due to org-mode.
You're welcome. I am glad it is so useful.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: org-archive-done
2006-06-18 7:05 ` org-archive-done Carsten Dominik
@ 2006-06-18 7:59 ` Daniel J. Sinder
2006-06-18 9:45 ` org-archive-done Carsten Dominik
2006-06-19 17:07 ` org-archive-done Carsten Dominik
0 siblings, 2 replies; 7+ messages in thread
From: Daniel J. Sinder @ 2006-06-18 7:59 UTC (permalink / raw)
To: Carsten Dominik; +Cc: emacs-orgmode
Carsten Dominik wrote:
> On Jun 17, 2006, at 22:47, Daniel J. Sinder wrote:
>> I have just one final thought....and it's just a thought because I
>> don't understand how org-mode is implemented....
>> What if, instead of archiving *moving* subtrees, it left them in place
>> but *hid* them in a semi-permanent way. By that I mean, they'd be
>> hidden just like the collapsing org-mode normally does, but they would
>> never expand, unless a special show-archived-subtrees variable was
>> non-nil.
>
> this is a very interesting and original idea! I really like it. It
> would mean that subitems that are done remain in place, but don't use
> space on the screen. I am not sure if I like the term "archiving" for
> this. "Locking" seems to be better.
I'm glad you like this (and that it seems straightforward to
implement). My only questions is this: If locking is an
alternative (not replacement) to archiving, will locked items also
be kept out of agendas and exports, like when archiving? My vote
would be "yes".
Dan
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: org-archive-done
2006-06-18 7:59 ` org-archive-done Daniel J. Sinder
@ 2006-06-18 9:45 ` Carsten Dominik
2006-06-19 17:07 ` org-archive-done Carsten Dominik
1 sibling, 0 replies; 7+ messages in thread
From: Carsten Dominik @ 2006-06-18 9:45 UTC (permalink / raw)
To: Daniel J. Sinder; +Cc: emacs-orgmode
On Jun 18, 2006, at 9:59, Daniel J. Sinder wrote:
> Carsten Dominik wrote:
>> On Jun 17, 2006, at 22:47, Daniel J. Sinder wrote:
>>> I have just one final thought....and it's just a thought because I
>>> don't understand how org-mode is implemented....
>>> What if, instead of archiving *moving* subtrees, it left them in
>>> place but *hid* them in a semi-permanent way. By that I mean,
>>> they'd be hidden just like the collapsing org-mode normally does,
>>> but they would never expand, unless a special show-archived-subtrees
>>> variable was non-nil.
>> this is a very interesting and original idea! I really like it. It
>> would mean that subitems that are done remain in place, but don't use
>> space on the screen. I am not sure if I like the term "archiving"
>> for this. "Locking" seems to be better.
>
> I'm glad you like this (and that it seems straightforward to
> implement). My only questions is this: If locking is an alternative
> (not replacement) to archiving, will locked items also be kept out of
> agendas and exports, like when archiving? My vote would be "yes".
OK, good point, this needs a bit more thinking. Which shifts it past
the 4.38 release.
Thanks
- Carsten
--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: org-archive-done
2006-06-18 7:59 ` org-archive-done Daniel J. Sinder
2006-06-18 9:45 ` org-archive-done Carsten Dominik
@ 2006-06-19 17:07 ` Carsten Dominik
1 sibling, 0 replies; 7+ messages in thread
From: Carsten Dominik @ 2006-06-19 17:07 UTC (permalink / raw)
To: Daniel J. Sinder; +Cc: emacs-orgmode
I have a basic implementation of this. Would you like to pretest it a
bit, to get the worst bugs out before I put this out?
- Carsten
On Jun 18, 2006, at 9:59, Daniel J. Sinder wrote:
> Carsten Dominik wrote:
>> On Jun 17, 2006, at 22:47, Daniel J. Sinder wrote:
>>> I have just one final thought....and it's just a thought because I
>>> don't understand how org-mode is implemented....
>>> What if, instead of archiving *moving* subtrees, it left them in
>>> place but *hid* them in a semi-permanent way. By that I mean,
>>> they'd be hidden just like the collapsing org-mode normally does,
>>> but they would never expand, unless a special show-archived-subtrees
>>> variable was non-nil.
>> this is a very interesting and original idea! I really like it. It
>> would mean that subitems that are done remain in place, but don't use
>> space on the screen. I am not sure if I like the term "archiving"
>> for this. "Locking" seems to be better.
>
> I'm glad you like this (and that it seems straightforward to
> implement). My only questions is this: If locking is an alternative
> (not replacement) to archiving, will locked items also be kept out of
> agendas and exports, like when archiving? My vote would be "yes".
>
> Dan
>
>
--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2006-06-19 17:07 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-14 7:52 org-archive-done nielsgiesen
2006-06-14 9:51 ` org-archive-done Carsten Dominik
2006-06-15 23:18 ` org-archive-done Daniel J. Sinder
[not found] ` <f7ace8d973d1c1a267efc937f401693e@science.uva.nl>
[not found] ` <44933E3A.9010100@gmail.com>
[not found] ` <eccd33106d5ddb5d8922507c9fcebf30@science.uva.nl>
[not found] ` <44946A6F.7020508@gmail.com>
2006-06-18 7:05 ` org-archive-done Carsten Dominik
2006-06-18 7:59 ` org-archive-done Daniel J. Sinder
2006-06-18 9:45 ` org-archive-done Carsten Dominik
2006-06-19 17:07 ` org-archive-done Carsten Dominik
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.