* Org-mode version 5.08
@ 2007-09-05 8:36 Carsten Dominik
2007-09-05 9:52 ` Leo
` (3 more replies)
0 siblings, 4 replies; 11+ messages in thread
From: Carsten Dominik @ 2007-09-05 8:36 UTC (permalink / raw)
To: org-mode list
Org-mode version 5.08 is available at
http://orgmode.org
Enjoy
- Carsten
Changes in Version 5.08
-----------------------
* Incompatible changes
- The default for `org-deadline-warning-days' is now 14.
* Details
- There is now a separate interface for fast and directly
setting a TODO keyword. This interface kicks in when you
have configured keys for TODO keywords like
#+SEQ_TODO: TODO(t) WAITING(w) | DONE(d) CANCELED(c)
C-c C-t still does the cycling thing, you need to use a
prefix argument to get to the fast interface. Or configure
the variable `org-use-fast-todo-selection' to t, then this
will be the default and the prefix argument will make the
command fall back to cycling.
The tag selection no longer does include TODO keywords -
Leo's arguments have convinced me that this is not a good
idea. If you'd like to see the TODO keywords in the tags
interface anyway, set the variable
`org-fast-tag-selection-include-todo'. Thanks to Leo and
others for input on this issue.
- New variable `org-edit-timestamp-down-means-later'. When
set, `S-down' on a timestamp will change the timestamp to
later. Thanks to Raman for this idea.
- Property names can now contain non-ascii word characters.
This follows a request from Daniel Clemente.
- For export, the date that should be given in the exported
file can now be set to a specific value with a line like
#+DATE: 15 November 2003
If you want to use the date/time when the file was created,
use a format string that will be interpreted by
`format-time-string', for example:
#+DATE: %Y/%m/%d %X
- The default of `org-deadline-warning-days' has changed to 14
days. 30 was really too much, I suspect most people (me
included) have changed this.
- When a deadline has an individual lead time, this lead time
obviously overrules `org-deadline-warning-days'. However,
if you bind `org-deadline-warning-days' to a number <=0, for
example during a custom agenda command, then the absolute
value of this number will be enforced also when a different
lead time has been specified. This is useful to get a list
of all deadlines coming up in the next N days.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Org-mode version 5.08
2007-09-05 8:36 Org-mode version 5.08 Carsten Dominik
@ 2007-09-05 9:52 ` Leo
2007-09-05 10:29 ` Carsten Dominik
2007-09-05 14:55 ` Rainer Stengele
` (2 subsequent siblings)
3 siblings, 1 reply; 11+ messages in thread
From: Leo @ 2007-09-05 9:52 UTC (permalink / raw)
To: emacs-orgmode
On 2007-09-05 09:36 +0100, Carsten Dominik wrote:
> Org-mode version 5.08 is available at
>
> http://orgmode.org
Compiler warnings are getting longer and longer. See:
,----
| In org-columns-eval:
| org.el:14725:8:Warning: `next-line' used from Lisp code
| That command is designed for interactive use only
`----
,----
| In org-publish-org-to-html:
| org-publish.el:461:8:Warning: function `org-publish-org-to-html' defined
| multiple times in this file
`----
,----
| In org-mouse-show-context-menu:
| org-mouse.el:194:24:Warning: reference to free variable
| `org-mouse-context-menu-function'
|
| In org-mouse-replace-match-and-surround:
| org-mouse.el:260:25:Warning: reference to free variable `rest'
|
| In org-mouse-get-priority:
| org-mouse.el:312:37:Warning: reference to free variable
| `org-default-priority'
|
| In org-mouse-at-link:
| org-mouse.el:318:26:Warning: reference to free variable
| `org-bracket-link-regexp'
| org-mouse.el:319:26:Warning: reference to free variable
| `org-angle-link-re'
| org-mouse.el:320:26:Warning: reference to free variable
| `org-plain-link-re'
|
| In org-mouse-priority-list:
| org-mouse.el:343:34:Warning: reference to free variable
| `org-lowest-priority'
|
| In org-mouse-popup-global-menu:
| org-mouse.el:459:22:Warning: reference to free variable
| `org-agenda-custom-commands'
|
| In org-mouse-todo-keywords:
| org-mouse.el:552:57:Warning: reference to free variable
| `org-todo-keywords'
|
| In org-mouse-match-todo-keyword:
| org-mouse.el:558:34:Warning: reference to free variable
| `org-todo-regexp'
|
| In org-mouse-context-menu:
| org-mouse.el:572:31:Warning: reference to free variable
| `org-deadline-string'
| org-mouse.el:572:51:Warning: reference to free variable
| `org-scheduled-string'
| org-mouse.el:595:52:Warning: reference to free variable
| `org-startup-options'
|
| In org-mouse-do-remotely:
| org-mouse.el:972:35:Warning: reference to free variable `_cmd'
`----
--
Leo <sdl.web AT gmail.com> (GPG Key: 9283AA3F)
Gnus is one component of the Emacs operating system.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Re: Org-mode version 5.08
2007-09-05 9:52 ` Leo
@ 2007-09-05 10:29 ` Carsten Dominik
0 siblings, 0 replies; 11+ messages in thread
From: Carsten Dominik @ 2007-09-05 10:29 UTC (permalink / raw)
To: Leo; +Cc: emacs-orgmode
On Sep 5, 2007, at 11:52, Leo wrote:
> On 2007-09-05 09:36 +0100, Carsten Dominik wrote:
>> Org-mode version 5.08 is available at
>>
>> http://orgmode.org
>
> Compiler warnings are getting longer and longer. See:
>
> ,----
> | In org-columns-eval:
> | org.el:14725:8:Warning: `next-line' used from Lisp code
> | That command is designed for interactive use only
> `----
This is necessary, forward-line does not do the right thing.
>
> ,----
> | In org-publish-org-to-html:
> | org-publish.el:461:8:Warning: function `org-publish-org-to-html'
> defined
> | multiple times in this file
> `----
Easily cleaned up. David?
>
> ,----
> | In org-mouse-show-context-menu:
> | org-mouse.el:194:24:Warning: reference to free variable
> | `org-mouse-context-menu-function'
[...]
org-mouse.el needs to (require 'org). Piotr?
>
> |
> | In org-mouse-do-remotely:
> | org-mouse.el:972:35:Warning: reference to free variable `_cmd'
> `----
This is a variable that is dynamically scoped from a macro in Org-mode.
Piotr, you can get rid of this warning with (note that there is no
value!)
(defvar _cmd) ; from org.el
- Carsten
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Org-mode version 5.08
2007-09-05 8:36 Org-mode version 5.08 Carsten Dominik
2007-09-05 9:52 ` Leo
@ 2007-09-05 14:55 ` Rainer Stengele
2007-09-05 15:47 ` Carsten Dominik
2007-09-05 15:29 ` Leo
2007-09-05 20:14 ` Leo
3 siblings, 1 reply; 11+ messages in thread
From: Rainer Stengele @ 2007-09-05 14:55 UTC (permalink / raw)
To: emacs-orgmode
Carsten Dominik schrieb:
>
> Org-mode version 5.08 is available at
>
> http://orgmode.org
>
> Enjoy
>
> - Carsten
>
>
> Changes in Version 5.08
> -----------------------
>
> * Incompatible changes
>
> - The default for `org-deadline-warning-days' is now 14.
>
> * Details
>
> - There is now a separate interface for fast and directly
> setting a TODO keyword. This interface kicks in when you
> have configured keys for TODO keywords like
>
> #+SEQ_TODO: TODO(t) WAITING(w) | DONE(d) CANCELED(c)
>
> C-c C-t still does the cycling thing, you need to use a
> prefix argument to get to the fast interface. Or configure
> the variable `org-use-fast-todo-selection' to t, then this
> will be the default and the prefix argument will make the
> command fall back to cycling.
>
> The tag selection no longer does include TODO keywords -
> Leo's arguments have convinced me that this is not a good
> idea. If you'd like to see the TODO keywords in the tags
> interface anyway, set the variable
> `org-fast-tag-selection-include-todo'. Thanks to Leo and
> others for input on this issue.
>
> - New variable `org-edit-timestamp-down-means-later'. When
> set, `S-down' on a timestamp will change the timestamp to
> later. Thanks to Raman for this idea.
>
> - Property names can now contain non-ascii word characters.
> This follows a request from Daniel Clemente.
>
> - For export, the date that should be given in the exported
> file can now be set to a specific value with a line like
>
> #+DATE: 15 November 2003
>
> If you want to use the date/time when the file was created,
> use a format string that will be interpreted by
> `format-time-string', for example:
>
> #+DATE: %Y/%m/%d %X
>
> - The default of `org-deadline-warning-days' has changed to 14
> days. 30 was really too much, I suspect most people (me
> included) have changed this.
>
> - When a deadline has an individual lead time, this lead time
> obviously overrules `org-deadline-warning-days'. However,
> if you bind `org-deadline-warning-days' to a number <=0, for
> example during a custom agenda command, then the absolute
> value of this number will be enforced also when a different
> lead time has been specified. This is useful to get a list
> of all deadlines coming up in the next N days.
Carsten,
it look slike the PDF manual is still 5.07?
Rainer
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Org-mode version 5.08
2007-09-05 8:36 Org-mode version 5.08 Carsten Dominik
2007-09-05 9:52 ` Leo
2007-09-05 14:55 ` Rainer Stengele
@ 2007-09-05 15:29 ` Leo
2007-09-05 20:14 ` Leo
3 siblings, 0 replies; 11+ messages in thread
From: Leo @ 2007-09-05 15:29 UTC (permalink / raw)
To: emacs-orgmode
On 2007-09-05 09:36 +0100, Carsten Dominik wrote:
> The tag selection no longer does include TODO keywords -
> Leo's arguments have convinced me that this is not a good
> idea. If you'd like to see the TODO keywords in the tags
> interface anyway, set the variable
> `org-fast-tag-selection-include-todo'. Thanks to Leo and
> others for input on this issue.
As this new feature of selecting todo using "C-c C-c" has not been
around for long, it should be OK to remove it completely. All in all, it
is in a development version and it looks like 'C-c C-t' should be the
recommended way.
--
Leo <sdl.web AT gmail.com> (GPG Key: 9283AA3F)
Gnus is one component of the Emacs operating system.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Org-mode version 5.08
2007-09-05 8:36 Org-mode version 5.08 Carsten Dominik
` (2 preceding siblings ...)
2007-09-05 15:29 ` Leo
@ 2007-09-05 20:14 ` Leo
2007-09-05 21:43 ` Carsten Dominik
2007-09-07 14:26 ` Leo
3 siblings, 2 replies; 11+ messages in thread
From: Leo @ 2007-09-05 20:14 UTC (permalink / raw)
To: emacs-orgmode
On 2007-09-05 09:36 +0100, Carsten Dominik wrote:
> - There is now a separate interface for fast and directly
> setting a TODO keyword. This interface kicks in when you
> have configured keys for TODO keywords like
>
> #+SEQ_TODO: TODO(t) WAITING(w) | DONE(d) CANCELED(c)
>
> C-c C-t still does the cycling thing, you need to use a
> prefix argument to get to the fast interface. Or configure
> the variable `org-use-fast-todo-selection' to t, then this
> will be the default and the prefix argument will make the
> command fall back to cycling.
This does not work for todo set in org-todo-keywords.
--
Leo <sdl.web AT gmail.com> (GPG Key: 9283AA3F)
Gnus is one component of the Emacs operating system.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Re: Org-mode version 5.08
2007-09-05 20:14 ` Leo
@ 2007-09-05 21:43 ` Carsten Dominik
2007-09-08 13:08 ` Leo
2007-09-07 14:26 ` Leo
1 sibling, 1 reply; 11+ messages in thread
From: Carsten Dominik @ 2007-09-05 21:43 UTC (permalink / raw)
To: Leo; +Cc: emacs-orgmode
On Sep 5, 2007, at 22:14, Leo wrote:
> On 2007-09-05 09:36 +0100, Carsten Dominik wrote:
>> - There is now a separate interface for fast and directly
>> setting a TODO keyword. This interface kicks in when you
>> have configured keys for TODO keywords like
>>
>> #+SEQ_TODO: TODO(t) WAITING(w) | DONE(d) CANCELED(c)
>>
>> C-c C-t still does the cycling thing, you need to use a
>> prefix argument to get to the fast interface. Or configure
>> the variable `org-use-fast-todo-selection' to t, then this
>> will be the default and the prefix argument will make the
>> command fall back to cycling.
>
> This does not work for todo set in org-todo-keywords.
It does work for me, but you need to restart org-mode to get it working.
Also there is a small bug still with C-u not falling back to cycling.
- Carsten
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Org-mode version 5.08
2007-09-05 20:14 ` Leo
2007-09-05 21:43 ` Carsten Dominik
@ 2007-09-07 14:26 ` Leo
1 sibling, 0 replies; 11+ messages in thread
From: Leo @ 2007-09-07 14:26 UTC (permalink / raw)
To: emacs-orgmode
On 2007-09-05 21:14 +0100, Leo wrote:
> On 2007-09-05 09:36 +0100, Carsten Dominik wrote:
>> - There is now a separate interface for fast and directly
>> setting a TODO keyword. This interface kicks in when you
>> have configured keys for TODO keywords like
>
>>
>> #+SEQ_TODO: TODO(t) WAITING(w) | DONE(d) CANCELED(c)
>>
>> C-c C-t still does the cycling thing, you need to use a
>> prefix argument to get to the fast interface. Or configure
>> the variable `org-use-fast-todo-selection' to t, then this
>> will be the default and the prefix argument will make the
>> command fall back to cycling.
>
> This does not work for todo set in org-todo-keywords.
Comments?
--
Leo <sdl.web AT gmail.com> (GPG Key: 9283AA3F)
Gnus is one component of the Emacs operating system.
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2007-09-08 13:09 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-05 8:36 Org-mode version 5.08 Carsten Dominik
2007-09-05 9:52 ` Leo
2007-09-05 10:29 ` Carsten Dominik
2007-09-05 14:55 ` Rainer Stengele
2007-09-05 15:47 ` Carsten Dominik
2007-09-05 16:18 ` Rainer Stengele
2007-09-05 15:29 ` Leo
2007-09-05 20:14 ` Leo
2007-09-05 21:43 ` Carsten Dominik
2007-09-08 13:08 ` Leo
2007-09-07 14:26 ` Leo
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.