* [FR] Do not resolve relative "file" paths
@ 2023-03-27 14:36 Ruijie Yu via General discussions about Org-mode.
2023-03-27 14:43 ` Ihor Radchenko
2023-03-27 14:50 ` Ihor Radchenko
0 siblings, 2 replies; 5+ messages in thread
From: Ruijie Yu via General discussions about Org-mode. @ 2023-03-27 14:36 UTC (permalink / raw)
To: emacs-orgmode
Both Emacs and Org are on recent master commits.
Repro:
--8<---------------cut here---------------start------------->8---
$ cd $(mktemp -d)
$ mkdir 1
$ touch 2
$ emacs -L /org/lisp/ -Q 1/3.org
M-: emacs-repository-version RET
"db7e95531ac36ae842787b6c5f2859d0642c78cc"
M-x org-version RET
Org mode version 9.7-pre (release_9.6.1-321-g44e1cb @ /opt/src/emacs/packages/orgmode/main/lisp/)
C-c C-l file:../4 RET RET
[[file:/tmp/tmp.ztrbRDDtKy/4]]
C-c C-l file:../2 RET RET
[[file:/tmp/tmp.ztrbRDDtKy/2]]
--8<---------------cut here---------------end--------------->8---
Note that I showcased both ../4 and ../2 because it seems that the
referenced file does not need to exist.
I expect the links to be literally [[file:../4]] and [[file:../2]]
respectively. This is helpful for me to reference other files
relatively (e.g., in a repository).
For example, since I am working on translating orgweb to zh_CN, I have
/zh_CN/index.org referencing /resources/img/xyz.svg, where after I do
`C-c C-l file:../resources/img/xyz.svg RET' inside /zh_CN/index.org, Org
resolves this link to an absolute path which is counterproductive and
does not work beyond my own computer.
--
Best,
RY
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [FR] Do not resolve relative "file" paths
2023-03-27 14:36 [FR] Do not resolve relative "file" paths Ruijie Yu via General discussions about Org-mode.
@ 2023-03-27 14:43 ` Ihor Radchenko
2023-03-27 14:59 ` Ruijie Yu via General discussions about Org-mode.
2023-03-27 14:50 ` Ihor Radchenko
1 sibling, 1 reply; 5+ messages in thread
From: Ihor Radchenko @ 2023-03-27 14:43 UTC (permalink / raw)
To: Ruijie Yu; +Cc: emacs-orgmode
Ruijie Yu via "General discussions about Org-mode."
<emacs-orgmode@gnu.org> writes:
> C-c C-l file:../4 RET RET
> [[file:/tmp/tmp.ztrbRDDtKy/4]]
> C-c C-l file:../2 RET RET
> [[file:/tmp/tmp.ztrbRDDtKy/2]]
> --8<---------------cut here---------------end--------------->8---
>
> Note that I showcased both ../4 and ../2 because it seems that the
> referenced file does not need to exist.
>
> I expect the links to be literally [[file:../4]] and [[file:../2]]
> respectively. This is helpful for me to reference other files
> relatively (e.g., in a repository).
You can customize `org-link-file-path-type'.
--
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [FR] Do not resolve relative "file" paths
2023-03-27 14:36 [FR] Do not resolve relative "file" paths Ruijie Yu via General discussions about Org-mode.
2023-03-27 14:43 ` Ihor Radchenko
@ 2023-03-27 14:50 ` Ihor Radchenko
1 sibling, 0 replies; 5+ messages in thread
From: Ihor Radchenko @ 2023-03-27 14:50 UTC (permalink / raw)
To: Ruijie Yu; +Cc: emacs-orgmode
[FR] Do not resolve relative "file" paths
Canceled.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [FR] Do not resolve relative "file" paths
2023-03-27 14:43 ` Ihor Radchenko
@ 2023-03-27 14:59 ` Ruijie Yu via General discussions about Org-mode.
2023-03-28 0:42 ` Samuel Wales
0 siblings, 1 reply; 5+ messages in thread
From: Ruijie Yu via General discussions about Org-mode. @ 2023-03-27 14:59 UTC (permalink / raw)
To: Ihor Radchenko; +Cc: emacs-orgmode
Ihor Radchenko <yantar92@posteo.net> writes:
> [...]
> You can customize `org-link-file-path-type'.
Thank you, this is exactly what I needed. It is even able to convert my
previous absolute paths back to relative paths, which is great.
--
Best,
RY
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [FR] Do not resolve relative "file" paths
2023-03-27 14:59 ` Ruijie Yu via General discussions about Org-mode.
@ 2023-03-28 0:42 ` Samuel Wales
0 siblings, 0 replies; 5+ messages in thread
From: Samuel Wales @ 2023-03-28 0:42 UTC (permalink / raw)
To: Ruijie Yu; +Cc: Ihor Radchenko, emacs-orgmode
might or might not help also that the default value appers to use
substitute-in-file-name behind the scenes.
On 3/27/23, Ruijie Yu via General discussions about Org-mode.
<emacs-orgmode@gnu.org> wrote:
>
> Ihor Radchenko <yantar92@posteo.net> writes:
>
>> [...]
>> You can customize `org-link-file-path-type'.
>
> Thank you, this is exactly what I needed. It is even able to convert my
> previous absolute paths back to relative paths, which is great.
>
> --
> Best,
>
>
> RY
>
>
--
The Kafka Pandemic
A blog about science, health, human rights, and misopathy:
https://thekafkapandemic.blogspot.com
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-03-28 0:43 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-27 14:36 [FR] Do not resolve relative "file" paths Ruijie Yu via General discussions about Org-mode.
2023-03-27 14:43 ` Ihor Radchenko
2023-03-27 14:59 ` Ruijie Yu via General discussions about Org-mode.
2023-03-28 0:42 ` Samuel Wales
2023-03-27 14:50 ` Ihor Radchenko
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).