emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Org-mode 4.29
@ 2006-05-12 12:03 Carsten Dominik
  2006-05-12 12:44 ` David O'Toole
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Carsten Dominik @ 2006-05-12 12:03 UTC (permalink / raw)
  To: emacs-orgmode

I am releasing version 4.29 of Org-mode, with these changes:


Version 4.29
    - Inlining images in HTML export now depends on wheather the link
      contains a description or not.
    - TODO items can be scheduled from the global TODO list using C-c C-s
    - TODO items already scheduled can be made to disappear from the 
global
      todo list, see `org-agenda-todo-ignore-scheduled'.
    - In Tables, formulas may also be Lisp forms.
    - Exporting the visible part of an outline with `C-c C-x v' works now
      for all available exporters.
    - Bug fixes, lots of them :-(

http://www.astro.uva.nl/~dominik/Tools/org/

Enjoy, and keep the feedback coming.

- 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-mode 4.29
  2006-05-12 12:03 Org-mode 4.29 Carsten Dominik
@ 2006-05-12 12:44 ` David O'Toole
  2006-05-12 12:56   ` Carsten Dominik
  2006-05-12 13:32 ` John Rakestraw
  2006-05-13 18:47 ` T. V. Raman
  2 siblings, 1 reply; 7+ messages in thread
From: David O'Toole @ 2006-05-12 12:44 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: emacs-orgmode


I'm getting an error when I try to schedule a TODO item from the
global TODO list using C-c C-s. I've pasted the backtrace below. 

Debugger entered--Lisp error: (wrong-type-argument stringp nil)
  re-search-forward(nil nil t)
  (and (eq elt (quote closed)) (re-search-forward org-closed-time-regexp nil t))
  (or (and (eq elt ...) (re-search-forward org-scheduled-time-regexp nil t)) (and (eq elt ...) (re-search-forward org-deadline-time-regexp nil t)) (and (eq elt ...) (re-search-forward org-closed-time-regexp nil t)))
  (if (or (and ... ...) (and ... ...) (and ... ...)) (progn (replace-match "") (if ... ...)))
  (when (or (and ... ...) (and ... ...) (and ... ...)) (replace-match "") (if (looking-at " +") (replace-match "")))
  (while list (setq elt (pop list)) (goto-char (point-min)) (when (or ... ... ...) (replace-match "") (if ... ...)))
  (let (beg end col list elt (buffer-invisibility-spec nil) ts) (org-back-to-heading t) (setq beg (point)) (looking-at (concat outline-regexp "\\( *\\)[^
\n]*")) (goto-char (match-end 1)) (setq col (current-column)) (goto-char (1+ ...)) (if (and ... ...) (narrow-to-region ... ...) (insert "\n") (backward-char 1) (narrow-to-region ... ...) (indent-to-column col)) (setq list (cons what remove)) (while list (setq elt ...) (goto-char ...) (when ... ... ...)) (goto-char (point-max)) (when what (insert ... ... " ") (insert ...)) (goto-char (point-min)) (widen) (if (looking-at "[ 	]+
?\n") (replace-match "")) ts)
  (save-excursion (let (beg end col list elt ... ts) (org-back-to-heading t) (setq beg ...) (looking-at ...) (goto-char ...) (setq col ...) (goto-char ...) (if ... ... ... ... ... ...) (setq list ...) (while list ... ... ...) (goto-char ...) (when what ... ...) (goto-char ...) (widen) (if ... ...) ts))
  org-add-planning-info(scheduled nil closed)
  org-schedule()
  (setq ts (org-schedule))
  (save-current-buffer (set-buffer buffer) (widen) (goto-char pos) (setq ts (org-schedule)) (message "Item scheduled for %s" ts))
  (with-current-buffer buffer (widen) (goto-char pos) (setq ts (org-schedule)) (message "Item scheduled for %s" ts))
  (let* ((marker ...) (buffer ...) (pos ...) ts) (with-current-buffer buffer (widen) (goto-char pos) (setq ts ...) (message "Item scheduled for %s" ts)))
  org-agenda-schedule(nil)
  call-interactively(org-agenda-schedule)



Carsten Dominik <dominik@science.uva.nl> writes:

> I am releasing version 4.29 of Org-mode, with these changes:
>
>
> Version 4.29
>    - Inlining images in HTML export now depends on wheather the link
>      contains a description or not.
>    - TODO items can be scheduled from the global TODO list using C-c C-s
>    - TODO items already scheduled can be made to disappear from the
> global
>      todo list, see `org-agenda-todo-ignore-scheduled'.
>    - In Tables, formulas may also be Lisp forms.
>    - Exporting the visible part of an outline with `C-c C-x v' works now
>      for all available exporters.
>    - Bug fixes, lots of them :-(
>
> http://www.astro.uva.nl/~dominik/Tools/org/
>
> Enjoy, and keep the feedback coming.
>
> - Carsten
>
> --
> Carsten Dominik
> Sterrenkundig Instituut "Anton Pannekoek"
> Universiteit van Amsterdam
> Kruislaan 403
> NL-1098SJ Amsterdam
> phone: +31 20 525 7477
>
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>

-- 
Dave O'Toole
dto@gnu.org

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

* Re: Org-mode 4.29
  2006-05-12 12:44 ` David O'Toole
@ 2006-05-12 12:56   ` Carsten Dominik
  0 siblings, 0 replies; 7+ messages in thread
From: Carsten Dominik @ 2006-05-12 12:56 UTC (permalink / raw)
  To: David O'Toole; +Cc: emacs-orgmode

Looks like the org-mode file where you schedule the item in was not 
properly initialized.  Everything works OK here so far.....  Did you do 
this in a running emacs, load the new org.el and then try the commend?  
Or did you start a new Emacs?

- Carsten
On May 12, 2006, at 14:44, David O'Toole wrote:

>
> I'm getting an error when I try to schedule a TODO item from the
> global TODO list using C-c C-s. I've pasted the backtrace below.
>
> Debugger entered--Lisp error: (wrong-type-argument stringp nil)
>   re-search-forward(nil nil t)
>   (and (eq elt (quote closed)) (re-search-forward 
> org-closed-time-regexp nil t))
>   (or (and (eq elt ...) (re-search-forward org-scheduled-time-regexp 
> nil t)) (and (eq elt ...) (re-search-forward org-deadline-time-regexp 
> nil t)) (and (eq elt ...) (re-search-forward org-closed-time-regexp 
> nil t)))
>   (if (or (and ... ...) (and ... ...) (and ... ...)) (progn 
> (replace-match "") (if ... ...)))
>   (when (or (and ... ...) (and ... ...) (and ... ...)) (replace-match 
> "") (if (looking-at " +") (replace-match "")))
>   (while list (setq elt (pop list)) (goto-char (point-min)) (when (or 
> ... ... ...) (replace-match "") (if ... ...)))
>   (let (beg end col list elt (buffer-invisibility-spec nil) ts) 
> (org-back-to-heading t) (setq beg (point)) (looking-at (concat 
> outline-regexp "\\( *\\)[^
> \n]*")) (goto-char (match-end 1)) (setq col (current-column)) 
> (goto-char (1+ ...)) (if (and ... ...) (narrow-to-region ... ...) 
> (insert "\n") (backward-char 1) (narrow-to-region ... ...) 
> (indent-to-column col)) (setq list (cons what remove)) (while list 
> (setq elt ...) (goto-char ...) (when ... ... ...)) (goto-char 
> (point-max)) (when what (insert ... ... " ") (insert ...)) (goto-char 
> (point-min)) (widen) (if (looking-at "[ 	]+
> ?\n") (replace-match "")) ts)
>   (save-excursion (let (beg end col list elt ... ts) 
> (org-back-to-heading t) (setq beg ...) (looking-at ...) (goto-char 
> ...) (setq col ...) (goto-char ...) (if ... ... ... ... ... ...) (setq 
> list ...) (while list ... ... ...) (goto-char ...) (when what ... ...) 
> (goto-char ...) (widen) (if ... ...) ts))
>   org-add-planning-info(scheduled nil closed)
>   org-schedule()
>   (setq ts (org-schedule))
>   (save-current-buffer (set-buffer buffer) (widen) (goto-char pos) 
> (setq ts (org-schedule)) (message "Item scheduled for %s" ts))
>   (with-current-buffer buffer (widen) (goto-char pos) (setq ts 
> (org-schedule)) (message "Item scheduled for %s" ts))
>   (let* ((marker ...) (buffer ...) (pos ...) ts) (with-current-buffer 
> buffer (widen) (goto-char pos) (setq ts ...) (message "Item scheduled 
> for %s" ts)))
>   org-agenda-schedule(nil)
>   call-interactively(org-agenda-schedule)
>
>
>
> Carsten Dominik <dominik@science.uva.nl> writes:
>
>> I am releasing version 4.29 of Org-mode, with these changes:
>>
>>
>> Version 4.29
>>    - Inlining images in HTML export now depends on wheather the link
>>      contains a description or not.
>>    - TODO items can be scheduled from the global TODO list using C-c 
>> C-s
>>    - TODO items already scheduled can be made to disappear from the
>> global
>>      todo list, see `org-agenda-todo-ignore-scheduled'.
>>    - In Tables, formulas may also be Lisp forms.
>>    - Exporting the visible part of an outline with `C-c C-x v' works 
>> now
>>      for all available exporters.
>>    - Bug fixes, lots of them :-(
>>
>> http://www.astro.uva.nl/~dominik/Tools/org/
>>
>> Enjoy, and keep the feedback coming.
>>
>> - Carsten
>>
>> --
>> Carsten Dominik
>> Sterrenkundig Instituut "Anton Pannekoek"
>> Universiteit van Amsterdam
>> Kruislaan 403
>> NL-1098SJ Amsterdam
>> phone: +31 20 525 7477
>>
>>
>>
>> _______________________________________________
>> Emacs-orgmode mailing list
>> Emacs-orgmode@gnu.org
>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>>
>
> -- 
> Dave O'Toole
> dto@gnu.org
>
>

--
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-mode 4.29
  2006-05-12 12:03 Org-mode 4.29 Carsten Dominik
  2006-05-12 12:44 ` David O'Toole
@ 2006-05-12 13:32 ` John Rakestraw
  2006-05-12 13:35   ` Carsten Dominik
  2006-05-13 18:47 ` T. V. Raman
  2 siblings, 1 reply; 7+ messages in thread
From: John Rakestraw @ 2006-05-12 13:32 UTC (permalink / raw)
  To: emacs-orgmode

> I am releasing version 4.29 of Org-mode, with these changes:
> 
> Version 4.29
  <snip>
> 
> http://www.astro.uva.nl/~dominik/Tools/org/
> 

This is very odd. I gather that others are able to download the new
version without difficulty, but when I go to the link above I see
the page indicating that the latest version is 4.27. I download the
file labeled org-4.27.zip, unzip it, and see that it's the same size
and has the same time stamp as 4.27 released last month.

I've cleared my cache, and I've even gone to the site using a browser I
never use, but still see the same (older) file.

So am I going crazy?

-- 
John Rakestraw

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

* Re: Org-mode 4.29
  2006-05-12 13:32 ` John Rakestraw
@ 2006-05-12 13:35   ` Carsten Dominik
  0 siblings, 0 replies; 7+ messages in thread
From: Carsten Dominik @ 2006-05-12 13:35 UTC (permalink / raw)
  To: John Rakestraw; +Cc: emacs-orgmode

Sorry, I forgot to update the webpage.  Fixed now.

- Carsten

On May 12, 2006, at 15:32, John Rakestraw wrote:

>> I am releasing version 4.29 of Org-mode, with these changes:
>>
>> Version 4.29
>   <snip>
>>
>> http://www.astro.uva.nl/~dominik/Tools/org/
>>
>
> This is very odd. I gather that others are able to download the new
> version without difficulty, but when I go to the link above I see
> the page indicating that the latest version is 4.27. I download the
> file labeled org-4.27.zip, unzip it, and see that it's the same size
> and has the same time stamp as 4.27 released last month.
>
> I've cleared my cache, and I've even gone to the site using a browser I
> never use, but still see the same (older) file.
>
> So am I going crazy?
>
> -- 
> John Rakestraw
>
>
> _______________________________________________
> 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

* Org-mode 4.29
  2006-05-12 12:03 Org-mode 4.29 Carsten Dominik
  2006-05-12 12:44 ` David O'Toole
  2006-05-12 13:32 ` John Rakestraw
@ 2006-05-13 18:47 ` T. V. Raman
  2006-05-14 16:14   ` Carsten Dominik
  2 siblings, 1 reply; 7+ messages in thread
From: T. V. Raman @ 2006-05-13 18:47 UTC (permalink / raw)
  To: dominik; +Cc: emacs-orgmode

cvs emacs still has 4.26. would be nice if your releases just
came with cvs update of emacs.

-- 
Best Regards,
--raman

      
Email:  raman@users.sf.net
WWW:    http://emacspeak.sf.net/raman/
AIM:    emacspeak       GTalk: tv.raman.tv@gmail.com
PGP:    http://emacspeak.sf.net/raman/raman-almaden.asc
Google: tv+raman 
IRC:    irc://irc.freenode.net/#emacs

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

* Re: Org-mode 4.29
  2006-05-13 18:47 ` T. V. Raman
@ 2006-05-14 16:14   ` Carsten Dominik
  0 siblings, 0 replies; 7+ messages in thread
From: Carsten Dominik @ 2006-05-14 16:14 UTC (permalink / raw)
  To: raman; +Cc: emacs-orgmode


On May 13, 2006, at 20:47, T. V. Raman wrote:

> cvs emacs still has 4.26. would be nice if your releases just
> came with cvs update of emacs.

Emacs is in features freeze and the changes in 4.29 are significant and 
not well-enough tested to install them into Emacs at this point.

- 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

end of thread, other threads:[~2006-05-14 16:14 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-05-12 12:03 Org-mode 4.29 Carsten Dominik
2006-05-12 12:44 ` David O'Toole
2006-05-12 12:56   ` Carsten Dominik
2006-05-12 13:32 ` John Rakestraw
2006-05-12 13:35   ` Carsten Dominik
2006-05-13 18:47 ` T. V. Raman
2006-05-14 16:14   ` 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).