Re: Bug: R src blocks fail to produce link to graphics file [9.3 org-plus-contrib-20200127]

2020-01-27 Thread Jack Kamm
> Is the rationale explained anywhere? After a bit of poking around, it looks > like using the `:file` flag without a `file` argument to results doesn't do > anything (no file is created), nor does the reverse. That is, unless you use > both the `file` argument and the `:file` option, nothing

Re: Testimony on how to publish a book using Org-mode

2020-01-27 Thread Bob Newell
At first glance this is indeed interesting and I must study it carefully. Thank you for pointing this out. I have published quite a number of books (both fiction and non-fiction) starting with org-mode. Inevitably, though, there is lots of hand work with LaTeX, and anything to reduce that will be

Re: orgmode.org is down for the next hour

2020-01-27 Thread Eric Abrahamsen
Bastien writes: > Bastien writes: > >> the orgmode.org server has had hiccups again, I am right now upgrading >> its capacity. As I take a snapshot first it will be off the next hour >> or so. > > The new server is working now, I doubled its capacity. Thanks, Bastien!

Re: orgmode.org is down for the next hour

2020-01-27 Thread Bastien
Bastien writes: > the orgmode.org server has had hiccups again, I am right now upgrading > its capacity. As I take a snapshot first it will be off the next hour > or so. The new server is working now, I doubled its capacity. -- Bastien

Re: Testimony on how to publish a book using Org-mode

2020-01-27 Thread John Kitchin
This sounds pretty interesting. I have been thinking for a while about a setup for scientific publishing with org-mode. I am curious to learn more about what they have setup. I will probably spend some time this spring updating how I do this kind of thing myself. Bastien writes: > Dear all, > >

Re: emacs build command for org-files

2020-01-27 Thread John Kitchin
that is also interesting to know, thanks! Jack Kamm writes: > John Kitchin writes: > >> If there was a lispy version of make that made this possible, I would >> use it. > > This is an aside, but GNU Make can use Guile Scheme as an embedded > extension language: > >

Re: Bug: R src blocks fail to produce link to graphics file [9.3 org-plus-contrib-20200127]

2020-01-27 Thread Tyler Smith
On Mon, Jan 27, 2020, at 12:29 PM, Jack Kamm wrote: > > It should now be ":results graphics file". This behavior changed in Org > 9.3, see https://orgmode.org/Changes.html (:file header argument no > longer assume "file" :results). > That fixes it, thanks! The documentation for ob-R is now

orgmode.org is down for the next hour

2020-01-27 Thread Bastien
Hi all, the orgmode.org server has had hiccups again, I am right now upgrading its capacity. As I take a snapshot first it will be off the next hour or so. Sorry for the inconvenience. -- Bastien

Re: emacs build command for org-files

2020-01-27 Thread Jack Kamm
John Kitchin writes: > If there was a lispy version of make that made this possible, I would > use it. This is an aside, but GNU Make can use Guile Scheme as an embedded extension language: https://www.gnu.org/software/make/manual/html_node/Guile-Integration.html I don't think this solves any

Re: Bug: R src blocks fail to produce link to graphics file [9.3 org-plus-contrib-20200127]

2020-01-27 Thread Jack Kamm
> #+begin_src R :results graphics :file test.jpg > plot (1:10) > #+end_src It should now be ":results graphics file". This behavior changed in Org 9.3, see https://orgmode.org/Changes.html (:file header argument no longer assume "file" :results).

Re: Bug: R src blocks fail to produce link to graphics file [9.3 org-plus-contrib-20200127]

2020-01-27 Thread William Denton
On 27 January 2020, Tyler Smith wrote: #+begin_src R :results graphics :file test.jpg plot (1:10) #+end_src ":results file graphics" should do it. Bill -- William Denton :: Toronto, Canada --- Listening to Art: https://listeningtoart.org/ https://www.miskatonic.org/ ---

Re: Bug: R src blocks fail to produce link to graphics file [9.3 org-plus-contrib-20200127]

2020-01-27 Thread Tyler Smith
serted, with a link to the file test.jpg; >> >> What happens instead: >> >> A message appears in the minibuffer: 'Code block produced no output'. >> >> This worked previously. I'm not sure when it broke - sometime in the last >> two months I think, as I de

Re: Bug: R src blocks fail to produce link to graphics file [9.3 org-plus-contrib-20200127]

2020-01-27 Thread Jeremie
;This worked previously. I'm not sure when it broke - sometime in the >last two months I think, as I demoed this feature for colleagues in >November. > >Emacs state provided below. > >Best, > >Tyler > >Emacs : GNU Emacs 28.0.50 (build 2, x86_64-pc-linu

Bug: R src blocks fail to produce link to graphics file [9.3 org-plus-contrib-20200127]

2020-01-27 Thread Tyler Smith
this feature for colleagues in November. Emacs state provided below. Best, Tyler Emacs : GNU Emacs 28.0.50 (build 2, x86_64-pc-linux-gnu, GTK+ Version 3.22.30) of 2020-01-02 Package: Org mode version 9.3 (release_9.3 @ /home/smithty/.emacs.d/elpa/org-plus-contrib-20200127/) current state

Re: emacs build command for org-files

2020-01-27 Thread John Kitchin
briangpowell . writes: > "Actually, if it was possible to get M-x compile to run an elisp function > instead of a make file, it might be all I need, but it looks like it runs > shell commands." > > You probably know this but just in case: > > "You can call simulate an EmacsLisp-based script by

Re: emacs build command for org-files

2020-01-27 Thread John Kitchin
Stefan Nobis writes: > John Kitchin writes: > >> Hi everyone, > >> This is only semi-on-topic. I am looking for something like M-x compile for >> my org-files, but I don't want it to necessarily use Makefiles. I am >> looking for suggestions of existing solutions to this, or thoughts on how

Re: emacs build command for org-files

2020-01-27 Thread John Kitchin
Neil Jerram writes: > On Sun, 26 Jan 2020 at 18:11, John Kitchin wrote: > >> Hi everyone, >> >> This is only semi-on-topic. I am looking for something like M-x compile >> for my org-files, but I don't want it to necessarily use Makefiles. I am >> looking for suggestions of existing solutions

Re: emacs build command for org-files

2020-01-27 Thread Neil Jerram
On Sun, 26 Jan 2020 at 18:11, John Kitchin wrote: > Hi everyone, > > This is only semi-on-topic. I am looking for something like M-x compile > for my org-files, but I don't want it to necessarily use Makefiles. I am > looking for suggestions of existing solutions to this, or thoughts on how > to

Re: [PATCH] Fix several issues with python session value blocks

2020-01-27 Thread 황병희
Jack Kamm writes: > [...] > I've checked this patch works for both Python2 and Python3, as well as > for IPython. Currently, i'm learning both elisp and python. Thanks for good patchs^^^ Sincerely, Byung-Hee -- ^고맙습니다 _地平天成_ 감사합니다_^))//

Re: automatic completion of file tags

2020-01-27 Thread Bastien
Hi Alan, Alan Schmitt writes: > There are no headlines in the file (it's a small note). I want to tag > the file itself (or its content). It's mostly to help with full-text > search (I prefix my tags with '#' so they don't occur otherwise). I > think the notion of file tag does not really exist

Testimony on how to publish a book using Org-mode

2020-01-27 Thread Bastien
Dear all, I recently met the authors of this book, entirely publish using Org-mode: https://ima.circex.org/storie/0-intro/index.html They explain how they do this here: https://ima.circex.org/vulgo_en.html I thought it might be of interest for those hackers who want to dive in and try

Help needed on improving Org-mode Wikipedia article

2020-01-27 Thread Bastien
Dear all, there is a nice article on Wikipedia about Org-mode: https://en.wikipedia.org/wiki/Org-mode There are also localized versions: https://de.wikipedia.org/wiki/Org-mode https://fr.wikipedia.org/wiki/Org-mode And a wikidata entry: https://www.wikidata.org/wiki/Q307228 If you want to help

Re: org id update locations search sequence (was Re: bug report org mode)

2020-01-27 Thread Bastien
Hi Samuel, I have difficulties understanding the proposal. Can you restate it as a MEC (Minimal Enhancing Change)? Thanks, -- Bastien

Re: [PATCH] Fix several issues with python session value blocks

2020-01-27 Thread Bastien
Hi Jack, Jack Kamm writes: > Sure, I would be interested in this, if it's helpful. It is for sure! Thanks for accepting. > I need an account for code.orgmode.org, and whatever commit permissions > you think appropriate. Please send me a private message with your prefered username and I will

Re: emacs build command for org-files

2020-01-27 Thread Stefan Nobis
John Kitchin writes: > Hi everyone, > This is only semi-on-topic. I am looking for something like M-x compile for > my org-files, but I don't want it to necessarily use Makefiles. I am > looking for suggestions of existing solutions to this, or thoughts on how > to implement this. This may not