From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 125217 invoked by alias); 5 Sep 2019 07:45:57 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 125201 invoked by uid 89); 5 Sep 2019 07:45:57 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-16.4 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,KAM_SHORT,SPF_HELO_PASS autolearn=ham version=3.3.1 spammy=UD:www.w3.org, wwww3org, UD:w3.org, www.w3.org X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 05 Sep 2019 07:45:56 +0000 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 07117300BEA4; Thu, 5 Sep 2019 07:45:54 +0000 (UTC) Received: from localhost (unknown [10.33.36.20]) by smtp.corp.redhat.com (Postfix) with ESMTP id 448901000321; Thu, 5 Sep 2019 07:45:51 +0000 (UTC) Date: Thu, 05 Sep 2019 07:45:00 -0000 From: Jonathan Wakely To: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Cc: Marek Polacek , Gerald Pfeifer Subject: [PATCH] Remove broken URL from libstdc++ manual Message-ID: <20190905074550.GA8816@redhat.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="jRHKVT23PllUwdXP" Content-Disposition: inline X-Clacks-Overhead: GNU Terry Pratchett User-Agent: Mutt/1.12.0 (2019-05-25) X-SW-Source: 2019-09/txt/msg00242.txt.bz2 --jRHKVT23PllUwdXP Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline Content-length: 653 The URL for the "What Are Allocators Good For?" article has been a recurring source of problems. It moved from the C/C++ Users Journal website to the Dr Dobbs site after CUJ shut down, and the original domain changed hands, leaving old links pointing to nefarious sites. Now the URL to the copy on drdobbs.com no longer works either and I can't find a (legal) copy of the article online. The simplest solution is to remove the URL. * doc/xml/manual/allocator.xml: Remove URL for bibliography entry. * doc/html/*: Regenerate. Committed to trunk. I think I'll backport this too, so we don't keep a non-working link in the docs on release branches. --jRHKVT23PllUwdXP Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="patch.txt" Content-length: 1609 commit 45a605e970ea6db474e40c02aef6b18993fea05c Author: Jonathan Wakely Date: Thu Sep 5 08:40:35 2019 +0100 Remove broken URL from libstdc++ manual The URL for the "What Are Allocators Good For?" article has been a recurring source of problems. It moved from the C/C++ Users Journal website to the Dr Dobbs site after CUJ shut down, and the original domain changed hands, leaving old links pointing to nefarious sites. Now the URL to the copy on drdobbs.com no longer works either and I can't find a (legal) copy of the article online. The simplest solution is to remove the URL. * doc/xml/manual/allocator.xml: Remove URL for bibliography entry. * doc/html/*: Regenerate. diff --git a/libstdc++-v3/doc/xml/manual/allocator.xml b/libstdc++-v3/doc/xml/manual/allocator.xml index 0de1be9465a..922bc49091c 100644 --- a/libstdc++-v3/doc/xml/manual/allocator.xml +++ b/libstdc++-v3/doc/xml/manual/allocator.xml @@ -482,12 +482,9 @@ - - <link xmlns:xlink="http://www.w3.org/1999/xlink" - xlink:href="http://www.drdobbs.com/the-standard-librarian-what-are-allocato/184403759"> + <title> The Standard Librarian: What Are Allocators Good For? - </link> - + MattAustern @@ -495,6 +492,7 @@ C/C++ Users Journal + 2000-12 --jRHKVT23PllUwdXP--