From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out2.suse.de (smtp-out2.suse.de [IPv6:2001:67c:2178:6::1d]) by sourceware.org (Postfix) with ESMTPS id 123F83858430 for ; Wed, 9 Nov 2022 20:53:38 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 123F83858430 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=suse.cz Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 5970C1FF46; Wed, 9 Nov 2022 20:53:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1668027216; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ADmVnqOqfZWhTgYtleJr85wdKFDLr8T9updBrlz3NMk=; b=0OyqdKDW4WMAuRPoUStQ7FqxGyT2W/gwirx27XVAfCsmi9OTwZG9Cga/TbDbZm1GG6mDec CG3CxkyGugX6qVuMt6b4J5QTpknYHi//29LHkZ7xtODGFXI4TiTey6kDReLV98VWJ/FZ9c kd1/zRRkDjaKsSrkOnpGZhN8ij6WSjk= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1668027216; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ADmVnqOqfZWhTgYtleJr85wdKFDLr8T9updBrlz3NMk=; b=KWE93pTI0g+OOMXdgmxW7vKDoOIlE3XXbElTMX9vCqu3FDePk2A/clfbG+nHYw8b/6slCB 1exojOyhxiEj0UDA== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 4992D1331F; Wed, 9 Nov 2022 20:53:36 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id zc4ZEVATbGPRdQAAMHmgww (envelope-from ); Wed, 09 Nov 2022 20:53:36 +0000 Message-ID: <91fd31da-1acd-7bca-ac49-f6f2abe48a49@suse.cz> Date: Wed, 9 Nov 2022 21:53:35 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.4.2 Subject: Re: [committed] wwwdocs: codingconventions: Properly link to flake8 Content-Language: en-US To: Gerald Pfeifer , gcc-patches@gcc.gnu.org References: <20221101120102.DDB8833E4C@hamza.pair.com> From: =?UTF-8?Q?Martin_Li=c5=a1ka?= In-Reply-To: <20221101120102.DDB8833E4C@hamza.pair.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-11.5 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,KAM_NUMSUBJECT,NICE_REPLY_A,SPF_HELO_NONE,SPF_SOFTFAIL,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On 11/1/22 13:01, Gerald Pfeifer wrote: > Nearly all hrefs= on our site are https:// or http://, and that's the case > pretty much across the web. Still the protocol needs to be provided for > links to work. Makes sense, thanks! Martin > > Pushed. > > Gerald > > > Web links need to be prefixed by https:// or http://. > --- > htdocs/codingconventions.html | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/htdocs/codingconventions.html b/htdocs/codingconventions.html > index f5e22983..348f1e1d 100644 > --- a/htdocs/codingconventions.html > +++ b/htdocs/codingconventions.html > @@ -1487,7 +1487,7 @@ Definitions within the body of a namespace are not indented. >

Python Language Conventions

> >

Python scripts should follow PEP 8 ??? Style Guide for Python Code > -which can be verified by the flake8 tool. > +which can be verified by the flake8 tool. > We recommend using the following flake8 plug-ins:

> >