Re: [O] ob-clojure?

2016-09-29 Thread Frederick Giasson
Hi Lawrence, Is there an ob-clojure in elpa? If not should I use this ? You may be interested in this version: http://fgiasson.com/blog/index.php/2016/06/16/improving-org-babel-clojure/ I didn't find the time to push

Re: [O] export of src block ignores :results

2016-09-29 Thread Charles C. Berry
On Thu, 29 Sep 2016, Thomas Alexander Gerds wrote: Hi org's development version (I am using the one updated yesterday: 2b22d50 Nicolas Go 2016-09-28) seems to ignore the :results setting of a src block. more specifically, the export of this #+BEGIN_SRC R :results output :exports code

Re: [O] export of src block ignores :results

2016-09-29 Thread Charles C. Berry
On Thu, 29 Sep 2016, Charles C. Berry wrote: On Thu, 29 Sep 2016, Thomas Alexander Gerds wrote: Hi Chuck thanks for checking. my org-version is the same release_8.3.6-1178-g2b22d5 to get the date and time of the in the results: (setq org-babel-hash-show-time t) but even without this

Re: [O] export of src block ignores :results

2016-09-29 Thread Thomas Alexander Gerds
thanks for looking into this. it would be great if the regexp could be changed to catch the show-time variant. the regexp you sent in your previous mail works for me, i.e., the result of (progn (looking-at org-babel-result-regexp)(match-string 1)) is the same with and without the show-time

[O] Bug? org-export-babel-evaluate setting breaks :exports results

2016-09-29 Thread William Denton
I'm working on a big Org file on a slow machine, so I set org-export-babel-evaluate to nil so exporting to PDF just generates the file from what's in the buffer, without doing any calculating. I have a mix of source blocks, and all of a sudden the code began to appear in the PDF when all I

[O] Making DocBook xml books from org mode?

2016-09-29 Thread Peter Davis
I've started a new position in which I have to create and maintain a large set of documents in DocBook xml format. For new books, I'd really like to use org mode, since a) I'm already familiar with it, b) I love it, and c) I believe it does (or can be made to do) nearly everything I need.

Re: [O] export of src block ignores :results

2016-09-29 Thread Thomas Alexander Gerds
Hi Chuck thanks for checking. my org-version is the same release_8.3.6-1178-g2b22d5 to get the date and time of the in the results: (setq org-babel-hash-show-time t) but even without this option the results of the block are exported no matter what. could someone point to the place in the

[O] Possible bug on ob-python.el

2016-09-29 Thread drymer
Hi, I'm not sure if it's a bug or if it's something I have missconfigured, but there it goes. I'm using maint Org-mode version 8.3.6, release_8.3.6-4-g4835be.dirty. The init file I'm using to debug is: #+BEGIN_SRC emacs-lisp (add-to-list 'load-path "~/.emacs.d/lisp/org-mode/lisp/")

Re: [O] export of src block ignores :results

2016-09-29 Thread Charles C. Berry
On Thu, 29 Sep 2016, Thomas Alexander Gerds wrote: Hi Chuck thanks for checking. my org-version is the same release_8.3.6-1178-g2b22d5 to get the date and time of the in the results: (setq org-babel-hash-show-time t) but even without this option the results of the block are exported no

[O] Bug when both a link and tags are in a headline

2016-09-29 Thread Michael Fiano
Steps to reproduce: 1. Start stock emacs 25.1: $ emacs -Q test.org 2. Write a headline * Test 3. Issue C-c C-c and the headline to add a tag * Test :test: 4. Modify the headline to include a link. * Test [[http://test][test]] :test: 5. Everything appears to be rendered

Re: [O] Making DocBook xml books from org mode?

2016-09-29 Thread Joost Kremers
On Thu, Sep 29 2016, Peter Davis wrote: > I've started a new position in which I have to create and maintain a > large set of documents in DocBook xml format. For new books, I'd really > like to use org mode, since a) I'm already familiar with it, b) I love > it, and c) I believe it does (or can

[O] Bug: Several small documentation problems [8.3.6 (8.3.6-4-g4835be-elpaplus @ /home/jorge/.emacs.d/elpa/org-plus-contrib-20160926/)]

2016-09-29 Thread Jorge
To confirm those bugs that needed confirming by testing, I started Emacs with an empty init file. I also used this Emacs instance to compose this email. This is the first batch of documentation problems. I will report the rest later, because preparing this first batch already took several

[O] export of src block ignores :results

2016-09-29 Thread Thomas Alexander Gerds
Hi org's development version (I am using the one updated yesterday: 2b22d50 Nicolas Go 2016-09-28) seems to ignore the :results setting of a src block. more specifically, the export of this #+BEGIN_SRC R :results output :exports code :session *R* :cache yes 2+2 #+END_SRC

[O] export of src block ignores :results

2016-09-29 Thread Thomas Alexander Gerds
Hi org's development version (I am using the one updated yesterday: 2b22d50 Nicolas Go 2016-09-28) seems to ignore the :results setting of a src block. more specifically, the export of this #+BEGIN_SRC R :results output :exports code :session *R* :cache yes 2+2 #+END_SRC

Re: [O] inlinetask with :noexport: seems to be exported?

2016-09-29 Thread Rainer M Krug
Nicolas Goaziou writes: > Hello, > > Rainer M Krug writes: > >> I wanted to define some inlinetask (works - love it) but want to keep >> most of them in the org file and not export them. Adding :noexport: does >> not work. > > FWIW, I cannot reproduce

Re: [O] SyncOrg mention in Org manual ?

2016-09-29 Thread Rasmus
Hi Benoît, Thanks for your work and getting in touch! Benoît Coste writes: > Last week I published SyncOrg > , a fork > of MobileOrg for Android. It is an open-source app for reading org notes > from your

Re: [O] inlinetask with :noexport: seems to be exported?

2016-09-29 Thread Nicolas Goaziou
Hello, Rainer M Krug writes: > OK - your example works, but the following doesn't: > > * Foo > > Foo > > *** TODO :noexport: Bar *** END > > Effectively, it is exported if the inline task has ho header text. This is because your syntax is invalid. You

Re: [O] Making DocBook xml books from org mode?

2016-09-29 Thread Peter Davis
Dear Joost, On Thu, Sep 29, 2016, at 03:23 PM, Joost Kremers wrote: > > On Thu, Sep 29 2016, Peter Davis wrote: > > > > but the PDFs I'm getting still look like articles. (I copied the > > above from some examples posted on this list a while ago. Thanks!) > > Your LaTeX_CLASS is set to

Re: [O] Bug when both a link and tags are in a headline

2016-09-29 Thread Nicolas Goaziou
Hello, Michael Fiano writes: > Steps to reproduce: > > 1. Start stock emacs 25.1: > $ emacs -Q test.org > > 2. Write a headline > * Test > > 3. Issue C-c C-c and the headline to add a tag > * Test :test: > > 4. Modify the headline to include a link. > * Test

Re: [O] bug with special entities and (setq org-catch-invisible-edits t)?

2016-09-29 Thread John Kitchin
>> Is that a bug, or expected? > > Somewhere in-between. It's broken, editing sub/super-script can be very > tedious, but the proper behaviour is yet to be defined. The proof is all > the possible values for `org-catch-invisible-edits' (which is mostly > focused on preventing edition of folded

Re: [O] inlinetask with :noexport: seems to be exported?

2016-09-29 Thread Rainer M Krug
Nicolas Goaziou writes: > Hello, > > Rainer M Krug writes: > >> OK - your example works, but the following doesn't: >> >> * Foo >> >> Foo >> >> *** TODO :noexport: Bar *** END >> >> Effectively, it is exported if the inline task

Re: [O] bug with special entities and (setq org-catch-invisible-edits t)?

2016-09-29 Thread Nicolas Goaziou
Hello, John Kitchin writes: > If I have (setq org-catch-invisible-edits t) and run > (org-toggle-pretty-entities), then I get an error if I type: F_{A} and > try to continue typing. > > user-error: Edit in invisible region aborted, repeat to confirm with text > visible

Re: [O] Bug? org-export-babel-evaluate setting breaks :exports results

2016-09-29 Thread Charles C. Berry
On Thu, 29 Sep 2016, William Denton wrote: I'm working on a big Org file on a slow machine, so I set org-export-babel-evaluate to nil so exporting to PDF just generates the file from what's in the buffer, without doing any calculating. Actually it does a lot LESS than that. The docstring

Re: [O] Bug: Several small documentation problems [8.3.6 (8.3.6-4-g4835be-elpaplus @ /home/jorge/.emacs.d/elpa/org-plus-contrib-20160926/)]

2016-09-29 Thread Nicolas Goaziou
Hello, Jorge writes: > This is the first batch of documentation problems. I will report the rest > later, because preparing this first batch already took several hours. Those are fixed, except the points below. > • When describing the behavior with C-u C-u, it wrongly