Re: Using search options in HTTP-style links

2024-06-08 Thread Joseph Turner
Ihor Radchenko writes: > Joseph Turner writes: > >>> You probably meant to link to some different ticket here. >> >> https://todo.sr.ht/~ushin/ushin/188 > > So, you want an equivalent of `org-safe-remote-resources'. For now, we've added a command `hyper

Re: Using search options in HTTP-style links

2024-05-18 Thread Joseph Turner
Ihor Radchenko writes: > Joseph Turner writes: > >>> The case with hyperdrive.el is not the same. >>> You may want to discuss it on emacs-devel. >> >> Thank you! It is a good idea to get more input on securing >> hyperdrive.el. For now, I went throu

Re: Using search options in HTTP-style links

2024-05-15 Thread Joseph Turner
do.sr.ht/~ushin/ushin/178 - https://todo.sr.ht/~ushin/ushin/178 > As for untrusted-content, there is no point using it now - it was > specifically introduced for Org mode. It may or may not become a part of > more general security framework in Emacs. Sounds good. Thank you!! Joseph

Re: Using search options in HTTP-style links

2024-04-17 Thread Joseph Turner
Ihor Radchenko writes: > Joseph Turner writes: > >> ... >> (eww "https://ushin.org/needs-list.org#%3A%3A%23care;) >> >> ...loads the file in eww-mode with point at the top of the file. >> >> I think it would be more useful to instead activate org-

Using search options in HTTP-style links

2024-04-15 Thread Joseph Turner
n my machine, loading https://ushin.org/needs-list.org#%3A%3A%23care in Firefox downloads the file as if the fragment weren't there. What other issues might arise when encoding search options this way? Any other comments/questions welcome :) Thank you! Joseph

Re: Should org-link-parser add type "file" when link has no "file:" prefix?

2024-02-01 Thread joseph
February 1, 2024 at 4:23 AM, "Ihor Radchenko" wrote: > > jos...@ushin.org writes: > > > > > > > > > > > What we can do then is pass an extra argument to :follow function - > > > > > the > > > > > > > > link object. That way, :follow function can get all the information > > > it > > >

Re: Should org-link-parser add type "file" when link has no "file:" prefix?

2024-01-31 Thread joseph
January 17, 2024 at 5:15 AM, "Ihor Radchenko" wrote: > > Joseph Turner writes: > > > > > > > > > May you please provide an example with an Org file containing file links > > > > > > and how you envision to transform them? Will

Re: [PATCH] Silently remove lockfiles from org-agenda-files

2024-01-31 Thread Joseph Turner
Hi Ihor, Ihor Radchenko writes: > Joseph Turner writes: > >> My Emacs setup broke today due to the presence of a lockfile inside >> "~/.local/share/org/todo". I use EXWM, and I show org-agenda on startup: >> >> (add-hook 'after-init-hook >

[PATCH] Silently remove lockfiles from org-agenda-files

2024-01-18 Thread Joseph Turner
(maybe EXWM didn't fully load), Emacs simply hung without prompting, leaving me with a black screen. The attached patch silently removes lockfiles from org-agenda-files. Thanks! Joseph P.S. I'm not sure how the lockfile ended up there. Maybe I killed Emacs with SIGKILL while one of my agen

Re: Should org-link-parser add type "file" when link has no "file:" prefix?

2024-01-16 Thread Joseph Turner
Ihor Radchenko writes: > Joseph Turner writes: > >>>> I'd like for users to be able to take an existing directory of Org mode >>>> documents and copy them all into a hyperdrive. I think the least >>>> surprising behavior is for the links between thos

Re: Should org-link-parser add type "file" when link has no "file:" prefix?

2024-01-15 Thread Joseph Turner
Ihor Radchenko writes: > Joseph Turner writes: > >>> See `org-open-file' IN-EMACS argument - we may use different handlers >>> to open file links. Currently, IN-EMACS can be 'system or 'emacs. But >>> nothing stops us from adding more options. >> >&g

Re: Should org-link-parser add type "file" when link has no "file:" prefix?

2024-01-01 Thread Joseph Turner
Ihor Radchenko writes: > Joseph Turner writes: > >>> It would be more reliable to provide a separate link type. >>> We might even extend the special file+application: link type syntax that >>> already allows special behavior for opening file links. >>

Re: Should org-link-parser add type "file" when link has no "file:" prefix?

2023-12-30 Thread Joseph Turner
Joseph Turner writes: > - When handling "file" type links, check if `org-current-uri-scheme' > matches one of the keys in `org-link-parameters', and use the > appropriate handler instead of the "file" handler. (see attached patch > for an example usage in `org-lin

Re: Should org-link-parser add type "file" when link has no "file:" prefix?

2023-12-30 Thread Joseph Turner
Ihor Radchenko writes: > Joseph Turner writes: [...] > Thanks for reporting! > Fixed, on main. > https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=d15e52fef Thank you for the quick fix! >> In hyperdrive.el currently, "[[/foobar]]" and "[[

Should org-link-parser add type "file" when link has no "file:" prefix?

2023-12-28 Thread Joseph Turner
sclusion-make-from-link with point on "[[/foobar]]", org-transclusion.el ends up inserting this: #+transclude: [[file:/foobar]] which, at least with hyperdrive.el, doesn't point to the same file as #+transclude: [[/foobar]] All suggestions are welcome! Thank you!!! Joseph

Re: How to HTML export non-Emacs/Elisp info manual links?

2023-10-10 Thread Joseph Turner
Ihor Radchenko writes: > Joseph Turner writes: > >> I'd like for exported HTML output to include HTTP links to info manuals >> besides the Emacs and Elisp manuals. Is this possible? >> ... > > Now, you can. > https://git.savannah.gnu.org/cgit/emacs/org-mode

How to HTML export non-Emacs/Elisp info manual links?

2023-10-10 Thread Joseph Turner
<https://www.gnu.org/>, but it would be useful to have the option to specify a different host, like: https://magit.vc/manual/transient.html#Introduction Thank you!! Joseph

Re: org-ctags-find-tag should not prompt inside org-open-at-point

2023-09-28 Thread Joseph Turner
Rudolf Adamkovič writes: > Joseph Turner writes: > >> (setopt org-ctags-open-link-functions nil) > > Oh, thank you! This regularly drives me crazy. You're welcome! > I added the following to my Emacs/Org configuration: > > #+BEGIN_SRC emacs-lisp :results none &g

Re: org-ctags-find-tag should not prompt inside org-open-at-point

2023-09-26 Thread Joseph Turner
Ihor Radchenko writes: > Joseph Turner writes: > >> When org-ctags-find-tag is a member of org-open-link-functions, fuzzy >> links and custom-id links are broken. Instead of following those links, >> Emacs prompts for a filename with "Visit tags table (default

org-ctags-find-tag should not prompt inside org-open-at-point

2023-09-24 Thread Joseph Turner
functionality. Thanks! Joseph Turner

Re: [PATCH v2] lisp/ob-plantuml.el: Insert results in buffer

2022-10-31 Thread Joseph Turner
No worries!! Have a good day :) On October 30, 2022 11:02:18 PM PDT, Ihor Radchenko wrote: >Ihor Radchenko writes: > >>> Good catch! I will submit a v3 patch. >> >> Did you have a chance to work on the patch? > >Oops. I missed that you did and I even merged it. :facepalm: >Sorry for the noise.

Re: [BUG] Server-side export problem in Worg?

2022-09-22 Thread Joseph Turner
Thank you for the fix! Joseph Bastien Guerry writes: > Ihor Radchenko writes: > >> Bastien, there seems to be an issue with Worg export on server. Can you >> please check? > > This is now fixed, thanks: > > https://orgmode.org/worg/org-contrib/babel/languages/ob-doc-plantuml.html#org6cd541e

Re: [PATCH] org-contrib/babel/languages/ob-doc-plantuml.org: ASCII output

2022-09-21 Thread Joseph Turner
rg src code block on my local machine. Joseph

Re: [PATCH] org-contrib/babel/languages/ob-doc-plantuml.org: ASCII output

2022-09-15 Thread Joseph Turner
No worries! Thanks for your patient help. Ihor Radchenko writes: > Ihor Radchenko writes: > >> Joseph Turner writes: >> >>> You're right! Thank you for catching my mistake. I'll send another patch. >> >> Did you have a chance to work on the patch? &g

[PATCH v2] org-contrib/babel/languages/ob-doc-plantuml.org: ASCII output

2022-08-13 Thread Joseph Turner
Document the new functionality of ob-plantuml to insert ASCII diagrams directly in the buffer. --- .../babel/languages/ob-doc-plantuml.org | 57 +++ 1 file changed, 46 insertions(+), 11 deletions(-) diff --git a/org-contrib/babel/languages/ob-doc-plantuml.org

Re: [PATCH] org-contrib/babel/languages/ob-doc-plantuml.org: ASCII output

2022-08-13 Thread Joseph Turner
You're right! Thank you for catching my mistake. I'll send another patch. Joseph Ihor Radchenko writes: > Joseph Turner writes: > >> Document the new functionality of ob-plantuml to insert ASCII diagrams >> directly in the buffer. > > Thanks! > >> -=PlantU

Re: [PATCH v3] lisp/ob-plantuml.el: Insert results in buffer

2022-08-06 Thread Joseph Turner
You're very welcome! Thank you for your guidance. I learned quite a lot of Elisp during this process. On August 6, 2022 1:24:46 AM PDT, Ihor Radchenko wrote: >Joseph Turner writes: > >> When :results header arg is set to a value that doesn't include >> "file", inser

[PATCH] org-contrib/babel/languages/ob-doc-plantuml.org: ASCII output

2022-08-05 Thread Joseph Turner
Document the new functionality of ob-plantuml to insert ASCII diagrams directly in the buffer. --- This patch documents the changes made here: https://lists.gnu.org/archive/html/emacs-orgmode/2022-08/msg00110.html .../babel/languages/ob-doc-plantuml.org | 55 +++ 1 file

[PATCH v3] lisp/ob-plantuml.el: Insert results in buffer

2022-08-05 Thread Joseph Turner
When :results header arg is set to a value that doesn't include "file", insert txt output in buffer below src block. TINYCHANGE --- etc/ORG-NEWS| 7 +++ lisp/ob-plantuml.el | 12 +--- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/etc/ORG-NEWS b/etc/ORG-NEWS

Re: [PATCH v2] lisp/ob-plantuml.el: Insert results in buffer

2022-08-05 Thread Joseph Turner
submit a v3 patch. Is this still a TINYCHANGE or shall I do a copyright assignment? > Also, can you please update the ob-plantuml documentation according to > the changes made. The current version is in > https://orgmode.org/worg/org-contrib/babel/languages/ob-doc-plantuml.html Gladly. Best, Joseph

[PATCH v2] lisp/ob-plantuml.el: Insert results in buffer

2022-08-03 Thread Joseph Turner
When :results header arg is set to a value that doesn't include "file", insert txt output in buffer below src block. TINYCHANGE --- etc/ORG-NEWS| 7 +++ lisp/ob-plantuml.el | 13 ++--- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/etc/ORG-NEWS

Re: [PATCH] lisp/ob-plantuml.el: Insert results in buffer

2022-07-31 Thread Joseph Turner
function is executed on a block like: #+begin_src plantuml :file "this.png" Bob->Alice : Hello1! #+end_src I get "Code block produced no output." I suspect that setting the scoped params variable has no effect on the execution of the function, since I can set params to '((:results . "none")), and I'll still get a printed result if org-babel-default-header-args:plantuml is set to the above value. Is it safe to modify the value of org-babel-default-header-args:plantuml from within the function? Would that even work? Thank you for your patience in figuring this out with me :) Joseph

Re: [PATCH] lisp/ob-plantuml.el: Insert results in buffer

2022-07-27 Thread Joseph Turner
) (params (if do-export (add-to-list 'params '(:results . "file"))) (out-file ... ``` Logging the params variable after the let* block reveals that :results is set to "file", but I still get "Code block produced no output" when I try to evaluate the plantuml org src block. Thoughts? Joseph

Re: [PATCH] lisp/ob-plantuml.el: Insert results in buffer

2022-07-25 Thread Joseph Turner
:plantuml function based on the value of the params arg? Or perhaps you have a different solution? Once we straighten this issue out, I am happy to resubmit the updated patch with your suggested style changes. Warmly, Joseph

[PATCH] lisp/ob-plantuml.el: Insert results in buffer

2022-07-21 Thread Joseph Turner
Allow src block execution without ":file" header arg. When ":file" is omitted, insert txt output in buffer below src block. TINYCHANGE --- etc/ORG-NEWS| 5 + lisp/ob-plantuml.el | 10 +++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/etc/ORG-NEWS

Re: org-ref 3 setup

2022-07-20 Thread Joseph Vidal-Rosset
Le 20/07/2022 à 16:20, Joseph Vidal-Rosset a écrit : > > > Le 20/07/2022 à 15:38, John Kitchin a écrit : > >>     (let  ((org-export-with-broken-links t) >>       (org-latex-pdf-process >>         '("pdflatex -interaction nonstopmode -shell-es

Re: org-ref 3 setup

2022-07-20 Thread Joseph Vidal-Rosset
mode -shell-escape > -output-directory %o > %f")) Thanks ! now emacs --deamon works smoothly, but unfortunately I get this message when I try to export my org file via pdflatex: > Wrote > /home/joseph/Dropbox/Mes_articles_soumis/jvr-bivalence-futurs-contingents-intuiti

org-ref 3 setup

2022-07-20 Thread Joseph Vidal-Rosset
Hello John, (cc. list emacs-orgmode) I have a problem with my emacs setup that is in relation with org-ref 3. My emacs version is 29.0.50, via Prelude emacs, and my emacs is launched with "emacs --daemon" . Here is the error: > Loading /home/joseph/.emacs.d/personal/myorgexpo

Re: Mathjax and org-mime-htmlize

2022-07-09 Thread Joseph Vidal-Rosset
sécurisée Proton Mail. --- Original Message --- Le samedi 9 juillet 2022 à 05:47, Ihor Radchenko a écrit : > Joseph Vidal-Rosset jos...@vidal-rosset.net writes: > > > Is there a way to include Mathjax in html emails produced via M-x > > org-mime-htmlize ? > > >

Mathjax and org-mime-htmlize

2022-07-08 Thread Joseph Vidal-Rosset
Hello, Is there a way to include Mathjax in html emails produced via M-x org-mime-htmlize ? I would be glad to find a solution to this (small) problem. All the best, Jo.

Re: Bug: org-mime-htmlize generates unwanted equations numbers in mail [

2022-07-06 Thread Joseph Vidal-Rosset
https://lists.gnu.org/archive/html/emacs-orgmode/2019-11/msg00016.html Hello, I would be glad to apply this patch. But I do not succeed in finding in org-mode documentation how applying a patch. Many thanks for your help . Jo.

Re: Fw: org-mime-htmlize

2022-07-05 Thread Joseph Vidal-Rosset
now: > > (setq org-export-before-parsing-hook '(org-ref-csl-preprocess-buffer)) > > > John > --- Original Message --- > Le lundi 4 juillet 2022 à 09:55, Joseph Vidal-Rosset > mailto:jos...@vidal-rosset.net>> a écrit : > >> Hello, >&g

org-mime-htmlize

2022-07-04 Thread Joseph Vidal-Rosset
and export with bibliographical references inside an email. I’m using org-ref 3. Your help is welcome, All the best, Jo. /home/joseph/Dropbox/myblog/blog.bib

Re: Re : Re: org-ref3 export html with references of pages

2022-06-26 Thread Joseph Vidal-Rosset
/). --- Original Message --- Le dimanche 26 juin 2022 à 09:17, Joseph Vidal-Rosset a écrit : > Hi John, > > I am ashamed for having not understood this solution by myself ! > > It works perfectly also with my csl style. > > Many thanks again for your so kind and very eff

Re : Re: org-ref3 export html with references of pages

2022-06-26 Thread Joseph Vidal-Rosset
://proton.me/). --- Original Message --- Le samedi 25 juin 2022 à 13:16, John Kitchin a écrit : > Hi Joseph, > > It looks like what I suggested (e.g. use a csl file that supports what you > want) > > This org file: > > #+csl-style: american-medical-association-brackets.c

org-ref3 export html with references of pages

2022-06-25 Thread Joseph Vidal-Rosset
Hello everyone, With org-ref (version 3) I meet the following (minor) problem with the html export of references when I want to give the pages of a book in numerical csl format. With LaTeX export, no difficulty: I get [1, pp. 55-56] to refer to the book 1 and pages 55-56. With html

Re : Re: php scripts in export html code in org-mode

2021-12-22 Thread Joseph Vidal-Rosset
> > May you provide a step-by-step reproducer starting from emacs -Q? > > Best, > > Ihor Thanks Ihor, It is neither an emacs nor an org-mode issue, but it concerns the way of calling a php scritpt from an html file, and it is not easy, at least for me. I admit that my email is therefore

php scripts in export html code in org-mode

2021-12-21 Thread Joseph Vidal-Rosset
Hello, Here is my problem. The code below, that is the code of the page called "index.php" works. < https://www.vidal-rosset.net/fCube/ > But I would be happy to have this prover in this web page <

Re: citeproc-org and org-ref 3

2021-12-04 Thread Joseph Vidal-Rosset
hink that is something org-ref can or > should fix. That would be something to fix in the styles themselves. > > John > > --- > Professor John Kitchin (he/him/his) > Doherty Hall A207F > Department of Chemical Engineering > Carnegie Mellon University > Pittsburgh, PA 15213 > 4

Re: citeproc-org and org-ref 3

2021-12-04 Thread Joseph Vidal-Rosset
> > > John > > --- > Professor John Kitchin (he/him/his) > Doherty Hall A207F > Department of Chemical Engineering > Carnegie Mellon University > Pittsburgh, PA 15213 > 412-268-7803 > @johnkitchin > http://kitchingroup.cheme.cmu

Re: citeproc-org and org-ref 3

2021-12-03 Thread Joseph Vidal-Rosset
rover in Prolog: leanseq.pl Joseph Vidal-Rosset - Personal Blog Home About Contact Educasup Arguments Provers Code Another sequent calculus prover in Prolog: leanseq.pl 2021-12-03, updated 2021-12-03 next - previous A note about the prover published by Philip Zucker from

Re: citeproc-org and org-ref 3

2021-12-03 Thread Joseph Vidal-Rosset
hes, > > Joseph Vidal-Rosset writes: > >> Dear all, >> >> >> I just succeeded in solving my problem. >> >> l-210-235 of myblogexporter.el, I changed the code for: >> >> (defun org-export-head-export-headers (directory-name backend) >> "

Re: citeproc-org and org-ref 3

2021-12-02 Thread Joseph Vidal-Rosset
eexport"))) and it works with org-ref 3. Best wishes, I attach myblogexporter.el Jo. Le 02/12/2021 à 14:17, Joseph Vidal-Rosset a écrit : > Dear John (cc. Ivan), > > First, thanks for your help and for your patience, that's very kind of you. > > The good news is that indeed, org-re

Re: citeproc-org and org-ref 3

2021-12-02 Thread Joseph Vidal-Rosset
in a écrit : > > Joseph Vidal-Rosset writes: > >> Dear Andras, >> >> You are very probably right. I will have a look on this entry in my >> default bibliography file. >> >> The code >> >> (let ((org-export-before-parsing-hook '(org-ref-csl-prepro

Re: citeproc-org and org-ref 3

2021-12-01 Thread Joseph Vidal-Rosset
, András Simonyi a écrit : > Dear Joseph, > > based on the error message there seems to be a problem with the > 'curley-nil-on-bennet-spinoz' bibliography entry, is it possible that > it contains a 'year = nil' row? If yes then I don't think that is > well-formed, at least citeproc-e

Re: citeproc-org and org-ref 3

2021-12-01 Thread Joseph Vidal-Rosset
-file (org-html-export-to-html))) in my setup provokes this unwanting effect: [Prelude] Loading personal configuration files in /home/joseph/.emacs.d/personal/preload... Loading /home/joseph/.emacs.d/personal/preload/myorgexport.el (source)... Output file: and with Enter : [Prelude] Loading

Re: citeproc-org and org-ref 3

2021-11-30 Thread Joseph Vidal-Rosset
versity > Pittsburgh, PA 15213 > 412-268-7803 > @johnkitchin > http://kitchingroup.cheme.cmu.edu <http://kitchingroup.cheme.cmu.edu> > > > > On Tue, Nov 30, 2021 at 12:16 PM András Simonyi > mailto:andras.simo...@gmail.com>> wrote: > > Dear Josep

Re: citeproc-org and org-ref 3

2021-11-30 Thread Joseph Vidal-Rosset
Many thanks Andras for this first clarification. There is no hurry and after John's advice, I will take the most convenient decision. Many thanks to both of you for your very helpful works. Best wishes, Jo. Le 30/11/2021 à 18:16, András Simonyi a écrit : > Dear Joseph, > > unfortun

citeproc-org and org-ref 3

2021-11-30 Thread Joseph Vidal-Rosset
Dear John, and dear Andras, Having updated my org-ref to the last version, I see that the html export of bibliography does not work any longer for my blog. Reading Andras's note here https://github.com/andras-simonyi/citeproc-org I confess that I am lost. What have I to do to not waste too

Re: org-ref 2 vs org-ref 3

2021-10-20 Thread Joseph Vidal-Rosset
sion-3. > > You can find configuration details at > https://github.com/jkitchin/org-ref/#configuration. > > On Wed, Oct 20, 2021 at 2:59 AM Joseph Vidal-Rosset > wrote: > >> Dear John, >> >> I upgraded org-ref to get org-ref 3 and I met the following difficulties:

org-ref 2 vs org-ref 3

2021-10-20 Thread Joseph Vidal-Rosset
Dear John, I upgraded org-ref to get org-ref 3 and I met the following difficulties: - my shortcut to get the list of my bib file did not work, and I have to use the emacs menu, - I did not get via org-ref a pdf file of any paper, - cite links with the page(s) via "description" show only

[SOLVED] Re: citeproc-style-parse: Symbol’s function definition is void: libxml-parse-xml-region

2021-10-18 Thread Joseph Vidal-Rosset
Le 18/10/2021 à 18:49, Joseph Vidal-Rosset a écrit : > I just did it. But the problem is always the same... :( I did it in a wrong way. I compiled emacs again, and it works now! Many thanks to all ! Bonne soirée ! Jo.

Re: citeproc-style-parse: Symbol’s function definition is void: libxml-parse-xml-region

2021-10-18 Thread Joseph Vidal-Rosset
Le 18/10/2021 à 16:46, András Simonyi a écrit : > Dear Joseph, > > in theory evaluating > > (libxml-available-p) > > should tell you whether your Emacs has libxml support -- most probably > it doesn't. Maybe you should try to recompile using the --with-xml2 > switch

Re: citeproc-style-parse: Symbol’s function definition is void: libxml-parse-xml-region

2021-10-18 Thread Joseph Vidal-Rosset
Le 18/10/2021 à 12:54, John Kitchin a écrit : > This could mean you have an emacs that was not compiled with libxml. > > Type C-h v system-configuration-options > > and look for --with-xml2 > > to see if your emacs was built with it. > John I have this. #ifdef HAVE_LIBXML2

Re: citeproc-style-parse: Symbol’s function definition is void: libxml-parse-xml-region

2021-10-18 Thread Joseph Vidal-Rosset
u.edu> > > > > On Mon, Oct 18, 2021 at 4:12 AM Timothy <mailto:tecos...@gmail.com>> wrote: > > Hi Joseph, > > The function libxml-parse-xml-region has been around for a while, > what version > of Emacs are you running? I just compiled emacs 29... > All the best, > Timothy >

citeproc-style-parse: Symbol’s function definition is void: libxml-parse-xml-region

2021-10-18 Thread Joseph Vidal-Rosset
Hello everybody, I get this message error with citeproc: citeproc-style-parse: Symbol’s function definition is void: libxml-parse-xml-region I do not find the solution. Your help is welcome, All the best, Jo.

Re: org-beamer empty titles

2021-10-13 Thread Joseph Vidal-Rosset
To Eric and to Ihor, many thanks. My problem was already solved by Eric with the LateX magic trick, so, I consider now that the problem is solved. Best wishes, Jo. Le 13/10/2021 à 09:50, Ihor Radchenko a écrit : > Joseph Vidal-Rosset writes: > >> Maybe. I'm using presently P

Re: org-beamer empty titles

2021-10-12 Thread Joseph Vidal-Rosset
Le 12/10/2021 à 17:01, Eric S Fraga a écrit : > Ihor, thank you for this. > > Jo, what actual version of org are you using? I'm using a fairly recent > version (as of last week) so maybe what you want to do is possible now > but was not earlier? > > -- > : Eric S Fraga via Emacs 28.0.60, Org

Re: org-beamer empty titles

2021-10-12 Thread Joseph Vidal-Rosset
Le 12/10/2021 à 13:51, Eric S Fraga a écrit : > On Tuesday, 12 Oct 2021 at 08:05, Joseph Vidal-Rosset wrote: >> More seriously, the best solution for me would be to allow saving a file >> with a space just after ** without deleting this space... I do not know >>

Re: org-beamer empty titles

2021-10-12 Thread Joseph Vidal-Rosset
Le 12/10/2021 à 13:51, Eric S Fraga a écrit : > On Tuesday, 12 Oct 2021 at 08:05, Joseph Vidal-Rosset wrote: >> I just tried what you suggested to me. The result is always the same: I >> get the following title: >> :emptytitle: >> but this title is not empty, contrad

Re: org-beamer empty titles

2021-10-12 Thread Joseph Vidal-Rosset
Le 12/10/2021 à 09:47, Eric S Fraga a écrit : > Jo, > > I am curious to know why the second proposed solution, i.e. putting a > tag on the headline with no actual headline text, didn't work for > you. It might be that you need to have > > #+options: tags:nil > > It worked for me and, at least

Re: org-beamer empty titles

2021-10-12 Thread Joseph Vidal-Rosset
Le 10/10/2021 à 23:30, Joseph Vidal-Rosset a écrit : > > > Le 10/10/2021 à 22:04, Eric S Fraga a écrit : >> On Sunday, 10 Oct 2021 at 17:44, Joseph Vidal-Rosset wrote: >>> I reply to my question about org-bullets: the reply is no. Registering >>> an emp

Re: org-beamer empty titles

2021-10-10 Thread Joseph Vidal-Rosset
Le 10/10/2021 à 22:04, Eric S Fraga a écrit : > On Sunday, 10 Oct 2021 at 17:44, Joseph Vidal-Rosset wrote: >> I reply to my question about org-bullets: the reply is no. Registering >> an empty title section delete the space and then the export frame does >> not work. :( &

[BUG] Consecutive emphasis markers only work every other time [9.5 (9.5-??-cc2490a70 @ /home/joe/.emacs.d/.local/straight/build-27.1/org/)]

2021-10-10 Thread Joseph Peterson
Steps to reproduce: Enter org mode (I am on cc2490a7061955395c4f5a1a23a088044554a2f7) Type *bold* *bold* *bold* Notice that the second instance is not bolded while the first and third are. This doesn't occur if there is

Re: org-beamer empty titles

2021-10-10 Thread Joseph Vidal-Rosset
Le 10/10/2021 à 19:28, Joseph Vidal-Rosset a écrit : > > > Le 10/10/2021 à 19:22, Eric S Fraga a écrit : >> On Sunday, 10 Oct 2021 at 17:12, Joseph Vidal-Rosset wrote: >>> If there is no title following star(s), then the export into frame does >> >>

Re: org-beamer empty titles

2021-10-10 Thread Joseph Vidal-Rosset
Le 10/10/2021 à 19:22, Eric S Fraga a écrit : > On Sunday, 10 Oct 2021 at 17:12, Joseph Vidal-Rosset wrote: >> If there is no title following star(s), then the export into frame does > > If you mean that you have a headline but with nothing but the *s, what > happens if you

org-beamer empty titles

2021-10-10 Thread Joseph Vidal-Rosset
Hello everybody, With an .org file for presentation: #+TITLE: #+DATE: #+OPTIONS: H:2 toc:nil author:t #+LATEX_CLASS: beamer-fr #+LANGUAGE:fr I meet the following problem: If there is no title following star(s), then the export into frame does not work. This behavior is not convenient: often

Re : Re: Capture abort: Symbol’s function definition is void: turn-on-org-provide

2021-09-23 Thread Joseph Vidal-Rosset
Le jeudi 23 septembre 2021 à 18:12, Ihor Radchenko a écrit : > Joseph Vidal-Rosset jos...@vidal-rosset.net writes: > > > But nowhere in this file have function " turn-on-org-provide" . :( > > > > A suggestion? > > Try to setting debug-on-error to 't an

Re: Capture abort: Symbol’s function definition is void: turn-on-org-provide

2021-09-23 Thread Joseph Vidal-Rosset
Le 23/09/2021 à 18:02, John Kitchin a écrit : > you should use describe-variable on org-capture-templates. Maybe some > other package has added to it. > John Many thanks John, I am going to try this way! Best wishes, Jo.

Re: Capture abort: Symbol’s function definition is void: turn-on-org-provide

2021-09-23 Thread Joseph Vidal-Rosset
Le 23/09/2021 à 17:28, Daniel Fleischer a écrit : > Joseph Vidal-Rosset writes: > >> To capture an email and to link this message for gnus, I get now this >> error message: >> >> Capture abort: Symbol’s function definition is void: turn-on-org-provide >

Re : Capture abort: Symbol’s function definition is void: turn-on-org-provide

2021-09-23 Thread Joseph Vidal-Rosset
I did not say that I'm using Prelude Emacs. Maybe it can be useful to solve my problem. ‐‐‐ Original Message ‐‐‐ Le jeudi 23 septembre 2021 à 14:38, Joseph Vidal-Rosset a écrit : > Hello, > > My problem is already explained in the subject of this email. > > To c

Capture abort: Symbol’s function definition is void: turn-on-org-provide

2021-09-23 Thread Joseph Vidal-Rosset
Hello, My problem is already explained in the subject of this email. To capture an email and to link this message for gnus, I get now this error message: Capture abort: Symbol’s function definition is void: turn-on-org-provide I've tried to Google this bug, getting no result. Your help is

Re: creating png images in emails with org-mode

2020-09-16 Thread Joseph Vidal-Rosset
Hello, My problem has just been solved with substituting dvipng for imagemagick: (setq org-latex-create-formula-image-program 'dvipng) ; (setq org-latex-create-formula-image-program 'imagemagick) Le mer. 16 sept. 2020 à 12:03, Joseph Vidal-Rosset < joseph.vidal.ros...@gmail.com> a

creating png images in emails with org-mode

2020-09-16 Thread Joseph Vidal-Rosset
Hello, One more time, my setup to create png image via LaTeX in email in org-mode is broken. I get this error message: Creating LaTeX preview... org-compile-file: File "/tmp/orgtex2wp50c.png" wasn’t produced. Please adjust ‘imagemagick’ part of ‘org-preview-latex-process-alist’. Your help is

Re: [PATCH] prevent mangled output in ob-J by allowing sit-time duration to be customized

2020-09-04 Thread Joseph Novakovich
Hello Bastien, Sure, I'd be happy to help! Joseph On 9/4/20, Bastien wrote: > Hi Joseph, > > applied on maint (as 7d8247410), thanks. > > Would you like to take over ob-J.el maintainance? > > -- > Bastien >

[PATCH] prevent mangled output in ob-J by allowing sit-time duration to be customized

2020-09-02 Thread Joseph Novakovich
Hello! The problem is that we read the contents of the output after 0.1 seconds, which, for expensive computations, results in the mangling of output. Output from expensive computations gets propagated down to subsequent code-blocks' outputs, producing a horrible mess. Joseph From

Re: org-mode 9.3 links gnus

2020-07-29 Thread Joseph Vidal-Rosset
, unfortunately, and Ivan has no time to adapt this tool to the last release of org-mode. That's too bad... Best wishes, Jo. Le mer. 29 juil. 2020 à 13:37, Eric S Fraga a écrit : > On Wednesday, 29 Jul 2020 at 12:01, Joseph Vidal-Rosset wrote: > > (replace-match "gnus:\\[Gma

org-mode 9.3 links gnus

2020-07-29 Thread Joseph Vidal-Rosset
Hello, With org-mode 9.3 I have not solved the problem of links for getting emails in the Archives messages ("Tous les messages"); The following function in my setup provide a link that fails. I quote it: ;; Merci à Bob Newell , avec ce code, le lien de l'email est modifié correctement

Re: Waiting for refresh to finish...

2020-07-27 Thread Joseph Vidal-Rosset
Le lun. 07/27/20 juil. 2020 à 08:28:03 , to...@tuxteam.de a envoyé ce message: > Try to remove that milkbox entry. > > Cheers > -- t > I dit it immediately and it works now ! Many thanks Tomas ! You really just helped me very efficiently ! Best wishes, -- Joseph

Re: Waiting for refresh to finish...

2020-07-27 Thread Joseph Vidal-Rosset
Hi again, Many thanks for your reply. Here are the details requested. Le lun. 07/27/20 juil. 2020 à 07:27:42 , to...@tuxteam.de a envoyé ce message: > On Mon, Jul 27, 2020 at 07:13:42PM +0200, Joseph Vidal-Rosset wrote: >> Thanks for your help, Tomas, here is the beginni

Re: Waiting for refresh to finish...

2020-07-27 Thread Joseph Vidal-Rosset
e-package use-package-ensure-system-package :ensure t) (setq package-enable-at-startup nil) ;; addendum from scimax (require 'package) (add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/;) t) (package-initialize) (when (not package-archive-contents) (package-refresh-contents)) -- Joseph

Waiting for refresh to finish...

2020-07-27 Thread Joseph Vidal-Rosset
Hello everybody, "Waiting for refresh to finish..." is the message that I get with U command after package-list-packages, but the refresh is never finished and I cannot upgrade the packages. Help is welcome. Best wishes, Jo.

Re: [PATCH] org-eldoc: Fix compatibility with Emacs 28

2020-07-17 Thread Joseph Mingrone
On Fri, 2020-07-17 at 01:41, Kyle Meyer wrote: > All right, thanks. Here's that in patch form. I briefly tested with > Emacs 26, 27, and 28, and things seemed to work fine (though I'm not an > org-eldoc user). > I'll plan to apply it in a day or two unless there are objections. So far so

Re: org-ref for html and blog ?

2020-06-09 Thread Joseph Vidal-Rosset
Le mar. 06/09/20 juin 2020 à 07:40:06 , András Simonyi a envoyé ce message: > Dear Joseph, > > strangely enough, using the same Emacs version with no customisations, > and only the packages you listed (and their dependencies) with exactly > the same version

Re: org-ref for html and blog ?

2020-06-09 Thread Joseph Vidal-Rosset
-pandoc 20180510.1338 installed org-ref20200606.1848 dependency citeproc-org 0.2.2 installed citeproc 20200305.2126 dependency Best wishes, Jo. Le lun. 8 juin 2020 à 14:13, András Simonyi a écrit : > > Hi Joseph, > > this is rather mysteri

Re: org-ref for html and blog ?

2020-06-07 Thread Joseph Vidal-Rosset
box/Orgzly/ieee-with-url.csl") The function (citeproc-org-setup) is the responsible of this new problem. Sorry Andras to bother you with this problem with your package. I hope that you will have a solution. Best wishes, Jo. Le dim. 7 juin 2020 à 15:12, Joseph Vidal-Rosset a écrit : > > Hi

org-ref for html and blog ?

2020-06-07 Thread Joseph Vidal-Rosset
Hi everybody, The package org-ref is a wonderful tool and I do not imagine working without its helps now (again many thanks to John Kitchin). But for some days now I meet a problem with bibliography html export with org-ref and I cannot no more use org-export-head that I used for my blog

Re: Inserting org-mode heading links the org-refile way

2020-05-04 Thread Joseph Vidal-Rosset
Le lun. 05/04/20 mai 2020à 03:11:57 , Ihor Radchenko a envoyé ce message: > Can you try the following simplified code? Hello, I confirm that the simplified code below does not break the code of my setup and that org-links for gnus work. Thanks ! > (defun

Re: Inserting org-mode heading links the org-refile way

2020-05-04 Thread Joseph Vidal-Rosset
Le lun. 05/04/20 mai 2020à 01:09:53 , Ihor Radchenko a envoyé ce message: > If I understand you correctly, the following code should achieve what > you want. The code reuses org-refile interface to complete id: links. > > (defun org-id-prompt-id () > "Prompt for the id

Re: how to get an org-link to open a program in eshell

2020-04-25 Thread Joseph Vidal-Rosset
ote in this bookmark file failed. Any suggestion is welcome, even if it is not a serious problem to open an org file first. It is just an elegance issue. Best wishes, and again, thanks, Jo. -- Joseph

  1   2   3   4   5   >