[committed] wwwdocs: codingconventions: Properly link to flake8

Message ID 20221101120102.DDB8833E4C@hamza.pair.com
State Committed
Headers
Series [committed] wwwdocs: codingconventions: Properly link to flake8 |

Commit Message

Gerald Pfeifer Nov. 1, 2022, 12:01 p.m. UTC
  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.

Pushed.

Gerald


Web links need to be prefixed by https:// or http://.
---
 htdocs/codingconventions.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Martin Liška Nov. 9, 2022, 8:53 p.m. UTC | #1
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.
>  <h2 id="python">Python Language Conventions</h2>
>  
>  <p>Python scripts should follow <a href="https://peps.python.org/pep-0008/">PEP 8 ??? Style Guide for Python Code</a>
> -which can be verified by the <a href="flake8.pycqa.org">flake8</a> tool.
> +which can be verified by the <a href="https://flake8.pycqa.org">flake8</a> tool.
>  We recommend using the following <code>flake8</code> plug-ins:</p>
>  
>  <ul>
  

Patch

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.
 <h2 id="python">Python Language Conventions</h2>
 
 <p>Python scripts should follow <a href="https://peps.python.org/pep-0008/">PEP 8 ??? Style Guide for Python Code</a>
-which can be verified by the <a href="flake8.pycqa.org">flake8</a> tool.
+which can be verified by the <a href="https://flake8.pycqa.org">flake8</a> tool.
 We recommend using the following <code>flake8</code> plug-ins:</p>
 
 <ul>