Skip to content

Commit 2c03860

Browse files
committed
refactor(tml-configuration-groups): various fixes + switch to 1.0.0
* Fixed wrong URLs * Improved comments * Fixed attribute names
1 parent cb3fdfe commit 2c03860

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

datatables-thymeleaf-configuration-groups/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ You can then access the sample here: [http://localhost:9090/datatables-thymeleaf
3636

3737
## Bug/improvement
3838

39-
Please report it using the issue tracker dedicated to all sample apps: [https://waffle.io/dandelion/dandelion-samples](https://waffle.io/dandelion/dandelion-samples)
39+
Please report it using the issue tracker dedicated to all sample apps: [https://github.com/dandelion/dandelion-datatables-samples/issues](https://github.com/dandelion/dandelion-datatables-samples/issues)
4040

4141
=
4242
The [Dandelion team](http://dandelion.github.io/team/).

datatables-thymeleaf-configuration-groups/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.github.dandelion</groupId>
66
<artifactId>datatables-thymeleaf-configuration-groups</artifactId>
7-
<version>1.0.0-SNAPSHOT</version>
7+
<version>1.0.0</version>
88
<packaging>war</packaging>
99

1010
<name>Dandelion :: Samples :: Datatables :: datatables-thymeleaf-configuration-groups</name>
@@ -18,7 +18,7 @@
1818
<dependency>
1919
<groupId>com.github.dandelion</groupId>
2020
<artifactId>dandelion-datatables-samples-bom</artifactId>
21-
<version>1.0.0-SNAPSHOT</version>
21+
<version>1.0.0</version>
2222
<type>pom</type>
2323
<scope>import</scope>
2424
</dependency>
@@ -53,7 +53,7 @@
5353
</dependency>
5454
<dependency>
5555
<groupId>org.thymeleaf.extras</groupId>
56-
<artifactId>thymeleaf-extras-tiles2</artifactId>
56+
<artifactId>thymeleaf-extras-tiles2-spring3</artifactId>
5757
</dependency>
5858

5959
<!-- Apache Tiles -->

datatables-thymeleaf-configuration-groups/src/main/resources/dandelion/datatables/datatables.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
##### ==================
88
global.css.theme=bootstrap2
99
global.css.class=table table-striped
10-
global.feature.paginationType=bootstrap_full_numbers
10+
global.feature.pagingType=bootstrap_full_numbers
1111

1212
##### ==================
1313
##### Group1 configuration
@@ -16,13 +16,13 @@ group1.css.class=table table-striped table-condensed
1616
group1.feature.lengthChange=
1717
group1.feature.sortable=
1818
group1.feature.stateSave=
19-
group1.feature.paginationType=bootstrap_four_button
19+
group1.feature.pagingType=bootstrap_four_button
2020
group1.feature.dom=lfrtp
2121

2222
##### ==================
2323
##### Group2 configuration
2424
##### ==================
2525
group2.feature.filterable=false
2626
group2.css.class=table table-hover
27-
group2.feature.paginationType=bootstrap_four_button
27+
group2.feature.pagingType=bootstrap_four_button
2828
group2.feature.dom=lfrtp

datatables-thymeleaf-configuration-groups/src/main/resources/spring/mvc-view-config.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
</bean>
2424

2525
<bean id="tilesViewResolver" class="org.thymeleaf.spring3.view.ThymeleafViewResolver">
26-
<property name="viewClass" value="org.thymeleaf.extras.tiles2.spring.web.view.ThymeleafTilesView" />
26+
<property name="viewClass" value="org.thymeleaf.extras.tiles2.spring3.web.view.ThymeleafTilesView" />
2727
<property name="templateEngine" ref="templateEngine" />
2828
</bean>
2929

3030
<!-- Configures the Tiles layout system using a specific thymeleaf-enabled Tiles Configurer -->
31-
<bean id="tilesConfigurer" class="org.thymeleaf.extras.tiles2.spring.web.configurer.ThymeleafTilesConfigurer">
31+
<bean id="tilesConfigurer" class="org.thymeleaf.extras.tiles2.spring3.web.configurer.ThymeleafTilesConfigurer">
3232
<property name="definitions">
3333
<list>
3434
<value>/WEB-INF/tiles/setup-tiles.xml</value>

datatables-thymeleaf-configuration-groups/src/main/webapp/WEB-INF/views/common/layout.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
99
</head>
1010
<body>
11-
<a href="https://github.com/dandelion/dandelion-samples">
11+
<a href="https://github.com/dandelion/dandelion-datatables-samples">
1212
<img style="position: fixed; top: 0; left: 0; border: 0; z-index: 1500;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_green_007200.png" alt="Fork me on GitHub"/>
1313
</a>
1414
<div class="navbar navbar-fixed-top">
@@ -32,7 +32,7 @@
3232
<ul class="dropdown-menu">
3333
<li><a href="http://dandelion.github.io/datatables">Documentation</a></li>
3434
<li><a href="http://dandelion-forum.48353.x6.nabble.com/">Forum</a></li>
35-
<li><a href="https://waffle.io/dandelion/dandelion-samples">Report an issue</a></li>
35+
<li><a href="https://github.com/dandelion/dandelion-datatables-samples/issues">Report an issue</a></li>
3636
</ul>
3737
</li>
3838
</ul>

datatables-thymeleaf-configuration-groups/src/main/webapp/WEB-INF/views/local-overloading.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h3>Local overloading</h3>
1717
<div class="span12">
1818

1919
<div dt:conf="myTableId">
20-
<div dt:confType="property" dt:name="feature.dom" dt:value="t"></div>
20+
<div dt:confType="option" dt:name="feature.dom" dt:value="t"></div>
2121
</div>
2222

2323
<table id="myTableId" dt:table="true">

0 commit comments

Comments
 (0)