Re: [O] Unable to 'make oldorg'

2012-05-19 Thread Bastien
Achim Gratz strom...@nexgo.de writes: Greg Lucas writes: I believe the problem is a recent change to targets.mk that made doc a prerequisite to compile. I'm not familiar enough with this build to understand the reason for this change or propose an alternative that would keep oldorg working

Re: [O] Problem exporting to PDF (and viewing)

2012-05-19 Thread Achim Gratz
Richard Stanton writes: This result occurs because I'm using (Cygwin) bash as my shell inside Emacs, not the Windows default, cmdproxy.exe. It's therefore true that my shell does *not* expect DOS file names (and gets very upset when you pass it a backslash...), but escaping the : seems to

Re: [O] README.org on github

2012-05-19 Thread Bastien
Hi Rainer, Rainer M Krug r.m.k...@gmail.com writes: I would like to use a README.org file on github, and also include code blocks in the README.org - is this possible? No. What do I have to do to achieve this? The help on https://github.com/github/markup sounds kryptic to me. The thing to

Re: [O] [PATCH] XEmacs compatibility

2012-05-19 Thread Bastien
Achim Gratz strom...@nexgo.de writes: Martyn Jago writes: It is extremely good to see Org-mode builds against Emacs-24 with zero warnings. I just see that this broke XEmacs... but there is already a compatibility macro defined, so simply use it. Applied, thanks. -- Bastien

Re: [O] Scheduled TODO's with DIARY-STYLE sexp entries breaks agenda

2012-05-19 Thread Bastien
Gustav Wikström gustav.e...@gmail.com writes: I don't know if there is an easy fix for this but it's bugging me so I'll report it to the list. Please report what Org version you are using. Thanks, -- Bastien

Re: [O] [babel] java headless support is missing for most graphing languages

2012-05-19 Thread Bastien
Hi Mikhail, Mikhail Titov m...@gmx.us writes: I’ve noticed that at least ditaa and plantuml fail to evaluate with babel. What version of Org are you using? -- Bastien

Re: [O] [PATCH] M-x org-version RET now produces some sensible in all possible install/use-cases

2012-05-19 Thread Achim Gratz
Thomas S. Dye writes: Thanks for your response. No, thank you — because it turns out that org-reload didn't do the right thing in your case (i.e. after an org-reload, you'll see that pesky N/A again). Here's a patch to fix that. From 20306fd6a576b06cc5783658feafc9a3335f3277 Mon Sep 17

Re: [O] [PATCH] M-x org-version RET now produces some sensible in all possible install/use-cases

2012-05-19 Thread Bastien
Achim Gratz strom...@nexgo.de writes: Thomas S. Dye writes: Thanks for your response. No, thank you — because it turns out that org-reload didn't do the right thing in your case (i.e. after an org-reload, you'll see that pesky N/A again). Here's a patch to fix that. Applied, thanks. --

Re: [O] Can't make org-install.el

2012-05-19 Thread Achim Gratz
Sebastien Vauban writes: Buffer is read-only: #buffer org-install.el Here's your clue: the Emacs that is trying to create org-install.el doesn't have write access and thus cannot save the file. At that point, no org-install.el should exist, since it should have been removed before it is created

[O] Opening an odt file - problem solved

2012-05-19 Thread itm...@chrikro.net
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello! Sharing a solution to a problem I had myself with opening an odt file after export. I use emacs 23.4 on win7 with orgmode 7.8.03. I could not open the new exported odt file with word2010 or libreoffice. Somewhere I found out that content.xml

Re: [O] Can't make org-install.el

2012-05-19 Thread Sebastien Vauban
Hi Achim, Achim Gratz wrote: Sebastien Vauban writes: Buffer is read-only: #buffer org-install.el Here's your clue: the Emacs that is trying to create org-install.el doesn't have write access and thus cannot save the file. At that point, no org-install.el should exist, since it should have

Re: [O] Can't make org-install.el

2012-05-19 Thread Achim Gratz
Sebastien Vauban writes: drwxr-xr-x+ 1 Seb Aucun 0 May 19 12:30 lisp : ^ :__/ This tells you that in addition to the Cygwin permissions Windows ACL are in effect. These may partially or completely subvert the POSIX permissions. Since you've re-created the directory, these

Re: [O] Opening an odt file - problem solved

2012-05-19 Thread Achim Gratz
itm...@chrikro.net writes: After changed it to '(nxml-auto-insert-xml-declaration-flag nil) Good catch. It would be preferable if that variable was let-bound to nil in the export functions that write out the templates so that users can set it to whatever they want in their configuration.

[O] Possible bug - C-c * toggles #+(keyword) to headline

2012-05-19 Thread Charles
I previously reported this but without the word bug in my subject line. My mistake. When my cursor is on an 'in buffer setting' line #+FOO: bar C-c * toggles it to * #+FOO: bar i.e. a headline. Since in buffer settings are special lines, i.e. not a headline or part of a plain list, I would

Re: [O] Can't make org-install.el

2012-05-19 Thread Sebastien Vauban
Hi Achim, Achim Gratz wrote: Sebastien Vauban writes: drwxr-xr-x+ 1 Seb Aucun 0 May 19 12:30 lisp : ^ :__/ This tells you that in addition to the Cygwin permissions Windows ACL are in effect. These may partially or completely subvert the POSIX permissions. Since

Re: [O] Can't make org-install.el

2012-05-19 Thread Achim Gratz
Sebastien Vauban writes: These allow me to do everything I want (I'm even admin of my machine). OK, so the ACL are out of the game then. It looks like lisp (or all of org probably) is both under SVN and Git version control... That is a Bad Idea™ and might explain why the buffer becomes

[O] installation questions

2012-05-19 Thread Yagnesh Raghava Yakkala
Greetings!! I run make oldorg to generate org-install.el and have following in my init file, everything is working fine(I believe). (require 'org-install) I have few questions about installation procedure though. 1. Is the above snippet is all that is needed to load org.?

Re: [O] installation questions

2012-05-19 Thread Achim Gratz
Yagnesh Raghava Yakkala writes: 1. Is the above snippet is all that is needed to load org.? The public interfaces of org should all be autoloaded, IMHO. Bastien may be able to answer why some of the interactive functions are not autoloaded (my guess is that they may need some initialization,

Re: [O] [PATCH] M-x org-version RET now produces some sensible in all possible install/use-cases

2012-05-19 Thread Thomas S. Dye
Achim Gratz strom...@nexgo.de writes: Thomas S. Dye writes: Thanks for your response. No, thank you — because it turns out that org-reload didn't do the right thing in your case (i.e. after an org-reload, you'll see that pesky N/A again). Here's a patch to fix that. I pulled from git

[O] [PATCH] Re: Can't make org-install.el

2012-05-19 Thread Achim Gratz
Sebastien Vauban writes: These allow me to do everything I want (I'm even admin of my machine). Just as a comment, being admin does not necessarily mean that you can do anything, only that you can elevate your rights so that you can eventually do it. Windows has quite an elaborate system for

Re: [O] [PATCH] M-x org-version RET now produces some sensible in all possible install/use-cases

2012-05-19 Thread Achim Gratz
Thomas S. Dye writes: I pulled from git and reloaded. Org-version now gives this: Org-mode version 7.8.10 (release_7.8.10-568-gc84cda @ /Users/dk/.emacs.d/src/org/lisp/) I think all is well. Thanks for testing and the confirmation. Regards, Achim. -- +[Q+ Matrix-12 WAVE#46+305 Neuron

Re: [O] [PATCH] Re: Can't make org-install.el

2012-05-19 Thread Bastien
Achim Gratz strom...@nexgo.de writes: While I still don't understand how this is happening exactly, I've re-written the functions in question to work off temporary buffers, which only runs into the problem of non-writability at the very end when the file is to be saved and should then ask for

Re: [O] Scheduled TODO's with DIARY-STYLE sexp entries breaks agenda

2012-05-19 Thread Gustav Wikström
Hi Bastien, I'm using Org-mode version 7.8.10 (Downloaded through ELPA 2012-05-17). Regards Gustav On Sat, May 19, 2012 at 9:50 AM, Bastien b...@gnu.org wrote: Gustav Wikström gustav.e...@gmail.com writes: I don't know if there is an easy fix for this but it's bugging me so I'll report it

Re: [O] [PATCH] Re: Can't make org-install.el

2012-05-19 Thread Sebastien Vauban
Hi Achim, Bastien wrote: Achim Gratz strom...@nexgo.de writes: While I still don't understand how this is happening exactly, I've re-written the functions in question to work off temporary buffers, which only runs into the problem of non-writability at the very end when the file is to be

Re: [O] [PATCH] Re: Can't make org-install.el

2012-05-19 Thread Achim Gratz
Sebastien Vauban writes: Surprise... I hadn't touched (of course) org-fixup.el in any way, except by changing the permissions (to 0777). As far as Git is concerned, changing the permissions is the same as changing the file content. C:/home/org-mode/lisp/ and

Re: [O] [PATCH] Re: Can't make org-install.el

2012-05-19 Thread Achim Gratz
Sebastien Vauban writes: Maybe you can understand from where that could come. Are you trying to use an NTemacs perhaps?! If so, wouldn't you think that might be an important information? Regards, Achim. -- +[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]+ SD adaptations for

Re: [O] [PATCH] Re: Can't make org-install.el

2012-05-19 Thread Achim Gratz
Achim Gratz writes: Are you trying to use an NTemacs perhaps?! Based on that assumption, here's another patch. Let me know if this works in your setup. From 2fcce20d5a7d6c504c30117a287e7ee5d52530c6 Mon Sep 17 00:00:00 2001 From: Achim Gratz strom...@stromeko.de Date: Sat, 19 May 2012 22:08:06

[O] export tree

2012-05-19 Thread Andreas Leha
Hi all, what is the best way to export the whole current tree (starting from the top-level headline)? Background: I have some documents with this structure , | * Document 1 | | * Document 2 | | * Some Functions | | * Some more Functions ` Now, when I am editing somewhere deep inside

[O] [GSoC] Org merge driver progress update

2012-05-19 Thread Andrew Young
Hello everyone, Just to remind everyone, my project is the org merge driver. The project webpage is herehttp://orgmode.org/worg/org-contrib/gsoc2012/student-projects/git-merge-tool/index.html, and the code repository is herehttp://orgmode.org/w/?p=org-merge-driver.git;a=summary. Here is a

Re: [O] [BUG] LaTeX-isms in tables

2012-05-19 Thread Andreas Leha
Hi, Andreas Leha andreas.l...@med.uni-goettingen.de writes: Hi Bastien, thanks for looking into this! Bastien b...@gnu.org writes: Hi Andreas, Andreas Leha andreas.l...@med.uni-goettingen.de writes: there seems to be a bug in LaTeX tables: I can not properly export a file with 2

[O] new latex exporter and booktabs

2012-05-19 Thread Andreas Leha
Hi all, it seems that the new latex exporter is ignoring the values of org-export-latex-tables-hline, org-export-latex-tables-tstart and org-export-latex-tables-tend which I set to \\midline, \\toprule and \\bottomrule, resp. How can I get the new exporter to produce booktabs tables by

Re: [O] export tree

2012-05-19 Thread Nick Dokos
Andreas Leha andreas.l...@med.uni-goettingen.de wrote: Hi all, what is the best way to export the whole current tree (starting from the top-level headline)? Background: I have some documents with this structure , | * Document 1 | | * Document 2 | | * Some Functions | | *

Re: [O] export tree

2012-05-19 Thread Andreas Leha
Hi Nick, Hi all, what is the best way to export the whole current tree (starting from the top-level headline)? [...] Write a function and bind it to a key - something like this perhaps: (defun ah-export-current-top-level-tree () (interactive) (save-excursion

Re: [O] new latex exporter and booktabs

2012-05-19 Thread Nicolas Goaziou
Hello, Andreas Leha andreas.l...@med.uni-goettingen.de writes: Hi all, it seems that the new latex exporter is ignoring the values of org-export-latex-tables-hline, org-export-latex-tables-tstart and org-export-latex-tables-tend which I set to \\midline, \\toprule and \\bottomrule,

Re: [O] new latex exporter and booktabs

2012-05-19 Thread Andreas Leha
Hi Nicolas, Nicolas Goaziou n.goaz...@gmail.com writes: Hello, Andreas Leha andreas.l...@med.uni-goettingen.de writes: Hi all, it seems that the new latex exporter is ignoring the values of org-export-latex-tables-hline, org-export-latex-tables-tstart and

Re: [O] How to get to work non-interactive publishing?

2012-05-19 Thread Mikhail Titov
On 05/18/2012 07:19 AM, Eric Schulte wrote: I can publish project if I don’t use –-batch . So the following works just fine: emacs -nw --eval '(org-publish-project myproj)' However nothing happens if I try emacs --batch --eval '(org-publish-project myproj)' Does anybody have an idea how to

Re: [O] [babel] java headless support is missing for most graphing languages

2012-05-19 Thread Mikhail Titov
On 05/19/2012 02:51 AM, Bastien wrote: I’ve noticed that at least ditaa and plantuml fail to evaluate with babel. What version of Org are you using? Hello, Bastien! It is 7.8.09 from default emacs 24.1.50.2 (revno: 108254). I have no X11 server running. M.

Re: [O] How to get to work non-interactive publishing?

2012-05-19 Thread Eric Schulte
Mikhail Titov m...@gmx.us writes: On 05/18/2012 07:19 AM, Eric Schulte wrote: I can publish project if I don’t use –-batch . So the following works just fine: emacs -nw --eval '(org-publish-project myproj)' However nothing happens if I try emacs --batch --eval '(org-publish-project

Re: [O] ATTR_HTML for a clickable image, howto?

2012-05-19 Thread François Pinard
Christian Moe m...@christianmoe.com writes: - You can simplify repeated use with macros. See the manual, section 11.6. Use the @ notation (section 12.5.3) for literal html tags within the macros. E.g.: #+MACRO: mycolor @span style=color: black; background-color: #f4a460$1@/span

Re: [O] [babel] java headless support is missing for most graphing languages

2012-05-19 Thread Eric Schulte
Mikhail Titov m...@gmx.us writes: On 05/19/2012 02:51 AM, Bastien wrote: I’ve noticed that at least ditaa and plantuml fail to evaluate with babel. What version of Org are you using? Hello, Bastien! It is 7.8.09 from default emacs 24.1.50.2 (revno: 108254). I have no X11 server running.

Re: [O] Code blocks in lists?

2012-05-19 Thread Eric Schulte
The export (see HTML), while being semantically correct in the sense that code blocks do belong to the items, seems wrong wrt the indentation, something like this: 1. Download and install color-theme. #+begin_src emacs-lisp (add-to-list 'load-path

[O] Macros [was: Re: ATTR_HTML for a clickable image, howto?]

2012-05-19 Thread François Pinard
Christian Moe m...@christianmoe.com writes: There are other drawbacks [to macros], such as needing to backslash-escape any commas (as in the above example). Oh, thanks! This (partly) replies to the message I sent a few minutes ago. Before sending that message, I checked in the Org manual,

Re: [O] [babel] java headless support is missing for most graphing languages

2012-05-19 Thread Mikhail Titov
On 05/19/2012 05:41 PM, Eric Schulte wrote: I’ve noticed that at least ditaa and plantuml fail to evaluate with babel. What version of Org are you using? Hello, Bastien! It is 7.8.09 from default emacs 24.1.50.2 (revno: 108254). I have no X11 server running. If I understand correctly you

Re: [O] [babel] java headless support is missing for most graphing languages

2012-05-19 Thread Eric Schulte
If so then I believe ob-ditaa should be left as is, given that it works for most cases out of the box, and that you were able to easily adjust it to work without an X server. I am confident that for all folks working with orgmode remotely using, let's say, SSH connection without X11

Re: [O] [babel] java headless support is missing for most graphing languages

2012-05-19 Thread Mikhail Titov
On 05/19/2012 07:39 PM, Eric Schulte wrote: I am confident that for all folks working with orgmode remotely using, let's say, SSH connection without X11 tunneling, blocks calling such java tools will fail. So I'd call it a bug. Either there should be a way to supply :java to other similar

Re: [O] README.org on github

2012-05-19 Thread François Pinard
Rainer M Krug r.m.k...@gmail.com writes: I would like to use a README.org file on github, and also include code blocks in the README.org - is this possible? Hi, Rainer. I'm not sure I'm really replying to your request, but nevertheless hope my comments might be useful. Having recently had a

[O] Org-mode repeating tasks issue

2012-05-19 Thread c b
Hi, I have been using org-mode with emacs(23) for about a year now and love it. However, sometime in the last couple of weeks, I did a git pull on the master branch (and I redid the same today) and noticed that my recurring tasks are broken. E.g. I have a task ** TODO Pay Creditcard bill