Switch urls from http: to https: (#137)
This commit is contained in:
		| @@ -41,7 +41,7 @@ To learn how to build the code and run tests, follow the instructions in the [RE | ||||
| ### Style guidelines | ||||
| The code in this project uses several different coding styles, depending on the age and history of | ||||
| the code. Please attempt to match the style of surrounding code as much as possible. In new | ||||
| components, prefer the patterns described in the [C++ core guidelines](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) | ||||
| components, prefer the patterns described in the [C++ core guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) | ||||
| and the [modern C++/WinRT language projections](https://docs.microsoft.com/en-us/windows/uwp/cpp-and-winrt-apis/). | ||||
|  | ||||
| ### Testing | ||||
|   | ||||
| @@ -2,7 +2,7 @@ THIRD PARTY SOFTWARE NOTICES AND INFORMATION | ||||
| Do Not Translate or Localize | ||||
|  | ||||
| This software incorporates material from third parties. Microsoft makes certain  | ||||
| open source code available at http://3rdpartysource.microsoft.com, or you may  | ||||
| open source code available at https://3rdpartysource.microsoft.com, or you may  | ||||
| send a check or money order for US $5.00, including the product name, the open  | ||||
| source component name, and version number, to: | ||||
|  | ||||
|   | ||||
| @@ -46,7 +46,7 @@ For information regarding Windows Calculator plans and release schedule, please | ||||
|  | ||||
| ## Data / Telemetry | ||||
| This project collects usage data and sends it to Microsoft to help improve our products and services. | ||||
| Read our [privacy statement](http://go.microsoft.com/fwlink/?LinkId=521839) to learn more. | ||||
| Read our [privacy statement](https://go.microsoft.com/fwlink/?LinkId=521839) to learn more. | ||||
| Telemetry is disabled in development builds by default, and can be enabled with the `SEND_TELEMETRY` | ||||
| build flag. | ||||
|  | ||||
|   | ||||
| @@ -131,7 +131,7 @@ new features, the Microsoft team considers at least these items: | ||||
|     - [ ] Microsoft must plan to keep these dependencies secure and functional for the lifetime of | ||||
|       the app (which might be several years). | ||||
|     - [ ] The app should be fully functional if some network requests are slow or fail. Tools like | ||||
|       [Fiddler](http://docs.telerik.com/fiddler/knowledgebase/fiddlerscript/perftesting) | ||||
|       [Fiddler](https://docs.telerik.com/fiddler/knowledgebase/fiddlerscript/perftesting) | ||||
|       can be used to simulate slow or failed requests. | ||||
|  | ||||
| ## Step 4: Final product review and merge to master | ||||
|   | ||||
| @@ -15,7 +15,7 @@ namespace CalculationManager | ||||
|         // and the ids to define them with can be seen in EngineStrings.h | ||||
|         // with SIDS prefix. Additionally it must provide values for string | ||||
|         // ids "sDecimal", "sThousand" and "sGrouping". See | ||||
|         // http://technet.microsoft.com/en-us/library/cc782655(v=ws.10).aspx | ||||
|         // https://technet.microsoft.com/en-us/library/cc782655(v=ws.10).aspx | ||||
|         // for what these values refer to. | ||||
|         virtual std::wstring GetCEngineString(const std::wstring& id) = 0; | ||||
|     }; | ||||
|   | ||||
| @@ -402,7 +402,7 @@ | ||||
|   </ImportGroup> | ||||
|   <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> | ||||
|     <PropertyGroup> | ||||
|       <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them.  For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> | ||||
|       <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them.  For more information, see https://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> | ||||
|     </PropertyGroup> | ||||
|     <Error Condition="!Exists('..\..\packages\Microsoft.UI.Xaml.2.0.181018003.1\build\native\Microsoft.UI.Xaml.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.UI.Xaml.2.0.181018003.1\build\native\Microsoft.UI.Xaml.targets'))" /> | ||||
|   </Target> | ||||
|   | ||||
| @@ -844,7 +844,7 @@ | ||||
|   </ImportGroup> | ||||
|   <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> | ||||
|     <PropertyGroup> | ||||
|       <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them.  For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> | ||||
|       <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them.  For more information, see https://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> | ||||
|     </PropertyGroup> | ||||
|     <Error Condition="!Exists('..\..\packages\Microsoft.WindowsCalculator.PGO.1.0.2\build\native\Microsoft.WindowsCalculator.PGO.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.WindowsCalculator.PGO.1.0.2\build\native\Microsoft.WindowsCalculator.PGO.props'))" /> | ||||
|     <Error Condition="!Exists('..\..\packages\Microsoft.WindowsCalculator.PGO.1.0.2\build\native\Microsoft.WindowsCalculator.PGO.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.WindowsCalculator.PGO.1.0.2\build\native\Microsoft.WindowsCalculator.PGO.targets'))" /> | ||||
|   | ||||
| @@ -23,7 +23,7 @@ using namespace Windows::UI::Xaml::Controls; | ||||
| using namespace Windows::UI::Xaml::Data; | ||||
| using namespace Windows::UI::Xaml::Input; | ||||
|  | ||||
| // The User Control item template is documented at http://go.microsoft.com/fwlink/?LinkId=234236 | ||||
| // The User Control item template is documented at https://go.microsoft.com/fwlink/?LinkId=234236 | ||||
|  | ||||
| CalculatorProgrammerBitFlipPanel::CalculatorProgrammerBitFlipPanel() : | ||||
|     m_updatingCheckedStates(false) | ||||
|   | ||||
| @@ -27,7 +27,7 @@ using namespace Windows::UI::Xaml::Navigation; | ||||
| using namespace Windows::UI::ViewManagement; | ||||
| using namespace Windows::UI::Core; | ||||
|  | ||||
| // The User Control item template is documented at http://go.microsoft.com/fwlink/?LinkId=234236 | ||||
| // The User Control item template is documented at https://go.microsoft.com/fwlink/?LinkId=234236 | ||||
|  | ||||
| CalculatorScientificAngleButtons::CalculatorScientificAngleButtons() : | ||||
|     m_isErrorVisualState(false) | ||||
|   | ||||
| @@ -22,7 +22,7 @@ using namespace Windows::UI::Xaml::Input; | ||||
| using namespace Windows::UI::Xaml::Media; | ||||
| using namespace Windows::UI::Xaml::Navigation; | ||||
|  | ||||
| // The User Control item template is documented at http://go.microsoft.com/fwlink/?LinkId=234236 | ||||
| // The User Control item template is documented at https://go.microsoft.com/fwlink/?LinkId=234236 | ||||
|  | ||||
| CalculatorStandardOperators::CalculatorStandardOperators() : | ||||
|     m_isErrorVisualState(false) | ||||
|   | ||||
| @@ -36,7 +36,7 @@ using namespace Windows::UI::Xaml::Input; | ||||
| using namespace Windows::UI::Xaml::Media; | ||||
| using namespace Windows::UI::Xaml::Navigation; | ||||
|  | ||||
| // The User Control item template is documented at http://go.microsoft.com/fwlink/?LinkId=234236 | ||||
| // The User Control item template is documented at https://go.microsoft.com/fwlink/?LinkId=234236 | ||||
|  | ||||
| DateCalculator::DateCalculator() | ||||
| { | ||||
|   | ||||
| @@ -29,7 +29,7 @@ using namespace Windows::UI::ViewManagement; | ||||
|  | ||||
| namespace MUXC = Microsoft::UI::Xaml::Controls; | ||||
|  | ||||
| // The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=390556 | ||||
| // The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=390556 | ||||
|  | ||||
| DEPENDENCY_PROPERTY_INITIALIZATION(HistoryList, RowHeight); | ||||
|  | ||||
|   | ||||
| @@ -31,7 +31,7 @@ using namespace Windows::UI::Xaml::Media; | ||||
| using namespace Windows::UI::Xaml::Navigation; | ||||
| using namespace Windows::UI::ViewManagement; | ||||
|  | ||||
| // The User Control item template is documented at http://go.microsoft.com/fwlink/?LinkId=234236 | ||||
| // The User Control item template is documented at https://go.microsoft.com/fwlink/?LinkId=234236 | ||||
|  | ||||
| DEPENDENCY_PROPERTY_INITIALIZATION(Memory, RowHeight); | ||||
|  | ||||
|   | ||||
| @@ -27,7 +27,7 @@ using namespace Windows::UI::Xaml::Media; | ||||
| using namespace Windows::UI::Xaml::Navigation; | ||||
| using namespace CalculatorApp::Common; | ||||
|  | ||||
| // The User Control item template is documented at http://go.microsoft.com/fwlink/?LinkId=234236 | ||||
| // The User Control item template is documented at https://go.microsoft.com/fwlink/?LinkId=234236 | ||||
|  | ||||
| DEPENDENCY_PROPERTY_INITIALIZATION(NumberPad, ButtonStyle); | ||||
|  | ||||
|   | ||||
| @@ -25,7 +25,7 @@ using namespace Windows::UI::Xaml::Interop; | ||||
| using namespace Windows::UI::Xaml::Media; | ||||
| using namespace Windows::UI::Xaml::Navigation; | ||||
|  | ||||
| // The User Control item template is documented at http://go.microsoft.com/fwlink/?LinkId=234236 | ||||
| // The User Control item template is documented at https://go.microsoft.com/fwlink/?LinkId=234236 | ||||
|  | ||||
| Object^ DelighterUnitToStyleConverter::Convert(Object^ value, TypeName /*targetType*/, Object^ /*parameter*/, String^ /*language*/) | ||||
| { | ||||
|   | ||||
| @@ -38,7 +38,7 @@ using namespace Windows::UI::Xaml::Media; | ||||
| using namespace Windows::UI::Xaml::Navigation; | ||||
| using namespace Windows::UI::ViewManagement; | ||||
|  | ||||
| // The User Control item template is documented at http://go.microsoft.com/fwlink/?LinkId=234236 | ||||
| // The User Control item template is documented at https://go.microsoft.com/fwlink/?LinkId=234236 | ||||
|  | ||||
| // Calculate number of 100-nanosecond intervals in 500 milliseconds. | ||||
| // There are 10,000 intervals in 1 ms. | ||||
|   | ||||
| @@ -3,7 +3,7 @@ | ||||
|     developers. However, you can modify these parameters to modify the behavior of the .NET Native | ||||
|     optimizer. | ||||
|  | ||||
|     Runtime Directives are documented at http://go.microsoft.com/fwlink/?LinkID=391919 | ||||
|     Runtime Directives are documented at https://go.microsoft.com/fwlink/?LinkID=391919 | ||||
|  | ||||
|     To fully enable reflection for App1.MyClass and all of its public/private members | ||||
|     <Type Name="App1.MyClass" Dynamic="Required All"/> | ||||
|   | ||||
| @@ -25,7 +25,7 @@ using namespace Windows::UI::Xaml::Interop; | ||||
| using namespace Windows::UI::Xaml::Media; | ||||
| using namespace Windows::UI::Xaml::Navigation; | ||||
|  | ||||
| // The Blank Application template is documented at http://go.microsoft.com/fwlink/?LinkId=402347&clcid=0x409 | ||||
| // The Blank Application template is documented at https://go.microsoft.com/fwlink/?LinkId=402347&clcid=0x409 | ||||
|  | ||||
| /// <summary> | ||||
| /// Initializes the singleton application object.  This is the first line of authored code | ||||
|   | ||||
		Reference in New Issue
	
	Block a user