From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 126561 invoked by alias); 24 Nov 2017 21:35:13 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 126465 invoked by uid 89); 24 Nov 2017 21:35:13 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00,KB_WAM_FROM_NAME_SINGLEWORD,SPF_HELO_PASS,SPF_PASS,T_RP_MATCHES_RCVD autolearn=no version=3.3.2 spammy=respects, onlinedocs, website, person X-HELO: smtp.polymtl.ca Received: from smtp.polymtl.ca (HELO smtp.polymtl.ca) (132.207.4.11) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 24 Nov 2017 21:35:11 +0000 Received: from simark.ca (simark.ca [158.69.221.121]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id vAOLZ4E4028055 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Fri, 24 Nov 2017 16:35:09 -0500 Received: by simark.ca (Postfix, from userid 112) id B99CE1E585; Fri, 24 Nov 2017 16:35:04 -0500 (EST) Received: from simark.ca (localhost [127.0.0.1]) by simark.ca (Postfix) with ESMTP id 58BA31E030; Fri, 24 Nov 2017 16:34:44 -0500 (EST) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Fri, 24 Nov 2017 21:35:00 -0000 From: Simon Marchi To: Joel Brobecker Cc: Simon Marchi , gdb-patches@sourceware.org Subject: Re: [PATCH 1/2] Fix issues with gdb-memory-map.dtd In-Reply-To: <20171124213020.kskjia7qr55473zf@adacore.com> References: <1510269503-12483-1-git-send-email-simon.marchi@ericsson.com> <20171124213020.kskjia7qr55473zf@adacore.com> Message-ID: <8f8c59499450f4d4972530cd5c0e070a@polymtl.ca> X-Sender: simon.marchi@polymtl.ca User-Agent: Roundcube Webmail/1.3.2 X-Poly-FromMTA: (simark.ca [158.69.221.121]) at Fri, 24 Nov 2017 21:35:04 +0000 X-IsSubscribed: yes X-SW-Source: 2017-11/txt/msg00629.txt.bz2 On 2017-11-24 16:30, Joel Brobecker wrote: >> You are probably the person that has the most chance to know how to >> update this file: >> >> http://sourceware.org/gdb/gdb-memory-map.dtd >> >> Any idea? > > I can absolutely do that. But I'm wondering whether we might > just want to delete the file instead? Why keep a copy on > the website? I couldn't find a reference to it anywhere > in any of the webpages... The XML files that follow this dtd can point to it. For example, look at the example in the doc: https://sourceware.org/gdb/onlinedocs/gdb/Memory-Map-Format.html This allows a tool to validate that the XML respects the dtd, and XML editors can provide assistance when hand-writing it, giving auto-complete based on the possible options. Simon