http → https
authornemo
Sat, 21 May 2016 14:39:35 -0400
changeset 11830 6078cf0e4944
parent 11829 ebdd7e6e6c49
child 11831 dd18d8100afd
http → https
QTfrontend/Doxyfile
QTfrontend/hwform.cpp
QTfrontend/ui/widget/about.cpp
QTfrontend/ui/widget/databrowser.cpp
--- a/QTfrontend/Doxyfile	Wed May 18 15:42:14 2016 -0400
+++ b/QTfrontend/Doxyfile	Sat May 21 14:39:35 2016 -0400
@@ -190,7 +190,7 @@
 # will result in a user-defined paragraph with heading "Side Effects:".
 # You can put \n's in the value part of an alias to insert newlines.
 
-ALIASES                = "repo{1}=http://hg.hedgewars.org/hedgewars/file/default/QTfrontend/\1"
+ALIASES                = "repo{1}=https://hg.hedgewars.org/hedgewars/file/default/QTfrontend/\1"
 
 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
 # sources only. Doxygen will then generate output that is more tailored for C.
--- a/QTfrontend/hwform.cpp	Wed May 18 15:42:14 2016 -0400
+++ b/QTfrontend/hwform.cpp	Sat May 21 14:39:35 2016 -0400
@@ -2038,7 +2038,7 @@
 
 void HWForm::openRegistrationPage()
 {
-    QDesktopServices::openUrl(QUrl("http://www.hedgewars.org/user/register"));
+    QDesktopServices::openUrl(QUrl("https://www.hedgewars.org/user/register"));
 }
 
 void HWForm::saveDemoWithCustomName()
@@ -2102,7 +2102,7 @@
 
 void HWForm::showFeedbackDialog()
 {
-    QNetworkRequest newRequest(QUrl("http://www.hedgewars.org"));
+    QNetworkRequest newRequest(QUrl("https://www.hedgewars.org"));
 
     QNetworkAccessManager *manager = new QNetworkAccessManager(this);
     QNetworkReply *reply = manager->get(newRequest);
--- a/QTfrontend/ui/widget/about.cpp	Wed May 18 15:42:14 2016 -0400
+++ b/QTfrontend/ui/widget/about.cpp	Sat May 21 14:39:35 2016 -0400
@@ -77,7 +77,7 @@
         "</style>"
         "<div align=\"center\"><h1>Hedgewars " + *cVersionString + "</h1>"
         "<h3>" + QLabel::tr("Revision") + " " + *cRevisionString + " (" + *cHashString + ")</h3>"
-        "<p><a href=\"http://www.hedgewars.org/\">http://www.hedgewars.org/</a></p>" +
+        "<p><a href=\"https://www.hedgewars.org/\">https://www.hedgewars.org/</a></p>" +
         QLabel::tr("This program is distributed under the %1").arg("<a \
         href=\"http://www.gnu.org/licenses/gpl-2.0.html\">GNU GPL v2</a>") +
         "</div>"
--- a/QTfrontend/ui/widget/databrowser.cpp	Wed May 18 15:42:14 2016 -0400
+++ b/QTfrontend/ui/widget/databrowser.cpp	Sat May 21 14:39:35 2016 -0400
@@ -52,7 +52,7 @@
             qDebug() << "Requesting resource" << name.toString();
             requestedResources.insert(name.toString());
 
-            QNetworkRequest newRequest(QUrl("http://www.hedgewars.org" + name.toString()));
+            QNetworkRequest newRequest(QUrl("https://www.hedgewars.org" + name.toString()));
             newRequest.setAttribute(typeAttribute, type);
             newRequest.setAttribute(urlAttribute, name);