Re: [Emacs-orgmode] todo and deadline highlighting

2006-06-20 Thread Carsten Dominik
This looks like it is doing the right thing. - Carsten On Jun 19, 2006, at 22:09, Piotr Zielinski wrote: On 12/06/06, Carsten Dominik <[EMAIL PROTECTED]> wrote: On Jun 8, 2006, at 1:34, Piotr Zielinski wrote: > The following two functions redefine org-show-todo-tree, so that TODO > items

Re: [Emacs-orgmode] Can org.el replace planner?

2006-06-20 Thread Bastien
Leon <[EMAIL PROTECTED]> writes: > Currently I'm using planner as my daily tasks organizer. I'd like to > try org.el, but I can't figure out what is it good for? So here is the > question: can org.el replace planner? Could you give a scenario where > org fits? I've been using planner (and emacs-w

[Emacs-orgmode] File link in Windows?

2006-06-20 Thread Morten Hindsholm
Hi I am a long-time Emacs user who has just started using Orgmode, and I must say I'm impressed! I have a small Windows-related problem, though: I can create links to external files, but only when they are on the same drive as my .org file. For example: file:/home/mohi.html is OK, but

Re: [Emacs-orgmode] Attention XEmacs users

2006-06-20 Thread Tim O'Callaghan
I experimented with automating the noutline usage with a patch for org-install: (if (featurep 'xemacs) (progn (setq dir (expand-file-name (concat default-directory "xemacs"))) (if (file-directory-p dir) (setq load-path (cons dir load-path))) ) ) The prob

Re: [Emacs-orgmode] Attention XEmacs users

2006-06-20 Thread Carsten Dominik
Hi Tim, On Jun 20, 2006, at 14:09, Tim O'Callaghan wrote: Also ":" needed to be added to org-link-escape-chars, as below: (defconst org-link-escape-chars '((":" . ":") ("[" . "%5B") ("]" . "%5D") (" " . "%20")) "Association list of escapes for some characters problematic in links.") Is t

Re: [Emacs-orgmode] Attention XEmacs users

2006-06-20 Thread Tim O'Callaghan
On Tue, Jun 20, 2006 at 03:47:13PM +0200, Carsten Dominik wrote: > Hi Tim, > > > On Jun 20, 2006, at 14:09, Tim O'Callaghan wrote: > > > >Also ":" needed to be added to org-link-escape-chars, as below: > >(defconst org-link-escape-chars '((":" . ":") ("[" . "%5B") ("]" . > >"%5D") (" " . "%20"))

Re: [Emacs-orgmode] Attention XEmacs users

2006-06-20 Thread Carsten Dominik
Yes, looks like this function does not do at all what I think it should be doing. I'll remove the call, thanks for tracking this down. - Carsten On Jun 20, 2006, at 17:03, Tim O'Callaghan wrote: On Tue, Jun 20, 2006 at 03:47:13PM +0200, Carsten Dominik wrote: Hi Tim, On Jun 20, 2006, at 1

[Emacs-orgmode] Re: Can org.el replace planner?

2006-06-20 Thread Leon
Bastien <[EMAIL PROTECTED]> writes: > Leon <[EMAIL PROTECTED]> writes: > >> Currently I'm using planner as my daily tasks organizer. I'd like to >> try org.el, but I can't figure out what is it good for? So here is the >> question: can org.el replace planner? Could you give a scenario where >> org

Re: [Emacs-orgmode] Attention XEmacs users

2006-06-20 Thread Carsten Dominik
On Jun 20, 2006, at 17:11, Carsten Dominik wrote: Yes, looks like this function does not do at all what I think it should be doing. I'll remove the call, thanks for tracking this down. Correction: ...what I *thought* it was doing. The function is fine, I was wrong putting the call there..

Re: [Emacs-orgmode] Attention XEmacs users

2006-06-20 Thread Carsten Dominik
Maybe you are not trying to open the file in emacs? Following a link picks an application to open the file, depending on the extension. Under windows, the default is to use "open" for files, which is just like double-clicking them. However, "open" may choke on an efs path. You can force the

Re: [Emacs-orgmode] Attention XEmacs users

2006-06-20 Thread Tim O'Callaghan
On Tue, Jun 20, 2006 at 06:36:19PM +0200, Carsten Dominik wrote: > Maybe you are not trying to open the file in emacs? > Following a link picks an application to open the file, depending on > the extension. Under windows, the default is to use "open" for > files, which is just like double-clicki

Re: [Emacs-orgmode] Attention XEmacs users

2006-06-20 Thread Carsten Dominik
Maybe I should force efs/tramp file names to be opened with Emacs/. What is the best and most general way to test if a file name is efs or tramp or ange-ftp? - Carsten On Jun 20, 2006, at 18:53, Tim O'Callaghan wrote: On Tue, Jun 20, 2006 at 06:36:19PM +0200, Carsten Dominik wrote: Maybe y

Re: [Emacs-orgmode] Attention XEmacs users

2006-06-20 Thread Tim O'Callaghan
On Tue, Jun 20, 2006 at 07:13:17PM +0200, Carsten Dominik wrote: > Maybe I should force efs/tramp file names to be opened with Emacs/. > > What is the best and most general way to test if a file name is efs > or tramp or ange-ftp? > For tramp you'll need to RTM, but for efs its /[EMAIL PROTECTE

Re: [Emacs-orgmode] Attention XEmacs users

2006-06-20 Thread Carsten Dominik
I just found file-remote-p, which may be the right solution. - Carsten On Jun 20, 2006, at 19:29, Tim O'Callaghan wrote: On Tue, Jun 20, 2006 at 07:13:17PM +0200, Carsten Dominik wrote: Maybe I should force efs/tramp file names to be opened with Emacs/. What is the best and most general way

[Emacs-orgmode] org-publish math support

2006-06-20 Thread Leon
Hi all, Would it be possible to make org-publish support math formulas? For example we could use tex to type the formulas and latex2png to convert to image when export to html as wikipedia does. There are so few apps for taking scientific notes. And this feature will be extremely useful to academ

[Emacs-orgmode] Re: Attention XEmacs users

2006-06-20 Thread Michael Olson
Carsten Dominik <[EMAIL PROTECTED]> writes: > I just found file-remote-p, which may be the right solution. XEmacs and Emacs22 both have this function, but in case you need backwards compatibility with Emacs21, feel free to use something like the following. This handles both Tramp and ange-ftp fi

Re: [Emacs-orgmode] Re: Attention XEmacs users

2006-06-20 Thread Carsten Dominik
This is excellent, thank you very much. - Carsten On Jun 21, 2006, at 2:15, Michael Olson wrote: Carsten Dominik <[EMAIL PROTECTED]> writes: I just found file-remote-p, which may be the right solution. XEmacs and Emacs22 both have this function, but in case you need backwards compatibility