Re: [O] [patch, ox] Unnumbered headlines

2014-08-12 Thread Nicolas Goaziou
Hello, Rasmus writes: > True. Personally, I find them nicer as you can just C-c C-c on your > headline and write down some keyword that is typically easy to > remember. For properties I must rely on C-c C-x p — since the syntax > is so awkward — and while it may be memorable to me try to expla

Re: [O] problèmes d'accents

2014-08-12 Thread Suvayu Ali
Hello Joseph, On Tue, Aug 12, 2014 at 07:36:05AM +0200, Joseph Vidal-Rosset wrote: > 2014-08-11 23:15 GMT+02:00 Rasmus : > > Joseph Vidal-Rosset writes: > > > > > The topic of my message is intentionally in French. > > > > > > I meet a problem the French accents are not directly exported in the p

Re: [O] problèmes d'accents

2014-08-12 Thread Joseph Vidal-Rosset
Hello Ali, 2014-08-12 13:24 GMT+02:00 Suvayu Ali : > > Please, tell me how to express this action correctly in emacs dialect. > > That would be `C-c C-e l o'. > Thanks ! > > > But I am happy to tell you that I have understood this morning the cause > of > > my problem. I had in my init.el the

Re: [O] problèmes d'accents

2014-08-12 Thread Joseph Vidal-Rosset
2014-08-12 13:38 GMT+02:00 Joseph Vidal-Rosset < joseph.vidal.ros...@gmail.com>: > Unfortunately, I have to forget the highlighting code with minted. I add that, without minted, the source code between #+BEGIN_SRC latex #+END_SRC is correctly highlighted . I regret that it is not in org-mode

[O] [PATCH] Fix and optimize publishing cache check

2014-08-12 Thread Matt Lundin
This patch does two things: 1. It prevents org-publish from perpetually republishing files containing includes. Currently, if an included file changes, it is published, as is the file that includes it. However, until changes are made in the file that includes it (which may be never) its modificati

Re: [O] babel: ob-C with Visual C++ and compilation-mode

2014-08-12 Thread Ernesto Durante
Thierry Banel writes: > Le 04/08/2014 18:16, Ernesto Durante a écrit : >> One suggestion. It will be nice to put the error buffer in >> compilation-mode, this way errors are highlighted and we can jump >> directly into the source code. I modified org-babel-eval to launch the >> compilation mode i

Re: [O] Need info about code block header arguments in (HTML) export

2014-08-12 Thread Rick Frankel
On 2014-08-11 10:58, Avdi Grimm wrote: Hi there, Org experts! I write books in org-mode, and one of the features I've really started to need is to be able to automatically include filename information when exporting source code listings. That is, given some Org source like this:     #+BEGIN_SRC

[O] Help: How to keep/set fontification when switching agenda to columns view

2014-08-12 Thread Subhan Michael Tindall
I have a custom agenda I'm using that I need the extra information available from switching to columns view (C-c C-x C-c) When I'm in agenda mode, TODO keywords are highlighted, priorities, links, etc. However, when I switch to column view all the highlighting goes away I tried using hi-lock-mode,

Re: [O] [PATCH] docstring improvement of org-agenda-refile

2014-08-12 Thread Daimrod
Charles Millar writes: > Charles Millar wrote: >> Daimrod wrote: >>> +When GOTO is '(14) or \\[universal-argument] >>> \\[universal-argument], go to the location of the last refiled >>> item. >> ^^ >> '(16) > Just opened my own

Re: [O] A gentle introduction to Emacs & Org-mode?

2014-08-12 Thread David Ongaro
John Kitchin andrew.cmu.edu> writes: > jorge.a.alfaro gmail.com (Jorge A. Alfaro-Murillo) writes: > > thanks for point that out, I have fixed them now I think. That must be > from some link escaping in the translation of org to html I guess. No, the problem happens during org-insert-link, so

Re: [O] A gentle introduction to Emacs & Org-mode?

2014-08-12 Thread Nick Dokos
David Ongaro writes: > John Kitchin andrew.cmu.edu> writes: > >> jorge.a.alfaro gmail.com (Jorge A. Alfaro-Murillo) writes: >> >> thanks for point that out, I have fixed them now I think. That must be >> from some link escaping in the translation of org to html I guess. > > No, the problem ha

Re: [O] babel: ob-C with Visual C++ and compilation-mode

2014-08-12 Thread Thierry Banel
Le 12/08/2014 16:24, Ernesto Durante a écrit : > Hi Thierry, > > Thanks you but I don't know who is responsible to apply the patch. I have been in touch with Eric Schulte and Bastien Guerry who are both maintainers. Probably Eric is the right person, as he is very involved in all Babel subjects. I

Re: [O] Some thoughts on MobileOrg and its development ....

2014-08-12 Thread Ashton Kemerling
I did some digging into that a few months ago. While I'm not an experienced iOS dev, I flailed about for a few weeks trying to add deadline parsing and failed miserably. I'm fairly convinced that most of the code is either super platform specific or in need of replacing with easier to maintain &

Re: [O] Some thoughts on MobileOrg and its development ....

2014-08-12 Thread David Wagle
What's involved in 'rebooting' the project? Are the various owners of the iPhone and Android packages on this list? I'm not a coder at all, but I've administratively managed software projects before. I'm more than happy to do what I know how to do -- which is mostly send out emails asking people i

Re: [O] Some thoughts on MobileOrg and its development ....

2014-08-12 Thread Ashton Kemerling
David Wagle writes: > What's involved in 'rebooting' the project? Are the various owners of > the iPhone and Android packages on this list? > > I'm not a coder at all, but I've administratively managed software > projects before. I'm more than happy to do what I know how to do -- > which is most

Re: [O] Some thoughts on MobileOrg and its development ....

2014-08-12 Thread Alexis
Ashton Kemerling writes: > I can say for certain that we would have to figure out the handoff of > various credentials from the old maintainers (who I am assuming would > not like to continue being maintainers) for the respective app-stores > and Dropbox tokens. Not necessarily. One could, for

Re: [O] Some thoughts on MobileOrg and its development ....

2014-08-12 Thread Alexis
David Wagle writes: > What's involved in 'rebooting' the project? My thought involves starting from scratch. Say we use Cordova (i can't speak to the pros and cons of Cordova vs. Kivy in terms of things like functionality provided, possible barriers to contribution etc.). Cordova takes care of a

Re: [O] Some thoughts on MobileOrg and its development ....

2014-08-12 Thread Ashton Kemerling
That seems reasonable to me. -- Ashton Kemerling

Re: [O] [PATCH] Fix and optimize publishing cache check

2014-08-12 Thread Matt Lundin
Here is an improved version of the previous patch (please apply it rather than the previous). This version further optimizes cache checking by only calling find-buffer-visiting if necessary. (It also fixes some long lines.) On a test project containing 5000 files, running org-publish on the project

Re: [O] org-table: missing vertical boundary when exported

2014-08-12 Thread Shiyuan
Rick, Do you mean that and don't mean the same thing? Their names suggest they do the same things. That's a terrible naming. Changing the former to the latter does fix the problem though. Why is that? Using the #+HTML_HEAD_EXTRA options as you suggest can also fix the problem. But could you

Re: [O] Feature request: copy cell contents into kill ring

2014-08-12 Thread Aaron Ecay
Hi Andrea, 2014ko abuztuak 11an, Andrea Rossetti-ek idatzi zuen: > > Hello everone, > > copying a table cell (C-c C-x M-w) uses a private clipboard, as stated > by the `org-table-copy-region' docstring. Sometimes it's handy to paste > a cell's text into something that isn't an org-table (my us

Re: [O] "#+begin_src R :results output drawer" doesn't work.

2014-08-12 Thread Aaron Ecay
Hi Feng, 2014ko abuztuak 9an, Feng Shu-ek idatzi zuen: > > #+begin_src R :results output drawer > "1" > "2" > #+end_src > > #+RESULTS: > : 2 > Like Eric, I cannot reproduce this behavior. Can you send us the output of the following code block, to check the exact version of org that is giving y