You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by ad...@apache.org on 2015/02/01 15:49:59 UTC

svn commit: r1656307 - in /wicket/common/site/trunk/_site/guide/guide/src/docs/guide: toc.yml wicketstuff/wicketstuff_7.gdoc

Author: adelbene
Date: Sun Feb  1 14:49:59 2015
New Revision: 1656307

URL: http://svn.apache.org/r1656307
Log:
Added a paragraph for wicketstuff stateless project

Added:
    wicket/common/site/trunk/_site/guide/guide/src/docs/guide/wicketstuff/wicketstuff_7.gdoc
Modified:
    wicket/common/site/trunk/_site/guide/guide/src/docs/guide/toc.yml

Modified: wicket/common/site/trunk/_site/guide/guide/src/docs/guide/toc.yml
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/src/docs/guide/toc.yml?rev=1656307&r1=1656306&r2=1656307&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/src/docs/guide/toc.yml (original)
+++ wicket/common/site/trunk/_site/guide/guide/src/docs/guide/toc.yml Sun Feb  1 14:49:59 2015
@@ -211,6 +211,7 @@ wicketstuff:
   wicketstuff_4: Module wicketstuff-googlecharts
   wicketstuff_5: Module wicketstuff-inmethod-grid
   wicketstuff_6: Module wicketstuff-rest-annotations
+  wicketstuff_7: Module stateless
 redirects:
   title: Lost In Redirection With Apache Wicket (Appendix)
 contributing:

Added: wicket/common/site/trunk/_site/guide/guide/src/docs/guide/wicketstuff/wicketstuff_7.gdoc
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/src/docs/guide/wicketstuff/wicketstuff_7.gdoc?rev=1656307&view=auto
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/src/docs/guide/wicketstuff/wicketstuff_7.gdoc (added)
+++ wicket/common/site/trunk/_site/guide/guide/src/docs/guide/wicketstuff/wicketstuff_7.gdoc Sun Feb  1 14:49:59 2015
@@ -0,0 +1,4 @@
+Wicket makes working with AJAX easy and pleasant with its component-oriented abstraction. However as side effect, AJAX components and behaviors make their hosting page stateful. This can be quite annoying if we are working on a page that must be stateless (for example a login page). 
+In this case an obvious solution would be to roll out our own stateless components/behaviors, but Wicketstuff alredy offers such kind of artifacts with @stateless@ module. Here you can find the stateless version of the basic AJAX componets and behaviors shiped with Wicket, like @StatelessAjaxSubmitLink@, @StatelessAjaxFallbackLink@, @StatelessAjaxEventBehavior@, @StatelessAjaxFormSubmitBehavior@ etc...
+A short introduction to this module can be found on its "home page":https://github.com/wicketstuff/core/tree/master/jdk-1.7-parent/stateless-parent .
+