Re: [Orgmode] Compilation error about org-protecting-blocks

2009-06-14 Thread Carsten Dominik
Fixed, thanks. - Carsten On Jun 14, 2009, at 7:42 AM, Baoqiu Cui wrote: Hi, I just did the following: git pull make clean make all but hit this error: ... In toplevel form: lisp/org-exp.el:31:1:Error: Symbol's value as variable is void: org-protecting-blocks make: ***

Re: [Orgmode] htmlize slows org export down?

2009-06-14 Thread Carsten Dominik
On Jun 13, 2009, at 10:33 PM, Stefan Vollmar wrote: Hello, I am currently writing a tutorial on Python for beginners, and I have numerous paragraphs like this: #+BEGIN_SRC python from xturtle import * ... raw_input() #+END_SRC Using version 1.36 of htmlize.el (already compiled) this will

Re: [Orgmode] Re: Sourceforge community award

2009-06-14 Thread Cameron Horsburgh
At Sat, 13 Jun 2009 22:32:21 -0700, Baoqiu Cui wrote: Nick Dokos nicholas.do...@hp.com writes: Carsten Dominik carsten.domi...@gmail.com wrote: One more: How about this one: For question two I currently have: We should win because by letting people shape their

Re: [Orgmode] Re: Keeping a wiki with org-mode

2009-06-14 Thread Carsten Dominik
On Jun 13, 2009, at 10:17 PM, Sebastian Rose wrote: Matthew Lundin m...@imapmail.org writes: Hi Marcelo, Marcelo de Moraes Serpa celose...@gmail.com writes: Hello, I wonder what is the best way to implement a wiki with org? I know you can hyperlink to anything, but what I was thinking

[Orgmode] Re: Sourceforge community award

2009-06-14 Thread Baoqiu Cui
Cameron Horsburgh ca...@netcall.com.au writes: At Sat, 13 Jun 2009 22:32:21 -0700, Baoqiu Cui wrote: Nick Dokos nicholas.do...@hp.com writes: Carsten Dominik carsten.domi...@gmail.com wrote: One more: How about this one: For question two I currently have: We should win

Re: [Orgmode] Keeping a wiki with org-mode

2009-06-14 Thread Carsten Dominik
On Jun 13, 2009, at 2:03 AM, Dan Davison wrote: Marcelo de Moraes Serpa celose...@gmail.com writes: Thank you all for the replies, What I was suggesting is something like what WikiDPad does, a local wiki-like KB. WikiDPad exposes a very agile workflow, where CameCased words get

Re: [Orgmode] Re: Sourceforge community award

2009-06-14 Thread Carsten Dominik
On Jun 13, 2009, at 10:02 PM, Dan Davison wrote: Ian Barton li...@manor-farm.org writes: Carsten Dominik wrote: One more: How about this one: For question two I currently have: We should win because by letting people shape their productive selves, org-mode has spawned the best

[Orgmode] Re: Compilation error about org-protecting-blocks

2009-06-14 Thread Baoqiu Cui
Hi Carsten, Thanks for the quick fix. However the problem still exists on my computer (running GNU Emacs 22.3.1 (i386-apple-darwin9.5.0, Carbon Version 1.6.0) of 2008-10-31 on leopard.local). Here is what I got: $ pwd

Re: [Orgmode] Re: Compilation error about org-protecting-blocks

2009-06-14 Thread Carsten Dominik
On Jun 14, 2009, at 8:22 AM, Baoqiu Cui wrote: Hi Carsten, Thanks for the quick fix. However the problem still exists on my computer (running GNU Emacs 22.3.1 (i386-apple-darwin9.5.0, Carbon Version 1.6.0) of 2008-10-31 on leopard.local). Here is what I got:

[Orgmode] Re: Compilation error about org-protecting-blocks

2009-06-14 Thread Baoqiu Cui
Carsten Dominik carsten.domi...@gmail.com writes: On Jun 14, 2009, at 8:22 AM, Baoqiu Cui wrote: Hi Carsten, Thanks for the quick fix. However the problem still exists on my computer (running GNU Emacs 22.3.1 (i386-apple-darwin9.5.0, Carbon Version 1.6.0) of 2008-10-31 on leopard.local).

[Orgmode] [PATCH] Fix a DocBook/HTML exporter bug for literal examples

2009-06-14 Thread Baoqiu Cui
Carsten, Recent changes to respect example indentations introduced a bug in both DocBook and HTML exporters. The following example #+BEGIN_EXAMPLE Group of lines separated by empty lines: Line One. Line Two. Line

Re: [Orgmode] [PATCH] Fix a DocBook/HTML exporter bug for literal examples

2009-06-14 Thread Carsten Dominik
Ahh, the beauty of a patch bug report with the patch attached... Applied, thanks. - Carsten On Jun 14, 2009, at 12:56 PM, Baoqiu Cui wrote: Carsten, Recent changes to respect example indentations introduced a bug in both DocBook and HTML exporters. The following example

[Orgmode] Alternate Table Row Colors

2009-06-14 Thread Xin Shi
Hello Experts, I use org-mode to produce a lot of big tables with numbers in them. When I present these tables by HTML, I found it's hard to keep track which row it is. I'm wondering if it's possible to implement additional class attribute to the tr, such as: table class=sample tr

Re: [Orgmode] Alternate Table Row Colors

2009-06-14 Thread Russell Adams
Not that I'm a CSS expert, but it appears you could do this without changing how Org outputs tables by adding this styling to your CSS. http://www.zorked.com/css/alternating-table-rows-using-css-only/ Quote: tr:nth-child(odd) { background-color: #CC; } tr:nth-child(even) {

[Orgmode] using %(sexp) in remember templates

2009-06-14 Thread Shelagh Manton
I'm trying to make a remember template that inserts some text automatically. I read in the manual that %(sexp) would expand in the template. This would be what I want, if I've understood the manual aright. I made a small function that inserts text (org-csa) and this is the template I

Re: [Orgmode] using %(sexp) in remember templates

2009-06-14 Thread Nick Dokos
Shelagh Manton shelagh.man...@gmail.com wrote: I'm trying to make a remember template that inserts some text automatically. I read in the manual that %(sexp) would expand in the template. This would be what I want, if I've understood the manual aright. I made a small function that

[Orgmode] Re: using %(sexp) in remember templates

2009-06-14 Thread Shelagh Manton
On Mon, 15 Jun 2009 01:01:57 -0400, Nick Dokos wrote: Shelagh Manton shelagh.man...@gmail.com wrote: I'm trying to make a remember template that inserts some text automatically. I read in the manual that %(sexp) would expand in the template. This would be what I want, if I've understood