GNU bug report logs - #26054
[PATCH] website: Use 'https' instead of 'http' links for 'alpha.gnu.org'.

Previous Next

Package: guix-patches;

Reported by: Alex Vong <alexvong1995 <at> gmail.com>

Date: Sat, 11 Mar 2017 09:24:02 UTC

Severity: normal

Tags: patch

Done: ludo <at> gnu.org (Ludovic Courtès)

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 26054 in the body.
You can then email your comments to 26054 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#26054; Package guix-patches. (Sat, 11 Mar 2017 09:24:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Alex Vong <alexvong1995 <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 11 Mar 2017 09:24:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Alex Vong <alexvong1995 <at> gmail.com>
To: guix-patches <at> gnu.org
Subject: [PATCH] website: Use 'https' instead of 'http' links for
 'alpha.gnu.org'.
Date: Sat, 11 Mar 2017 17:22:53 +0800
[Message part 1 (text/plain, inline)]
Hello,

This patch is a follow-up of ng0's patch, which changes the 'http' link
in the bottom the download page to use 'https'.

[0001-website-Use-https-instead-of-http-links-for-alpha.gn.patch (text/x-diff, inline)]
From 8968c983a20a5dc5ba5222574ec201412b8eb4ee Mon Sep 17 00:00:00 2001
From: Alex Vong <alexvong1995 <at> gmail.com>
Date: Sat, 11 Mar 2017 17:15:15 +0800
Subject: [PATCH] website: Use 'https' instead of 'http' links for
 'alpha.gnu.org'.

* website/www/download.scm (download-page): Replace 'http' with
'https'.
---
 website/www/download.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/website/www/download.scm b/website/www/download.scm
index 887c6db..6baaf40 100644
--- a/website/www/download.scm
+++ b/website/www/download.scm
@@ -2,6 +2,7 @@
 ;;; Copyright © 2015, 2016 Ludovic Courtès <ludo <at> gnu.org>
 ;;; Copyright © 2015 Mathieu Lirzin <mthl <at> openmailbox.org>
 ;;; Copyright © 2017 ng0 <contact.ng0 <at> cryptolab.net>
+;;; Copyright © 2017 Alex Vong <alexvong1995 <at> gmail.com>
 ;;; Initially written by Luis Felipe López Acevedo <felipe.lopez <at> openmailbox.org>
 ;;; who waives all copyright interest on this file.
 ;;;
@@ -156,9 +157,9 @@ Linux-based system.")
 installation images as well as GNU Guix can be found on the GNU ftp server for "
 		   (em "alpha")
 		   " releases: "
-		   (a (@ (href "http://alpha.gnu.org/gnu/guix/"))
-		      "http://alpha.gnu.org/gnu/guix/")
-		   " (via HTTP) and "
+		   (a (@ (href "https://alpha.gnu.org/gnu/guix/"))
+		      "https://alpha.gnu.org/gnu/guix/")
+		   " (via HTTPS) and "
 		   (a (@ (href "ftp://alpha.gnu.org/gnu/guix/"))
 		      "ftp://alpha.gnu.org/gnu/guix/")
 		   " (via FTP). ")))
-- 
2.12.0

[Message part 3 (text/plain, inline)]
Cheers,
Alex
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#26054; Package guix-patches. (Sat, 11 Mar 2017 11:04:01 GMT) Full text and rfc822 format available.

Message #8 received at 26054 <at> debbugs.gnu.org (full text, mbox):

From: ng0 <contact.ng0 <at> cryptolab.net>
To: Alex Vong <alexvong1995 <at> gmail.com>
Cc: 26054 <at> debbugs.gnu.org
Subject: Re: bug#26054: [PATCH] website: Use 'https' instead of 'http' links
 for 'alpha.gnu.org'.
Date: Sat, 11 Mar 2017 12:12:15 +0000
Alex Vong transcribed 2.9K bytes:
> Hello,
> 
> This patch is a follow-up of ng0's patch, which changes the 'http' link
> in the bottom the download page to use 'https'.
> 

I wonder about ftp. I have run an rsync server before, but I don't know
if it can be used selective enough to just link to the latest file with
rsync. Or provide a line for rsync for those who want to mirror the
"gnu/guix/" directory on alpha.gnu.org.
Maybe as an addition to the patch below, which itself looks good to me.

> From 8968c983a20a5dc5ba5222574ec201412b8eb4ee Mon Sep 17 00:00:00 2001
> From: Alex Vong <alexvong1995 <at> gmail.com>
> Date: Sat, 11 Mar 2017 17:15:15 +0800
> Subject: [PATCH] website: Use 'https' instead of 'http' links for
>  'alpha.gnu.org'.
> 
> * website/www/download.scm (download-page): Replace 'http' with
> 'https'.
> ---
>  website/www/download.scm | 7 ++++---
>  1 file changed, 4 insertions(+), 3 deletions(-)
> 
> diff --git a/website/www/download.scm b/website/www/download.scm
> index 887c6db..6baaf40 100644
> --- a/website/www/download.scm
> +++ b/website/www/download.scm
> @@ -2,6 +2,7 @@
>  ;;; Copyright © 2015, 2016 Ludovic Courtès <ludo <at> gnu.org>
>  ;;; Copyright © 2015 Mathieu Lirzin <mthl <at> openmailbox.org>
>  ;;; Copyright © 2017 ng0 <contact.ng0 <at> cryptolab.net>
> +;;; Copyright © 2017 Alex Vong <alexvong1995 <at> gmail.com>
>  ;;; Initially written by Luis Felipe López Acevedo <felipe.lopez <at> openmailbox.org>
>  ;;; who waives all copyright interest on this file.
>  ;;;
> @@ -156,9 +157,9 @@ Linux-based system.")
>  installation images as well as GNU Guix can be found on the GNU ftp server for "
>  		   (em "alpha")
>  		   " releases: "
> -		   (a (@ (href "http://alpha.gnu.org/gnu/guix/"))
> -		      "http://alpha.gnu.org/gnu/guix/")
> -		   " (via HTTP) and "
> +		   (a (@ (href "https://alpha.gnu.org/gnu/guix/"))
> +		      "https://alpha.gnu.org/gnu/guix/")
> +		   " (via HTTPS) and "
>  		   (a (@ (href "ftp://alpha.gnu.org/gnu/guix/"))
>  		      "ftp://alpha.gnu.org/gnu/guix/")
>  		   " (via FTP). ")))
> -- 
> 2.12.0
> 

> 
> Cheers,
> Alex







Information forwarded to guix-patches <at> gnu.org:
bug#26054; Package guix-patches. (Sun, 12 Mar 2017 13:31:01 GMT) Full text and rfc822 format available.

Message #11 received at 26054 <at> debbugs.gnu.org (full text, mbox):

From: Alex Vong <alexvong1995 <at> gmail.com>
To: 26054 <at> debbugs.gnu.org
Subject: Re: bug#26054: [PATCH] website: Use 'https' instead of 'http' links
 for 'alpha.gnu.org'.
Date: Sun, 12 Mar 2017 21:29:56 +0800
[Message part 1 (text/plain, inline)]
ng0 <contact.ng0 <at> cryptolab.net> writes:

> Alex Vong transcribed 2.9K bytes:
>> Hello,
>> 
>> This patch is a follow-up of ng0's patch, which changes the 'http' link
>> in the bottom the download page to use 'https'.
>> 
>
> I wonder about ftp. I have run an rsync server before, but I don't know
> if it can be used selective enough to just link to the latest file with
> rsync. Or provide a line for rsync for those who want to mirror the
> "gnu/guix/" directory on alpha.gnu.org.
> Maybe as an addition to the patch below, which itself looks good to me.
>
Hmmm, I neither know about ftp nor rsync server. I am a complete noob in
networking...

>> From 8968c983a20a5dc5ba5222574ec201412b8eb4ee Mon Sep 17 00:00:00 2001
>> From: Alex Vong <alexvong1995 <at> gmail.com>
>> Date: Sat, 11 Mar 2017 17:15:15 +0800
>> Subject: [PATCH] website: Use 'https' instead of 'http' links for
>>  'alpha.gnu.org'.
>> 
>> * website/www/download.scm (download-page): Replace 'http' with
>> 'https'.
>> ---
>>  website/www/download.scm | 7 ++++---
>>  1 file changed, 4 insertions(+), 3 deletions(-)
>> 
>> diff --git a/website/www/download.scm b/website/www/download.scm
>> index 887c6db..6baaf40 100644
>> --- a/website/www/download.scm
>> +++ b/website/www/download.scm
>> @@ -2,6 +2,7 @@
>>  ;;; Copyright © 2015, 2016 Ludovic Courtès <ludo <at> gnu.org>
>>  ;;; Copyright © 2015 Mathieu Lirzin <mthl <at> openmailbox.org>
>>  ;;; Copyright © 2017 ng0 <contact.ng0 <at> cryptolab.net>
>> +;;; Copyright © 2017 Alex Vong <alexvong1995 <at> gmail.com>
>>  ;;; Initially written by Luis Felipe López Acevedo <felipe.lopez <at> openmailbox.org>
>>  ;;; who waives all copyright interest on this file.
>>  ;;;
>> @@ -156,9 +157,9 @@ Linux-based system.")
>>  installation images as well as GNU Guix can be found on the GNU ftp server for "
>>  		   (em "alpha")
>>  		   " releases: "
>> -		   (a (@ (href "http://alpha.gnu.org/gnu/guix/"))
>> -		      "http://alpha.gnu.org/gnu/guix/")
>> -		   " (via HTTP) and "
>> +		   (a (@ (href "https://alpha.gnu.org/gnu/guix/"))
>> +		      "https://alpha.gnu.org/gnu/guix/")
>> +		   " (via HTTPS) and "
>>  		   (a (@ (href "ftp://alpha.gnu.org/gnu/guix/"))
>>  		      "ftp://alpha.gnu.org/gnu/guix/")
>>  		   " (via FTP). ")))
>> -- 
>> 2.12.0
>> 
>
>> 
>> Cheers,
>> Alex
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#26054; Package guix-patches. (Sun, 23 Apr 2017 19:40:01 GMT) Full text and rfc822 format available.

Message #14 received at 26054 <at> debbugs.gnu.org (full text, mbox):

From: ng0 <ng0 <at> pragmatique.xyz>
To: Alex Vong <alexvong1995 <at> gmail.com>
Cc: 26054 <at> debbugs.gnu.org
Subject: Re: bug#26054: [PATCH] website: Use 'https' instead of 'http' links
 for 'alpha.gnu.org'.
Date: Sun, 23 Apr 2017 19:39:36 +0000
Hi, has this already been applied? The bug is still open.

Alex Vong transcribed 3.3K bytes:
> ng0 <contact.ng0 <at> cryptolab.net> writes:
> 
> > Alex Vong transcribed 2.9K bytes:
> >> Hello,
> >> 
> >> This patch is a follow-up of ng0's patch, which changes the 'http' link
> >> in the bottom the download page to use 'https'.
> >> 
> >
> > I wonder about ftp. I have run an rsync server before, but I don't know
> > if it can be used selective enough to just link to the latest file with
> > rsync. Or provide a line for rsync for those who want to mirror the
> > "gnu/guix/" directory on alpha.gnu.org.
> > Maybe as an addition to the patch below, which itself looks good to me.
> >
> Hmmm, I neither know about ftp nor rsync server. I am a complete noob in
> networking...
> 
> >> From 8968c983a20a5dc5ba5222574ec201412b8eb4ee Mon Sep 17 00:00:00 2001
> >> From: Alex Vong <alexvong1995 <at> gmail.com>
> >> Date: Sat, 11 Mar 2017 17:15:15 +0800
> >> Subject: [PATCH] website: Use 'https' instead of 'http' links for
> >>  'alpha.gnu.org'.
> >> 
> >> * website/www/download.scm (download-page): Replace 'http' with
> >> 'https'.
> >> ---
> >>  website/www/download.scm | 7 ++++---
> >>  1 file changed, 4 insertions(+), 3 deletions(-)
> >> 
> >> diff --git a/website/www/download.scm b/website/www/download.scm
> >> index 887c6db..6baaf40 100644
> >> --- a/website/www/download.scm
> >> +++ b/website/www/download.scm
> >> @@ -2,6 +2,7 @@
> >>  ;;; Copyright © 2015, 2016 Ludovic Courtès <ludo <at> gnu.org>
> >>  ;;; Copyright © 2015 Mathieu Lirzin <mthl <at> openmailbox.org>
> >>  ;;; Copyright © 2017 ng0 <contact.ng0 <at> cryptolab.net>
> >> +;;; Copyright © 2017 Alex Vong <alexvong1995 <at> gmail.com>
> >>  ;;; Initially written by Luis Felipe López Acevedo <felipe.lopez <at> openmailbox.org>
> >>  ;;; who waives all copyright interest on this file.
> >>  ;;;
> >> @@ -156,9 +157,9 @@ Linux-based system.")
> >>  installation images as well as GNU Guix can be found on the GNU ftp server for "
> >>  		   (em "alpha")
> >>  		   " releases: "
> >> -		   (a (@ (href "http://alpha.gnu.org/gnu/guix/"))
> >> -		      "http://alpha.gnu.org/gnu/guix/")
> >> -		   " (via HTTP) and "
> >> +		   (a (@ (href "https://alpha.gnu.org/gnu/guix/"))
> >> +		      "https://alpha.gnu.org/gnu/guix/")
> >> +		   " (via HTTPS) and "
> >>  		   (a (@ (href "ftp://alpha.gnu.org/gnu/guix/"))
> >>  		      "ftp://alpha.gnu.org/gnu/guix/")
> >>  		   " (via FTP). ")))
> >> -- 
> >> 2.12.0
> >> 
> >
> >> 
> >> Cheers,
> >> Alex



-- 
PGP and more: https://people.pragmatique.xyz/ng0/




Reply sent to ludo <at> gnu.org (Ludovic Courtès):
You have taken responsibility. (Fri, 02 Jun 2017 16:27:01 GMT) Full text and rfc822 format available.

Notification sent to Alex Vong <alexvong1995 <at> gmail.com>:
bug acknowledged by developer. (Fri, 02 Jun 2017 16:27:02 GMT) Full text and rfc822 format available.

Message #19 received at 26054-done <at> debbugs.gnu.org (full text, mbox):

From: ludo <at> gnu.org (Ludovic Courtès)
To: Alex Vong <alexvong1995 <at> gmail.com>
Cc: 26054-done <at> debbugs.gnu.org
Subject: Re: bug#26054: [PATCH] website: Use 'https' instead of 'http' links
 for 'alpha.gnu.org'.
Date: Fri, 02 Jun 2017 18:26:15 +0200
Hi Alex,

Alex Vong <alexvong1995 <at> gmail.com> skribis:

> From 8968c983a20a5dc5ba5222574ec201412b8eb4ee Mon Sep 17 00:00:00 2001
> From: Alex Vong <alexvong1995 <at> gmail.com>
> Date: Sat, 11 Mar 2017 17:15:15 +0800
> Subject: [PATCH] website: Use 'https' instead of 'http' links for
>  'alpha.gnu.org'.
>
> * website/www/download.scm (download-page): Replace 'http' with
> 'https'.

Finally applied, thanks!

Ludo'.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 01 Jul 2017 11:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 6 years and 299 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.