emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Let Org-mode babel file result support relative link type by using org-link-file-path-type
@ 2017-03-12  4:22 numbchild
  2017-03-12 13:14 ` Nicolas Goaziou
  0 siblings, 1 reply; 3+ messages in thread
From: numbchild @ 2017-03-12  4:22 UTC (permalink / raw)
  To: Org-mode

[-- Attachment #1: Type: text/plain, Size: 733 bytes --]

Let Org-mode babel file result support relative (adaptive) link type by
using `org-link-file-path-type`.

This also can solve static site generator extensions (like `ob-blog.el`
etc) image link path issue.

Also better if user changed parent directory name, those links will have to
updated too. But if `adaptive` `org-link-file-path-type` will solve this
problem.

So please let Org-mode babel header arguments `:results file :file
"filename.png"` use `org-link-file-path-type` variable.

[stardiviner]           <Hack this world!>      GPG key ID: 47C32433
IRC(freeenode): stardiviner                     Twitter:  @numbchild
Key fingerprint = 9BAA 92BC CDDD B9EF 3B36  CB99 B8C4 B8E5 47C3 2433
Blog: http://stardiviner.github.io/

[-- Attachment #2: Type: text/html, Size: 1640 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Let Org-mode babel file result support relative link type by using org-link-file-path-type
  2017-03-12  4:22 Let Org-mode babel file result support relative link type by using org-link-file-path-type numbchild
@ 2017-03-12 13:14 ` Nicolas Goaziou
  2017-03-13  1:49   ` numbchild
  0 siblings, 1 reply; 3+ messages in thread
From: Nicolas Goaziou @ 2017-03-12 13:14 UTC (permalink / raw)
  To: numbchild@gmail.com; +Cc: Org-mode

Hello,

"numbchild@gmail.com" <numbchild@gmail.com> writes:

> Let Org-mode babel file result support relative (adaptive) link type by
> using `org-link-file-path-type`.
>
> This also can solve static site generator extensions (like `ob-blog.el`
> etc) image link path issue.
>
> Also better if user changed parent directory name, those links will have to
> updated too. But if `adaptive` `org-link-file-path-type` will solve this
> problem.
>
> So please let Org-mode babel header arguments `:results file :file
> "filename.png"` use `org-link-file-path-type` variable.

It sounds interesting. Could you be more specific about the
specifications of your suggestion.

For example, what happens when :output-dir is set, or when :file already
provides some directory part? What part takes precedence over the other?

Better, could you show some examples, or some tests?

Regards,

-- 
Nicolas Goaziou

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Let Org-mode babel file result support relative link type by using org-link-file-path-type
  2017-03-12 13:14 ` Nicolas Goaziou
@ 2017-03-13  1:49   ` numbchild
  0 siblings, 0 replies; 3+ messages in thread
From: numbchild @ 2017-03-13  1:49 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: Org-mode

[-- Attachment #1: Type: text/plain, Size: 2746 bytes --]

* Does Org-mode `:output-dir` header-argument? Or is `:dir`?

* An example

I can make it (`:results file :file "FILENAME"`) work in `ob-python` like
this:

```org
#+BEGIN_SRC python :var fname="QR_I_Love_YOU.png" :dir "data/images"
:results file
import qrcode

img = qrcode.make("I Love YOU")
img.save(fname)
return fname
#+END_SRC

#+RESULTS:
[[file:/home/stardiviner/Org/Wiki/Computer
Technology/Programming/Programming
Languages/Python/Data/Packages/data/images/QR_I_Love_YOU.png]]
```

* More specific suggestion:

Make use of org-mode variable `org-link-file-path-type`.
When user generate a result with link (like:

```org
#+RESULTS:
[[file:/home/stardiviner/Org/Wiki/Computer
Technology/Programming/Programming
Languages/Python/Data/Packages/data/images/QR_I_Love_YOU.png]]
```

Org-mode babel always use relative file path for link, instead of absolute
file path like upper example.
For example, if current path is `/home/stardiviner/Org/Wiki/Computer
Technology/Programming/Programming Languages/Python/Data/Packages/`, then
the relative file path link should be:

```org
#+RESULTS:
[[file:data/images/QR_I_Love_YOU.png]]
```

* About what one preceduce over the other problem

The header argument `:dir "data/images"` is used to specify my generated
image's destination directory.
My suggestion is want a the result link use `org-link-file-path-type`. So
the header argument `:dir` is not about the result link. Just it will be
used. Like upper example.


[stardiviner]           <Hack this world!>      GPG key ID: 47C32433
IRC(freeenode): stardiviner                     Twitter:  @numbchild
Key fingerprint = 9BAA 92BC CDDD B9EF 3B36  CB99 B8C4 B8E5 47C3 2433
Blog: http://stardiviner.github.io/

On Sun, Mar 12, 2017 at 9:14 PM, Nicolas Goaziou <mail@nicolasgoaziou.fr>
wrote:

> Hello,
>
> "numbchild@gmail.com" <numbchild@gmail.com> writes:
>
> > Let Org-mode babel file result support relative (adaptive) link type by
> > using `org-link-file-path-type`.
> >
> > This also can solve static site generator extensions (like `ob-blog.el`
> > etc) image link path issue.
> >
> > Also better if user changed parent directory name, those links will have
> to
> > updated too. But if `adaptive` `org-link-file-path-type` will solve this
> > problem.
> >
> > So please let Org-mode babel header arguments `:results file :file
> > "filename.png"` use `org-link-file-path-type` variable.
>
> It sounds interesting. Could you be more specific about the
> specifications of your suggestion.
>
> For example, what happens when :output-dir is set, or when :file already
> provides some directory part? What part takes precedence over the other?
>
> Better, could you show some examples, or some tests?
>
> Regards,
>
> --
> Nicolas Goaziou
>

[-- Attachment #2: Type: text/html, Size: 6608 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-03-13  1:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-12  4:22 Let Org-mode babel file result support relative link type by using org-link-file-path-type numbchild
2017-03-12 13:14 ` Nicolas Goaziou
2017-03-13  1:49   ` numbchild

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).