Skip to content

Commit 189eeef

Browse files
spring-operatorwilkinsona
authored andcommitted
Use HTTPS for external links wherever possible
See spring-projectsgh-16317
1 parent 8059dce commit 189eeef

File tree

33 files changed

+130
-130
lines changed

33 files changed

+130
-130
lines changed

CODE_OF_CONDUCT.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ appropriate to the circumstances. Maintainers are obligated to maintain confiden
4040
with regard to the reporter of an incident.
4141

4242
This Code of Conduct is adapted from the
43-
http://contributor-covenant.org[Contributor Covenant], version 1.3.0, available at
44-
http://contributor-covenant.org/version/1/3/0/[contributor-covenant.org/version/1/3/0/]
43+
https://contributor-covenant.org[Contributor Covenant], version 1.3.0, available at
44+
https://contributor-covenant.org/version/1/3/0/[contributor-covenant.org/version/1/3/0/]

spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/security/oauth2/resource/ResourceServerTokenServicesConfigurationTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public void userInfoWithAuthorities() {
128128
@Test
129129
public void userInfoWithPrincipal() {
130130
EnvironmentTestUtils.addEnvironment(this.environment,
131-
"security.oauth2.resource.userInfoUri:http://example.com");
131+
"security.oauth2.resource.userInfoUri:https://example.com");
132132
this.context = new SpringApplicationBuilder(PrincipalConfiguration.class)
133133
.environment(this.environment).web(false).run();
134134
UserInfoTokenServices services = this.context

spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/security/oauth2/sso/CustomRestTemplateBasicOAuth2SsoConfigurationTests.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@
4848
@SpringBootTest
4949
@TestPropertySource(properties = { "security.oauth2.client.clientId=client",
5050
"security.oauth2.client.clientSecret=secret",
51-
"security.oauth2.client.userAuthorizationUri=http://example.com/oauth/authorize",
52-
"security.oauth2.client.accessTokenUri=http://example.com/oauth/token",
51+
"security.oauth2.client.userAuthorizationUri=https://example.com/oauth/authorize",
52+
"security.oauth2.client.accessTokenUri=https://example.com/oauth/token",
5353
"security.oauth2.resource.jwt.keyValue=SSSSHHH" })
5454
public class CustomRestTemplateBasicOAuth2SsoConfigurationTests {
5555

spring-boot-cli/src/main/content/legal/open_source_licenses.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ limitations under the License
230230
>>> CGLIB 3.0 (cglib:cglib:3.0):
231231

232232
Per the LICENSE file in the CGLIB JAR distribution downloaded from
233-
http://sourceforge.net/projects/cglib/files/cglib3/3.0/cglib-3.0.jar/download,
233+
https://sourceforge.net/projects/cglib/files/cglib3/3.0/cglib-3.0.jar/download,
234234
CGLIB 3.0 is licensed under the Apache License, version 2.0, the text of which
235235
is included above.
236236

@@ -250,7 +250,7 @@ Eclipse Public License, Version 1.0 is applicable to the following component(s).
250250
The Eclipse Foundation makes available all content in this plug-in ("Content").
251251
Unless otherwise indicated below, the Content is provided to you under the terms
252252
and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the
253-
EPL is available at http://www.eclipse.org/legal/epl-v10.html.
253+
EPL is available at https://www.eclipse.org/legal/epl-v10.html.
254254

255255
For purposes of the EPL, "Program" will mean the Content.
256256

@@ -260,7 +260,7 @@ terms and conditions may apply to your use of any object code in the Content.
260260
Check the Redistributor's license that was provided with the Content. If no such
261261
license exists, contact the Redistributor. Unless otherwise indicated below, the
262262
terms and conditions of the EPL still apply to any source code in the Content and
263-
such source code may be obtained at http://www.eclipse.org/
263+
such source code may be obtained at https://www.eclipse.org/
264264

265265

266266

spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

+11-11
Original file line numberDiff line numberDiff line change
@@ -1587,7 +1587,7 @@ it's loaded too early. You need to either use `logback-spring.xml` or define a
15871587
`logging.config` property.
15881588

15891589
WARNING: The extensions cannot be used with Logback's
1590-
http://logback.qos.ch/manual/configuration.html#autoScan[configuration scanning]. If you
1590+
https://logback.qos.ch/manual/configuration.html#autoScan[configuration scanning]. If you
15911591
attempt to do so, making changes to the configuration file will result in an error similar
15921592
to once of the following being logged:
15931593

@@ -1766,7 +1766,7 @@ of converters. You can also override default converters that way.
17661766
==== Custom JSON Serializers and Deserializers
17671767
If you're using Jackson to serialize and deserialize JSON data, you might want to write
17681768
your own `JsonSerializer` and `JsonDeserializer` classes. Custom serializers are usually
1769-
http://wiki.fasterxml.com/JacksonHowToCustomDeserializers[registered with Jackson via a Module],
1769+
https://wiki.fasterxml.com/JacksonHowToCustomDeserializers[registered with Jackson via a Module],
17701770
but Spring Boot provides an alternative `@JsonComponent` annotation which makes it easier
17711771
to directly register Spring Beans.
17721772

@@ -3449,7 +3449,7 @@ Mongo instance's configuration and logging routing.
34493449

34503450
[[boot-features-neo4j]]
34513451
=== Neo4j
3452-
http://neo4j.com/[Neo4j] is an open-source NoSQL graph database that uses a rich data
3452+
https://neo4j.com/[Neo4j] is an open-source NoSQL graph database that uses a rich data
34533453
model of nodes related by first class relationships which is better suited for connected
34543454
big data than traditional rdbms approaches. Spring Boot offers several conveniences for
34553455
working with Neo4j, including the `spring-boot-starter-data-neo4j` '`Starter`'.
@@ -3560,7 +3560,7 @@ following two annotations to your Spring configuration:
35603560
----
35613561

35623562
TIP: For complete details of Spring Data Neo4j, including its rich object mapping
3563-
technologies, refer to their http://projects.spring.io/spring-data-neo4j/[reference
3563+
technologies, refer to their https://projects.spring.io/spring-data-neo4j/[reference
35643564
documentation].
35653565

35663566

@@ -3648,7 +3648,7 @@ configured:
36483648

36493649
[source,properties,indent=0]
36503650
----
3651-
spring.elasticsearch.jest.uris=http://search.example.com:9200
3651+
spring.elasticsearch.jest.uris=https://search.example.com:9200
36523652
spring.elasticsearch.jest.read-timeout=10000
36533653
spring.elasticsearch.jest.username=user
36543654
spring.elasticsearch.jest.password=secret
@@ -3775,7 +3775,7 @@ https://docs.spring.io/spring-data/cassandra/docs/[reference documentation].
37753775

37763776
[[boot-features-couchbase]]
37773777
=== Couchbase
3778-
http://www.couchbase.com/[Couchbase] is an open-source, distributed multi-model NoSQL
3778+
https://www.couchbase.com/[Couchbase] is an open-source, distributed multi-model NoSQL
37793779
document-oriented database that is optimized for interactive applications. Spring Boot
37803780
offers auto-configuration for Couchbase and abstractions on top of it provided by
37813781
https://github.com/spring-projects/spring-data-couchbase[Spring Data Couchbase].
@@ -3824,7 +3824,7 @@ Check the `spring.couchbase.env.*` properties for more details.
38243824
==== Spring Data Couchbase repositories
38253825
Spring Data includes repository support for Couchbase. For complete details of Spring
38263826
Data Couchbase, refer to their
3827-
http://docs.spring.io/spring-data/couchbase/docs/current/reference/html/[reference documentation].
3827+
https://docs.spring.io/spring-data/couchbase/docs/current/reference/html/[reference documentation].
38283828

38293829
You can inject an auto-configured `CouchbaseTemplate` instance as you would with any
38303830
other Spring Bean as long as a _default_ `CouchbaseConfigurer` is available (that
@@ -5023,13 +5023,13 @@ If you use the
50235023
`spring-boot-starter-test` '`Starter`' (in the `test` `scope`), you will find
50245024
the following provided libraries:
50255025

5026-
* http://junit.org[JUnit] -- The de-facto standard for unit testing Java applications.
5026+
* https://junit.org[JUnit] -- The de-facto standard for unit testing Java applications.
50275027
* {spring-reference}/#integration-testing[Spring Test] & Spring Boot Test --
50285028
Utilities and integration test support for Spring Boot applications.
5029-
* http://joel-costigliola.github.io/assertj/[AssertJ] -- A fluent assertion library.
5029+
* https://joel-costigliola.github.io/assertj/[AssertJ] -- A fluent assertion library.
50305030
* http://hamcrest.org/JavaHamcrest/[Hamcrest] -- A library of matcher objects (also known
50315031
as constraints or predicates).
5032-
* http://mockito.org/[Mockito] -- A Java mocking framework.
5032+
* https://mockito.github.io[Mockito] -- A Java mocking framework.
50335033
* https://github.com/skyscreamer/JSONassert[JSONassert] -- An assertion library for JSON.
50345034
* https://github.com/jayway/JsonPath[JsonPath] -- XPath for JSON.
50355035

@@ -5763,7 +5763,7 @@ public class MyTest {
57635763
57645764
@Test
57655765
public void testRequest() throws Exception {
5766-
HttpHeaders headers = template.getForEntity("http://myhost.com", String.class).getHeaders();
5766+
HttpHeaders headers = template.getForEntity("https://myhost.com", String.class).getHeaders();
57675767
assertThat(headers.getLocation().toString(), containsString("myotherhost"));
57685768
}
57695769

spring-boot-samples/spring-boot-sample-actuator-ui/src/main/resources/templates/error.ftl

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<div class="container">
1212
<div class="navbar">
1313
<div class="navbar-inner">
14-
<a class="brand" href="https://freemarker.apache.org"> FreeMarker -
14+
<a class="brand" href="https://freemarker.apache.org/"> FreeMarker -
1515
Plain </a>
1616
<ul class="nav">
1717
<li><a href="${home}"> Home </a></li>

spring-boot-samples/spring-boot-sample-actuator-ui/src/main/resources/templates/home.ftl

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<div class="container">
1212
<div class="navbar">
1313
<div class="navbar-inner">
14-
<a class="brand" href="https://freemarker.apache.org"> FreeMarker -
14+
<a class="brand" href="https://freemarker.apache.org/"> FreeMarker -
1515
Plain </a>
1616
<ul class="nav">
1717
<li><a href="${home}"> Home </a></li>

spring-boot-samples/spring-boot-sample-cache/README.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Simply add the `net.sf.ehcache:ehcache` dependency to the project. Since there i
6262
default `ehcache.xml` configuration file at the root of the classpath, it is automatically
6363
used to configure the underlying `CacheManager`. Note that EhCache 3 uses a different
6464
format and doesn't default to `ehcache.xml` anymore. Check
65-
http://www.ehcache.org/documentation/3.0/xml.html[the documentation] for more details.
65+
https://www.ehcache.org/documentation/3.0/xml.html[the documentation] for more details.
6666

6767

6868

spring-boot-samples/spring-boot-sample-jooq/gensrc/main/java/sample/jooq/domain/Author.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*/
2525
@Generated(
2626
value = {
27-
"http://www.jooq.org",
27+
"https://www.jooq.org",
2828
"jOOQ version:3.8.2"
2929
},
3030
comments = "This class is generated by jOOQ"

spring-boot-samples/spring-boot-sample-jooq/gensrc/main/java/sample/jooq/domain/Book.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*/
2525
@Generated(
2626
value = {
27-
"http://www.jooq.org",
27+
"https://www.jooq.org",
2828
"jOOQ version:3.8.2"
2929
},
3030
comments = "This class is generated by jOOQ"

spring-boot-samples/spring-boot-sample-jooq/gensrc/main/java/sample/jooq/domain/BookStore.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*/
2424
@Generated(
2525
value = {
26-
"http://www.jooq.org",
26+
"https://www.jooq.org",
2727
"jOOQ version:3.8.2"
2828
},
2929
comments = "This class is generated by jOOQ"

spring-boot-samples/spring-boot-sample-jooq/gensrc/main/java/sample/jooq/domain/BookToBookStore.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*/
2525
@Generated(
2626
value = {
27-
"http://www.jooq.org",
27+
"https://www.jooq.org",
2828
"jOOQ version:3.8.2"
2929
},
3030
comments = "This class is generated by jOOQ"

spring-boot-samples/spring-boot-sample-jooq/gensrc/main/java/sample/jooq/domain/DefaultCatalog.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*/
2020
@Generated(
2121
value = {
22-
"http://www.jooq.org",
22+
"https://www.jooq.org",
2323
"jOOQ version:3.8.2"
2424
},
2525
comments = "This class is generated by jOOQ"

spring-boot-samples/spring-boot-sample-jooq/gensrc/main/java/sample/jooq/domain/Language.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*/
2424
@Generated(
2525
value = {
26-
"http://www.jooq.org",
26+
"https://www.jooq.org",
2727
"jOOQ version:3.8.2"
2828
},
2929
comments = "This class is generated by jOOQ"

spring-boot-samples/spring-boot-sample-test/src/test/java/sample/test/domain/VehicleIdentificationNumberTests.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
* Tests for {@link VehicleIdentificationNumber}.
2727
*
2828
* @author Phillip Webb
29-
* @see <a href="http://osherove.com/blog/2005/4/3/naming-standards-for-unit-tests.html">
29+
* @see <a href="https://osherove.com/blog/2005/4/3/naming-standards-for-unit-tests.html">
3030
* Naming standards for unit tests</a>
31-
* @see <a href="http://joel-costigliola.github.io/assertj/">AssertJ</a>
31+
* @see <a href="https://joel-costigliola.github.io/assertj/">AssertJ</a>
3232
*/
3333
public class VehicleIdentificationNumberTests {
3434

spring-boot-samples/spring-boot-sample-web-thymeleaf3/src/main/resources/static/js/jquery-1.7.2.js

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*!
22
* jQuery JavaScript Library v1.7.2
3-
* http://jquery.com/
3+
* https://jquery.com/
44
*
55
* Copyright 2011, John Resig
66
* Dual licensed under the MIT or GPL Version 2 licenses.
7-
* http://jquery.org/license
7+
* https://jquery.org/license
88
*
99
* Includes Sizzle.js
10-
* http://sizzlejs.com/
10+
* https://sizzlejs.com/
1111
* Copyright 2011, The Dojo Foundation
1212
* Released under the MIT, BSD, and GPL Licenses.
1313
*
@@ -565,7 +565,7 @@ jQuery.extend({
565565
}
566566

567567
// Make sure the incoming data is actual JSON
568-
// Logic borrowed from http://json.org/json2.js
568+
// Logic borrowed from https://json.org/json2.js
569569
if ( rvalidchars.test( data.replace( rvalidescape, "@" )
570570
.replace( rvalidtokens, "]" )
571571
.replace( rvalidbraces, "")) ) {
@@ -604,7 +604,7 @@ jQuery.extend({
604604

605605
// Evaluates a script in a global context
606606
// Workarounds based on findings by Jim Driscoll
607-
// http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context
607+
// https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context
608608
globalEval: function( data ) {
609609
if ( data && rnotwhite.test( data ) ) {
610610
// We use execScript on Internet Explorer
@@ -880,7 +880,7 @@ jQuery.extend({
880880
},
881881

882882
// Use of jQuery.browser is frowned upon.
883-
// More details: http://docs.jquery.com/Utilities/jQuery.browser
883+
// More details: https://docs.jquery.com/Utilities/jQuery.browser
884884
uaMatch: function( ua ) {
885885
ua = ua.toLowerCase();
886886

@@ -2159,7 +2159,7 @@ jQuery.fn.extend({
21592159
});
21602160
},
21612161
// Based off of the plugin by Clint Helfers, with permission.
2162-
// http://blindsignals.com/index.php/2009/07/jquery-delay/
2162+
// http://blindsignals.com
21632163
delay: function( time, type ) {
21642164
time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
21652165
type = type || "fx";
@@ -2688,7 +2688,7 @@ jQuery.extend({
26882688
tabIndex: {
26892689
get: function( elem ) {
26902690
// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set
2691-
// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
2691+
// https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
26922692
var attributeNode = elem.getAttributeNode("tabindex");
26932693

26942694
return attributeNode && attributeNode.specified ?
@@ -3551,7 +3551,7 @@ function returnTrue() {
35513551
}
35523552

35533553
// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
3554-
// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
3554+
// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
35553555
jQuery.Event.prototype = {
35563556
preventDefault: function() {
35573557
this.isDefaultPrevented = returnTrue;
@@ -3941,7 +3941,7 @@ jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblcl
39413941
* Sizzle CSS Selector Engine
39423942
* Copyright 2011, The Dojo Foundation
39433943
* Released under the MIT, BSD, and GPL Licenses.
3944-
* More information: http://sizzlejs.com/
3944+
* More information: https://sizzlejs.com/
39453945
*/
39463946
(function(){
39473947

@@ -6298,7 +6298,7 @@ function findInputs( elem ) {
62986298
}
62996299
}
63006300

6301-
// Derived From: http://www.iecss.com/shimprove/javascript/shimprove.1-0-1.js
6301+
// Derived From: https://www.iecss.com/shimprove/javascript/shimprove.1-0-1.js
63026302
function shimCloneNode( elem ) {
63036303
var div = document.createElement( "div" );
63046304
safeFragment.appendChild( div );
@@ -6735,7 +6735,7 @@ if ( document.defaultView && document.defaultView.getComputedStyle ) {
67356735

67366736
// A tribute to the "awesome hack by Dean Edwards"
67376737
// WebKit uses "computed value (percentage if specified)" instead of "used value" for margins
6738-
// which is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values
6738+
// which is against the CSSOM draft spec: https://dev.w3.org/csswg/cssom/#resolved-values
67396739
if ( !jQuery.support.pixelMargin && computedStyle && rmargin.test( name ) && rnumnonpx.test( ret ) ) {
67406740
width = style.width;
67416741
style.width = ret;
@@ -8250,7 +8250,7 @@ if ( jQuery.support.ajax ) {
82508250

82518251
// Firefox throws exceptions when accessing properties
82528252
// of an xhr when a network error occured
8253-
// http://helpful.knobs-dials.com/index.php/Component_returned_failure_code:_0x80040111_(NS_ERROR_NOT_AVAILABLE)
8253+
// https://helpful.knobs-dials.com/index.php/Component_returned_failure_code:_0x80040111_(NS_ERROR_NOT_AVAILABLE)
82548254
try {
82558255

82568256
// Was never called and is aborted or complete

0 commit comments

Comments
 (0)