This fix introduced typos in persist.apt
Am 23.04.2009 01:05 schrieb [email protected]:
Author: hlship
Date: Wed Apr 22 23:05:17 2009
New Revision: 767708
URL: http://svn.apache.org/viewvc?rev=767708&view=rev
Log:
TAP5-274: Application State Object is a misleading term; rename
@ApplicationState to @SessionState
Added:
tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/annotations/SessionState.java
(with props)
Modified:
tapestry/tapestry5/trunk/src/site/apt/guide/appstate.apt
tapestry/tapestry5/trunk/src/site/apt/guide/persist.apt
tapestry/tapestry5/trunk/src/site/apt/index.apt
tapestry/tapestry5/trunk/src/site/site.xml
tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/annotations/ApplicationState.java
tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/internal/services/ApplicationStateManagerImpl.java
tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/internal/services/SessionApplicationStatePersistenceStrategy.java
tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/internal/transform/ApplicationStateWorker.java
tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStateContribution.java
tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStateManager.java
tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStatePersistenceStrategy.java
tapestry/tapestry5/trunk/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/pages/BeanEditDateDemo.java
tapestry/tapestry5/trunk/tapestry-core/src/test/java/org/apache/tapestry5/internal/services/SessionApplicationStatePersistenceStrategyTest.java
tapestry/tapestry5/trunk/tapestry-core/src/test/java/org/apache/tapestry5/internal/transform/ApplicationStateWorkerTest.java
tapestry/tapestry5/trunk/tapestry-ioc/src/site/apt/configuration.apt
tapestry/tapestry5/trunk/tapestry-ioc/src/site/apt/decorator.apt
tapestry/tapestry5/trunk/tapestry-ioc/src/site/apt/index.apt
*snip*
Modified: tapestry/tapestry5/trunk/src/site/apt/guide/persist.apt
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/src/site/apt/guide/persist.apt?rev=767708&r1=767707&r2=767708&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/src/site/apt/guide/persist.apt (original)
+++ tapestry/tapestry5/trunk/src/site/apt/guide/persist.apt Wed Apr 22 23:05:17
2009
@@ -9,12 +9,15 @@
This is important, as it pertains to how Tapestry pages are pooled and
shared, over time,
by many users.
- However, you often want to store some persistent data on a page, and have access
+ However, you often want to store some persistent data on a <single> page,
and have access
to it in later requests. Long term storage of data should go in a database
of some form, but
- server-side state for the duration of the current request should go in the
HttpSession (though Tapestry
+ server-side state for the duration of the as users interaction with the
application should go in the HttpSession (though Tapestry
What did you want to say? Maybe "for the duratation of a user's
interaction"?
provides a few other options as well).
+
+ <<Note:>> To store values that may be accessed across multiple pages, uses
+ a {{{appstate.html}session state object}}.
- This is accomplished with the
+ Making a field persiste is accomplished with the
Making a field persisteNT
{{{../apidocs/org/apache/tapestry5/annotations/Persist.html}Persist annotation}}.
Again, this does <not>
refer to database persistence, it refers to session persistance.
*snip*
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]