Update all links in php & html to https://

Change-Id: Idf7566e74752d843bb8b6f58050db3cfbd81e6fa
Signed-off-by: Jonah Graham <jonah@kichwacoders.com>
diff --git a/_projectCommon.php b/_projectCommon.php
index 454abfb..3f015dd 100644
--- a/_projectCommon.php
+++ b/_projectCommon.php
@@ -5,20 +5,20 @@
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * https://www.eclipse.org/legal/epl-v10.html
  *
  * Contributors:
  *    
  *******************************************************************************/
 
 	# Set the theme for your project's web pages.
-	# See http://eclipse.org/phoenix/
+	# See https://eclipse.org/phoenix/
 	$theme = NULL;
 	
 
 	# Define your project-wide Navigation here
 	# This appears on the left of the page if you define a left nav
-	# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
+	# Format is Link text, link URL (can be https://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
 	# these are optional
 	
 	# If you want to override the eclipse.org navigation, uncomment below.
@@ -45,7 +45,7 @@
 	$Menu->addMenuItem("Documentation", "/cdt/documentation.php", "_self");
 	$Menu->addMenuItem("Support", "/cdt/support.php", "_self");
 	$Menu->addMenuItem("Developers", "/cdt/developers.php", "_self");
-    $Menu->addMenuItem("About", "http://www.eclipse.org/projects/project_summary.php?projectid=tools.cdt", "_self");
+    $Menu->addMenuItem("About", "https://www.eclipse.org/projects/project_summary.php?projectid=tools.cdt", "_self");
 	
 	# To define additional CSS or other pre-body headers
 	# $App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/cdt/style.css"/>');
diff --git a/developers.php b/developers.php
index 478a193..0e056ea 100644
--- a/developers.php
+++ b/developers.php
@@ -4,7 +4,7 @@
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * https://www.eclipse.org/legal/epl-v10.html
  *
  * Contributors:
  *    
@@ -17,28 +17,28 @@
 <h2>$pageTitle</h2>
 <ul>
 <li>
-	<a href="http://wiki.eclipse.org/Getting_started_with_CDT_development">
+	<a href="https://wiki.eclipse.org/Getting_started_with_CDT_development">
 	Getting started with CDT Development</a>
 </li>
 <li>
-    <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git">Browse the Git repository</a><br>
+    <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git">Browse the Git repository</a><br>
 </li>
 <li>
-	<a href="http://www.eclipse.org/cdt/downloads.php#DevelopmentBuilds">
+	<a href="https://www.eclipse.org/cdt/downloads.php#DevelopmentBuilds">
 	Download CDT Development Builds</a><br>Be a beta tester for newest CDT release
 </li>
 <li>
-	<a href="http://wiki.eclipse.org/CDT/Developer/FAQ">CDT Developers FAQ</a>
+	<a href="https://wiki.eclipse.org/CDT/Developer/FAQ">CDT Developers FAQ</a>
 </li>
 <li>
-    <a href="http://wiki.eclipse.org/CDT">Wiki</a><br>Source of all knowledge
+    <a href="https://wiki.eclipse.org/CDT">Wiki</a><br>Source of all knowledge
 </li>
 <li>
     <a href="https://dev.eclipse.org/mailman/listinfo/cdt-dev">
     CDT Developers Mailing List</a><br>
 	Mailing list for CDT Developers.
 	If you are CDT user please post to
-	<a href="http://www.eclipse.org/newsportal/thread.php?group=eclipse.tools.cdt">
+	<a href="https://www.eclipse.org/newsportal/thread.php?group=eclipse.tools.cdt">
 	CDT Newsgroup</a> instead.
 </li> 
 <li>
@@ -46,11 +46,11 @@
    	Bugzilla</a><br>Search for CDT bugs.
 </li> 
 <li>
-	<a href="http://www.ibm.com/developerworks/opensource/library/os-ecl-cdt1/index.html?S_TACT=105AGX44&S_CMP=EDU">
+	<a href="https://www.ibm.com/developerworks/opensource/library/os-ecl-cdt1/index.html?S_TACT=105AGX44&S_CMP=EDU">
 	Building a CDT-based editor</a><br>Five part article series on IBM developerWorks.
 </li>
 <li>
-	<a href="http://wiki.eclipse.org/CDT/designs/StaticAnalysis">
+	<a href="https://wiki.eclipse.org/CDT/designs/StaticAnalysis">
 	Static Analysis in CDT</a><br>Proposal for CDT Static Analysis Framework
 </li>
 </ul>
diff --git a/doc/overview/index.html b/doc/overview/index.html
index f04539f..2f8b620 100644
--- a/doc/overview/index.html
+++ b/doc/overview/index.html
@@ -497,9 +497,9 @@
 						<p class="fragment">Support for different testing frameworks directly in CDT</p>
 						<br>
 						<ul>
-							<li class="fragment"><a href="http://www.boost.org/doc/libs/1_46_1/libs/test/doc/html/index.html">Boost.Test</a></li>
-							<li class="fragment"><a href="http://doc.qt.nokia.com/solutions/4/qttestlib">Qt Test</a></li>
-							<li class="fragment"><a href="http://code.google.com/p/googletest/">Google Testing Framework</a></li>
+							<li class="fragment"><a href="https://www.boost.org/doc/libs/1_46_1/libs/test/doc/html/index.html">Boost.Test</a></li>
+							<li class="fragment"><a href="https://doc.qt.nokia.com/solutions/4/qttestlib">Qt Test</a></li>
+							<li class="fragment"><a href="https://code.google.com/p/googletest/">Google Testing Framework</a></li>
 						</ul>
 					</section>
 					<section>
diff --git a/documentation.php b/documentation.php
index bc8da1a..0f28b3d 100644
--- a/documentation.php
+++ b/documentation.php
@@ -4,7 +4,7 @@
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * https://www.eclipse.org/legal/epl-v10.html
  *
  * Contributors:
  *    
@@ -25,58 +25,58 @@
 	Given by Doug Schaefer and Marc Khouzam at EclipseCon 2013.
 </li>
 <li>
-	<a href="http://www.ibm.com/developerworks/opensource/library/os-eclipse-stlcdt/">
+	<a href="https://www.ibm.com/developerworks/opensource/library/os-eclipse-stlcdt/">
 	Developing applications using the Eclipse C/C++ Development Toolkit </a><br>
 	IBM developerWorks article.
 </li>
 <li>
-	<a href=" http://www.ibm.com/developerworks/opensource/library/os-ecc/?S_TACT=105AGX44&S_CMP=ART">
+	<a href=" https://www.ibm.com/developerworks/opensource/library/os-ecc/?S_TACT=105AGX44&S_CMP=ART">
 	C/C++ development with the Eclipse Platform</a><br>
 	IBM developerWorks article.
 </li>
 <li>
-	<a href="http://www-128.ibm.com/developerworks/library/os-ecl-vscdt/index.html?ca=dgr-eclipse-1">
+	<a href="https://www-128.ibm.com/developerworks/library/os-ecl-vscdt/index.html?ca=dgr-eclipse-1">
 	Migrate Visual Studio C and C++ projects to Eclipse CDT
 	</a><br>
 	A step-by-step guide to moving Microsoft VS projects to Eclipse C/C++ Development Toolkit.
 </li>
 <li>
-	<a href="http://forge.mysql.com/wiki/Eclipse/CDT_on_Linux_and_Mac_OS_X">
+	<a href="https://forge.mysql.com/wiki/Eclipse/CDT_on_Linux_and_Mac_OS_X">
 	Eclipse/CDT on Linux and Mac OS X </a><br>
 	Covers installation, configuration, and basic debugging of Eclipse/CDT Europa edition using MySQL as source code.
 </li>
 <li>
-	<a href="http://www.codeproject.com/KB/tips/CPP_Dev_eclipse_CDT.aspx">
+	<a href="https://www.codeproject.com/KB/tips/CPP_Dev_eclipse_CDT.aspx">
 	C++ Development using eclipse IDE
 	</a><br>
 	Starters guide.
 </li>
 <li>
-	<a href="http://live.eclipse.org/node/723">
+	<a href="https://live.eclipse.org/node/723">
 	Webinar on Reverse Debugging with DSF-GDB</a><br>
 	This webinar introduces the new DSF-GDB debugger integration that is part of CDT 6.0.  It illustrates the recent GDB additions such as Reverse debugging, Multi-Process and Non-stop multi-thread debugging.
 </li>
 <li>
-	<a href="http://live.eclipse.org/node/293">
+	<a href="https://live.eclipse.org/node/293">
 	CDT 4.0 Webinar</a><br>
 	This webinar will walk through all of CDT's features from new project creation, code editing, and source navigation, to build and debug with a special focus on what's new in CDT 4.0.
 </li>
 <li>
-    <a href="http://live.eclipse.org/node/197">
+    <a href="https://live.eclipse.org/node/197">
 	Developing C/C++ Applications Webinar</a>
 </li>
 <li>
-	<a href="http://cdtdoug.blogspot.com/index.html">
+	<a href="https://cdtdoug.blogspot.com/index.html">
 	Doug on the Eclipse CDT</a><br>
 	All the latest news from the CDT world.
 </li>
 <li>
-	<a href="http://wiki.eclipse.org/CDT/User/FAQ">
+	<a href="https://wiki.eclipse.org/CDT/User/FAQ">
 	CDT FAQ</a><br>
 	All things CDT. May be slightly out of date.
 </li>
 <li>
-	<a href="http://www.eclipse.org/cdt/index_old.html">
+	<a href="https://www.eclipse.org/cdt/index_old.html">
 	Old CDT Website</a><br>
 	Covers CDT 3.0 and earlier.
 </li>
diff --git a/downloads.php b/downloads.php
index 8d6db54..c67b883 100644
--- a/downloads.php
+++ b/downloads.php
@@ -4,7 +4,7 @@
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * https://www.eclipse.org/legal/epl-v10.html
  *
  * Contributors:
  *    
@@ -29,13 +29,13 @@
 <p>Eclipse package:
 	<a href="https://www.eclipse.org/downloads/packages/release/2021-03/r/eclipse-ide-cc-developers">
 	Eclipse C/C++ IDE for 2021-03</a> .</p>
-<p>p2 software repository: <a href="http://download.eclipse.org/tools/cdt/releases/10.2">
-	http://download.eclipse.org/tools/cdt/releases/10.2</a></p>
-<p>The git repo have been tagged with the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_10_2_0">CDT_10_2_0</a> tag.
-	You can download the source from the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
+<p>p2 software repository: <a href="https://download.eclipse.org/tools/cdt/releases/10.2">
+	https://download.eclipse.org/tools/cdt/releases/10.2</a></p>
+<p>The git repo have been tagged with the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_10_2_0">CDT_10_2_0</a> tag.
+	You can download the source from the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
 <p>Archived p2 repos:
 <ul>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/10.2/cdt-10.2.0/cdt-10.2.0.zip">cdt-10.2.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/10.2/cdt-10.2.0/cdt-10.2.0.zip">cdt-10.2.0.zip</a></li>
 </ul>
 </p>
 <p>As of CDT 10.2.0 CDT no longer provides a separate standalone debugger download. Please See <a href="https://wiki.eclipse.org/CDT/StandaloneDebugger">Standalone Debugger on Wiki</a> and download the
@@ -46,41 +46,41 @@
 <p>Eclipse package:
 	<a href="https://www.eclipse.org/downloads/packages/release/2020-12/r/eclipse-ide-cc-developers">
 	Eclipse C/C++ IDE for 2020-12</a> .</p>
-<p>p2 software repository: <a href="http://download.eclipse.org/tools/cdt/releases/10.1">
-	http://download.eclipse.org/tools/cdt/releases/10.1</a></p>
-<p>The git repo have been tagged with the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_10_1_0">CDT_10_1_0</a> tag.
-	You can download the source from the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
+<p>p2 software repository: <a href="https://download.eclipse.org/tools/cdt/releases/10.1">
+	https://download.eclipse.org/tools/cdt/releases/10.1</a></p>
+<p>The git repo have been tagged with the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_10_1_0">CDT_10_1_0</a> tag.
+	You can download the source from the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
 <p>Archived p2 repos:
 <ul>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/10.1/cdt-10.1.0/cdt-10.1.0.zip">cdt-10.1.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/10.1/cdt-10.1.0/cdt-10.1.0.zip">cdt-10.1.0.zip</a></li>
 </ul>
 </p>
 <p>CDT also provides its debugger as a stand-alone RCP application which can be downloaded and installed on its own, from: 
-<a href="http://download.eclipse.org/tools/cdt/releases/10.1/cdt-10.1.0/rcp">http://download.eclipse.org/tools/cdt/releases/10.1/cdt-10.1.0/rcp</a></p>
+<a href="https://download.eclipse.org/tools/cdt/releases/10.1/cdt-10.1.0/rcp">https://download.eclipse.org/tools/cdt/releases/10.1/cdt-10.1.0/rcp</a></p>
 <p>The RCP stand-alone debugger has its own p2 software repository to be used within the RCP itself to upgrade it: 
-<a href="http://download.eclipse.org/tools/cdt/releases/10.1/cdt-10.1.0/rcp-repository">
-http://download.eclipse.org/tools/cdt/releases/10.1/cdt-10.1.0/rcp-repository</a> 
+<a href="https://download.eclipse.org/tools/cdt/releases/10.1/cdt-10.1.0/rcp-repository">
+https://download.eclipse.org/tools/cdt/releases/10.1/cdt-10.1.0/rcp-repository</a> 
 </p>
 
 <h3>CDT 10.0.1 for Eclipse 2020-09</h3>
 <p>Eclipse package:
 	<a href="https://www.eclipse.org/downloads/packages/release/2020-09/r/eclipse-ide-cc-developers">
 	Eclipse C/C++ IDE for 2020-09</a> and run Check for Updates to get CDT 10.0.1.</p>
-<p>p2 software repository: <a href="http://download.eclipse.org/tools/cdt/releases/10.0">
-	http://download.eclipse.org/tools/cdt/releases/10.0</a></p>
-<p>The git repo have been tagged with the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_10_0_1">CDT_10_0_1</a> tag.
-	You can download the source from the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
+<p>p2 software repository: <a href="https://download.eclipse.org/tools/cdt/releases/10.0">
+	https://download.eclipse.org/tools/cdt/releases/10.0</a></p>
+<p>The git repo have been tagged with the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_10_0_1">CDT_10_0_1</a> tag.
+	You can download the source from the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
 <p>Archived p2 repos:
 <ul>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/10.0/cdt-10.0.1/cdt-10.0.1.zip">cdt-10.0.1.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/10.0/cdt-10.0.0/cdt-10.0.0.zip">cdt-10.0.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/10.0/cdt-10.0.1/cdt-10.0.1.zip">cdt-10.0.1.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/10.0/cdt-10.0.0/cdt-10.0.0.zip">cdt-10.0.0.zip</a></li>
 </ul>
 </p>
 <p>CDT also provides its debugger as a stand-alone RCP application which can be downloaded and installed on its own, from: 
-<a href="http://download.eclipse.org/tools/cdt/releases/10.0/cdt-10.0.0/rcp">http://download.eclipse.org/tools/cdt/releases/10.0/cdt-10.0.0/rcp</a></p>
+<a href="https://download.eclipse.org/tools/cdt/releases/10.0/cdt-10.0.0/rcp">https://download.eclipse.org/tools/cdt/releases/10.0/cdt-10.0.0/rcp</a></p>
 <p>The RCP stand-alone debugger has its own p2 software repository to be used within the RCP itself to upgrade it: 
-<a href="http://download.eclipse.org/tools/cdt/releases/10.0/cdt-10.0.0/rcp-repository">
-http://download.eclipse.org/tools/cdt/releases/10.0/cdt-10.0.0/rcp-repository</a> (CDT 10.0.1 does not include any changes to the stand-alone debugger
+<a href="https://download.eclipse.org/tools/cdt/releases/10.0/cdt-10.0.0/rcp-repository">
+https://download.eclipse.org/tools/cdt/releases/10.0/cdt-10.0.0/rcp-repository</a> (CDT 10.0.1 does not include any changes to the stand-alone debugger
 and therefore there is no updated release for CDT 10.0.1)
 </p>
 	
@@ -88,124 +88,124 @@
 <p>Eclipse package:
 	<a href="https://www.eclipse.org/downloads/packages/release/2020-06/r/eclipse-ide-cc-developers">
 	Eclipse C/C++ IDE for 2020-06</a>.</p>
-<p>p2 software repository: <a href="http://download.eclipse.org/tools/cdt/releases/9.11">
-	http://download.eclipse.org/tools/cdt/releases/9.11</a></p>
-<p>The git repo have been tagged with the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_9_11_1">CDT_9_11_1</a> tag.
-	You can download the source from the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
+<p>p2 software repository: <a href="https://download.eclipse.org/tools/cdt/releases/9.11">
+	https://download.eclipse.org/tools/cdt/releases/9.11</a></p>
+<p>The git repo have been tagged with the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_9_11_1">CDT_9_11_1</a> tag.
+	You can download the source from the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
 <p>Archived p2 repos:
 <ul>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.11/cdt-9.11.1/cdt-9.11.1.zip">cdt-9.11.1.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.11/cdt-9.11.0/cdt-9.11.0.zip">cdt-9.11.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.11/cdt-9.11.1/cdt-9.11.1.zip">cdt-9.11.1.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.11/cdt-9.11.0/cdt-9.11.0.zip">cdt-9.11.0.zip</a></li>
 </ul>
 </p>
 <p>CDT also provides its debugger as a stand-alone RCP application which can be downloaded and installed on its own, from: 
-<a href="http://download.eclipse.org/tools/cdt/releases/9.11/cdt-9.11.1/rcp">http://download.eclipse.org/tools/cdt/releases/9.11/cdt-9.11.1/rcp</a></p>
+<a href="https://download.eclipse.org/tools/cdt/releases/9.11/cdt-9.11.1/rcp">https://download.eclipse.org/tools/cdt/releases/9.11/cdt-9.11.1/rcp</a></p>
 <p>The RCP stand-alone debugger has its own p2 software repository to be used within the RCP itself to upgrade it: 
-<a href="http://download.eclipse.org/tools/cdt/releases/9.11/cdt-9.11.1/rcp-repository">
-http://download.eclipse.org/tools/cdt/releases/9.11/cdt-9.11.1/rcp-repository</a>
+<a href="https://download.eclipse.org/tools/cdt/releases/9.11/cdt-9.11.1/rcp-repository">
+https://download.eclipse.org/tools/cdt/releases/9.11/cdt-9.11.1/rcp-repository</a>
 </p>
 
 <h3>CDT 9.10.0 for Eclipse 2019-12</h3>
 <p>Eclipse package:
 	<a href="https://www.eclipse.org/downloads/packages/release/2019-12/r/eclipse-ide-cc-developers">
 	Eclipse C/C++ IDE for 2019-12</a>.</p>
-<p>p2 software repository: <a href="http://download.eclipse.org/tools/cdt/releases/9.10">
-	http://download.eclipse.org/tools/cdt/releases/9.10</a></p>
-<p>The git repo have been tagged with the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_9_10_0">CDT_9_10_0</a> tag.
-	You can download the source from the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
+<p>p2 software repository: <a href="https://download.eclipse.org/tools/cdt/releases/9.10">
+	https://download.eclipse.org/tools/cdt/releases/9.10</a></p>
+<p>The git repo have been tagged with the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_9_10_0">CDT_9_10_0</a> tag.
+	You can download the source from the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
 <p>Archived p2 repos:
 <ul>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.10/cdt-9.10.0/cdt-9.10.0.zip">cdt-9.10.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.10/cdt-9.10.0/cdt-9.10.0.zip">cdt-9.10.0.zip</a></li>
 </ul>
 </p>
 <p>CDT also provides its debugger as a stand-alone RCP application which can be downloaded and installed on its own, from: 
-<a href="http://download.eclipse.org/tools/cdt/releases/9.10/cdt-9.10.0/rcp">http://download.eclipse.org/tools/cdt/releases/9.10/cdt-9.10.0/rcp</a></p>
+<a href="https://download.eclipse.org/tools/cdt/releases/9.10/cdt-9.10.0/rcp">https://download.eclipse.org/tools/cdt/releases/9.10/cdt-9.10.0/rcp</a></p>
 <p>The RCP stand-alone debugger has its own p2 software repository to be used within the RCP itself to upgrade it: 
-<a href="http://download.eclipse.org/tools/cdt/releases/9.10/cdt-9.10.0/rcp-repository">
-http://download.eclipse.org/tools/cdt/releases/9.10/cdt-9.10.0/rcp-repository</a>
+<a href="https://download.eclipse.org/tools/cdt/releases/9.10/cdt-9.10.0/rcp-repository">
+https://download.eclipse.org/tools/cdt/releases/9.10/cdt-9.10.0/rcp-repository</a>
 </p>
 
 <h3>CDT 9.9.0 for Eclipse 2019-09</h3>
 <p>Eclipse package:
 	<a href="https://www.eclipse.org/downloads/packages/release/2019-09/r/eclipse-ide-cc-developers">
 	Eclipse C/C++ IDE for 2019-09</a>.</p>
-<p>p2 software repository: <a href="http://download.eclipse.org/tools/cdt/releases/9.9">
-	http://download.eclipse.org/tools/cdt/releases/9.9</a></p>
-<p>The git repo have been tagged with the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_9_9_0">CDT_9_9_0</a> tag.
-	You can download the source from the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
+<p>p2 software repository: <a href="https://download.eclipse.org/tools/cdt/releases/9.9">
+	https://download.eclipse.org/tools/cdt/releases/9.9</a></p>
+<p>The git repo have been tagged with the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_9_9_0">CDT_9_9_0</a> tag.
+	You can download the source from the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
 <p>Archived p2 repos:
 <ul>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.9/cdt-9.9.0/cdt-9.9.0.zip">cdt-9.9.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.9/cdt-9.9.0/cdt-9.9.0.zip">cdt-9.9.0.zip</a></li>
 </ul>
 </p>
 <p>CDT also provides its debugger as a stand-alone RCP application which can be downloaded and installed on its own, from: 
-<a href="http://download.eclipse.org/tools/cdt/releases/9.9/cdt-9.9.0/rcp">http://download.eclipse.org/tools/cdt/releases/9.9/cdt-9.9.0/rcp</a></p>
+<a href="https://download.eclipse.org/tools/cdt/releases/9.9/cdt-9.9.0/rcp">https://download.eclipse.org/tools/cdt/releases/9.9/cdt-9.9.0/rcp</a></p>
 <p>The RCP stand-alone debugger has its own p2 software repository to be used within the RCP itself to upgrade it: 
-<a href="http://download.eclipse.org/tools/cdt/releases/9.9/cdt-9.9.0/rcp-repository">
-http://download.eclipse.org/tools/cdt/releases/9.9/cdt-9.9.0/rcp-repository</a>
+<a href="https://download.eclipse.org/tools/cdt/releases/9.9/cdt-9.9.0/rcp-repository">
+https://download.eclipse.org/tools/cdt/releases/9.9/cdt-9.9.0/rcp-repository</a>
 </p>
 		
 <h3>CDT 9.8.0 for Eclipse 2019-06</h3>
 <p>Eclipse package:
 	<a href="https://www.eclipse.org/downloads/packages/release/2019-06/r/eclipse-ide-cc-developers">
 	Eclipse C/C++ IDE for 2019-06</a>.</p>
-<p>p2 software repository: <a href="http://download.eclipse.org/tools/cdt/releases/9.8">
-	http://download.eclipse.org/tools/cdt/releases/9.8</a></p>
-<p>The git repo have been tagged with the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_9_8_1">CDT_9_8_1</a> tag.
-	You can download the source from the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
+<p>p2 software repository: <a href="https://download.eclipse.org/tools/cdt/releases/9.8">
+	https://download.eclipse.org/tools/cdt/releases/9.8</a></p>
+<p>The git repo have been tagged with the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_9_8_1">CDT_9_8_1</a> tag.
+	You can download the source from the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
 <p>Archived p2 repos:
 <ul>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.8/cdt-9.8.1/cdt-9.8.1.zip">cdt-9.8.1.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.8/cdt-9.8.0/cdt-9.8.0.zip">cdt-9.8.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.8/cdt-9.8.1/cdt-9.8.1.zip">cdt-9.8.1.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.8/cdt-9.8.0/cdt-9.8.0.zip">cdt-9.8.0.zip</a></li>
 </ul>
 </p>
 <p>CDT also provides its debugger as a stand-alone RCP application which can be downloaded and installed on its own, from: 
-<a href="http://download.eclipse.org/tools/cdt/releases/9.8/cdt-9.8.1/rcp">http://download.eclipse.org/tools/cdt/releases/9.8/cdt-9.8.1/rcp</a></p>
+<a href="https://download.eclipse.org/tools/cdt/releases/9.8/cdt-9.8.1/rcp">https://download.eclipse.org/tools/cdt/releases/9.8/cdt-9.8.1/rcp</a></p>
 <p>The RCP stand-alone debugger has its own p2 software repository to be used within the RCP itself to upgrade it: 
-<a href="http://download.eclipse.org/tools/cdt/releases/9.8/cdt-9.8.1/rcp-repository">
-http://download.eclipse.org/tools/cdt/releases/9.8/cdt-9.8.1/rcp-repository</a>
+<a href="https://download.eclipse.org/tools/cdt/releases/9.8/cdt-9.8.1/rcp-repository">
+https://download.eclipse.org/tools/cdt/releases/9.8/cdt-9.8.1/rcp-repository</a>
 </p>
 
 <h3>CDT 9.7.2 for Eclipse 2019-03</h3>
 <p>Eclipse package:
 	<a href="https://www.eclipse.org/downloads/packages/release/2019-03/r/eclipse-ide-cc-developers">
 	Eclipse C/C++ IDE for 2019-03</a>.</p>
-<p>p2 software repository: <a href="http://download.eclipse.org/tools/cdt/releases/9.7">
-	http://download.eclipse.org/tools/cdt/releases/9.7</a></p>
-<p>The git repo have been tagged with the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_9_7_2">CDT_9_7_2</a> tag. 
-   You can download the source from the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
+<p>p2 software repository: <a href="https://download.eclipse.org/tools/cdt/releases/9.7">
+	https://download.eclipse.org/tools/cdt/releases/9.7</a></p>
+<p>The git repo have been tagged with the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_9_7_2">CDT_9_7_2</a> tag. 
+   You can download the source from the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
 <p>Archived p2 repos:
 <ul>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.7/cdt-9.7.2/cdt-9.7.2.zip">cdt-9.7.2.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.7/cdt-9.7.1/cdt-9.7.1.zip">cdt-9.7.1.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.7/cdt-9.7.0/cdt-9.7.0.zip">cdt-9.7.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.7/cdt-9.7.2/cdt-9.7.2.zip">cdt-9.7.2.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.7/cdt-9.7.1/cdt-9.7.1.zip">cdt-9.7.1.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.7/cdt-9.7.0/cdt-9.7.0.zip">cdt-9.7.0.zip</a></li>
 </ul>
 </p>
 <p>CDT also provides its debugger as a stand-alone RCP application which can be downloaded and installed on its own, from: 
-<a href="http://download.eclipse.org/tools/cdt/releases/9.7/cdt-9.7.2/rcp">http://download.eclipse.org/tools/cdt/releases/9.7/cdt-9.7.2/rcp</a></p>
+<a href="https://download.eclipse.org/tools/cdt/releases/9.7/cdt-9.7.2/rcp">https://download.eclipse.org/tools/cdt/releases/9.7/cdt-9.7.2/rcp</a></p>
 <p>The RCP stand-alone debugger has its own p2 software repository to be used within the RCP itself to upgrade it: 
-<a href="http://download.eclipse.org/tools/cdt/releases/9.7/cdt-9.7.2/rcp-repository">
-http://download.eclipse.org/tools/cdt/releases/9.7/cdt-9.7.2/rcp-repository</a>
+<a href="https://download.eclipse.org/tools/cdt/releases/9.7/cdt-9.7.2/rcp-repository">
+https://download.eclipse.org/tools/cdt/releases/9.7/cdt-9.7.2/rcp-repository</a>
 </p>
 
 <h3>CDT 9.6.0 for Eclipse 2018-12</h3>
 <p>Eclipse package:
 	<a href="https://www.eclipse.org/downloads/packages/release/2018-12/r/eclipse-ide-cc-developers">
 	Eclipse C/C++ IDE for 2018-12</a>.</p>
-<p>p2 software repository: <a href="http://download.eclipse.org/tools/cdt/releases/9.6">
-	http://download.eclipse.org/tools/cdt/releases/9.6</a></p>
-<p>The git repo have been tagged with the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_9_6_0">CDT_9_6_0</a> tag. 
-   You can download the source from the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
+<p>p2 software repository: <a href="https://download.eclipse.org/tools/cdt/releases/9.6">
+	https://download.eclipse.org/tools/cdt/releases/9.6</a></p>
+<p>The git repo have been tagged with the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_9_6_0">CDT_9_6_0</a> tag. 
+   You can download the source from the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
 <p>Archived p2 repos:
 <ul>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.6/cdt-9.6.0/cdt-9.6.0.zip">cdt-9.6.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.6/cdt-9.6.0/cdt-9.6.0.zip">cdt-9.6.0.zip</a></li>
 </ul>
 </p>
 <p>CDT also provides its debugger as a stand-alone RCP application which can be downloaded and installed on its own, from: 
-<a href="http://download.eclipse.org/tools/cdt/releases/9.6/cdt-9.6.0/rcp">http://download.eclipse.org/tools/cdt/releases/9.6/cdt-9.6.0/rcp</a></p>
+<a href="https://download.eclipse.org/tools/cdt/releases/9.6/cdt-9.6.0/rcp">https://download.eclipse.org/tools/cdt/releases/9.6/cdt-9.6.0/rcp</a></p>
 <p>The RCP stand-alone debugger has its own p2 software repository to be used within the RCP itself to upgrade it: 
-<a href="http://download.eclipse.org/tools/cdt/releases/9.6/cdt-9.6.0/rcp-repository">
-http://download.eclipse.org/tools/cdt/releases/9.6/cdt-9.6.0/rcp-repository</a>
+<a href="https://download.eclipse.org/tools/cdt/releases/9.6/cdt-9.6.0/rcp-repository">
+https://download.eclipse.org/tools/cdt/releases/9.6/cdt-9.6.0/rcp-repository</a>
 </p>
 
 <h3>CDT 9.5.5 for Eclipse Photon and 2018-09</h3>
@@ -215,207 +215,207 @@
 <p>Eclipse package:
 	<a href="https://www.eclipse.org/downloads/packages/release/photon/r/eclipse-ide-cc-developers">
 	Eclipse C/C++ IDE for Photon</a>.</p>
-<p>p2 software repository: <a href="http://download.eclipse.org/tools/cdt/releases/9.5">
-	http://download.eclipse.org/tools/cdt/releases/9.5</a></p>
-<p>The git repo have been tagged with the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_9_5_5">CDT_9_5_5</a> tag. 
-   You can download the source from the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
+<p>p2 software repository: <a href="https://download.eclipse.org/tools/cdt/releases/9.5">
+	https://download.eclipse.org/tools/cdt/releases/9.5</a></p>
+<p>The git repo have been tagged with the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_9_5_5">CDT_9_5_5</a> tag. 
+   You can download the source from the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
 <p>Archived p2 repos:
 <ul>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.5/cdt-9.5.5/cdt-9.5.5.zip">cdt-9.5.5.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.5/cdt-9.5.4/cdt-9.5.4.zip">cdt-9.5.4.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.5/cdt-9.5.3/cdt-9.5.3.zip">cdt-9.5.3.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.5/cdt-9.5.2/cdt-9.5.2.zip">cdt-9.5.2.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.5/cdt-9.5.1/cdt-9.5.1.zip">cdt-9.5.1.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.5/cdt-9.5.0/cdt-9.5.0.zip">cdt-9.5.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.5/cdt-9.5.5/cdt-9.5.5.zip">cdt-9.5.5.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.5/cdt-9.5.4/cdt-9.5.4.zip">cdt-9.5.4.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.5/cdt-9.5.3/cdt-9.5.3.zip">cdt-9.5.3.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.5/cdt-9.5.2/cdt-9.5.2.zip">cdt-9.5.2.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.5/cdt-9.5.1/cdt-9.5.1.zip">cdt-9.5.1.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.5/cdt-9.5.0/cdt-9.5.0.zip">cdt-9.5.0.zip</a></li>
 </ul>
 </p>
 <p>CDT also provides its debugger as a stand-alone RCP application which can be downloaded and installed on its own, from: 
-<a href="http://download.eclipse.org/tools/cdt/releases/9.5/cdt-9.5.5/rcp">http://download.eclipse.org/tools/cdt/releases/9.5/cdt-9.5.5/rcp</a></p>
+<a href="https://download.eclipse.org/tools/cdt/releases/9.5/cdt-9.5.5/rcp">https://download.eclipse.org/tools/cdt/releases/9.5/cdt-9.5.5/rcp</a></p>
 <p>The RCP stand-alone debugger has its own p2 software repository to be used within the RCP itself to upgrade it: 
-<a href="http://download.eclipse.org/tools/cdt/releases/9.5/cdt-9.5.5/rcp-repository">
-http://download.eclipse.org/tools/cdt/releases/9.5/cdt-9.5.5/rcp-repository</a>
+<a href="https://download.eclipse.org/tools/cdt/releases/9.5/cdt-9.5.5/rcp-repository">
+https://download.eclipse.org/tools/cdt/releases/9.5/cdt-9.5.5/rcp-repository</a>
 </p>
 
 <h3>CDT 9.4.3 for Eclipse Oxygen</h3>
 <p>Eclipse package:
-	<a href="http://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/oxygen3">
+	<a href="https://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/oxygen3">
 	Eclipse C/C++ IDE for Oxygen.3</a>.</p>
-<p>p2 software repository: <a href="http://download.eclipse.org/tools/cdt/releases/9.4">
-	http://download.eclipse.org/tools/cdt/releases/9.4</a></p>
-<p>The git repo have been tagged with the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_9_4_3">CDT_9_4_3</a> tag. You can download the source from the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
+<p>p2 software repository: <a href="https://download.eclipse.org/tools/cdt/releases/9.4">
+	https://download.eclipse.org/tools/cdt/releases/9.4</a></p>
+<p>The git repo have been tagged with the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git/tag/?h=CDT_9_4_3">CDT_9_4_3</a> tag. You can download the source from the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
 <p>Archived p2 repos:
 <ul>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.4/cdt-9.4.3/cdt-9.4.3.zip">cdt-9.4.3.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.4/cdt-9.4.2/cdt-9.4.2.zip">cdt-9.4.2.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.4/cdt-9.4.1/cdt-9.4.1.zip">cdt-9.4.1.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.4/cdt-9.4.0/cdt-9.4.0.zip">cdt-9.4.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.4/cdt-9.4.3/cdt-9.4.3.zip">cdt-9.4.3.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.4/cdt-9.4.2/cdt-9.4.2.zip">cdt-9.4.2.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.4/cdt-9.4.1/cdt-9.4.1.zip">cdt-9.4.1.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.4/cdt-9.4.0/cdt-9.4.0.zip">cdt-9.4.0.zip</a></li>
 </ul>
 </p>
 <p>CDT also provides its debugger as a stand-alone RCP application which can be downloaded and installed on its own, from: 
-<a href="http://download.eclipse.org/tools/cdt/releases/9.4/cdt-9.4.3/rcp">http://download.eclipse.org/tools/cdt/releases/9.4/cdt-9.4.3/rcp</a></p>
+<a href="https://download.eclipse.org/tools/cdt/releases/9.4/cdt-9.4.3/rcp">https://download.eclipse.org/tools/cdt/releases/9.4/cdt-9.4.3/rcp</a></p>
 <p>The RCP stand-alone debugger has its own p2 software repository to be used within the RCP itself to upgrade it: 
-<a href="http://download.eclipse.org/tools/cdt/releases/9.4/cdt-9.4.3/rcp-repository">
-http://download.eclipse.org/tools/cdt/releases/9.4/cdt-9.4.3/rcp-repository</a>
+<a href="https://download.eclipse.org/tools/cdt/releases/9.4/cdt-9.4.3/rcp-repository">
+https://download.eclipse.org/tools/cdt/releases/9.4/cdt-9.4.3/rcp-repository</a>
 </p>
 
 <h3>CDT 9.3.3 for Eclipse Oxygen</h3>
 <p>Eclipse package:
-	<a href="http://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/oxygen1">
+	<a href="https://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/oxygen1">
 	Eclipse C/C++ IDE for Oxygen.1</a>.</p>
-<p>p2 software repository: <a href="http://download.eclipse.org/tools/cdt/releases/9.3">
-	http://download.eclipse.org/tools/cdt/releases/9.3</a></p>
-<p>You can download the source from the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
+<p>p2 software repository: <a href="https://download.eclipse.org/tools/cdt/releases/9.3">
+	https://download.eclipse.org/tools/cdt/releases/9.3</a></p>
+<p>You can download the source from the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
 <p>Archived p2 repos:
 <ul>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.3/cdt-9.3.3.zip">cdt-9.3.3.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.3/cdt-9.3.3.zip">cdt-9.3.3.zip</a></li>
 <li>CDT 9.3.2 was not released.</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.3/cdt-9.3.1.zip">cdt-9.3.1.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.3/cdt-9.3.0.zip">cdt-9.3.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.3/cdt-9.3.1.zip">cdt-9.3.1.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.3/cdt-9.3.0.zip">cdt-9.3.0.zip</a></li>
 </ul>
 </p>
 <p>CDT also provides its debugger as a stand-alone RCP application which can be downloaded and installed on its own, from: 
-<a href="http://download.eclipse.org/tools/cdt/releases/9.3/cdt9.3.3/rcp">http://download.eclipse.org/tools/cdt/releases/9.3/cdt9.3.3/rcp</a></p>
+<a href="https://download.eclipse.org/tools/cdt/releases/9.3/cdt9.3.3/rcp">https://download.eclipse.org/tools/cdt/releases/9.3/cdt9.3.3/rcp</a></p>
 <p>The RCP stand-alone debugger has its own p2 software repository to be used within the RCP itself to upgrade it: 
-<a href="http://download.eclipse.org/tools/cdt/releases/9.3/cdt9.3.3/rcp-repository">
-http://download.eclipse.org/tools/cdt/releases/9.3/cdt9.3.3/rcp-repository</a>
+<a href="https://download.eclipse.org/tools/cdt/releases/9.3/cdt9.3.3/rcp-repository">
+https://download.eclipse.org/tools/cdt/releases/9.3/cdt9.3.3/rcp-repository</a>
 </p>
 
 <h3>CDT 9.2.1 for Eclipse Neon</h3>
 <p>Eclipse package:
-	<a href="http://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/neon3">
+	<a href="https://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/neon3">
 	Eclipse C/C++ IDE for Neon.3</a>.</p>
-<p>p2 software repository: <a href="http://download.eclipse.org/tools/cdt/releases/9.2">
-	http://download.eclipse.org/tools/cdt/releases/9.2</a></p>
-<p>The git repo have been tagged with the CDT_9_2_1 tag. You can download the source from the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
+<p>p2 software repository: <a href="https://download.eclipse.org/tools/cdt/releases/9.2">
+	https://download.eclipse.org/tools/cdt/releases/9.2</a></p>
+<p>The git repo have been tagged with the CDT_9_2_1 tag. You can download the source from the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
 <p>Archived p2 repos:
 <ul>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.2/cdt-9.2.1.zip">cdt-9.2.1.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.2/cdt-9.2.0.zip">cdt-9.2.0.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.1/cdt-9.1.0.zip">cdt-9.1.0.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.0/cdt-9.0.1.zip">cdt-9.0.1.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.0/cdt-9.0.0.zip">cdt-9.0.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.2/cdt-9.2.1.zip">cdt-9.2.1.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.2/cdt-9.2.0.zip">cdt-9.2.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.1/cdt-9.1.0.zip">cdt-9.1.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.0/cdt-9.0.1.zip">cdt-9.0.1.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/9.0/cdt-9.0.0.zip">cdt-9.0.0.zip</a></li>
 </ul>
 </p>
 <p>CDT also provides its debugger as a stand-alone RCP application which can be downloaded and installed on its own, from: 
-<a href="http://download.eclipse.org/tools/cdt/releases/9.2/r.1/rcp">http://download.eclipse.org/tools/cdt/releases/9.2/r.1/rcp</a></p>
+<a href="https://download.eclipse.org/tools/cdt/releases/9.2/r.1/rcp">https://download.eclipse.org/tools/cdt/releases/9.2/r.1/rcp</a></p>
 <p>The RCP stand-alone debugger has its own p2 software repository to be used within the RCP itself to upgrade it: 
-<a href="http://download.eclipse.org/tools/cdt/releases/9.2/r.1/rcp-repository">
-http://download.eclipse.org/tools/cdt/releases/9.2/r.1/rcp-repository</a>
+<a href="https://download.eclipse.org/tools/cdt/releases/9.2/r.1/rcp-repository">
+https://download.eclipse.org/tools/cdt/releases/9.2/r.1/rcp-repository</a>
 </p>
 
 
 <h3>CDT 8.8.1 for Eclipse Mars</h3>
 <p>Eclipse package:
-	<a href="http://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/mars2">
+	<a href="https://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/mars2">
 	Eclipse C/C++ IDE for Mars.2</a>.</p>
-<p>p2 software repository: <a href="http://download.eclipse.org/tools/cdt/releases/8.8.1">
-	http://download.eclipse.org/tools/cdt/releases/8.8.1</a></p>
-<p>The git repos have been tagged with the CDT_8_8_1 tag. You can download the source from the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
+<p>p2 software repository: <a href="https://download.eclipse.org/tools/cdt/releases/8.8.1">
+	https://download.eclipse.org/tools/cdt/releases/8.8.1</a></p>
+<p>The git repos have been tagged with the CDT_8_8_1 tag. You can download the source from the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
 <p>Archived p2 repos:
 <ul>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/8.8.1/cdt-8.8.1.zip">cdt-8.8.1.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/8.8/cdt-8.8.0.zip">cdt-8.8.0.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/8.7/cdt-8.7.0.zip">cdt-8.7.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/8.8.1/cdt-8.8.1.zip">cdt-8.8.1.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/8.8/cdt-8.8.0.zip">cdt-8.8.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/8.7/cdt-8.7.0.zip">cdt-8.7.0.zip</a></li>
 </ul>
 </p>
 <p>CDT also provides its debugger as a stand-alone RCP application which can be downloaded and installed on its own, from: 
-<a href="http://download.eclipse.org/tools/cdt/releases/8.8.1/r/rcp">http://download.eclipse.org/tools/cdt/releases/8.8.1/r/rcp</a></p>
+<a href="https://download.eclipse.org/tools/cdt/releases/8.8.1/r/rcp">https://download.eclipse.org/tools/cdt/releases/8.8.1/r/rcp</a></p>
 <p>The RCP stand-alone debugger has its own p2 software repository to be used within the RCP itself to upgrade it: 
-<a href="http://download.eclipse.org/tools/cdt/releases/8.8.1/r/rcp-repository">
-http://download.eclipse.org/tools/cdt/releases/8.8.1/r/rcp-repository</a>
+<a href="https://download.eclipse.org/tools/cdt/releases/8.8.1/r/rcp-repository">
+https://download.eclipse.org/tools/cdt/releases/8.8.1/r/rcp-repository</a>
 </p>
 
 <h3>CDT 8.6.0 for Eclipse Luna</h3>
 <p>Eclipse package:
-	<a href="http://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/lunasr2">
+	<a href="https://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/lunasr2">
 	Eclipse C/C++ IDE for Luna SR2</a>.</p>
-<p>p2 software repository: <a href="http://download.eclipse.org/tools/cdt/releases/8.6">
-	http://download.eclipse.org/tools/cdt/releases/8.6</a></p>
-<p>The git repos have been tagged with the CDT_8_6_0 tag. You can download the source from the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
+<p>p2 software repository: <a href="https://download.eclipse.org/tools/cdt/releases/8.6">
+	https://download.eclipse.org/tools/cdt/releases/8.6</a></p>
+<p>The git repos have been tagged with the CDT_8_6_0 tag. You can download the source from the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
 <p>Archived p2 repos:
 <ul>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/8.6/cdt-8.6.0.zip">cdt-8.6.0.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/8.5/cdt-8.5.0.zip">cdt-8.5.0.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/8.4/cdt-8.4.0.zip">cdt-8.4.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/8.6/cdt-8.6.0.zip">cdt-8.6.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/8.5/cdt-8.5.0.zip">cdt-8.5.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/8.4/cdt-8.4.0.zip">cdt-8.4.0.zip</a></li>
 </ul>
 </p>
 
 <h3>CDT 8.3.0 for Eclipse Kepler</h3>
 <p>Eclipse package:
-	<a href="http://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/keplersr2">
+	<a href="https://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/keplersr2">
 	Eclipse C/C++ IDE for Kepler SR2</a>.</p>
-<p>p2 software repository: <a href="http://download.eclipse.org/tools/cdt/releases/kepler">
-	http://download.eclipse.org/tools/cdt/releases/kepler</a></p>
-<p>The git repos have been tagged with the CDT_8_3_0 tag. You can download the source from the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
+<p>p2 software repository: <a href="https://download.eclipse.org/tools/cdt/releases/kepler">
+	https://download.eclipse.org/tools/cdt/releases/kepler</a></p>
+<p>The git repos have been tagged with the CDT_8_3_0 tag. You can download the source from the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
 <p>Archived p2 repos:
 <ul>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/kepler/sr2/cdt-master-8.3.0.zip">cdt-master-8.3.0.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/kepler/sr1/cdt-master-8.2.1.zip">cdt-master-8.2.1.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/kepler/r/cdt-master-8.2.0.zip">cdt-master-8.2.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/kepler/sr2/cdt-master-8.3.0.zip">cdt-master-8.3.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/kepler/sr1/cdt-master-8.2.1.zip">cdt-master-8.2.1.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/kepler/r/cdt-master-8.2.0.zip">cdt-master-8.2.0.zip</a></li>
 </ul>
 </p>
 
 <h3>CDT 8.1.2 for Eclipse Juno</h3>
 <p>Eclipse package:
-	<a href="http://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/junosr2">
+	<a href="https://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/junosr2">
 	Eclipse C/C++ IDE for Juno SR2</a>.</p>
-<p>p2 software repository: <a href="http://download.eclipse.org/tools/cdt/releases/juno">
-	http://download.eclipse.org/tools/cdt/releases/juno</a></p>
-<p>The git repos have been tagged with the CDT_8_1_2 tag. You can download the source from the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
+<p>p2 software repository: <a href="https://download.eclipse.org/tools/cdt/releases/juno">
+	https://download.eclipse.org/tools/cdt/releases/juno</a></p>
+<p>The git repos have been tagged with the CDT_8_1_2 tag. You can download the source from the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
 <p>Archived p2 repos:
 <ul>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/juno/sr2/cdt-master-8.1.2.zip">cdt-master-8.1.2.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/juno/sr1/cdt-master-8.1.1.zip">cdt-master-8.1.1.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/juno/r/cdt-master-8.1.0.zip">cdt-master-8.1.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/juno/sr2/cdt-master-8.1.2.zip">cdt-master-8.1.2.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/juno/sr1/cdt-master-8.1.1.zip">cdt-master-8.1.1.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/juno/r/cdt-master-8.1.0.zip">cdt-master-8.1.0.zip</a></li>
 </ul>
 </p>
 
 <h3>CDT 8.0.2 for Eclipse Indigo</h3>
 <p>Eclipse package:
-	<a href="http://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers-includes-incubating-components/indigosr2">
+	<a href="https://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers-includes-incubating-components/indigosr2">
 	Eclipse C/C++ IDE Indigo SR2</a>.</p>
-<p>p2 software repository: <a href="http://download.eclipse.org/tools/cdt/releases/indigo">
-	http://download.eclipse.org/tools/cdt/releases/indigo</a></p>
-<p>The git repos have been tagged with the CDT_8_0_2 tag. You can download the source from the <a href="http://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
+<p>p2 software repository: <a href="https://download.eclipse.org/tools/cdt/releases/indigo">
+	https://download.eclipse.org/tools/cdt/releases/indigo</a></p>
+<p>The git repos have been tagged with the CDT_8_0_2 tag. You can download the source from the <a href="https://git.eclipse.org/c/cdt/org.eclipse.cdt.git">web interface</a>.</p>
 <p>Archived p2 repos:
 <ul>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/indigo/dist/cdt-master-8.0.2.zip">cdt-master-8.0.2.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/indigo/dist/cdt-master-8.0.1.zip">cdt-master-8.0.1.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/indigo/dist/cdt-master-8.0.0.zip">cdt-master-8.0.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/indigo/dist/cdt-master-8.0.2.zip">cdt-master-8.0.2.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/indigo/dist/cdt-master-8.0.1.zip">cdt-master-8.0.1.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/indigo/dist/cdt-master-8.0.0.zip">cdt-master-8.0.0.zip</a></li>
 </ul>
 </p>
 
 <h3>CDT 7.0.2 for Eclipse Helios</h3>
 <p>Eclipse package:
-	<a href="http://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/heliossr2">
+	<a href="https://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/heliossr2">
 	Eclipse C/C++ IDE Helios SR2</a>.</p>
-<p>p2 software repository: <a href="http://download.eclipse.org/tools/cdt/releases/helios">
-	http://download.eclipse.org/tools/cdt/releases/helios</a></p>
+<p>p2 software repository: <a href="https://download.eclipse.org/tools/cdt/releases/helios">
+	https://download.eclipse.org/tools/cdt/releases/helios</a></p>
 <p>Archived p2 repos:
 <ul>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/helios/dist/cdt-master-7.0.2.zip">cdt-master-7.0.2.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/helios/dist/cdt-master-7.0.1.zip">cdt-master-7.0.1.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/helios/dist/cdt-master-7.0.0.zip">cdt-master-7.0.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/helios/dist/cdt-master-7.0.2.zip">cdt-master-7.0.2.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/helios/dist/cdt-master-7.0.1.zip">cdt-master-7.0.1.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/helios/dist/cdt-master-7.0.0.zip">cdt-master-7.0.0.zip</a></li>
 </ul>
 </p>
 
 <h3>CDT 6.0.2 for Eclipse Galileo</h3>
 <p>Eclipse package: 
-	<a href="http://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/galileosr2">
+	<a href="https://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/galileosr2">
 	Eclipse C/C++ IDE Galileo SR2</a>.</p>
-<p>p2 software repository: <a href="http://download.eclipse.org/tools/cdt/releases/galileo">
-	http://download.eclipse.org/tools/cdt/releases/galileo</a></p>
+<p>p2 software repository: <a href="https://download.eclipse.org/tools/cdt/releases/galileo">
+	https://download.eclipse.org/tools/cdt/releases/galileo</a></p>
 <p>Archived p2 repos:
 <ul>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/galileo/dist/cdt-master-6.0.2.zip">cdt-master-6.0.2.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/galileo/dist/cdt-master-6.0.1.zip">cdt-master-6.0.1.zip</a></li>
-<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/galileo/dist/cdt-master-6.0.0.zip">cdt-master-6.0.0.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/galileo/dist/cdt-master-6.0.2.zip">cdt-master-6.0.2.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/galileo/dist/cdt-master-6.0.1.zip">cdt-master-6.0.1.zip</a></li>
+<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/galileo/dist/cdt-master-6.0.0.zip">cdt-master-6.0.0.zip</a></li>
 </ul>
 </p>
 
 <h3 id="DevelopmentBuilds">Development Builds</h3>
 <p>Development builds of the Eclipse C/C++ IDE can be found on the
-	<a href="http://www.eclipse.org/downloads">Eclipse Downloads page</a>
+	<a href="https://www.eclipse.org/downloads">Eclipse Downloads page</a>
 	by clicking on the Development Builds tab.</p>
 
 <p>Bleeding edge continuous builds are available from the
@@ -424,7 +424,7 @@
 
 
 <p>Some older builds are available in the old
-	<a href="http://archive.eclipse.org/tools/cdt/builds/">CDT Nightly Build page</a>.</p>
+	<a href="https://archive.eclipse.org/tools/cdt/builds/">CDT Nightly Build page</a>.</p>
 	
 <h3>Additional Distributions</h3>
 <p>The CDT can be installed as part of many commercial products or from the following open source
diff --git a/index.php b/index.php
index 041d178..cf4137f 100644
--- a/index.php
+++ b/index.php
@@ -4,7 +4,7 @@
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * https://www.eclipse.org/legal/epl-v10.html
  *
  * Contributors:
  *    
diff --git a/movies/Firefox/Firefox.html b/movies/Firefox/Firefox.html
index 04f3eea..ac20b67 100644
--- a/movies/Firefox/Firefox.html
+++ b/movies/Firefox/Firefox.html
@@ -1,6 +1,6 @@
 <html>
 <head>
-<!-- saved from url=(0025)http://www.techsmith.com/ -->
+<!-- saved from url=(0025)https://www.techsmith.com/ -->
 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
 <title>Created by Camtasia Studio 3</title>
 <script language="JavaScript" type="text/javascript">
@@ -155,7 +155,7 @@
                + '    <td >';
    
    var oeTags = '<object id  ="flashMovie"'
-+ 'codeBase ="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"'
++ 'codeBase ="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"'
 + 'height   ="883"'
 + 'width    ="1036"'
 + 'classid  ="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" VIEWASTEXT>'
@@ -173,7 +173,7 @@
 + '       bgcolor     ="FFFFFF"'
 + '       width       ="1036"'
 + '       height      ="883"'
-+ '       pluginspace ="http://www.macromedia.com/go/getflashplayer" >'
++ '       pluginspace ="https://www.macromedia.com/go/getflashplayer" >'
 + '<\/EMBED>'
 + '<\/OBJECT>';
    
@@ -191,7 +191,7 @@
    var alternateContent = '<div align="center"><img src="Firefox_nofp_bg.gif" width="293" height="280"></div>'
                         + '<div align="center">'
                         + '<p style="width: 250px;font-family:Arial, Helvetica, sans-serif;font-size: x-small;color: #003300;margin-top: -200px;text-align:left;">The Camtasia Studio video content presented here requires the latest version of the Macromedia Flash Player.  Please update your version of this free player by'
-                        + '&nbsp; <a href="http://www.macromedia.com/go/getflashplayer" target="_blank">downloading here</a>.</p></div>'
+                        + '&nbsp; <a href="https://www.macromedia.com/go/getflashplayer" target="_blank">downloading here</a>.</p></div>'
                         
    document.write(alternateContent);  // insert non-flash content
    document.write(BodyTop);  // insert non-flash content  
@@ -200,7 +200,7 @@
 </script>
 <noscript>
 	<object id  ="flashMovie" 
-   codeBase ="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" 
+   codeBase ="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" 
    height   ="883" 
    width    ="1036"
    classid  ="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" VIEWASTEXT>
@@ -218,7 +218,7 @@
           bgcolor     ="FFFFFF" 
           width       ="1036" 
           height      ="883" 
-          pluginspace ="http://www.macromedia.com/go/getflashplayer" >	
+          pluginspace ="https://www.macromedia.com/go/getflashplayer" >	
    </EMBED>
 </OBJECT>
 </noscript>           
diff --git a/presentations/CDT-Debug-EclipseDay-Montreal-2014/index.html b/presentations/CDT-Debug-EclipseDay-Montreal-2014/index.html
index f4fe02d..4bbbc69 100644
--- a/presentations/CDT-Debug-EclipseDay-Montreal-2014/index.html
+++ b/presentations/CDT-Debug-EclipseDay-Montreal-2014/index.html
@@ -414,9 +414,9 @@
 						<a href="https://wiki.eclipse.org/CDT/User/FAQ#Debugging_C.2FC.2B.2B_Projects">CDT Debug FAQ</a><br>
 						<a href="https://wiki.eclipse.org/CDT/StandaloneDebugger">CDT Standalone Debugger</a><br>
 						<a href="https://wiki.eclipse.org/CDT/MultiCoreDebugWorkingGroup">Multicore Debug Workgroup</a><br>
-						<a href="http://www.parallella.org/">Parallella</a><br>
-						<a href="http://www.adapteva.com/">Adapteva</a><br>
-						<a href="http://www.ericsson.com/article/open_source_1714451213_c">Ericsson Open-Source</a><br>
+						<a href="https://www.parallella.org/">Parallella</a><br>
+						<a href="https://www.adapteva.com/">Adapteva</a><br>
+						<a href="https://www.ericsson.com/article/open_source_1714451213_c">Ericsson Open-Source</a><br>
 					</ul>
 				</section>
 
diff --git a/presentations/CDTAndParallella_EclipseCon_NA_2014/index.html b/presentations/CDTAndParallella_EclipseCon_NA_2014/index.html
index 7d6838e..a1ca57c 100644
--- a/presentations/CDTAndParallella_EclipseCon_NA_2014/index.html
+++ b/presentations/CDTAndParallella_EclipseCon_NA_2014/index.html
@@ -386,14 +386,14 @@
 				<section>
 					<h2>Resources</h2>
 					<ul>
-						<a href="http://www.parallella.org/">Parallella</a><br>
+						<a href="https://www.parallella.org/">Parallella</a><br>
 						<a href="https://wiki.eclipse.org/CDT/MultiCoreDebugWorkingGroup">Multicore Debug Workgroup</a><br>
 						<a href="https://wiki.eclipse.org/CDT/User/NewIn83#Debug">CDT 8.3 Debug New & Noteworthy</a><br>
 						<a href="https://wiki.eclipse.org/CDT/User/NewIn84#Debug">CDT 8.4 Debug New & Noteworthy</a><br>
 						<a href="https://wiki.eclipse.org/CDT/User/FAQ#Debugging_C.2FC.2B.2B_Projects">CDT Debug FAQ</a><br>
 						<a href="https://wiki.eclipse.org/CDT/StandaloneDebugger">CDT Standalone Debugger</a><br>
-						<a href="http://www.adapteva.com/">Adapteva</a><br>
-						<a href="http://www.ericsson.com/article/open_source_1714451213_c">Ericsson Open-Source</a><br>
+						<a href="https://www.adapteva.com/">Adapteva</a><br>
+						<a href="https://www.ericsson.com/article/open_source_1714451213_c">Ericsson Open-Source</a><br>
 					</ul>
 				</section>
 
diff --git a/releases/cdt7.0/cdt7_project_log.html b/releases/cdt7.0/cdt7_project_log.html
index 3ec2a60..1b52578 100644
--- a/releases/cdt7.0/cdt7_project_log.html
+++ b/releases/cdt7.0/cdt7_project_log.html
@@ -1,5 +1,5 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="https://www.w3.org/1999/xhtml">
 <head><title>IP Log for tools.cdt</title><meta name="author" content="" />
 <meta name="keywords" content="" /><link rel="stylesheet" type="text/css" href="/eclipse.org-common/themes/Phoenix/css/small.css" title="small" /><link rel="alternate stylesheet" type="text/css" href="/eclipse.org-common/themes/Phoenix/css/large.css" title="large" /><link rel="stylesheet" type="text/css" href="/eclipse.org-common/themes/Phoenix/css/visual.css" media="screen" /><link rel="stylesheet" type="text/css" href="/eclipse.org-common/themes/Phoenix/css/layout.css" media="screen" />
 <!--[if IE]> 	<link rel="stylesheet" type="text/css" href="/eclipse.org-common/themes/Phoenix/css/ie_style.css" media="screen"/> <![endif]-->
@@ -21,9 +21,9 @@
 		</div>
 		<div id="header-icons">
 
-<a href="http://live.eclipse.org"><img src="/eclipse.org-common/themes/Phoenix/images/Icon_Live.png" width="28" height="28" alt="Eclipse Live" title="Eclipse Live" /></a>
-<a href="http://marketplace.eclipse.org"><img src="/eclipse.org-common/themes/Phoenix/images/Icon_plugin.png" width="28" height="28" alt="Eclipse Marketplace" title="Eclipse Marketplace" /></a>
-<a href="http://www.planeteclipse.org"><img src="/eclipse.org-common/themes/Phoenix/images/Icon_planet.png" width="28" height="28" alt="Planet Eclipse" title="Planet Eclipse" /></a>
+<a href="https://live.eclipse.org"><img src="/eclipse.org-common/themes/Phoenix/images/Icon_Live.png" width="28" height="28" alt="Eclipse Live" title="Eclipse Live" /></a>
+<a href="https://marketplace.eclipse.org"><img src="/eclipse.org-common/themes/Phoenix/images/Icon_plugin.png" width="28" height="28" alt="Eclipse Marketplace" title="Eclipse Marketplace" /></a>
+<a href="https://www.planeteclipse.org"><img src="/eclipse.org-common/themes/Phoenix/images/Icon_planet.png" width="28" height="28" alt="Planet Eclipse" title="Planet Eclipse" /></a>
 		</div>
 	</div></div><div id="header-menu"><div id="header-nav">
 		<ul>
@@ -39,12 +39,12 @@
 
 	</div>
 	<div id="header-utils">
-		<form action="http://www.google.com/cse" id="searchbox_017941334893793413703:sqfrdtd112s">
+		<form action="https://www.google.com/cse" id="searchbox_017941334893793413703:sqfrdtd112s">
 	 	<input type="hidden" name="cx" value="017941334893793413703:sqfrdtd112s" />
   		<input type="text" name="q" size="25" />
   		<input type="submit" name="sa" value="Search" />
 		</form>
-		<script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=searchbox_017941334893793413703%3Asqfrdtd112s&lang=en"></script>		<ul>
+		<script type="text/javascript" src="https://www.google.com/coop/cse/brand?form=searchbox_017941334893793413703%3Asqfrdtd112s&lang=en"></script>		<ul>
 
 						<li class="text_size"><a class="smallText" title="Small Text" href="#" onclick="setActiveStyleSheet('small');return false;">A</a> <a class="largeText" title="Large Text" href="#" onclick="setActiveStyleSheet('large');return false;">A</a></li>
 		</ul>
@@ -52,7 +52,7 @@
 	
 							<div id="leftcol">
 <ul id="leftnav">
-<li><a href="http://dev.eclipse.org/site_login/">login</a></li>
+<li><a href="https://dev.eclipse.org/site_login/">login</a></li>
 <li style="background-image: url(/eclipse.org-common/themes/Phoenix/images/leftnav_fade.jpg); background-repeat: repeat-x; border-style: none;"><br /><br /><br /><br /><br /><br /><br /><br />
 </li>
 </ul>
@@ -5590,7 +5590,7 @@
 		<td><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=245421">245421</a></td>
 		<td>889</td>
 
-		<td>New and Noteworthy for 5.0<br>add http://  prefix to link to wiki page</td>
+		<td>New and Noteworthy for 5.0<br>add https://  prefix to link to wiki page</td>
 				</tr>
 	<tr>
 		<td><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=280125">280125</a></td>
@@ -6735,18 +6735,18 @@
 match the upcoming release
 </td>
 <td align="center" valign="top" width="22%" style="border-right: thin solid gray; padding-right: 5px; padding-left: 5px">
-to modify an ip log you must be <a href="http://dev.eclipse.org/site_login/">logged in</a> as a committer</td>
+to modify an ip log you must be <a href="https://dev.eclipse.org/site_login/">logged in</a> as a committer</td>
 <td align="center" valign="top" width="22%" style="border-right: thin solid gray; padding-right: 5px; padding-left: 5px">
 &nbsp;</td>
 <td align="right" valign="top" width="22%" style="padding-left: 5px">
-<a href="http://wiki.eclipse.org/Development_Resources/Automatic_IP_Log"
+<a href="https://wiki.eclipse.org/Development_Resources/Automatic_IP_Log"
 >help &amp; documentation: learn how this IP log is generated
        and how to correct errors</a>
 
 </td>
 </tr></table></div><!-- actionfooter -->
 		<script type="text/javascript">
-		var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+		var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "https://www.");
 		document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
 		</script>
 		<script type="text/javascript">
diff --git a/site1/_projectCommon.php b/site1/_projectCommon.php
index 7ee14b8..5d26e15 100755
--- a/site1/_projectCommon.php
+++ b/site1/_projectCommon.php
@@ -7,16 +7,16 @@
 	$theme = "";
 
 	# Define your project-wide Nav bars here.
-	# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
+	# Format is Link text, link URL (can be https://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
 	# these are optional
 	$Nav->setLinkList( array() );
     $Nav->addNavSeparator( "CDT Home", "/cdt" );
     $Nav->addCustomNav("About This Project", "/projects/project_summary.php?projectid=tools.cdt", "_self", 2  );
 	$Nav->addCustomNav("Downloads", 		"downloads.php", 	"_self", 2);
-	$Nav->addCustomNav("Wiki",				"http://wiki.eclipse.org/index.php/CDT", "_self", 2);
-	$Nav->addCustomNav("CDT Newsgroup", "http://www.eclipse.org/newsportal/thread.php?group=eclipse.tools.cdt", "_self", 2);
+	$Nav->addCustomNav("Wiki",				"https://wiki.eclipse.org/index.php/CDT", "_self", 2);
+	$Nav->addCustomNav("CDT Newsgroup", "https://www.eclipse.org/newsportal/thread.php?group=eclipse.tools.cdt", "_self", 2);
 	#$Nav->addNavSeparator( "Bugs", "https://bugs.eclipse.org/bugs/query.cgi?product=CDT", "_self", 2 );
 	$Nav->addCustomNav("Report a Bug","https://bugs.eclipse.org/bugs/enter_bug.cgi?product=CDT", "_self", 2);
 	#$Nav->addCustomNav("Installation", 		"install.php", 		"_self", 2);
-	$Nav->addCustomNav("User FAQ", 				"http://wiki.eclipse.org/CDT/User/FAQ", 			"_self", 2);
+	$Nav->addCustomNav("User FAQ", 				"https://wiki.eclipse.org/CDT/User/FAQ", 			"_self", 2);
 ?>
diff --git a/site1/downloads.php b/site1/downloads.php
index dc3a095..df9e7f7 100755
--- a/site1/downloads.php
+++ b/site1/downloads.php
@@ -5,10 +5,10 @@
 	$pageAuthor		= "Doug Schaefer";
 	
 	# Add page-specific Nav bars here
-	# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
+	# Format is Link text, link URL (can be https://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
 	# $Nav->addNavSeparator("My Page Links", 	"downloads.php");
 	# $Nav->addCustomNav("My Link", "mypage.php", "_self", 3);
-	# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3);
+	# $Nav->addCustomNav("Google", "https://www.google.com/", "_blank", 3);
 
 	# End: page-specific settings
 	#
@@ -28,8 +28,8 @@
 		The main CDT feature can be installed from the Helios Update Site. This feature as well as all other
 		CDT 7.0 features can also be installed from the CDT Helios Update Site with the following URL.</p>
 		<ul>
-			<li><a href="http://download.eclipse.org/tools/cdt/releases/helios">
-			  http://download.eclipse.org/tools/cdt/releases/helios</a></li>
+			<li><a href="https://download.eclipse.org/tools/cdt/releases/helios">
+			  https://download.eclipse.org/tools/cdt/releases/helios</a></li>
 		</ul>
 		<p>A single zip file containing all of the CDT features for off-line installation is also available by
 		clicking the link above.</p>
@@ -39,8 +39,8 @@
 		The main CDT feature can be installed from the Galileo Update Site. This feature as well as all other
 		CDT 6.0 features can also be installed from the CDT Galileo Update Site with the following URL.</p>
 		<ul>
-			<li><a href="http://download.eclipse.org/tools/cdt/releases/galileo">
-			  http://download.eclipse.org/tools/cdt/releases/galileo</a></li>
+			<li><a href="https://download.eclipse.org/tools/cdt/releases/galileo">
+			  https://download.eclipse.org/tools/cdt/releases/galileo</a></li>
 		</ul>
 		<p>A single zip file containing all of the CDT features for off-line installation is also available by
 		clicking the link above.</p>
@@ -60,8 +60,8 @@
 		The main CDT feature can be installed from the Ganymede Discovery Site. This feature as well as all other
 		CDT 5.0 features can also be installed from the CDT Ganymede Update Site with the following URL.</p>
 		<ul>
-			<li><a href="http://download.eclipse.org/tools/cdt/releases/ganymede">
-			  http://download.eclipse.org/tools/cdt/releases/ganymede</a></li>
+			<li><a href="https://download.eclipse.org/tools/cdt/releases/ganymede">
+			  https://download.eclipse.org/tools/cdt/releases/ganymede</a></li>
 		</ul>
 		<p>A single zip file containing all of the CDT features for off-line installation is also available by
 		clicking the link above.</p>
@@ -81,8 +81,8 @@
 		The main CDT feature can be installed from the Europa Discovery Site. This feature as well as all other
 		CDT 4.0 features can also be installed from the CDT Europa Update Site with the following URL.</p>
 		<ul>
-			<li><a href="http://download.eclipse.org/tools/cdt/releases/europa">
-			  http://download.eclipse.org/tools/cdt/releases/europa</a></li>
+			<li><a href="https://download.eclipse.org/tools/cdt/releases/europa">
+			  https://download.eclipse.org/tools/cdt/releases/europa</a></li>
 		</ul>
 		<p>A single zip file containing all of the CDT features for off-line installation is also available by
 		clicking the link above.</p>
@@ -104,12 +104,12 @@
 		The Callisto Discovery Site should already be there. Note that the CDT SDK feature which is used if you
 		are building plugins that extend the CDT is only available from the CDT Update Site.</p>
 		<ul>
-			<li>http://download.eclipse.org/tools/cdt/releases/callisto</li>
+			<li>https://download.eclipse.org/tools/cdt/releases/callisto</li>
 		</ul>
 		<p>The CDT can also be downloaded in a single file form the following pages</p>
 		<ul>
 			<li>
-				<a href="http://download.eclipse.org/tools/cdt/releases/callisto/dist/3.1.2">
+				<a href="https://download.eclipse.org/tools/cdt/releases/callisto/dist/3.1.2">
 					CDT 3.1.2 (February 15, 2007)
 				</a>
 				-
@@ -118,7 +118,7 @@
 				</a>
 			</li>
 			<li>
-				<a href="http://download.eclipse.org/tools/cdt/releases/callisto/dist/3.1.1">
+				<a href="https://download.eclipse.org/tools/cdt/releases/callisto/dist/3.1.1">
 					CDT 3.1.1 (September 29, 2006)
 				</a>
 				-
@@ -127,7 +127,7 @@
 				</a>
 			</li>
 			<li>
-				<a href="http://download.eclipse.org/tools/cdt/releases/callisto/dist/3.1.0">
+				<a href="https://download.eclipse.org/tools/cdt/releases/callisto/dist/3.1.0">
 					CDT 3.1.0 (June 30, 2006)
 				</a>
 				-
@@ -145,7 +145,7 @@
 		releases. If new strings are added to CDT after 3.1.1, they will not show up as translated in the 3.1.x stream 
 		when you install this language pack.</p>
 		<ul>
-			<li><a href="http://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/callisto/NL_language_packs/CDT_NL_3.1.1.zip">CDT 3.1.x Language Pack</a>
+			<li><a href="https://www.eclipse.org/downloads/download.php?file=/tools/cdt/releases/callisto/NL_language_packs/CDT_NL_3.1.1.zip">CDT 3.1.x Language Pack</a>
 			� Contains the NL fragments and the NL features that contain those fragments for: German, Spanish, French, 
 			Italian, Japanese, Korean, Portuguese (Brazil), Traditional Chinese and Simplified Chinese.</li>
 		</ul>
diff --git a/site1/index.php b/site1/index.php
index 763d293..ff80426 100755
--- a/site1/index.php
+++ b/site1/index.php
@@ -14,10 +14,10 @@
 	$pageAuthor		= "CDT Community";
 	
 	# Add page-specific Nav bars here
-	# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
+	# Format is Link text, link URL (can be https://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
 	# $Nav->addNavSeparator("My Page Links", 	"downloads.php");
 	# $Nav->addCustomNav("My Link", "mypage.php", "_self", 3);
-	# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3);
+	# $Nav->addCustomNav("Google", "https://www.google.com/", "_blank", 3);
 
 	# End: page-specific settings
 		
@@ -53,13 +53,13 @@
 	
 	<p><b>CDT 7.0 M5 Now Available</b> - February 2, 2010
 	<br>As part of the Helios Simultaneous release, CDT 7.0 includes various new features.  
-	To download, please visit our <a href="http://download.eclipse.org/tools/cdt/builds/7.0.0/index.html">nightly build</a> page.</p>
+	To download, please visit our <a href="https://download.eclipse.org/tools/cdt/builds/7.0.0/index.html">nightly build</a> page.</p>
 
 	<p><b>CDT 6.0.1 Now Available</b> - September 25, 2009
 	<br>CDT 6.0.1 includes numerous fixes to CDT 6.0.  To download, please visit our Downloads page on the left.</p> 
 	<!--
 	<p><b>CDT 6.0 Now Available</b> - June 24, 2009
-	<br>As part of the Galileo Simultaneous release, CDT 6.0 includes various new features.  Check out our <a href="http://wiki.eclipse.org/CDT/User/NewIn60">New and Noteworthy</a> page in the CDT Wiki.
+	<br>As part of the Galileo Simultaneous release, CDT 6.0 includes various new features.  Check out our <a href="https://wiki.eclipse.org/CDT/User/NewIn60">New and Noteworthy</a> page in the CDT Wiki.
 	To download, please visit our Downloads page on the left.</p>
 	-->
 	<hr class="clearer" />
@@ -68,63 +68,63 @@
 		<h3>For Users</h3>
 			<ul>
 			  <li>
-				<a href="http://www.ibm.com/developerworks/opensource/library/os-eclipse-stlcdt/">
+				<a href="https://www.ibm.com/developerworks/opensource/library/os-eclipse-stlcdt/">
 				Developing applications using the Eclipse C/C++ Development Toolkit </a><br>
 				IBM developerWorks article.
 			  </li>
 			  <li>
-				<a href="http://wascana.sourceforge.net/">
+				<a href="https://wascana.sourceforge.net/">
 				Wascana Desktop Developer</a><br>
 				CDT based distribution for Windows development.
 			  </li>
 			  <li>
-				<a href=" http://www.ibm.com/developerworks/opensource/library/os-ecc/?S_TACT=105AGX44&S_CMP=ART">
+				<a href=" https://www.ibm.com/developerworks/opensource/library/os-ecc/?S_TACT=105AGX44&S_CMP=ART">
 				C/C++ development with the Eclipse Platform</a><br>
 				IBM developerWorks article.
 			  </li>
 			  <li>
-				<a href="http://www-128.ibm.com/developerworks/library/os-ecl-vscdt/index.html?ca=dgr-eclipse-1">
+				<a href="https://www-128.ibm.com/developerworks/library/os-ecl-vscdt/index.html?ca=dgr-eclipse-1">
 				Migrate Visual Studio C and C++ projects to Eclipse CDT
 				</a><br>
 				A step-by-step guide to moving Microsoft VS projects to Eclipse C/C++ Development Toolkit.
 			  </li>
 			  <li>
-				<a href="http://forge.mysql.com/wiki/Eclipse/CDT_on_Linux_and_Mac_OS_X">
+				<a href="https://forge.mysql.com/wiki/Eclipse/CDT_on_Linux_and_Mac_OS_X">
 				Eclipse/CDT on Linux and Mac OS X </a><br>
 				Covers installation, configuration, and basic debugging of Eclipse/CDT Europa edition using MySQL as source code.
 			  </li>
 			  <li>
-				<a href="http://www.codeproject.com/KB/tips/CPP_Dev_eclipse_CDT.aspx">
+				<a href="https://www.codeproject.com/KB/tips/CPP_Dev_eclipse_CDT.aspx">
 				C++ Development using eclipse IDE
 				</a><br>
 				Starters guide.
 			  </li>
 		      <li>
-				<a href="http://live.eclipse.org/node/723">
+				<a href="https://live.eclipse.org/node/723">
 				Webinar on Reverse Debugging with DSF-GDB</a><br>
 				This webinar introduces the new DSF-GDB debugger integration that is part of CDT 6.0.  It illustrates the recent GDB additions such as Reverse debugging, Multi-Process and Non-stop multi-thread debugging.
 			  </li>
 		      <li>
-				<a href="http://live.eclipse.org/node/293">
+				<a href="https://live.eclipse.org/node/293">
 				CDT 4.0 Webinar</a><br>
 				This webinar will walk through all of CDT's features from new project creation, code editing, and source navigation, to build and debug with a special focus on what's new in CDT 4.0.
 			  </li>
 			  <li>
-				<a href="http://live.eclipse.org/node/197">
+				<a href="https://live.eclipse.org/node/197">
 				Developing C/C++ Applications Webinar</a>
 			  </li>
 			  <li>
-				<a href="http://cdtdoug.blogspot.com/index.html">
+				<a href="https://cdtdoug.blogspot.com/index.html">
 				Doug on the Eclipse CDT</a><br>
 				All the latest news from the CDT world.
 			  </li>
 			  <li>
-				<a href="http://wiki.eclipse.org/CDT/User/FAQ">
+				<a href="https://wiki.eclipse.org/CDT/User/FAQ">
 				CDT FAQ</a><br>
 				All things CDT. May be slightly out of date.
 			  </li>
 			  <li>
-				<a href="http://www.eclipse.org/cdt/index_old.html">
+				<a href="https://www.eclipse.org/cdt/index_old.html">
 				Old CDT Website</a><br>
 				Covers CDT 3.0 and earlier.
 			  </li>
@@ -136,22 +136,22 @@
 		<h3>For Developers</h3>
 			<ul>
 			  <li>
-			    <a href="http://wiki.eclipse.org/Getting_started_with_CDT_development">
+			    <a href="https://wiki.eclipse.org/Getting_started_with_CDT_development">
 			    Getting started with CDT Development
 			    </a>
 			  </li>
 			  <li>
-				<a href="http://wiki.eclipse.org/CDT/Developer/FAQ">
+				<a href="https://wiki.eclipse.org/CDT/Developer/FAQ">
 				CDT Developers FAQ</a>
 			  </li>
 			  <li>
-			    <a href="http://wiki.eclipse.org/CDT">
+			    <a href="https://wiki.eclipse.org/CDT">
 			    Wiki 
 			    </a><br>
 			    Source of all knowledge
 			  </li>
 			  <li>
-			    <a href="http://download.eclipse.org/tools/cdt/builds">
+			    <a href="https://download.eclipse.org/tools/cdt/builds">
 			    Nightly Builds
 			    </a><br>
 			    Download CDT Nightly builds
@@ -160,7 +160,7 @@
 			    <a href="https://dev.eclipse.org/mailman/listinfo/cdt-dev">
 			    CDT Developers Mailing List
 			    </a><br>
-			    Mailing list for CDT Developers. If you are CDT user please post to <a href="http://www.eclipse.org/newsportal/thread.php?group=eclipse.tools.cdt">CDT Newsgroup</a> instead.
+			    Mailing list for CDT Developers. If you are CDT user please post to <a href="https://www.eclipse.org/newsportal/thread.php?group=eclipse.tools.cdt">CDT Newsgroup</a> instead.
 			  </li> 
 			  <li>
 			    <a href="https://bugs.eclipse.org/bugs/query.cgi?product=CDT">
@@ -169,13 +169,13 @@
 			    Search for CDT bugs.
 			  </li> 
 			  <li>
-				<a href="http://www.ibm.com/developerworks/opensource/library/os-ecl-cdt1/index.html?S_TACT=105AGX44&S_CMP=EDU">
+				<a href="https://www.ibm.com/developerworks/opensource/library/os-ecl-cdt1/index.html?S_TACT=105AGX44&S_CMP=EDU">
 				Building a CDT-based editor
 				</a><br>
 				Five part article series on IBM developerWorks.
 			  </li>
 			   <li>
-				<a href="http://wiki.eclipse.org/CDT/designs/StaticAnalysis">
+				<a href="https://wiki.eclipse.org/CDT/designs/StaticAnalysis">
 				Static Analysis in CDT
 				</a><br>
 				Proposal for CDT Static Analysis Framework
diff --git a/site1/index_old.html b/site1/index_old.html
index 3fcd773..76a3bfd 100755
--- a/site1/index_old.html
+++ b/site1/index_old.html
@@ -14,7 +14,7 @@
       <frame name="nav" scrolling="no" noresize target="main"
                           src="../tools/nav.html"  marginwidth="0" marginheight="0" frameborder="NO">
     </frameset>
-    <frame name="main" marginwidth=10 marginheight=10 noresize frameborder="NO" src="http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/cdt-home/main.html?cvsroot=Tools_Project">
+    <frame name="main" marginwidth=10 marginheight=10 noresize frameborder="NO" src="https://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/cdt-home/main.html?cvsroot=Tools_Project">
   </frameset>
   <noframes>
   <body>
diff --git a/site1/template.php b/site1/template.php
index 43f4e07..e751c44 100755
--- a/site1/template.php
+++ b/site1/template.php
@@ -19,10 +19,10 @@
 	$pageAuthor		= "Type your name here";
 	
 	# Add page-specific Nav bars here
-	# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
+	# Format is Link text, link URL (can be https://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
 	# $Nav->addNavSeparator("My Page Links", 	"downloads.php");
 	# $Nav->addCustomNav("My Link", "mypage.php", "_self", 3);
-	# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3);
+	# $Nav->addCustomNav("Google", "https://www.google.com/", "_blank", 3);
 
 	# End: page-specific settings
 	#
diff --git a/support.php b/support.php
index dff81af..ca18d2d 100644
--- a/support.php
+++ b/support.php
@@ -4,7 +4,7 @@
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * https://www.eclipse.org/legal/epl-v10.html
  *
  * Contributors:
  *    
@@ -21,7 +21,7 @@
 
 <h3>CDT Forum</h3>
 <p>As questions on the
-	<a href="http://www.eclipse.org/forums/index.php?t=thread&frm_id=80">CDT Forum</a>.</p>
+	<a href="https://www.eclipse.org/forums/index.php?t=thread&frm_id=80">CDT Forum</a>.</p>
 
 <h3>Bugzilla</h3>
 <p>Report defects and ask for enhancements in