[Orgmode] thousands of Invalid face attribute messages

2008-03-26 Thread David O'Toole
When I open an org-mode file I start to get these errors in the message-buffer. Debug-on-error does not seem to work because it's apparently happening during redisplay. Invalid face attribute :bold t [1133 times] I removed all instances of :bold t from my color theme file, so I don't think it's m

[Orgmode] Re: Is there an alternate means of defining categories?

2008-03-26 Thread Bernt Hansen
[EMAIL PROTECTED] writes: > I'm looking for a way to define categories, aside from using the > '#+CATEGORY: Whatever' method. I'd like to keep all the comments and > other visual clutter out of the actual data portions of my > files. Using the 'odd' and 'hide leading stars' has helped a lot. If i

[Orgmode] HTML export: internal links broken

2008-03-26 Thread Sebastian Rose
There is small bug in the XHTML export. Internal links point to nowhere. * Example *** In the orgfile: This [[Some Heading][Link]] should link to '*** Some Heading'. *** After export, HTML file: This Link should link to '*** Some Heading'. There is no anchor defined with that nam

[Orgmode] Is there an alternate means of defining categories?

2008-03-26 Thread subopt
I'm looking for a way to define categories, aside from using the '#+CATEGORY: Whatever' method. I'd like to keep all the comments and other visual clutter out of the actual data portions of my files. Using the 'odd' and 'hide leading stars' has helped a lot. If i could just move the category defini

[Orgmode] [PATCH] doc: Add example of the global setting for mutually exclusive tags

2008-03-26 Thread Bernt Hansen
Explicitly show an example for setting org-tag-alist globally with mutually exclusive tags for people new to lisp. --- I had trouble with this originally and ended up digging in the org.el code to figure out how to do this. Hopefully this makes it easier on org-mode users :) org.texi | 11 +++

Re: [Orgmode] Re: Bug: repeated task with ++1w does not auto-jump

2008-03-26 Thread Carsten Dominik
I am in the middle of some other big changes, but I will get back to this in a week or so. - Carsten On Mar 24, 2008, at 4:24 PM, Wanrong Lin wrote: More observations: With a test task like this: * TODO Test SCHEDULED: <2008-03-25 Tue ++1w> If I try to mark it DONE on 2008-03-24, i.e. bef

Re: [Orgmode] Re: Testers needed

2008-03-26 Thread Carsten Dominik
Hi Thomas, the version where org.el is split needs to be installed properly, In particular, you need to run "make" or at least "make org-install.el" in order to produce the autoload file org-install.el. And then you need to load this file in .emacs with (require 'org-install) No need to do (re

[Orgmode] Re: mutually exclusive tags

2008-03-26 Thread Bernt Hansen
Richard G Riley <[EMAIL PROTECTED]> writes: > Could someone show me an example of mutually exclusive tag setting in > elisp please? There is an example of non exclusive ones in the manual: > > (setq org-tag-alist '(("@work" . ?w) ("@home" . ?h) ("laptop" > . ?l))) > > But how to do it fo

[Orgmode] Re: org/blorg and mysql

2008-03-26 Thread Cezar Halmagean
Xin Shi <[EMAIL PROTECTED]> writes: > Hi Cezar, > > It's a good idea! > > I've been using the weblogger.el to post on the mysql server, > interfaced by wordpress. You may want to take a look at it. > > Xin > Thanks Xin, I think that will help me build a "publish/sync" function. __

[Orgmode] mutually exclusive tags

2008-03-26 Thread Richard G Riley
Could someone show me an example of mutually exclusive tag setting in elisp please? There is an example of non exclusive ones in the manual: (setq org-tag-alist '(("@work" . ?w) ("@home" . ?h) ("laptop" . ?l))) But how to do it for #+TAGS: { @work(w) @home(h) @tennisclub(t) }

[Orgmode] Re: BUG-Remember buffer and switching templates

2008-03-26 Thread Bernt Hansen
Here's a better debug backtrace from the uncompiled org.el file Debugger entered--Lisp error: (error "Marker does not point anywhere") jump-to-register(82) (progn (kill-buffer (current-buffer)) (jump-to-register remember-register)) (if (equal remember-buffer (buffer-name)) (progn (kill-buffe

[Orgmode] BUG-Remember buffer and switching templates

2008-03-26 Thread Bernt Hansen
Hi Carsten, I ran into this today. I was creating a new task via remember and I hit the wrong key for selecting the template. The prompt in the buffer says ## To switch templates, use `C-M-r'. To abort use `C-c C-k'. so I hit C-M-r and entered the correct template key (after entering some

Re: [Orgmode] org/blorg and mysql

2008-03-26 Thread Xin Shi
Hi Cezar, It's a good idea! I've been using the weblogger.el to post on the mysql server, interfaced by wordpress. You may want to take a look at it. Xin Cezar Halmagean wrote: Hello, What I am trying to do is create a blog that reads from a mysql db and I would like to be able to use

[Orgmode] org/blorg and mysql

2008-03-26 Thread Cezar Halmagean
Hello, What I am trying to do is create a blog that reads from a mysql db and I would like to be able to use org-mode to write (and read) to that mysql db. So in other words, use org-mode as an interface/editor for my blog. I would like to hear your thoughts about this. Regards, Cezar

Re: [Orgmode] Re: Add to do item in the Org Agenda Day Grid

2008-03-26 Thread Xin Shi
Hi Thomas, Thank you! I'll read more about the remember package then. Xin Thomas Baumann wrote: I have customized my remember templates: '(org-remember-store-without-prompt t) '(org-remember-templates (quote (("Todo" 116 "* TODO %? %u" "~/org/diary.org" "Tasks") ("Note" 110 "* %? %u" "~

[Orgmode] Re: Add to do item in the Org Agenda Day Grid

2008-03-26 Thread Thomas Baumann
I have customized my remember templates: '(org-remember-store-without-prompt t) '(org-remember-templates (quote (("Todo" 116 "* TODO %? %u" "~/org/diary.org" "Tasks") ("Note" 110 "* %? %u" "~/org/tb.org" "Notes") ("Appt" 97 "* %? %^T %^{Ort}" "~/org/diary.org" "Appointments") ("Call" 99

Re: [Orgmode] Re: Add to do item in the Org Agenda Day Grid

2008-03-26 Thread Xin Shi
Hi Tomas, Thanks for your reply! I tried that, and when I called the remember, it gave me a buffer. But when I finish that with "C-c C-c", it prompted me asking about the page. I don't know how to deal with that. By the way, I'm using the remember with the planner package, it might be due t

Re: [Orgmode] Add to do item in the Org Agenda Day Grid

2008-03-26 Thread Xin Shi
Hi John, Thank you! Could you explain a little bit more about how to set up your "remember templates"? Xin John Rakestraw wrote: On Wed, 26 Mar 2008 10:54:55 -0400 Xin Shi <[EMAIL PROTECTED]> wrote: I'm wondering if there's a way to add todo item in the buffer "Org Agenda" on its Day G

[Orgmode] Re: Add to do item in the Org Agenda Day Grid

2008-03-26 Thread Thomas Baumann
Hi, I usually use remember for this kind of stuff: (require 'remember) (add-hook 'remember-mode-hook 'org-remember-apply-template) (define-key global-map [(control meta ?r)] 'remember) You might want to have a look into the info file to take full advantage of the flexibility of this approach.

Re: [Orgmode] Add to do item in the Org Agenda Day Grid

2008-03-26 Thread John Rakestraw
On Wed, 26 Mar 2008 10:54:55 -0400 Xin Shi <[EMAIL PROTECTED]> wrote: > I'm wondering if there's a way to add todo item in the buffer "Org > Agenda" on its Day Grid? Since there are frequently something jumps > up and I want to keep it in the schedule. While in the agenda buffer, I call one of

[Orgmode] Add to do item in the Org Agenda Day Grid

2008-03-26 Thread Xin Shi
Hi, I'm wondering if there's a way to add todo item in the buffer "Org Agenda" on its Day Grid? Since there are frequently something jumps up and I want to keep it in the schedule. Thanks! Xin ___ Emacs-orgmode mailing list Remember: use `Reply

[Orgmode] cal-tex and entries from org

2008-03-26 Thread Jason F. McBrayer
I can't get scheduled entries from org-mode to show up in calendars printed via cal-tex. My diary file looks like %%(diary-phases-of-moon) %%(org-diary) cal-tex-diary is t,

Re: [Orgmode] org-info.js

2008-03-26 Thread Sebastian Rose
Pete Phillips <[EMAIL PROTECTED]> writes: > I'm trying to use org-info.js. > > I am using the git repository, and have placed the stylesheet.css and > the org-info.js into the same directory that my org file is in. > > The top of my org-file is as follows: > > #+TITLE: ubuntu-general.org > #+AU