Skip to content

Commit

Permalink
Aligned with master
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastien Briquet committed Feb 12, 2015
1 parent 808d76e commit 06519e9
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 7 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Once done, just include the jar(s) in your project's build path.
<dependency>
<groupId>com.googlecode.wicket-jquery-ui</groupId>
<artifactId>wicket-jquery-ui</artifactId>
<version>6.18.0</version> <!-- or 1.5.11, or 7.0.0-M3 -->
<version>6.19.0</version> <!-- or 1.5.11, or 7.0.0-M5 -->
</dependency>
```

Expand All @@ -47,6 +47,8 @@ If the version you specified is *snapshot*, you might define this repository:

<table>
<tr><th>wicket-jquery-ui</th><th>Wicket</th><th>jQuery UI</th></tr>
<tr><td>7.0.0-M5</td><td>7.0.0-M5</td><td>1.11.2</td></tr>
<tr><td>6.19.0</td><td>6.19.0</td><td>1.11.2</td></tr>
<tr><td>6.18.0</td><td>6.18.0</td><td>1.11.2</td></tr>
<tr><td>6.17.0</td><td>6.17.0</td><td>1.11.1</td></tr>
<tr><td>6.16.0</td><td>6.16.0</td><td>1.11.0</td></tr>
Expand All @@ -67,6 +69,8 @@ If the version you specified is *snapshot*, you might define this repository:

<table>
<tr><th>wicket-kendo-ui</th><th>Wicket</th><th>Kendo UI</th></tr>
<tr><td>7.0.0-M5</td><td>7.0.0-M5</td><td>2014.3.1119 (ASFv2)</td></tr>
<tr><td>6.19.0</td><td>6.19.0</td><td>2014.3.1119 (ASFv2)</td></tr>
<tr><td>6.18.0</td><td>6.18.0</td><td>2014.2.716 (ASFv2)</td></tr>
<tr><td>6.17.0</td><td>6.17.0</td><td>2014.2.716 (ASFv2)</td></tr>
<tr><td>6.16.0</td><td>6.16.0</td><td>2014.1.416 (ASFv2)</td></tr>
Expand Down Expand Up @@ -94,7 +98,7 @@ To use wicket-jquery-ui with a standard theme, just add the corresponding theme
<dependency>
<groupId>com.googlecode.wicket-jquery-ui</groupId>
<artifactId>wicket-jquery-ui-theme-uilightness</artifactId>
<version>6.18.0</version>
<version>6.19.0</version>
</dependency>
```

Expand All @@ -110,7 +114,7 @@ To use wicket-kendo-ui with a standard theme, just add the corresponding theme d
<dependency>
<groupId>com.googlecode.wicket-jquery-ui</groupId>
<artifactId>wicket-kendo-ui-theme-default</artifactId>
<version>6.18.0</version>
<version>6.19.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
</scm>

<properties>
<wicket.version>7.0.0-M5</wicket.version>
<wicket.version>7.0.0-SNAPSHOT</wicket.version>
<junit.version>4.12</junit.version>
<jetty.version>8.1.16.v20140903</jetty.version>
</properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,6 @@ public void renderHead(IHeaderResponse response)

// response.render(JavaScriptHeaderItem.forReference(new KendoGlobalizeResourceReference("fr"))); // or fr-FR
// response.render(JavaScriptHeaderItem.forReference(new KendoGlobalizeResourceReference(KendoCulture.FR_FR)));
response.render(JavaScriptHeaderItem.forReference(new KendoGlobalizeResourceReference(Locale.FRENCH))); // wicket7
response.render(JavaScriptHeaderItem.forReference(new KendoGlobalizeResourceReference(Locale.FRENCH)));
}
}
7 changes: 7 additions & 0 deletions wicket-kendo-ui-culture/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@

<dependencies>

<!-- PROJECT DEPENDENCIES -->
<dependency>
<groupId>com.googlecode.wicket-jquery-ui</groupId>
<artifactId>wicket-jquery-ui-core</artifactId>
<version>7.0.0-SNAPSHOT</version>
</dependency>

<!-- WICKET DEPENDENCIES -->
<dependency>
<groupId>org.apache.wicket</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
/**
* The resource reference for the Kendo Globalize javascript library.<br/>
* <br/>
* <b>Warning:</b> When globalize.js is registered before Kendo scripts, then Kendo will use globalize.js features instead of Kendo Globalization.
* <b>Warning:</b> When globalize.js is registered before Kendo scripts, then Kendo will use globalize.js features instead of Kendo Globalization.
*
* @author Sebastien Briquet - sebfz1
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ public void info(AjaxRequestTarget target, Serializable message)
* @deprecated too confusing with error(Serializable), use log(Serializable, true) or error(AjaxRequestTarget, Serializable)
*/
@Deprecated
// XXX
public void error(String message)
{
this.log(message, true);
Expand Down

0 comments on commit 06519e9

Please sign in to comment.