Re: [Orgmode] Re: Org-Mode in Windows

2009-01-25 Thread David Lord
Bailey, I think the first thing you need to do is find your .emacs: start emacs and type Ctrl-x Ctrl-f, make sure it says something like 'Find file: ~/' at the bottom of the screen and press enter. A 'dired' buffer should open up in which you should see your .emacs file (if you want to

Re: [Orgmode] Re: Org-Mode in Windows

2009-01-25 Thread Manish
On Jan 25, 2009, at 3:48 AM, Manager Leader wrote: Dear Mr. Dominik, Thank you for your work in Org-Mode, I started researching about it a month ago and I have started using it 10 days ago (used to work in outlook but it just can't cope with my life now). And so far am happy with it except

[Orgmode] Release 6.19

2009-01-25 Thread Carsten Dominik
Enjoy! - Carsten Changes in Version 6.19 === Overview - Improved behavior of conversion commands `C-c -' and `C-c *' - Table formulas may now reference fields in other tables - A final hline is imagined in each table, for the sake of references - A tags-todo

Re: [Orgmode] Re: Org-Mode in Windows

2009-01-25 Thread Manish
On Sun, Jan 25, 2009 at 8:32 PM, Manager Leader wrote: Hi Manish, Thank you for your reply. I tried what you said: (add-to-list 'load-path C:/path/to/org-mode/lisp) (require 'org-install) (add-to-list 'auto-mode-alist '(\\.org$ . org-mode)) (global-set-key \C-ca 'org-agenda) But I had

[Orgmode] Syntax highlighting in published output

2009-01-25 Thread Jan Seeger
Hello List! I was just wondering if org-mode can do (programming language) syntax highlighting like muse when publishing to HTML or similar. If yes, how? Greetings, Jan ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the

[Orgmode] Latex export, unnumbered sections

2009-01-25 Thread Nicolas Goaziou
Hello, I'm running into some kind of problem with my export as latex and process as pdf setup. I would like to have all my headings numbered but a few ones. Sadly, I don't know about any mean to specify individually what header should be exported as starred or not. I still can export to latex,

Re: [Orgmode] Syntax highlighting in published output

2009-01-25 Thread Eric Schulte
Jan Seeger jan.see...@thenybble.de writes: Hello List! I was just wondering if org-mode can do (programming language) syntax highlighting like muse when publishing to HTML or similar. If yes, how? Hi Jan, If you would like to include an entire file as highlighted html you can use the

[Orgmode] Remind functionality?

2009-01-25 Thread Nicholas S-A
Hi, I am attempting to use org-mode as a replacement for remind. I currently have it set up with the following in my .bash_profile: emacs --batch --no-init-file -q -l ~/.emacs.slim --eval (progn (org-agenda-list) (princ (buffer-string))) 2 /dev/null Where ~/.emacs.slim is a very small init

[Orgmode] Problem with org-yank and delete-selection-mode

2009-01-25 Thread Steven E. Harris
It's taken my a couple of months of running into this flaw to finally stop and figure out what's wrong. I use either pending-delete-mode or delete-selection-mode, depending on Emacs flavor, such that the selected region gets deleted or replaced by a subsequent kill or yank command. There's a

Re: [Orgmode] Problem with org-yank and delete-selection-mode

2009-01-25 Thread Carsten Dominik
Hi Steven, this code belongs into org.el, where similar statements are already present for a couple of other functions: ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode (put 'org-self-insert-command 'delete-selection t) (put 'orgtbl-self-insert-command 'delete-selection t)

[Orgmode] Re: Problem with org-yank and delete-selection-mode

2009-01-25 Thread Steven E. Harris
Carsten Dominik domi...@science.uva.nl writes: I have added your line, thanks. Great. Thanks for the fast response. -- Steven E. Harris ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org

[Orgmode] Problem compiling org-mode for XEmacs

2009-01-25 Thread Steven E. Harris
I updated my copy of the org-mode source tree today and tried to compile it for XEmacs. It failed with the following error (reformatted slightly with a path shortened): , | xemacs -batch -q -eval | (progn | (add-to-list (quote load-path) | (expand-file-name \./lisp/\))

Re: [Orgmode] footnote questions

2009-01-25 Thread Mike Newman
I suggest that each footnote is placed in a div with class footnote, with all footnotes nested inside a div with class footnotes. -- Mike On Sun, 25 Jan 2009 08:46:02 +0100 Carsten Dominik domi...@science.uva.nl wrote: On Jan 24, 2009, at 6:38 AM, Samuel Wales wrote: Minor questions:

Re: [Orgmode] Re: Org-Mode in Windows

2009-01-25 Thread Manish
On Sun, Jan 25, 2009 at 9:26 PM, Bailey wrote: Hi Manish, I tried putting in the configuration from John Wigley on the link you gave: http://www.newartisans.com/blog/2007/08/using-org-mode-as-a-day-planner.html and then use M-x load-file... Unfortunately, I got the following messages:

[Orgmode] Problem compiling 6.19a for xemacs

2009-01-25 Thread Seb
While compiling 6.19a for xemacs, I got the following error: Compiling /usr/share/xemacs21/site-lisp/org-mode/org-agenda.el... While compiling toplevel forms in file /usr/[...]/org-mode/org-agenda.el: !! Malformed list ((:inverse-video)) Error occurred processing org-agenda.el:

Re: [Orgmode] Re: Org-Mode in Windows

2009-01-25 Thread David Lord
Bailey, I'm surprised you are seeing c:/emacs/bin as your home directory - perhaps its a peculiarity of the official GNU release. `C:\Documents and Settings\USERNAME\Application Data' is the default on XP I believe. Personally, I like the EmacsW32 release (http://

Re: [Orgmode] Problem compiling 6.19a for xemacs

2009-01-25 Thread Carsten Dominik
Fixed, thanks. - Carsten On Jan 25, 2009, at 8:11 PM, Seb wrote: While compiling 6.19a for xemacs, I got the following error: Compiling /usr/share/xemacs21/site-lisp/org-mode/org-agenda.el... While compiling toplevel forms in file /usr/[...]/org-mode/org- agenda.el: !! Malformed list

Re: [Orgmode] Problem compiling org-mode for XEmacs

2009-01-25 Thread Carsten Dominik
Org-mode never calls store-match-date with two arguments. I can only guess, maybe you have some file that was compiled for Emacs (not XEmacs), and this file is loaded during the compilation of Org-mode. - Carsten On Jan 25, 2009, at 6:53 PM, Steven E. Harris wrote: I updated my copy of the

Re: [Orgmode] Remind functionality?

2009-01-25 Thread Carsten Dominik
Hi Nicolas, On Jan 25, 2009, at 5:36 PM, Nicholas S-A wrote: Hi, I am attempting to use org-mode as a replacement for remind. I currently have it set up with the following in my .bash_profile: emacs --batch --no-init-file -q -l ~/.emacs.slim --eval (progn (org-agenda-list) (princ

[Orgmode] Re: Problem compiling org-mode for XEmacs

2009-01-25 Thread Steven E. Harris
Carsten Dominik domi...@science.uva.nl writes: Org-mode never calls store-match-date with two arguments. Yes, I see: , | % find . -name '*.el' | xargs grep store-match | ./lisp/org-mouse.el: (store-match-data mdata)) | ./lisp/org.el: (store-match-data match-data) ` I can only

Re: [Orgmode] Please test 6.19a

2009-01-25 Thread Christopher Suckling
On 25 Jan 2009, at 16:06, Carsten Dominik wrote: I just uploaded org 6.19a into Emacs CVS, so that it can still be part of the Emacs 23.1 pretest and release. Please test the latest release and let me know as soon as possible if there are any regressions. Two small niggles. 1) :VISIBILITY:

Re: [Orgmode] Remind functionality?

2009-01-25 Thread Nicholas S-A
Hi, * Carsten Dominik domi...@science.uva.nl [2009-01-25 22:17:16 +0100]: It is unlikely that this can be make faster in a significant way. Why is it a problem Even if it takes 10 seconds? Ah, I see, you do this in every new shell?? This sounds unnecessary, to say the least. Maybe