aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKaarlo Räihä <mcraiha@users.noreply.github.com>2022-10-06 20:11:08 +0300
committerRob Mensching <rob@firegiant.com>2022-11-04 17:29:34 -0700
commiteb954e1575d2fdaf3aa20d00c136f62a57b5ec09 (patch)
treed1a436e764f0f3062deb4201f261732aa47fdad3 /src
parent70457e88bc1c3942067a2fa7b51f241a5e976168 (diff)
downloadwix-eb954e1575d2fdaf3aa20d00c136f62a57b5ec09.tar.gz
wix-eb954e1575d2fdaf3aa20d00c136f62a57b5ec09.tar.bz2
wix-eb954e1575d2fdaf3aa20d00c136f62a57b5ec09.zip
Use HTTPS instead of HTTP
Fix some of these
Diffstat (limited to 'src')
-rw-r--r--src/api/wix/WixToolset.Data/ErrorMessages.cs8
-rw-r--r--src/api/wix/WixToolset.Data/Json/SimpleJson.cs2
-rw-r--r--src/api/wix/WixToolset.Data/Symbols/LockPermissionsSymbol.cs2
-rw-r--r--src/api/wix/WixToolset.Data/WarningMessages.cs2
-rw-r--r--src/libs/dutil/WixToolset.DUtil/deputil.cpp2
-rw-r--r--src/wix/WixToolset.Core.Burn/Bundles/OrderSearchesCommand.cs4
-rw-r--r--src/wix/WixToolset.Core/Compiler_Dependency.cs2
7 files changed, 11 insertions, 11 deletions
diff --git a/src/api/wix/WixToolset.Data/ErrorMessages.cs b/src/api/wix/WixToolset.Data/ErrorMessages.cs
index fcf377e3..cb8da02a 100644
--- a/src/api/wix/WixToolset.Data/ErrorMessages.cs
+++ b/src/api/wix/WixToolset.Data/ErrorMessages.cs
@@ -1063,7 +1063,7 @@ namespace WixToolset.Data
1063 1063
1064 public static Message IllegalTerminalServerCustomActionAttributes(SourceLineNumber sourceLineNumbers) 1064 public static Message IllegalTerminalServerCustomActionAttributes(SourceLineNumber sourceLineNumbers)
1065 { 1065 {
1066 return Message(sourceLineNumbers, Ids.IllegalTerminalServerCustomActionAttributes, "The CustomAction/@TerminalServerAware attribute's value is 'yes' but the Execute attribute is not 'deferred,' 'rollback,' or 'commit.' Terminal-Server-aware custom actions must be deferred, rollback, or commit custom actions. For more information, see http://msdn.microsoft.com/library/aa372071.aspx.\""); 1066 return Message(sourceLineNumbers, Ids.IllegalTerminalServerCustomActionAttributes, "The CustomAction/@TerminalServerAware attribute's value is 'yes' but the Execute attribute is not 'deferred,' 'rollback,' or 'commit.' Terminal-Server-aware custom actions must be deferred, rollback, or commit custom actions. For more information, see https://msdn.microsoft.com/library/aa372071.aspx.\"");
1067 } 1067 }
1068 1068
1069 public static Message IllegalValidationArguments() 1069 public static Message IllegalValidationArguments()
@@ -2048,12 +2048,12 @@ namespace WixToolset.Data
2048 2048
2049 public static Message UnexpectedExternalUIMessage(string message) 2049 public static Message UnexpectedExternalUIMessage(string message)
2050 { 2050 {
2051 return Message(null, Ids.UnexpectedExternalUIMessage, "Error executing unknown ICE action. The most common cause of this kind of ICE failure is an incorrectly registered scripting engine. See http://wixtoolset.org/documentation/error217/ for details and how to solve this problem. The following string format was not expected by the external UI message logger: \"{0}\".", message); 2051 return Message(null, Ids.UnexpectedExternalUIMessage, "Error executing unknown ICE action. The most common cause of this kind of ICE failure is an incorrectly registered scripting engine. See https://wixtoolset.org/documentation/error217/ for details and how to solve this problem. The following string format was not expected by the external UI message logger: \"{0}\".", message);
2052 } 2052 }
2053 2053
2054 public static Message UnexpectedExternalUIMessage(string message, string action) 2054 public static Message UnexpectedExternalUIMessage(string message, string action)
2055 { 2055 {
2056 return Message(null, Ids.UnexpectedExternalUIMessage, "Error executing ICE action '{1}'. The most common cause of this kind of ICE failure is an incorrectly registered scripting engine. See http://wixtoolset.org/documentation/error217/ for details and how to solve this problem. The following string format was not expected by the external UI message logger: \"{0}\".", message, action); 2056 return Message(null, Ids.UnexpectedExternalUIMessage, "Error executing ICE action '{1}'. The most common cause of this kind of ICE failure is an incorrectly registered scripting engine. See https://wixtoolset.org/documentation/error217/ for details and how to solve this problem. The following string format was not expected by the external UI message logger: \"{0}\".", message, action);
2057 } 2057 }
2058 2058
2059 public static Message UnexpectedFileExtension(string fileName, string expectedExtensions) 2059 public static Message UnexpectedFileExtension(string fileName, string expectedExtensions)
@@ -2183,7 +2183,7 @@ namespace WixToolset.Data
2183 2183
2184 public static Message ValidationFailedDueToMultilanguageMergeModule() 2184 public static Message ValidationFailedDueToMultilanguageMergeModule()
2185 { 2185 {
2186 return Message(null, Ids.ValidationFailedDueToMultilanguageMergeModule, "Failed to open merge module for validation. The most common cause of this error is specifying that the merge module supports multiple languages (using the Package/@Languages attribute) but not including language-specific embedded transforms. To fix this error, make the merge module language-neutral, make it language-specific, embed language transforms as specified in the MSI SDK at http://msdn.microsoft.com/library/aa367799.aspx, or disable validation."); 2186 return Message(null, Ids.ValidationFailedDueToMultilanguageMergeModule, "Failed to open merge module for validation. The most common cause of this error is specifying that the merge module supports multiple languages (using the Package/@Languages attribute) but not including language-specific embedded transforms. To fix this error, make the merge module language-neutral, make it language-specific, embed language transforms as specified in the MSI SDK at https://msdn.microsoft.com/library/aa367799.aspx, or disable validation.");
2187 } 2187 }
2188 2188
2189 public static Message ValidationFailedToOpenDatabase() 2189 public static Message ValidationFailedToOpenDatabase()
diff --git a/src/api/wix/WixToolset.Data/Json/SimpleJson.cs b/src/api/wix/WixToolset.Data/Json/SimpleJson.cs
index 3d956f6e..8ac1f25a 100644
--- a/src/api/wix/WixToolset.Data/Json/SimpleJson.cs
+++ b/src/api/wix/WixToolset.Data/Json/SimpleJson.cs
@@ -488,7 +488,7 @@ namespace SimpleJson
488{ 488{
489 /// <summary> 489 /// <summary>
490 /// This class encodes and decodes JSON strings. 490 /// This class encodes and decodes JSON strings.
491 /// Spec. details, see http://www.json.org/ 491 /// Spec. details, see https://www.json.org/
492 /// 492 ///
493 /// JSON uses Arrays and Objects. These correspond here to the datatypes JsonArray(IList&lt;object>) and JsonObject(IDictionary&lt;string,object>). 493 /// JSON uses Arrays and Objects. These correspond here to the datatypes JsonArray(IList&lt;object>) and JsonObject(IDictionary&lt;string,object>).
494 /// All numbers are parsed to doubles. 494 /// All numbers are parsed to doubles.
diff --git a/src/api/wix/WixToolset.Data/Symbols/LockPermissionsSymbol.cs b/src/api/wix/WixToolset.Data/Symbols/LockPermissionsSymbol.cs
index b9337446..79e02f6e 100644
--- a/src/api/wix/WixToolset.Data/Symbols/LockPermissionsSymbol.cs
+++ b/src/api/wix/WixToolset.Data/Symbols/LockPermissionsSymbol.cs
@@ -33,7 +33,7 @@ namespace WixToolset.Data.Symbols
33 33
34 /// <summary> 34 /// <summary>
35 ///------------------------------------------------------------------------------------------------- 35 ///-------------------------------------------------------------------------------------------------
36 /// Layout of an Access Mask (from http://technet.microsoft.com/en-us/library/cc783530(WS.10).aspx) 36 /// Layout of an Access Mask (from https://technet.microsoft.com/en-us/library/cc783530(WS.10).aspx)
37 /// 37 ///
38 /// ------------------------------------------------------------------------------------------------- 38 /// -------------------------------------------------------------------------------------------------
39 /// |31|30|29|28|27|26|25|24|23|22|21|20|19|18|17|16|15|14|13|12|11|10|09|08|07|06|05|04|03|02|01|00| 39 /// |31|30|29|28|27|26|25|24|23|22|21|20|19|18|17|16|15|14|13|12|11|10|09|08|07|06|05|04|03|02|01|00|
diff --git a/src/api/wix/WixToolset.Data/WarningMessages.cs b/src/api/wix/WixToolset.Data/WarningMessages.cs
index 5eb8fb62..aba0eb09 100644
--- a/src/api/wix/WixToolset.Data/WarningMessages.cs
+++ b/src/api/wix/WixToolset.Data/WarningMessages.cs
@@ -384,7 +384,7 @@ namespace WixToolset.Data
384 384
385 public static Message MajorUpgradePatchNotRecommended() 385 public static Message MajorUpgradePatchNotRecommended()
386 { 386 {
387 return Message(null, Ids.MajorUpgradePatchNotRecommended, "Changing the ProductCode in a patch is not recommended because the patch cannot be uninstalled nor can it be sequenced along with other patches for the target product. See http://msdn2.microsoft.com/library/aa367571.aspx for more information."); 387 return Message(null, Ids.MajorUpgradePatchNotRecommended, "Changing the ProductCode in a patch is not recommended because the patch cannot be uninstalled nor can it be sequenced along with other patches for the target product. See https://msdn2.microsoft.com/library/aa367571.aspx for more information.");
388 } 388 }
389 389
390 public static Message MediaExternalCabinetFilenameIllegal(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value) 390 public static Message MediaExternalCabinetFilenameIllegal(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value)
diff --git a/src/libs/dutil/WixToolset.DUtil/deputil.cpp b/src/libs/dutil/WixToolset.DUtil/deputil.cpp
index f92c7d18..b5649948 100644
--- a/src/libs/dutil/WixToolset.DUtil/deputil.cpp
+++ b/src/libs/dutil/WixToolset.DUtil/deputil.cpp
@@ -29,7 +29,7 @@ static LPCWSTR vcszAttributesValue = L"Attributes";
29enum eRequiresAttributes { RequiresAttributesMinVersionInclusive = 256, RequiresAttributesMaxVersionInclusive = 512 }; 29enum eRequiresAttributes { RequiresAttributesMinVersionInclusive = 256, RequiresAttributesMaxVersionInclusive = 512 };
30 30
31// We write to Software\Classes explicitly based on the current security context instead of HKCR. 31// We write to Software\Classes explicitly based on the current security context instead of HKCR.
32// See http://msdn.microsoft.com/en-us/library/ms724475(VS.85).aspx for more information. 32// See https://msdn.microsoft.com/en-us/library/ms724475(VS.85).aspx for more information.
33static LPCWSTR vsczRegistryRoot = L"Software\\Classes\\Installer\\Dependencies\\"; 33static LPCWSTR vsczRegistryRoot = L"Software\\Classes\\Installer\\Dependencies\\";
34static LPCWSTR vsczRegistryDependents = L"Dependents"; 34static LPCWSTR vsczRegistryDependents = L"Dependents";
35 35
diff --git a/src/wix/WixToolset.Core.Burn/Bundles/OrderSearchesCommand.cs b/src/wix/WixToolset.Core.Burn/Bundles/OrderSearchesCommand.cs
index f3afd64e..01d5657b 100644
--- a/src/wix/WixToolset.Core.Burn/Bundles/OrderSearchesCommand.cs
+++ b/src/wix/WixToolset.Core.Burn/Bundles/OrderSearchesCommand.cs
@@ -56,7 +56,7 @@ namespace WixToolset.Core.Burn.Bundles
56 56
57 this.FlattenDependentReferences(constraints); 57 this.FlattenDependentReferences(constraints);
58 58
59 // Reorder by topographical sort (http://en.wikipedia.org/wiki/Topological_sorting) 59 // Reorder by topographical sort (https://en.wikipedia.org/wiki/Topological_sorting)
60 // We use a variation of Kahn (1962) algorithm as described in 60 // We use a variation of Kahn (1962) algorithm as described in
61 // Wikipedia, with the additional criteria that start nodes are sorted 61 // Wikipedia, with the additional criteria that start nodes are sorted
62 // lexicographically at each step to ensure a deterministic ordering 62 // lexicographically at each step to ensure a deterministic ordering
@@ -198,7 +198,7 @@ namespace WixToolset.Core.Burn.Bundles
198 /// </summary> 198 /// </summary>
199 /// <remarks> 199 /// <remarks>
200 /// We use a variation of Kahn (1962) algorithm as described in 200 /// We use a variation of Kahn (1962) algorithm as described in
201 /// Wikipedia (http://en.wikipedia.org/wiki/Topological_sorting), with 201 /// Wikipedia (https://en.wikipedia.org/wiki/Topological_sorting), with
202 /// the additional criteria that start nodes are sorted lexicographically 202 /// the additional criteria that start nodes are sorted lexicographically
203 /// at each step to ensure a deterministic ordering based on 'after' 203 /// at each step to ensure a deterministic ordering based on 'after'
204 /// dependencies and ID. 204 /// dependencies and ID.
diff --git a/src/wix/WixToolset.Core/Compiler_Dependency.cs b/src/wix/WixToolset.Core/Compiler_Dependency.cs
index 664ac1be..d0230527 100644
--- a/src/wix/WixToolset.Core/Compiler_Dependency.cs
+++ b/src/wix/WixToolset.Core/Compiler_Dependency.cs
@@ -14,7 +14,7 @@ namespace WixToolset.Core
14 { 14 {
15 // The root registry key for the dependency extension. We write to Software\Classes explicitly 15 // The root registry key for the dependency extension. We write to Software\Classes explicitly
16 // based on the current security context instead of HKCR. See 16 // based on the current security context instead of HKCR. See
17 // http://msdn.microsoft.com/en-us/library/ms724475(VS.85).aspx for more information. 17 // https://msdn.microsoft.com/en-us/library/ms724475(VS.85).aspx for more information.
18 private const string DependencyRegistryRoot = @"Software\Classes\Installer\Dependencies\"; 18 private const string DependencyRegistryRoot = @"Software\Classes\Installer\Dependencies\";
19 19
20 private static readonly char[] InvalidDependencyCharacters = new char[] { ' ', '\"', ';', '\\' }; 20 private static readonly char[] InvalidDependencyCharacters = new char[] { ' ', '\"', ';', '\\' };