From 30ee7299539a0365812969bb7085bb6f09253570 Mon Sep 17 00:00:00 2001 From: Noel Date: Thu, 31 May 2018 14:49:16 +1200 Subject: [PATCH 1/2] Update contact for OpenCMISS project --- content/pages/about-this-website.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/pages/about-this-website.rst b/content/pages/about-this-website.rst index b144266..6354368 100644 --- a/content/pages/about-this-website.rst +++ b/content/pages/about-this-website.rst @@ -6,7 +6,7 @@ This OpenCMISS website is a Free Software project, part of OpenCMISS's documenta This website is the new website for OpenCMISS software. Content is still being migrated from `cmiss.org `_, `physiomeproject.org `_ and other sites. -Contact `Noel Zeng `_, a developer and maintainer of this website if you have any suggestions, questions or praise about the website. If you have questions about OpenCMISS software projects, please take a look at the `Community page `_. +Contact `the OpenCMISS website team `_ if you have any suggestions, questions or praise about the website. If you have questions about OpenCMISS software projects, please take a look at the `Community page `_. Credit for Artworks From d8965cc8ca1777347d2f78c987a5f67aad6c2801 Mon Sep 17 00:00:00 2001 From: Tommy Yu Date: Wed, 24 May 2023 13:12:21 +1200 Subject: [PATCH 2/2] Correct https detection for Google CSE --- app/scripts/search.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scripts/search.js b/app/scripts/search.js index 97cd169..d214308 100644 --- a/app/scripts/search.js +++ b/app/scripts/search.js @@ -31,7 +31,7 @@ var cx = '008007135417019367495:caxgodc2wem'; var gcse = document.createElement('script'); gcse.type = 'text/javascript'; gcse.async = true; - gcse.src = (document.location.protocol == 'https' ? 'https:' : 'http:') + + gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//cse.google.com/cse.js?cx=' + cx; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gcse, s);