[Orgmode] Org Download links broken

2008-04-15 Thread Ingersoll, Nelson
Hi, 

   The download links for the ZIP and GZIPPED downloads are broken.  I get a 
404 error for either link.

Regards, 

Nelson 

nelsondotingersollatatmeldotcom


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Is there any way to active the reminder of Org mode in Emacs?

2008-04-15 Thread DigitalPig
Hi there~

I am using Emacs 22.2 with Org Mode 5.23a. I am wondering if Org mode
have the same function as diary in Emacs. That is if you have some
events or appointment. Diary pop-ups a window indicating that. How can I
let Org to remind me the coming events as diary? Thanks!

ZQ

-- 
DigitalPig
E-mail: digitalpiglee AT gmail DOT com
ALL WE SEEN IS ILLUSION.



___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: Is there any way to active the reminder of Org mode in Emacs?

2008-04-15 Thread Bernt Hansen
DigitalPig [EMAIL PROTECTED] writes:

 I am using Emacs 22.2 with Org Mode 5.23a. I am wondering if Org mode
 have the same function as diary in Emacs. That is if you have some
 events or appointment. Diary pop-ups a window indicating that. How can I
 let Org to remind me the coming events as diary? Thanks!

Hi!

I don't use the diary at all anymore.  I have the following setup in my
.emacs to create appointment reminders for org-mode


;; Get appointments for today
(defun my-org-agenda-to-appt ()
  (interactive)
  (setq appt-time-msg-list nil)
  (org-agenda-to-appt))

(add-hook 'org-finalize-agenda-hook 'my-org-agenda-to-appt)
(my-org-agenda-to-appt)
(appt-activate t)


-Bernt



___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Is there any way to active the reminder of Org mode in Emacs?

2008-04-15 Thread Manish
On Tue, Apr 15, 2008 at 7:05 PM, DigitalPig [EMAIL PROTECTED] wrote:
 Hi there~

  I am using Emacs 22.2 with Org Mode 5.23a. I am wondering if Org mode
  have the same function as diary in Emacs. That is if you have some
  events or appointment. Diary pop-ups a window indicating that. How can I
  let Org to remind me the coming events as diary? Thanks!


Try setting org-agenda-include-diary to t.

-- Manish


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] appointments

2008-04-15 Thread Richard G Riley

Hi,

I think this is probably a bug for default. Or is this because
cancelled isnt really a finished todo state? Using 6.0pre1 cancelled
appts are still being prompted. Here is the relative section from my
diary file (org file) and the code I use :

org file:

,
| * Diary Entries
| ** CANCELED 2008-04-15 Tue 19:50 do this
|CLOSED: [2008-04-15 Tue 19:46]
|- State CANCELED   [2008-04-15 Tue 19:47]
|- State DONE   [2008-04-15 Tue 19:46]
|- State WAIT   [2008-04-15 Tue 19:46]
`

code:

,
| ;; Get appointments for today
| (defun my-org-agenda-to-appt ()
|   (interactive)
|   (setq appt-time-msg-list nil)
|   (let ((org-deadline-warning-days 0)) ;; will be automatic in org 5.23
| (org-agenda-to-appt)))
| 
| ;; Run once, activate and schedule refresh
| (appt-activate t)
| 
| (my-org-agenda-to-appt)
| (appt-activate t)
| (run-at-time 24:01 nil 'my-org-agenda-to-appt)
| 
|   ; 5 minute warnings
| (setq appt-message-warning-time '15)
| (setq appt-display-interval '5)
| 
|   ; Update appt each time agenda opened.
| (add-hook 'org-finalize-agenda-hook 'my-org-agenda-to-appt)
| 
|   ; Setup zenify, we tell appt to use 
window, and replace default function
| (setq appt-display-format 'window)
| (setq appt-disp-window-function (function my-appt-disp-window))
| 
| (defun my-appt-disp-window (min-to-app new-time msg)  
|   (save-window-excursion (shell-command (concat 
|/usr/bin/zenity --info 
--title='Appointment' --text=' 
|msg
|' 
|) nil nil)
|))
`





___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] org-mode and Trac

2008-04-15 Thread Cezar Halmagean

Hello,

  Is there any way I could sync org-mode and trac so I could managed my
  tickets with org-mode ?

  Or does anybody have a different solution ?

Regards,
Cezar



___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode