From mboxrd@z Thu Jan 1 00:00:00 1970 From: Josiah Schwab Subject: Re: Bug: org-link-abbrev-alist: "ads" example soon to be outdated. [9.1.9 (release_9.1.9-65-g5e4542 @ /usr/share/emacs/26.2/lisp/org/)] Date: Fri, 10 May 2019 08:27:27 -0700 Message-ID: <87mujue3ds.fsf@gmail.com> References: <87h8a2myme.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([209.51.188.92]:58080) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hP7Qs-0006ZM-Ci for emacs-orgmode@gnu.org; Fri, 10 May 2019 11:27:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hP7Qr-0006LC-DW for emacs-orgmode@gnu.org; Fri, 10 May 2019 11:27:34 -0400 Received: from mail-pf1-x42e.google.com ([2607:f8b0:4864:20::42e]:42538) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hP7Qr-0006KD-6N for emacs-orgmode@gnu.org; Fri, 10 May 2019 11:27:33 -0400 Received: by mail-pf1-x42e.google.com with SMTP id 13so3411053pfw.9 for ; Fri, 10 May 2019 08:27:32 -0700 (PDT) Received: from localhost ([2601:646:8180:bd23:6fc3:393a:7eeb:9de5]) by smtp.gmail.com with ESMTPSA id e8sm11268848pfc.47.2019.05.10.08.27.29 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 10 May 2019 08:27:29 -0700 (PDT) In-reply-to: <87h8a2myme.fsf@gmail.com> 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: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain > The "ads" example in "Link abbreviations" will soon become outdated. > http://adsabs.harvard.edu states: > "ADS Classic will be deprecated in May 2019 and retired in October > 2019. Please redirect your searches to the new ADS modern form or the > classic form. More info can be found on our blog." The attached patch should change the example to work with the new ADS. Josiah --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-org-manual-Update-ADS-link-abbreviation-example.patch >From fa9508954d8a4e2b4bafe8d59723df081e00b44c Mon Sep 17 00:00:00 2001 From: Josiah Schwab Date: Fri, 10 May 2019 08:12:39 -0700 Subject: [PATCH] org-manual: Update ADS link abbreviation example * doc/org-manual.org (Link Abbreviations): Change URL. Reported-by: Alain Kalker TINYCHANGE --- doc/org-manual.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/org-manual.org b/doc/org-manual.org index 73c778753..15483490b 100644 --- a/doc/org-manual.org +++ b/doc/org-manual.org @@ -3494,7 +3494,7 @@ replacement text. Here is an example: ("google" . "http://www.google.com/search?q=") ("gmap" . "http://maps.google.com/maps?q=%s") ("omap" . "http://nominatim.openstreetmap.org/search?q=%s&polygon=1") - ("ads" . "http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?author=%s&db_key=AST"))) + ("ads" . "https://ui.adsabs.harvard.edu/search/q=%20author%3A\"%s\""))) #+end_src If the replacement text contains the string =%s=, it is replaced with -- 2.21.0 --=-=-=--