From 4028a1dda523a2b968fed156d0a28019810f5c99 Mon Sep 17 00:00:00 2001 From: berniev Date: Sun, 31 Jul 2022 23:05:39 +1000 Subject: [PATCH] App: Use https --- src/App/Document.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/App/Document.cpp b/src/App/Document.cpp index 0331922736..0a44e45365 100644 --- a/src/App/Document.cpp +++ b/src/App/Document.cpp @@ -1565,7 +1565,7 @@ Document::Document(const char *name) // license stuff ADD_PROPERTY_TYPE(License,("CC-BY 3.0"),0,Prop_None,"License string of the Item"); - ADD_PROPERTY_TYPE(LicenseURL,("http://creativecommons.org/licenses/by/3.0/"),0,Prop_None,"URL to the license text/contract"); + ADD_PROPERTY_TYPE(LicenseURL,("https://creativecommons.org/licenses/by/3.0/"),0,Prop_None,"URL to the license text/contract"); // license stuff int licenseId = App::GetApplication().GetParameterGroupByPath @@ -1575,39 +1575,39 @@ Document::Document(const char *name) switch (licenseId) { case 0: license = "All rights reserved"; - licenseUrl = "http://en.wikipedia.org/wiki/All_rights_reserved"; + licenseUrl = "https://en.wikipedia.org/wiki/All_rights_reserved"; break; case 1: license = "Creative Commons Attribution"; - licenseUrl = "http://creativecommons.org/licenses/by/4.0/"; + licenseUrl = "https://creativecommons.org/licenses/by/4.0/"; break; case 2: license = "Creative Commons Attribution-ShareAlike"; - licenseUrl = "http://creativecommons.org/licenses/by-sa/4.0/"; + licenseUrl = "https://creativecommons.org/licenses/by-sa/4.0/"; break; case 3: license = "Creative Commons Attribution-NoDerivatives"; - licenseUrl = "http://creativecommons.org/licenses/by-nd/4.0/"; + licenseUrl = "https://creativecommons.org/licenses/by-nd/4.0/"; break; case 4: license = "Creative Commons Attribution-NonCommercial"; - licenseUrl = "http://creativecommons.org/licenses/by-nc/4.0/"; + licenseUrl = "https://creativecommons.org/licenses/by-nc/4.0/"; break; case 5: license = "Creative Commons Attribution-NonCommercial-ShareAlike"; - licenseUrl = "http://creativecommons.org/licenses/by-nc-sa/4.0/"; + licenseUrl = "https://creativecommons.org/licenses/by-nc-sa/4.0/"; break; case 6: license = "Creative Commons Attribution-NonCommercial-NoDerivatives"; - licenseUrl = "http://creativecommons.org/licenses/by-nc-nd/4.0/"; + licenseUrl = "https://creativecommons.org/licenses/by-nc-nd/4.0/"; break; case 7: license = "Public Domain"; - licenseUrl = "http://en.wikipedia.org/wiki/Public_domain"; + licenseUrl = "https://en.wikipedia.org/wiki/Public_domain"; break; case 8: license = "FreeArt"; - licenseUrl = "http://artlibre.org/licence/lal"; + licenseUrl = "https://artlibre.org/licence/lal"; break; default: license = "Other";