The Wicket team is pleased to announce the Wicket 1.2.3 release!

Wicket is a Java web application framework that takes simplicity,
separation of concerns and ease of development to a whole new level.
Wicket pages can be mocked up, previewed and later revised using
standard WYSIWYG HTML design tools. Dynamic content processing and
form handling is all handled in Java code using a first-class
component model backed by POJO data beans that can easily be persisted
using your favorite technology.

More information on Wicket can be found here: http://wicketframework.org

Although Wicket has recently entered the ASF Incubator, this interim
release is provided outside of the ASF, solely as a service to existing
Wicket users to resolve existing bugs in the Wicket product. As such,
this release of the Wicket project is not endorsed or approved by
the Apache Software Foundation. The Apache Software Foundation is
in no way affiliated with this release.

Changes in this version include:

New Features:

o Added method protected void onDisabled(final ComponentTag tag) to
FormComponent, which is called during rendering when the component is
disabled. By default, an disabled="disabled" attribute is added, but
clients may override this method.
o Made synchronization timeout configurable on an application level.
Later, we might add more fine grained control.
o Implemented optional interface for initializers: IDestroyer that may
be implemented by initializers to clear up stuff when the application
is shut down. Wicket's JMX code uses this to clean up the JMX beans it
registered on application shutdown.
o Wicket now has JMX support. For 1.2 as a separate project
(wicket-jmx), for 2.0 as part of the core distribution.
o The application's configuration type is now kept in a member which
can be read using Application#getConfigurationType.
o Added AbortWithWebError abort exception.
o Bookmarkable page links set the target attribute to the proper page
map when a page map is set and when the tag has a target attribute


Fixed Bugs:

o Make sure that bookmarkable urls for classes containing non-ascii
characters is encoded properly.  Issue: WICKET-16.
o There was no check on render authorization action done for seperate
component renders, resulting in that aut
horization check not being executed with ajax requests. Thanks to
Benjamin Podszun.
o Page was not checked for render authorization action.
o Package resources that are not found now log a warning and then
throw an abort error instead of a regular exception and send a 404 to
the browser if in a web request.
o Fixed deadlock possiblity on high load situations where resource
managing filters (such as Spring's/ Hibernate's
OpenSessionInViewFilter) run out of those resources before they are
released. A test for this issue can be found in wicket-threadtest,
wicket.threadtest.App2Test1. This bug is dangerous; everyone using
Wicket 1.2.x is encouraged to update to this Wicket version asap.
Thanks to Eelco Hillenius.
o ResourceReference and PackageResourceReference evolved in doing
almost the same thing with ResourceReference falling back to package
resources. The two classes were used mixed for the same purposes, so
it obviously was confusing. PackageResourceReference is now deprecated
(and removed in 2.0) and ResourceReference uses package resources as
the explicit default now.
o FileUploadField's fileUpload member is now transient, and nulled at
the end of a request; fileUpload depends on non-serializable classes
and should be used for the upload request only anyway.
o InputStreams returned from FileUpload is now closed at the end of
the request  Issue: 1543832.
o Fixed a bug in WicketTester.clickLink. When clicking an AjaxSubmitLink
which submitted a form with a CheckGroup inside it, the test would
fail. This was because I had only checked for RadioGroup when copying
the data from the form to the request.
o Do not set window.name automatically to the page map as this gives
problems with frames
o Buttons are now versioned by default
o It is now possible to override default TypeValidator error key via
ConversionException.setResourceKey()
o Fixed bug where head contributions done through header contributors
added to the page only worked on first page render
o SubmitLink now properly supports back button Thanks to Erik Brakkee.
o Fixed AjaxPreprocessingCallDecorator Thanks to Ingram Chen.
o AjaxFormValidatingBehavior now property updates feedback panels when
form error occurs Thanks to Adam Smyczek.
o AjaxRequestTarget now doesn't switch component use check off, as it
is no longer needed. Thanks to Tomer Mevorach.

You can download this release from the sourceforge.net servers
(http://sourceforge.net/project/showfiles.php?group_id=119783), and it
will be pushed to the maven ibiblio repository momentarily.

Have fun!

- The Wicket team

--
http://wicketframework.org
http://www.thebeststuffintheworld.com/vote_for/wicket
http://frappr.com/wicket

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to