Skip to content

Commit cd53715

Browse files
committed
Use https for Thymeleaf xmlns:layout
1 parent a99131f commit cd53715

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

spring-boot-autoconfigure/src/test/resources/templates/view.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<html xmlns:th="https://www.thymeleaf.org" xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout" layout:decorator="layout">
1+
<html xmlns:th="https://www.thymeleaf.org" xmlns:layout="https://www.ultraq.net.nz/web/thymeleaf/layout" layout:decorator="layout">
22
<head>
33
<title layout:fragment="title">Content</title>
44
</head>

spring-boot-samples/spring-boot-sample-devtools/src/main/resources/templates/hello.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE html>
22
<html xmlns:th="https://www.thymeleaf.org"
3-
xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout"
3+
xmlns:layout="https://www.ultraq.net.nz/web/thymeleaf/layout"
44
layout:decorator="layout">
55
<head>
66
<title>Hello</title>

spring-boot-samples/spring-boot-sample-devtools/src/main/resources/templates/layout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE html>
22
<html xmlns:th="https://www.thymeleaf.org"
3-
xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout">
3+
xmlns:layout="https://www.ultraq.net.nz/web/thymeleaf/layout">
44
<head>
55
<title>Layout</title>
66
<link rel="stylesheet" th:href="@{/css/application.css}" />

spring-boot-samples/spring-boot-sample-web-ui/src/main/resources/templates/layout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE html>
22
<html xmlns:th="https://www.thymeleaf.org"
3-
xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout">
3+
xmlns:layout="https://www.ultraq.net.nz/web/thymeleaf/layout">
44
<head>
55
<title>Layout</title>
66
<link rel="stylesheet" th:href="@{/css/bootstrap.min.css}"

spring-boot-samples/spring-boot-sample-web-ui/src/main/resources/templates/messages/form.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE html>
22
<html xmlns:th="https://www.thymeleaf.org"
3-
xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout"
3+
xmlns:layout="https://www.ultraq.net.nz/web/thymeleaf/layout"
44
layout:decorator="layout">
55
<head>
66
<title>Messages : Create</title>

spring-boot-samples/spring-boot-sample-web-ui/src/main/resources/templates/messages/list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE html>
22
<html xmlns:th="https://www.thymeleaf.org"
3-
xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout"
3+
xmlns:layout="https://www.ultraq.net.nz/web/thymeleaf/layout"
44
layout:decorator="layout">
55
<head>
66
<title>Messages : View all</title>

spring-boot-samples/spring-boot-sample-web-ui/src/main/resources/templates/messages/view.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<html xmlns:th="https://www.thymeleaf.org"
2-
xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout"
2+
xmlns:layout="https://www.ultraq.net.nz/web/thymeleaf/layout"
33
layout:decorator="layout">
44
<head>
55
<title>Messages : View</title>

0 commit comments

Comments
 (0)