diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-12-29 12:23:26 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-12-29 12:23:26 +0100 |
commit | 91172d8fe0562c16e5ab549cfc392aa68113ef25 (patch) | |
tree | 98eebece65ed467a68f2d0541c6a31536b0f35c8 | |
parent | 7c1b0273001ce886684090889ddcbc72e598de65 (diff) | |
download | guix-artwork-91172d8fe0562c16e5ab549cfc392aa68113ef25.tar guix-artwork-91172d8fe0562c16e5ab549cfc392aa68113ef25.tar.gz |
website: Allow the main video to be viewed via HTTPS.
* website/www.scm (%video-url): Remove "http:".
-rw-r--r-- | website/www.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/website/www.scm b/website/www.scm index dfb7367..cae813b 100644 --- a/website/www.scm +++ b/website/www.scm @@ -93,7 +93,9 @@ author content)))) (define %video-url - "http://audio-video.gnu.org/video/misc/2015-01__GNU_Guix__The_Emacs_of_Distros.webm") + ;; Note: No "http:" so that people viewing the parent page via HTTPS get + ;; the video via HTTPS as well (otherwise some browsers complain.) + "//audio-video.gnu.org/video/misc/2015-01__GNU_Guix__The_Emacs_of_Distros.webm") (define (sxml->string* tree) "Flatten tree by dismissing tags and attributes, and return the resulting |