Merge branch '1.5.x' into 2.0.x

This commit is contained in:
Phillip Webb
2019-06-04 00:05:57 -07:00
78 changed files with 90 additions and 78 deletions

View File

@@ -14,4 +14,4 @@ objectClasses: ( 1.3.6.1.4.1.32473.1.2.2
SUP top
AUXILIARY
MAY exampleAttributeName
X-ORIGIN 'Managing Schema Document' )
X-ORIGIN 'Managing Schema Document' )

View File

@@ -1 +1 @@
INSERT INTO BAR VALUES (1, 'Andy');
INSERT INTO BAR VALUES (1, 'Andy');

View File

@@ -23,4 +23,4 @@
</expiry>
</cache>
</config>
</config>

View File

@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml"/>
</configuration>
</configuration>

View File

@@ -6,4 +6,4 @@
<h2>A Message</h2>
<div>{{message}} at {{time}}</div>
</body>
</html>
</html>

View File

@@ -12,4 +12,4 @@
</div>
<div class="jumbotron">{{#include}}{{body}}{{/include}}</div>
</body>
</html>
</html>

View File

@@ -12,4 +12,4 @@
</div>
<div class="jumbotron">{{>content}}</div>
</body>
</html>
</html>

View File

@@ -1,4 +1,4 @@
CREATE TABLE SPAM (
id INTEGER IDENTITY PRIMARY KEY,
name VARCHAR(30),
);
);

View File

@@ -1 +1 @@
INSERT INTO FOO VALUES (1, 'Andy');
INSERT INTO FOO VALUES (1, 'Andy');

View File

@@ -1,2 +1,2 @@
INSERT INTO BAR(id, name) VALUES (1, 'bar');
INSERT INTO BAR(id, name) VALUES (2, 'ばー');
INSERT INTO BAR(id, name) VALUES (2, 'ばー');

View File

@@ -1,4 +1,4 @@
CREATE TABLE FOO (
id INTEGER IDENTITY PRIMARY KEY,
name VARCHAR(30),
);
);

View File

@@ -1,4 +1,4 @@
CREATE TABLE BAR (
id INTEGER IDENTITY PRIMARY KEY,
name VARCHAR(30),
);
);

View File

@@ -1 +1 @@
<html><body data:foo="${foo}"></body></html>
<html><body data:foo="${foo}"></body></html>

View File

@@ -1 +1 @@
<html><body th:text="${foo}">Home</body></html>
<html><body th:text="${foo}">Home</body></html>

View File

@@ -1 +1 @@
<html><body th:text="${#temporals.create('2015','11','24')}"></body></html>
<html><body th:text="${#temporals.create('2015','11','24')}"></body></html>

View File

@@ -11,4 +11,4 @@
</div>
</div>
</body>
</html>
</html>

View File

@@ -1 +1 @@
Message: ${greeting}
Message: ${greeting}

View File

@@ -1 +1 @@
<html><body>Message: <span th:text="${greeting}">Hello</span></body></html>
<html><body>Message: <span th:text="${greeting}">Hello</span></body></html>

View File

@@ -1 +1 @@
Message: ${greeting}
Message: ${greeting}

View File

@@ -1,4 +1,4 @@
<html xmlns:th="https://www.thymeleaf.org" xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout" layout:decorator="layout">
<html xmlns:th="https://www.thymeleaf.org" xmlns:layout="https://www.ultraq.net.nz/web/thymeleaf/layout" layout:decorator="layout">
<head>
<title layout:fragment="title">Content</title>
</head>
@@ -7,4 +7,4 @@
<span th:text="${foo}">foo</span>
</div>
</body>
</html>
</html>