Skip to content

Commit

Permalink
use thymeleaf version 3.0.2, fix job details page with div elements i…
Browse files Browse the repository at this point in the history
…nstead of spans
  • Loading branch information
Micha Regel committed Nov 22, 2016
1 parent fc4a45f commit c81e91f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History

## Release 0.79.1
* **[edison]** Upgrade thymeleaf to version 3.0.2.RELEASE
* **[edison-jobs]** jobdetails page uses div tags instead of spans

## Release 0.79.0
* **[edison]** Upgrade spring boot to 1.4.2.RELEASE
* **[edison]** Upgrade spring version to 4.3.4.RELEASE
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ subprojects {
// Minor Release: 0.X.0: Additional Features, updates from minor releases in Spring
// Micro Release: 0.0.X: Bugfixes, non-breaking changes, updates from micro releases in Spring
// DO NOT FORGET TO DOCUMENT CHANGES IN HISTORY.MD
version = '0.79.0'
version = '0.79.1'

repositories {
mavenCentral()
Expand Down
4 changes: 4 additions & 0 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ ext.libs = [
metricsSpring: [
"com.ryantenney.metrics:metrics-spring:3.1.3",
"org.springframework:spring-context-support:" + springVersion],
thymeleaf3: [
'org.thymeleaf:thymeleaf:3.0.2.RELEASE',
'org.thymeleaf:thymeleaf-spring4:3.0.2.RELEASE',
'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:2.1.0' ],
testUnit: [
"junit:junit:4.12",
"org.hamcrest:hamcrest-core:1.3",
Expand Down
4 changes: 1 addition & 3 deletions edison-jobs/src/main/resources/templates/job.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,7 @@ <h3 class="panel-title" th:text="${job.jobType}">title</h3>
<dd th:text="${job.lastUpdated}">&nbsp;</dd>
<dt>Messages</dt>
<dd>
<pre class=".pre-scrollable">
<span th:each="message : ${job.messages}" th:text="${message}" />
</pre>
<pre class="pre-scrollable"><div th:each="message : ${job.messages}" th:text="${message}" ></div></pre>
</dd>
</dl>
</div>
Expand Down
1 change: 1 addition & 0 deletions edison-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ dependencies {
compile libs.bootstrap

compile libs.springBootThymeleaf
compile libs.thymeleaf3

testCompile project(":edison-testsupport")
}
Expand Down

0 comments on commit c81e91f

Please sign in to comment.