[Orgmode] text-mode-abbrev-table default?

2009-10-28 Thread Andreas Roehler
Hi, with abbrev-mode, org-mode made his own (org-mode-abbrev-table) - empty, which was unconvenient, as I declared a lot of abbrevs in text-mode already. Solved it by (add-hook 'org-mode-hook '(lambda () (setq local-abbrev-table text-mode-abbrev-table))) However, as org-mode is a text-mode,

Re: [Orgmode] Re: Bugs when converting to LaTeX

2009-10-28 Thread Carsten Dominik
Hi Sebastien, On Oct 27, 2009, at 9:47 AM, Sébastien Vauban wrote: Unfortunately, this is a weakness of the list parser in the LaTeX exporter. It cannot handle this kind of post-subitem text in an item list. This really must be fixed, and it is on my list, but it is hard. Hopefully,

Re: [Orgmode] text-mode-abbrev-table default?

2009-10-28 Thread Carsten Dominik
On Oct 27, 2009, at 10:45 PM, Andreas Roehler wrote: Hi, with abbrev-mode, org-mode made his own (org-mode-abbrev-table) - empty, which was unconvenient, as I declared a lot of abbrevs in text-mode already. Solved it by (add-hook 'org-mode-hook '(lambda () (setq local-abbrev-table text-

Re: [Orgmode] Quotation marks in links in LaTeX export

2009-10-28 Thread Carsten Dominik
Hi Brenton, thanks for your report, this bug is fixed now. - Carsten On Oct 27, 2009, at 4:42 AM, Brenton Kenkel wrote: Dear all, I found an apparent minor bug with links containing quotation marks in LaTeX export. If the first character in the name of a link is a quotation mark, it is

Re: [Orgmode] Separate function for config listing from org-submit-bug-report

2009-10-28 Thread Carsten Dominik
Hi Jeff, I don't know why you are being prompted for you IMAP password, but regardless of this the email should not be send automatically. So I think you can go through the process and then copy the text and just not send the message! I cannot easily isolate this, because my code only

[Orgmode] Re: text-mode-abbrev-table default?

2009-10-28 Thread Leo
On 2009-10-28 09:19 +, Carsten Dominik wrote: Because if I do tis by default, someone if going to want to have a separate table :-) You solution is good - a nice snippet for a FAQ, maybe? It seems natural to `define-abbrev-table' org-mode-abbrev-table with text-mode-abbrev-table being

Re: [Orgmode] Re: text-mode-abbrev-table default?

2009-10-28 Thread Carsten Dominik
On Oct 28, 2009, at 11:32 AM, Leo wrote: On 2009-10-28 09:19 +, Carsten Dominik wrote: Because if I do tis by default, someone if going to want to have a separate table :-) You solution is good - a nice snippet for a FAQ, maybe? It seems natural to `define-abbrev-table'

[Orgmode] Re: [Announce:] org-git-link

2009-10-28 Thread Reimar Finken
[also replying to the list] Fixed on github, thanks. -- Dr. Reimar Finken(fin...@theo2.physik.uni-stuttgart.de) II. Institut für Theoretische Physik, Universität Stuttgart Pfaffenwaldring 57 Tel: 0711-68564924 70550 Stuttgart, Germany Fax:

[Orgmode] Exporting blocks without removing indentation

2009-10-28 Thread Dan Davison
Fairly late in the export process, org-exp removes the common indentation from lines inside blocks (line 2288 of org-exp.el): (setq rtn (org-remove-indentation code)) However, what do we do if 1. A user has a block that she wishes to export with the indentation intact? 2. An org-exp-blocks

[Orgmode] Differences html/pdf

2009-10-28 Thread andrea Crotti
I normally prefer to export to pdf but I see that there are some differences. I added #+OPTIONS: toc:nil \n:nil todo:nil and toc is not exported in both, todo are anyway always exported and newline are kept only in html. In the latex version they're not exported for some reasons... Should I

[Orgmode] Re: text-mode-abbrev-table default?

2009-10-28 Thread Leo
On 2009-10-28 10:37 +, Carsten Dominik wrote: It seems natural to `define-abbrev-table' org-mode-abbrev-table with text-mode-abbrev-table being its parent ;) Org-mode is defined using define-derived-mode, so maybe that should already do this? - Carsten I tested it in GNU Emacs

[Orgmode] Problem with icalendar export: all items with active timestamps are being exported

2009-10-28 Thread Friedrich Delgado Friedrichs
Hi! I'm trying to get a sane export to my google calendar from org mode and so I'm playing with org-export-icalendar-combine-agenda-files Here the (hopefully relevant) subset of my settings: '(org-combined-agenda-icalendar-file ~/git/Org/home/org.ics) '(org-icalendar-categories (quote

Re: [Orgmode] org-babel: Meta-LaTeX-Python-Environment

2009-10-28 Thread Eric Schulte
Thomas S. Dye t...@tsdye.com writes: On Oct 27, 2009, at 12:55 PM, Eric Schulte wrote: Although I still don't fully understand the need to embed latex *inside* of source-code blocks, perhaps the attached org-babel-latex.el file [1] will represent a simpler solution for embedding the

Re: [Orgmode] Problem with icalendar export: all items with active timestamps are being exported

2009-10-28 Thread Carsten Dominik
Hi Friedrich, you don't want normal time stamps in your agenda as events??? Well, this is an unusual idea. Well, pull from git and the say (setq org-icalendar-use-plain-timestamp nil) HTH - Carsten On Oct 28, 2009, at 3:49 PM, Friedrich Delgado Friedrichs wrote: Hi! I'm trying to

Re: [Orgmode] Re: text-mode-abbrev-table default?

2009-10-28 Thread Carsten Dominik
On Oct 28, 2009, at 11:32 AM, Leo wrote: On 2009-10-28 09:19 +, Carsten Dominik wrote: Because if I do tis by default, someone if going to want to have a separate table :-) You solution is good - a nice snippet for a FAQ, maybe? It seems natural to `define-abbrev-table'

Re: [Orgmode] Differences html/pdf

2009-10-28 Thread Carsten Dominik
On Oct 28, 2009, at 3:16 PM, andrea Crotti wrote: I normally prefer to export to pdf but I see that there are some differences. I added #+OPTIONS: toc:nil \n:nil todo:nil and toc is not exported in both, todo are anyway always exported This is about the TODO keywords, and they are stripped

Re: [Orgmode] Exporting blocks without removing indentation

2009-10-28 Thread Carsten Dominik
Hi Dan, maybe the easiest way to implement this would be a -i (or whatever) switch a the src block. Switches are being processed already, so it will be simple to add one, I think. - Carsten On Oct 28, 2009, at 2:29 PM, Dan Davison wrote: Fairly late in the export process, org-exp removes

[babel] Re: [Orgmode] org-babel: Meta-LaTeX-Python-Environment

2009-10-28 Thread Dan Davison
Dear thread participants, please note that we were breaking the rule of prepending the subject line with the string [babel]! One question inline below. Eric Schulte schulte.e...@gmail.com writes: Thomas S. Dye t...@tsdye.com writes: On Oct 27, 2009, at 12:55 PM, Eric Schulte wrote:

Re: [Orgmode] Re: text-mode-abbrev-table default?

2009-10-28 Thread Andreas Röhler
Carsten Dominik wrote: On Oct 28, 2009, at 11:32 AM, Leo wrote: On 2009-10-28 09:19 +, Carsten Dominik wrote: Because if I do tis by default, someone if going to want to have a separate table :-) You solution is good - a nice snippet for a FAQ, maybe? It seems natural to

Re: [Orgmode] org-babel: Meta-LaTeX-Python-Environment

2009-10-28 Thread Thomas S. Dye
On Oct 28, 2009, at 5:19 AM, Eric Schulte wrote: I see, you are using the org-mode file a level above the direct export. Maybe another option here would be to tag headlines based on which export target they are included within, and then base your exports on the headline tags (using

Re: [Orgmode] Differences html/pdf

2009-10-28 Thread Bastien
Carsten Dominik carsten.domi...@gmail.com writes: In the latex version they're not exported for some reasons... That is correct, we have not implemented keeping all line breaks in LaTeX. I've searched around a bit, and to my big surprise, I cannot find a LaTeX package preserving line breaks.

Re: [Orgmode] Problem with icalendar export: all items with active timestamps are being exported

2009-10-28 Thread Friedrich Delgado Friedrichs
Hey, that was quick! Thanks! ;) Carsten Dominik schrieb: you don't want normal time stamps in your agenda as events??? Well, this is an unusual idea. The reason I want this, is that I use SCHEDULED timestamps as my calendar items (i.e. the hard landscape for my day) and normal active

Re: [babel] Re: [Orgmode] org-babel: Meta-LaTeX-Python-Environment

2009-10-28 Thread Dan Davison
Dan Davison davi...@stats.ox.ac.uk writes: Am I right in thinking that one issue remaining in this thread is that we currently have no means of tangling the output of org-babel-latex? Thus the 'begin_src latex' blocks that we can tangle have unevaluated variables, and the resulting

[Orgmode] Re: Separate function for config listing from org-submit-bug-report

2009-10-28 Thread Jeff Kowalczyk
Carsten Dominik carsten.dominik at gmail.com writes: Hi Jeff, I don't know why you are being prompted for you IMAP password, but regardless of this the email should not be send automatically. So I think you can go through the process and then copy the text and just not send the message!

[babel] Re: [Orgmode] org-babel: Meta-LaTeX-Python-Environment

2009-10-28 Thread Thomas S. Dye
On Oct 28, 2009, at 6:10 AM, Dan Davison wrote: Dear thread participants, please note that we were breaking the rule of prepending the subject line with the string [babel]! One question inline below. Eric Schulte schulte.e...@gmail.com writes: Thomas S. Dye t...@tsdye.com writes: On

Re: [Orgmode] org-babel: Meta-LaTeX-Python-Environment

2009-10-28 Thread Dan Davison
[cc'ing list who were accidentally omitted] Torsten Wagner torsten.wag...@gmail.com writes: Hi Dan,   1. Hiding of the source code blocks for export I like to export the results of the source code block to LaTeX only. However, Using ':exports results' specifies that

Re: [Orgmode] Problem with icalendar export: all items with active timestamps are being exported

2009-10-28 Thread Carsten Dominik
On Oct 28, 2009, at 5:35 PM, Friedrich Delgado Friedrichs wrote: Hey, that was quick! Thanks! ;) So it works? Carsten Dominik schrieb: you don't want normal time stamps in your agenda as events??? Well, this is an unusual idea. The reason I want this, is that I use SCHEDULED

Re: [Orgmode] [PATCH] Add min/max/mean age operators to column view.

2009-10-28 Thread Carsten Dominik
Hi James, hi everyone, this is a reasonably complex patch - could we get some volunteers putting this to the test? Thanks. - Carsten On Oct 26, 2009, at 1:04 AM, James TD Smith wrote: I posted a patch to the list in July which added two new special properties intended for displaying the

[Orgmode] Re: Differences html/pdf

2009-10-28 Thread andrea Crotti
Carsten Dominik carsten.dominik at gmail.com writes: On Oct 28, 2009, at 3:16 PM, andrea Crotti wrote: This is about the TODO keywords, and they are stripped in both Mm I don't understand... How should I disable todo exporting then? How I wrote it doesn't work, but from the manual it

Re: [babel] Re: [Orgmode] org-babel: Meta-LaTeX-Python-Environment

2009-10-28 Thread Eric Schulte
Thomas S. Dye t...@tsdye.com writes: On Oct 28, 2009, at 6:10 AM, Dan Davison wrote: Am I right in thinking that one issue remaining in this thread is that we currently have no means of tangling the output of org-babel-latex? Thus the 'begin_src latex' blocks that we can tangle have

Re: [Orgmode] Re: Separate function for config listing from org-submit-bug-report

2009-10-28 Thread Carsten Dominik
On Oct 28, 2009, at 5:50 PM, Jeff Kowalczyk wrote: Carsten Dominik carsten.dominik at gmail.com writes: Hi Jeff, I don't know why you are being prompted for you IMAP password, but regardless of this the email should not be send automatically. So I think you can go through the process and

Re: [Orgmode] Exporting blocks without removing indentation

2009-10-28 Thread Samuel Wales
It's probably too late to suggest this, but it might be that long options are more easy to remember for users than short options? Also, they might be easier to look up in the manual if you use a non-Emacs browser. On 2009-10-28, Carsten Dominik carsten.domi...@gmail.com wrote: Hi Dan, maybe

Re: [Orgmode] Differences html/pdf

2009-10-28 Thread Thomas S. Dye
On Oct 28, 2009, at 6:26 AM, Bastien wrote: Carsten Dominik carsten.domi...@gmail.com writes: In the latex version they're not exported for some reasons... That is correct, we have not implemented keeping all line breaks in LaTeX. I've searched around a bit, and to my big surprise, I

Re: [babel] Re: [Orgmode] org-babel: Meta-LaTeX-Python-Environment

2009-10-28 Thread Thomas S. Dye
On Oct 28, 2009, at 7:15 AM, Eric Schulte wrote: Thomas S. Dye t...@tsdye.com writes: On Oct 28, 2009, at 6:10 AM, Dan Davison wrote: Am I right in thinking that one issue remaining in this thread is that we currently have no means of tangling the output of org-babel- latex? Thus the

Re: [Orgmode] Re: Differences html/pdf

2009-10-28 Thread Nick Dokos
andrea Crotti andrea.crott...@gmail.com wrote: Carsten Dominik carsten.dominik at gmail.com writes: On Oct 28, 2009, at 3:16 PM, andrea Crotti wrote: ... In the latex version they're not exported for some reasons... That is correct, we have not implemented keeping all line breaks in

Re: [Orgmode] [PATCH] Add min/max/mean age operators to column view.

2009-10-28 Thread James TD Smith
Hi Carsten, On 2009-10-28 18:01:44(+0100), Carsten Dominik wrote: this is a reasonably complex patch - could we get some volunteers putting this to the test? If anyone wants to test this, please pull from my git repo; there's a couple of missing brackets in this patch. James -- |-James TD

[Orgmode] agenda actions unexpectedly open files

2009-10-28 Thread Michael Gilbert
Hi -- This is so odd. Most of the time, but not always, when I mark an item as DONE in the agenda, it pops open the file containing the item. I'm just now noticing that it's doing the same thing when I clock in. This obviously really messes with my workflow. This started someplace along

[Orgmode] How to write verbatim [0] ?

2009-10-28 Thread Xin Shi
Hello Experts, Are there any way to write just a plain [0], instead of interpreting it as a footnote when publishing in to HTML? I've tried the ~[0]~, and ~[~0~]~, but not luck. Thanks! Xin ___ Emacs-orgmode mailing list Remember: use `Reply All' to

Re: [Orgmode] Problem with icalendar export: all items with active timestamps are being exported

2009-10-28 Thread Friedrich Delgado Friedrichs
Carsten Dominik schrieb: On Oct 28, 2009, at 5:35 PM, Friedrich Delgado Friedrichs wrote: Hey, that was quick! Thanks! ;) So it works? Yes works nicely! I hear some people use exactly the opposite semantics for SCHEDULED and plain timestamps, but I find this more logical. Well, I can see

Re: [Orgmode] How to write verbatim [0] ?

2009-10-28 Thread Nick Dokos
Xin Shi shixin...@gmail.com wrote: Hello Experts, Are there any way to write just a plain [0], instead of interpreting it as a footnote when publishing in to HTML? I've tried the ~[0]~, and ~[~0~]~, but not luck. I don't know how to do it on an instance-by-instance basis, but on a

Re: [Orgmode] How to write verbatim [0] ?

2009-10-28 Thread Xin Shi
It works. Though it seems a pity to turn off the footnote mode in the whole file. I used the [ 0 ] for a temporary fix just now. Thanks! Xin On Wed, Oct 28, 2009 at 4:32 PM, Nick Dokos nicholas.do...@hp.com wrote: Xin Shi shixin...@gmail.com wrote: Hello Experts, Are there any way to

Re: [babel] Re: [Orgmode] org-babel: Meta-LaTeX-Python-Environment

2009-10-28 Thread Eric Schulte
Thomas S. Dye t...@tsdye.com writes: [...] Eric, I think Torsten has a clearer idea than I do about what kinds of programming structures might be appropriate here, but your suggestion looks to me like an elegant replacement for the file based technique I'm using to pass information into

Re: [Orgmode] Differences html/pdf

2009-10-28 Thread Nick Dokos
Bastien bastiengue...@googlemail.com wrote: Carsten Dominik carsten.domi...@gmail.com writes: In the latex version they're not exported for some reasons... That is correct, we have not implemented keeping all line breaks in LaTeX. I've searched around a bit, and to my big surprise,

[Orgmode] Re: Toggle 'closed' in org-agenda-log-mode-items

2009-10-28 Thread Steve Cothern
Hi Nathan, I wanted to do the same thing. Here's a snippet of elisp that does the job -- it's a bit simpleminded but gets the job done: (defun org-toggle-agenda-show-closed-logs () ;; pseudo code -- ;if org-agenda-log-mode-items contains 'closed' then ;remove 'closed' from

Re: [Orgmode] [Announce:] org-git-link

2009-10-28 Thread Torsten Wagner
Dear Reimar, why I feel like I have Birthday today ;) Thanks will try it as soon as possible Greetings Torsten ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org

Re: [Orgmode] Org-mode version 6.32; org-replace-disputed-keys t - breaks time shifts with S-up/down/left/right

2009-10-28 Thread Kai Tetzlaff
At Wed, 28 Oct 2009 17:55:44 +0100, Hi Carsten, Some days ago i noticed that time shifting in CLOCK lines stopped working. I've now toggled some org config variables and found that this happens when org-replace-disputed-keys is set to t. This was not the case with earlier

Re: [babel][Orgmode] org-babel: Meta-LaTeX-Python-Environment

2009-10-28 Thread Torsten Wagner
Hi Dan, thanks for helping me to realize my idea. Actually, I do not know whether it is not working or it is not working as I expect: I used the following simple example: --8--cut here--start---8--- * Simple Test of org-babel #+srcname: test()