emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [FR] in org-log-done "CLOSED:" configurable
@ 2009-02-27 14:32 Giovanni Ridolfi
  2009-02-27 16:08 ` Carsten Dominik
  0 siblings, 1 reply; 2+ messages in thread
From: Giovanni Ridolfi @ 2009-02-27 14:32 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: Org-Mode-Mailinglist

Dear Carsten,
I have a feature request: 
in the variable org-log-done
could you please make 
also the word CLOSED: configurable ?

The rationale:
I have a file with the (scientific) journals I want to read.
When I've read the journals I want to have a note where I
record the number of the issue read (lognoterepeat is perfect).
---------------------
    -*- mode: org; -*-

#+STARTUP: lognoterepeat
#+SEQ_TODO: READ | DONE

* Wiley
** READ [[http://www3.interscience.wiley.com/cgi-bin/jtoc/5860/][Progress in Photovoltaics: Research and Applications  Progr. Photov.]]  
   DEADLINE: <2009-01-14 mer +1m>   CLOSED: [2009-02-27 ven 14:08]
   - State "DONE"       from "READ"       [2009-02-27 ven 13:46] \\
     Volume 17 Issue 1 (January 2009) 
   - State "DONE"       [2008-10-16 gio 15:02] \\
     Volume 16 Issue 6 , Pages 461 - 553 (September 2008)
-----------
However since they are repeated tasks, IMHO, is not necessary
tag them as CLOSED, like Org-Mode does:
  DEADLINE: <2009-01-14 mer +1m>   CLOSED: [2009-02-27 ven 14:08]

the record of the changed status, in the note, is enough:
                                         |||||||| not closed
                                         VVVVVVVV
   DEADLINE: <2009-01-14 mer +1m>   
   - State "DONE"       from "READ"       [2009-02-27 ven 13:46] \\
     Volume 17 Issue 1 (January 2009) 

So I'd suggest a new value for org-log-done:

logonlynoterepeat  ->  "onlynote" record only the note, 
                                  not mark it closed
or, less easy to be remebered,

lognoterepeatopen  -> "open"  , still open, not closed
                               

cheers,
Giovanni

P.S. the doc string of the org-log-repeat variable
would be clearer with lines in this order:
   #+STARTUP: nologrepeat                         
   #+STARTUP: logrepeat                           
   #+STARTUP: lognoterepeat                 

 instead of :
 #+STARTUP: logrepeat	      
 #+STARTUP: lognoterepeat   
 #+STARTUP: nologrepeat     

Since,if I undestand it correctly,
                                 value:
   #+STARTUP: nologrepeat        = nil
   #+STARTUP: logrepeat          = time
   #+STARTUP: lognoterepeat      = note

__________________________________________________
Do You Yahoo!?
Poco spazio e tanto spam? Yahoo! Mail ti protegge dallo spam e ti da tanto spazio gratuito per i tuoi file e i messaggi 
http://mail.yahoo.it

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

* Re: [FR] in org-log-done "CLOSED:" configurable
  2009-02-27 14:32 [FR] in org-log-done "CLOSED:" configurable Giovanni Ridolfi
@ 2009-02-27 16:08 ` Carsten Dominik
  0 siblings, 0 replies; 2+ messages in thread
From: Carsten Dominik @ 2009-02-27 16:08 UTC (permalink / raw)
  To: giovanni.ridolfi; +Cc: Org-Mode-Mailinglist

Hi Giovanni,

you want nologdone.  All you need to do is to add

#+STARTUP: lognoterepeat nologdone

to the file, if this should be so for all entries in the file.

If this is only for individual entries, use

    :PROPERTIES:
    :LOGGING:  nologdone lognoterepeat
    :END:

in the entries for which this is relevant.

HTH

- Carsten

On Feb 27, 2009, at 3:32 PM, Giovanni Ridolfi wrote:

> Dear Carsten,
> I have a feature request:
> in the variable org-log-done
> could you please make
> also the word CLOSED: configurable ?
>
> The rationale:
> I have a file with the (scientific) journals I want to read.
> When I've read the journals I want to have a note where I
> record the number of the issue read (lognoterepeat is perfect).
> ---------------------
>    -*- mode: org; -*-
>
> #+STARTUP: lognoterepeat
> #+SEQ_TODO: READ | DONE
>
> * Wiley
> ** READ [[http://www3.interscience.wiley.com/cgi-bin/jtoc/5860/] 
> [Progress in Photovoltaics: Research and Applications  Progr.  
> Photov.]]
>   DEADLINE: <2009-01-14 mer +1m>   CLOSED: [2009-02-27 ven 14:08]
>   - State "DONE"       from "READ"       [2009-02-27 ven 13:46] \\
>     Volume 17 Issue 1 (January 2009)
>   - State "DONE"       [2008-10-16 gio 15:02] \\
>     Volume 16 Issue 6 , Pages 461 - 553 (September 2008)
> -----------
> However since they are repeated tasks, IMHO, is not necessary
> tag them as CLOSED, like Org-Mode does:
>  DEADLINE: <2009-01-14 mer +1m>   CLOSED: [2009-02-27 ven 14:08]
>
> the record of the changed status, in the note, is enough:
>                                         |||||||| not closed
>                                         VVVVVVVV
>   DEADLINE: <2009-01-14 mer +1m>
>   - State "DONE"       from "READ"       [2009-02-27 ven 13:46] \\
>     Volume 17 Issue 1 (January 2009)
>
> So I'd suggest a new value for org-log-done:
>
> logonlynoterepeat  ->  "onlynote" record only the note,
>                                  not mark it closed
> or, less easy to be remebered,
>
> lognoterepeatopen  -> "open"  , still open, not closed
>
>
> cheers,
> Giovanni
>
> P.S. the doc string of the org-log-repeat variable
> would be clearer with lines in this order:
>   #+STARTUP: nologrepeat
>   #+STARTUP: logrepeat
>   #+STARTUP: lognoterepeat
>
> instead of :
> #+STARTUP: logrepeat	
> #+STARTUP: lognoterepeat
> #+STARTUP: nologrepeat
>
> Since,if I undestand it correctly,
>                                 value:
>   #+STARTUP: nologrepeat        = nil
>   #+STARTUP: logrepeat          = time
>   #+STARTUP: lognoterepeat      = note
>
> __________________________________________________
> Do You Yahoo!?
> Poco spazio e tanto spam? Yahoo! Mail ti protegge dallo spam e ti da  
> tanto spazio gratuito per i tuoi file e i messaggi
> http://mail.yahoo.it
>

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

end of thread, other threads:[~2009-02-27 16:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-02-27 14:32 [FR] in org-log-done "CLOSED:" configurable Giovanni Ridolfi
2009-02-27 16:08 ` 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).