Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Table of Contents
indent20px
styledisc

This page lists the tasks the Wicket team agreed to implement for Wicket 7.0.

...

Assignee: mgrigorov
Status: Done

Generics for org.apache.wicket.Component

Using Java 7 will allow to use the "diamonds operator", i.e.

Code Block
titleMyPage.java
borderStylesolid

  Component<Entity> c = new SomeComponent<>("id", model);

Assignee:
Status: Not started Dropped
Jira: WICKET-4930

Servlet 3 as a minimum

...

PageParameters improvements
  • read-only Dropped
  • make it possible to differentiate between named

...

Assignee:
Status: Not started

...

otherwise referencing the component as needed in throttle settings is annoying

Code Block

queryField.add(new AjaxFormComponentUpdatingBehavior("onkeydown") {
	protected void updateAjaxAttributes(AjaxRequestAttributes attributes) {
		attributes.setThrottlingSettings(new ThrottlingSettings(queryField.getMarkupId(), Duration.seconds(1)));
----------------------------------------------------------------------------^

...

JavaScriptResourceReference#getDependencies() should return an appendable List

so we can do

Code Block

class MyReference extends JavascriptReference {
  getDependencies() { List<?> list=super.getDependencies(); list.add(...); return list; }
}

...

Assignee: ivaynberg
Status: Dropped
Jira: WICKET-5255

cdi 1.1 upgrade

wicket-cdi should use cdi 1.1 which should remove dependency onto seam-conversation module.

Assignee: ivaynbergpapegaaji
Status: Done
Jira: WICKET-4951

Upgrade dependencies to their latest stable version

...

  • getApplication().getCssSettings().setSortOrderDownClass("sort-order-down");

Assignee: mgrigorov
Status: Done
Jira: WICKET-5257

Remove deprecated in Wicket 6.x classes and methods

For example:

  • the old Swing based implementation of Tree
  • the backward compatibility helper methods in AbstractDefaultAjaxBehavior
  • WicketTester#startComponent()
  • ...