Skip to content

Commit 9edaa25

Browse files
committed
Update to safe HTTPS
1 parent c43406e commit 9edaa25

465 files changed

Lines changed: 572 additions & 572 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ documentation. You can submit a pull request to our
1818

1919
### Report an Issue
2020

21-
Please feel free to raise an [issue on GitHub](https://github.com/Open-CMSIS-Pack/Open-CMSIS-Pack/issues)
21+
Please feel free to raise an [issue on GitHub](https://github.com/Open-CMSIS-Pack/devtools/issues)
2222
to report misbehavior (i.e. bugs)
2323

2424
Issues are your best way to interact directly with the maintenance team and the community.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Apache License
33
Version 2.0, January 2004
4-
http://www.apache.org/licenses/
4+
https://www.apache.org/licenses/
55

66
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
77

cmake/GetGitRevisionDescription.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@
3333
#
3434
# Original Author:
3535
# 2009-2020 Ryan Pavlik <ryan.pavlik@gmail.com> <abiryan@ryand.net>
36-
# http://academic.cleardefinition.com
36+
# https://academic.cleardefinition.com
3737
#
3838
# Copyright 2009-2013, Iowa State University.
3939
# Copyright 2013-2020, Ryan Pavlik
4040
# Copyright 2013-2020, Contributors
4141
# SPDX-License-Identifier: BSL-1.0
4242
# Distributed under the Boost Software License, Version 1.0.
4343
# (See accompanying file LICENSE_1_0.txt or copy at
44-
# http://www.boost.org/LICENSE_1_0.txt)
44+
# https://www.boost.org/LICENSE_1_0.txt)
4545

4646
if(__get_git_revision_description)
4747
return()

cmake/GetGitRevisionDescription.cmake.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
#
66
# Original Author:
77
# 2009-2010 Ryan Pavlik <rpavlik@iastate.edu> <abiryan@ryand.net>
8-
# http://academic.cleardefinition.com
8+
# https://academic.cleardefinition.com
99
# Iowa State University HCI Graduate Program/VRAC
1010
#
1111
# Copyright Iowa State University 2009-2010.
1212
# Distributed under the Boost Software License, Version 1.0.
1313
# (See accompanying file LICENSE_1_0.txt or copy at
14-
# http://www.boost.org/LICENSE_1_0.txt)
14+
# https://www.boost.org/LICENSE_1_0.txt)
1515

1616
set(HEAD_HASH)
1717

libs/rteutils/include/VersionCmp.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/* RTE - CMSIS Run-Time Environment */
55
/******************************************************************************/
66
/** @file VersionCmp.h
7-
* @brief Semantic Version comparison according to http://semver.org/
7+
* @brief Semantic Version comparison according to https://semver.org/
88
*/
99
/******************************************************************************/
1010
/*
@@ -39,7 +39,7 @@ class VersionCmp
3939

4040
public:
4141
/**
42-
* @brief Split v1 and v2 according to http://semver.org/ and compare individually
42+
* @brief Split v1 and v2 according to https://semver.org/ and compare individually
4343
* @param v1 version to be compared
4444
* @param v2 version to be compared
4545
* @param cs true in case of case sensitive comparison

libs/rteutils/src/VersionCmp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ int VersionCmp::Compare(const string& v1, const string& v2, bool cs) {
155155
if (v1 == v2) {
156156
return 0;
157157
}
158-
// Split v1 and v2 according to http://semver.org/ and compare individually
158+
// Split v1 and v2 according to https://semver.org/ and compare individually
159159
Version ver1(v1);
160160
Version ver2(v2);
161161
int res = ver1.compareTo(ver2, cs);

libs/xmlreader/include/XML_Reader.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ class XML_Reader {
276276

277277
/**
278278
* @brief returns previous read attribute value
279-
* attribute-Value Normalization: http://www.w3.org/TR/REC-xml/#AVNormalize
279+
* attribute-Value Normalization: https://www.w3.org/TR/REC-xml/#AVNormalize
280280
* deletes leading and trailing white spaces
281281
282282
* @return string containing attribute value

libs/xmlreader/test/XmlReaderTest.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ static string utfInfo = "한€ह";
1313
static string schemaFile = "CPRJ.xsd";
1414
static string schemaVer = "0.0.9";
1515
static string theXmlString = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\" ?>\n"
16-
"<cprj schemaVersion=\"" + schemaVer + "\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:noNamespaceSchemaLocation=\"" + schemaFile + "\">\n" +
16+
"<cprj schemaVersion=\"" + schemaVer + "\" xmlns:xsi=\"https://www.w3.org/2001/XMLSchema-instance\" xsi:noNamespaceSchemaLocation=\"" + schemaFile + "\">\n" +
1717
" <info>"+ utfInfo+"</info>\n" +
1818
"\n" +
1919
" <child number=\"1\">\n" +
@@ -112,7 +112,7 @@ TEST(XmlReaderTest, ReadAttributes)
112112
EXPECT_EQ(schemaVer, reader.GetAttributeData());
113113
EXPECT_TRUE(reader.ReadNextAttribute(true));
114114
EXPECT_EQ("xsi", reader.GetAttributeTag());
115-
EXPECT_EQ("http://www.w3.org/2001/XMLSchema-instance", reader.GetAttributeData());
115+
EXPECT_EQ("https://www.w3.org/2001/XMLSchema-instance", reader.GetAttributeData());
116116
EXPECT_TRUE(reader.ReadNextAttribute(false));
117117
EXPECT_EQ("xsi:noNamespaceSchemaLocation", reader.GetAttributeTag());
118118
EXPECT_EQ("CPRJ.xsd", reader.GetAttributeData());

libs/xmlschemachecker/test/data/invalid.pdsc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

33
<package schemaVersion="1.4"
4-
xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" xs:noNamespaceSchemaLocation="PACK.xsd">
4+
xmlns:xs="https://www.w3.org/2001/XMLSchema-instance" xs:noNamespaceSchemaLocation="PACK.xsd">
55
<invalid>invalid</invalid>
66
<vendor>TestVendor</vendor>
7-
<url>http://www.testurl.com/pack/</url>
7+
<url>https://www.testurl.com/pack/</url>
88
<name>TestInvalidPack</name>
99
<description>TestInvalidPack</description>
1010

libs/xmlschemachecker/test/data/valid.pdsc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

33
<package schemaVersion="1.4"
4-
xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" xs:noNamespaceSchemaLocation="PACK.xsd">
4+
xmlns:xs="https://www.w3.org/2001/XMLSchema-instance" xs:noNamespaceSchemaLocation="PACK.xsd">
55
<vendor>TestVendor</vendor>
6-
<url>http://www.testurl.com/pack/</url>
6+
<url>https://www.testurl.com/pack/</url>
77
<name>TestInvalidPack</name>
88
<description>TestInvalidPack</description>
99

0 commit comments

Comments
 (0)