Re: [O] Invalid specification of styles.xml: nil

2013-08-28 Thread Luca Ferrari
On Thu, Aug 29, 2013 at 6:22 AM, Jambunathan K wrote: > The double quotes. See the following section in the manual. Great! I did not noted that! Thanks, Luca

[O] org mode R remote code evaluation

2013-08-28 Thread Johannes Rainer
dear all, I have some computation intense R-code that I want to run remotely on my server, and, according to the org manual that should be possible with the ":dir" parameter. so I went on and tried the following (user/server masked): #+BEGIN_SRC R :dir /xx@xxx: system("hostname") #+END_SRC whe

Re: [O] from Android to org's calendar in a painless way?

2013-08-28 Thread Charles Philip Chan
James Harkins < jamshar...@gmail.com> writes: > Unfortunately, new dated nodes in mobileorg don't appear in the > calendar until after you sync to the computer and then resync to > android. I filed a bug report about that. I find it a lot easier and natural to add items with active timestamps in

Re: [O] from Android to org's calendar in a painless way?

2013-08-28 Thread James Harkins
Renato gmail.com> writes: > I know MobileOrg for Android, but I currently only use it to sync > things from the computer to the phone (i.e. I just use it to have > my .org files with me all the time, for consulting) - the other way > around I find clumsy, because I have to remember, when on the co

Re: [O] [bug] [babel] babel corrupts undo history

2013-08-28 Thread Samuel Wales
I think I was right. Make this line look like this: ;; (setq buffer-undo-list ul) Now it seems to work. :) -- The Kafka Pandemic: http://thekafkapandemic.blogspot.com The disease DOES progress. MANY people have died from it. ANYBODY can get it. Denmark: free Karina Hansen NOW.

Re: [O] [bug] [babel] babel corrupts undo history

2013-08-28 Thread Samuel Wales
Perhaps the undo code in org-src-in-org-buffer can be removed? [Note: I have no idea.] -- The Kafka Pandemic: http://thekafkapandemic.blogspot.com The disease DOES progress. MANY people have died from it. ANYBODY can get it. Denmark: free Karina Hansen NOW.

Re: [O] Ignored in-buffer settings and after-export hook

2013-08-28 Thread Nicolas Goaziou
Hello, Daniel Gerber writes: > I guess I can, but it means re-doing the mapping sources to exported > file names. AFAICT, there is only one place where both the source and the output name are known: in `org-publish-file', right after a file has been published. We may add a hook there. Since, a

Re: [O] [bug] [babel] babel corrupts undo history

2013-08-28 Thread Samuel Wales
On 8/28/13, Eric Schulte wrote: > Aaron, thanks for this fix. > > Sam, does this patch fix your problem? IMO it is the right strategy. Editing does insert spaces, making the block syntactically correct for one value of org-src-preserve-indentation [it was already correct for the other value]. T

Re: [O] [patch][ox-latex] context-aware subscript

2013-08-28 Thread Nicolas Goaziou
Rasmus writes: >> Correct. Then, fixing it is more important than caring about some user >> filter. > > OK, can I help? Sure, please go ahead. > That's what I use as well, but I'd like to save the $'s around > constructs like \(\beta_t\). I'll try to fix it via a filter. A good filter could b

Re: [O] [bug] [babel] babel corrupts undo history

2013-08-28 Thread Eric Schulte
Aaron Ecay writes: > Hi Eric and Samuel, > > As I understand it, the problem is that the undo history gets scrambled > by the interleaving of user edits (in the indirect source-editing > buffer) and automatic changes introduced by org (un- and re-indenting > the source code). > > I have the follo

Re: [O] [patch][ox-latex] context-aware subscript

2013-08-28 Thread Nicolas Goaziou
Hello, Rasmus writes: > I know it's intended but I dislike it. In earlier version of > ox-latex.el it didn't use the \text-macro. Earlier versions were broken in many ways. They didn't handle spaces, unicode characters and nested sub/superscript like \text does. >> Also, merging consecutive s

Re: [O] [bug] [babel] babel corrupts undo history

2013-08-28 Thread Samuel Wales
Another way of putting it is that Babel editing seems to be trying to do some fancy things with undo, and that has led to buffer corruption.

Re: [O] [bug] [babel] babel corrupts undo history

2013-08-28 Thread Samuel Wales
Hi Eric, On 8/28/13, Eric Schulte wrote: > I don't understand. Is the problem that edits made in the indirect > buffer are not spliced into the undo history of the Org-mode buffer? No, it is buffer corruption, which is a bug. Undo is not working correctly in any interpretation. Granularly inc

Re: [O] from Android to org's calendar in a painless way?

2013-08-28 Thread Charles Philip Chan
Renato writes: Hi Renato: > I just realized that from MobileOrg you can add only TODO entries, you > can't put an active date on it (and thus it won't show in the android > calendar). So that really doesn't work the way I'd like. Yes, you can, it just won't show up until you sync, pull, refile

Re: [O] from Android to org's calendar in a painless way?

2013-08-28 Thread Charles Philip Chan
Renato writes: Hi Renato: > and this might be exactly what I wanted: > > https://github.com/dengste/org-caldav > > I'll have a go at it when I have some time these next days This won't solve your problem. Charles -- "Computers may be stupid, but they're always obedient. Well, almost always."

Re: [O] [bug] [babel] babel corrupts undo history

2013-08-28 Thread Aaron Ecay
Hi Eric and Samuel, As I understand it, the problem is that the undo history gets scrambled by the interleaving of user edits (in the indirect source-editing buffer) and automatic changes introduced by org (un- and re-indenting the source code). I have the following patch, which seems to prevent

Re: [O] from Android to org's calendar in a painless way?

2013-08-28 Thread Charles Philip Chan
Renato writes: Hi Renato: > the other way around I find clumsy, because I have to remember, when > on the computer, to open a specific file and refile entries. This is how I do it: 1. I have the file that I pulled to in my list of Agenda files so the appointments will show up imme

Re: [O] [bug] [babel] babel corrupts undo history

2013-08-28 Thread Eric Schulte
I don't understand. Is the problem that edits made in the indirect buffer are not spliced into the undo history of the Org-mode buffer? Samuel Wales writes: > c-c ' c-c ' on this. then undo or undo-tree-undo. > > what happens is data corruption. to me, undo is a low-level > operation that sho

Re: [O] [patch][ox-latex] context-aware subscript

2013-08-28 Thread Rasmus
Hi Nicolas, Nicolas Goaziou writes: >> I know it's intended but I dislike it. In earlier version of >> ox-latex.el it didn't use the \text-macro. > > Earlier versions were broken in many ways. They didn't handle spaces, > unicode characters and nested sub/superscript like \text does. OK. >>

Re: [O] from Android to org's calendar in a painless way?

2013-08-28 Thread Renato
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 28 Aug 2013 15:00:48 +0200 Renato wrote: > > Hi, I like very much org's calendar and TODO system, but usually > > when something new to put in the calendar pops up I'm away from my > > computer. > > > > I know MobileOrg for Android, but I c

Re: [O] koma letter exporter: changing the priority of options

2013-08-28 Thread Alan Schmitt
ras...@gmx.us writes: > As Viktor argues, mainly ugly and fragile solutions exist to check the > LCO file (e.g. find the file with kpsewhich in texlive). Yet, it > doesn't matter, as all you care about it the location of the variable > /depending/ on whether it's set in the buffer. > > E.g. > >

Re: [O] from Android to org's calendar in a painless way?

2013-08-28 Thread Renato
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 28 Aug 2013 14:37:20 +0200 Renato wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Hi, I like very much org's calendar and TODO system, but usually when > something new to put in the calendar pops up I'm away from my > computer.

[O] from Android to org's calendar in a painless way?

2013-08-28 Thread Renato
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I like very much org's calendar and TODO system, but usually when something new to put in the calendar pops up I'm away from my computer. I know MobileOrg for Android, but I currently only use it to sync things from the computer to the phone (i.e

Re: [O] koma letter exporter: changing the priority of options

2013-08-28 Thread Rasmus
Alan Schmitt writes: >>> I could not find a way to do it another way, but I'll gladly take any >>> suggestion. What we want is: >>> - if email is set in the file, use it; >>> - otherwise, use the one from the lco; >>> - otherwise, use the default one. >> >> (PREAMBLE-STRINGDEFAULT-VALUES

Re: [O] [patch][ox-latex] context-aware subscript

2013-08-28 Thread Rasmus
Hi Nicolas, Nicolas Goaziou writes: > Thanks for the patch. Here are some comments about it. Sorry about the late reply > Rasmus writes: > >> Currently one can't write something like \beta_t and get a nice >> result >> in org when exporting to LaTeX (where nice result := $\beta_t$). >> This >

Re: [O] [PATH] [NEW EXPORTER] two slide backends for contrib

2013-08-28 Thread Rick Frankel
On Tue, Aug 27, 2013 at 11:41:20PM -0400, Matt Price wrote: > On Tue, Aug 27, 2013 at 10:12 AM, Rick Frankel wrote: > > On 2013-08-27 00:41, Matt Price wrote: > >> > >> I just came across this, having missed it in February. Rick, I was > >> wondering if you had thought about enabling some of deck

Re: [O] koma letter exporter: changing the priority of options

2013-08-28 Thread Alan Schmitt
Hi Rasmus, ras...@gmx.us writes: >>> I also find something like this ghastly: >>> >>> But perhaps it is the only way to get what you want. >> >> I could not find a way to do it another way, but I'll gladly take any >> suggestion. What we want is: >> - if email is set in the file, use it; >> - oth

Re: [O] [patch][org-entities] More symbols

2013-08-28 Thread Rasmus
Hi Nicolsa, Sorry about the late reply. Nicolas Goaziou writes: > Thanks for the patch. > >> This patch adds some general interest(?) symbols to org entities that >> otherwise lived in my init file. >> >> 1. I don't know how to easily check whether a glyph is supported by >>Latin 1, so Lat

Re: [O] koma letter exporter: changing the priority of options

2013-08-28 Thread Rasmus
Alan, > Sorry for the delay, I was in vacations with tethering-only internet > access. No worries. A tethering-only vacation sounds great! >> I spoke too early. For example this letter no longer works as usual: >> >> #+TITLE: test >> #+OPTIONS: foldmarks:nil >> * Letter >> my letter >> ** TO

Re: [O] faster agenda with properties support disabled (no org-refresh-properties)

2013-08-28 Thread Daniel Clemente
The speedup was 66 → 56 seconds (not to 10, but by 10) when exporting the agenda. It's small but noticeable. I don't use :CATEGORY: but I'm using category icons (org-agenda-category-icon-alist) and I keep seeing them, so I assume categories are still shown. You can try it in your files to see w