From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tim Landscheidt Subject: Re: Bug: Broken orgmode.org links in doc/misc/org.texi and lisp/org Date: Mon, 05 Feb 2018 14:11:32 +0000 Message-ID: <87wozredbf.fsf@passepartout.tim-landscheidt.de> References: <87fu7hlr4x.fsf@passepartout.tim-landscheidt.de> <871siplgkz.fsf@passepartout.tim-landscheidt.de> <87efmorwwk.fsf@nicolasgoaziou.fr> <87zi5avgd1.fsf@passepartout.tim-landscheidt.de> <87h8rhpxbp.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59246) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eihUl-00062n-Ul for emacs-orgmode@gnu.org; Mon, 05 Feb 2018 09:11:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eihUi-0003vK-Mr for emacs-orgmode@gnu.org; Mon, 05 Feb 2018 09:11:43 -0500 Received: from mezzogiorno.tim-landscheidt.de ([2a01:4f8:d15:2286::2]:57171) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eihUi-0003rl-E2 for emacs-orgmode@gnu.org; Mon, 05 Feb 2018 09:11:40 -0500 In-Reply-To: <87h8rhpxbp.fsf@nicolasgoaziou.fr> (Nicolas Goaziou's message of "Fri, 19 Jan 2018 18:34:02 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Nicolas Goaziou Cc: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Nicolas Goaziou wrote: >> [=E2=80=A6] >> Patch #2 makes some links to the manual and external URLs in >> docstrings clickable. >> [=E2=80=A6] > Applied. Thank you. > [=E2=80=A6] I think you missed patch #2; I have attached it again re- based on current maint (I removed TINYCHANGE because I have signed papers for Emacs since then). Tim --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-Make-manual-and-URL-links-in-docstrings-clickable.patch Content-Description: Make manual and URL links in docstrings clickable. >From 14fa16af86dfc21e77698a36c76a4e6ac017cd49 Mon Sep 17 00:00:00 2001 From: Tim Landscheidt Date: Tue, 16 Jan 2018 16:46:46 +0000 Subject: [PATCH] Make manual and URL links in docstrings clickable --- lisp/org-table.el | 2 +- lisp/ox-latex.el | 5 ++--- testing/lisp/test-org-table.el | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/lisp/org-table.el b/lisp/org-table.el index 159a4fb5c..11d42d3cb 100644 --- a/lisp/org-table.el +++ b/lisp/org-table.el @@ -135,7 +135,7 @@ the fixed string \"#+ORGTBL: SEND\", followed by instruction on how to convert the table into a data structure useful in the language of the buffer. Check the manual for the section on \"Translator functions\", and more generally check out -https://orgmode.org/manual/Tables-in-arbitrary-syntax.html#Tables-in-arbitrary-syntax +the Info node `(org)Tables in arbitrary syntax'. All occurrences of %n in a template will be replaced with the name of the table, obtained by prompting the user." diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el index b3fbf8e95..e612b32ca 100644 --- a/lisp/ox-latex.el +++ b/lisp/ox-latex.el @@ -920,15 +920,14 @@ using customize, or with (add-to-list \\='org-latex-packages-alist \\='(\"newfloat\" \"minted\")) In addition, it is necessary to install pygments -\(http://pygments.org), and to configure the variable +\(URL `http://pygments.org>'), and to configure the variable `org-latex-pdf-process' so that the -shell-escape option is passed to pdflatex. The minted choice has possible repercussions on the preview of latex fragments (see `org-preview-latex-fragment'). If you run into previewing problems, please consult - - https://orgmode.org/worg/org-tutorials/org-latex-preview.html" +URL `https://orgmode.org/worg/org-tutorials/org-latex-preview.html'." :group 'org-export-latex :type '(choice (const :tag "Use listings" t) diff --git a/testing/lisp/test-org-table.el b/testing/lisp/test-org-table.el index ea72ae53f..31f10f6f2 100644 --- a/testing/lisp/test-org-table.el +++ b/testing/lisp/test-org-table.el @@ -710,7 +710,7 @@ formatter \"%.1f\"." (ert-deftest test-org-table/org-lookup-all () "Use `org-lookup-all' for several GROUP BY as in SQL and for ranking. -See also http://orgmode.org/worg/org-tutorials/org-lookups.html ." +See also URL `https://orgmode.org/worg/org-tutorials/org-lookups.html'." (let ((data " #+NAME: data | Purchase | Product | Shop | Rating | -- 2.13.6 --=-=-=--