From f90b98969d10a368c18ecccc608f6c16e3c6c685 Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Tue, 10 Apr 2007 17:03:41 +0000 Subject: [PATCH] jsf docs --- .../docs/reference/src/flow-executor.xml | 22 ++++++++++--------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/spring-webflow/docs/reference/src/flow-executor.xml b/spring-webflow/docs/reference/src/flow-executor.xml index ca18c124..4d3b2445 100644 --- a/spring-webflow/docs/reference/src/flow-executor.xml +++ b/spring-webflow/docs/reference/src/flow-executor.xml @@ -567,9 +567,9 @@ - The artifacts defined faces-config.xml and managed by the JSF provider use Spring to locate - the Web Flow system. A Spring Web Application Context is bootstrapped using a ContextLoaderListener - in the web.xml deployment descriptor: + The artifacts defined faces-config.xml use Spring to locate the Web Flow system. + This requires a Spring Web Application Context to be bootstrapped using a ContextLoaderListener in + the web.xml deployment descriptor: <context-param> @@ -623,14 +623,16 @@ <h:commandLink value="Go" action="flowId:myflow"/> - The command link above says launch 'myflow' when clicked. - By default, an action outcome prefixed with flowId: will treated as a flow definition identifier. - The FlowNavigationHandler will launch a new execution of that flow definition. - - - The flow id prefix respected by the FlowNavigationHandler is configurable. See the API documentation for - more information. + The command link above says launch 'myflow' when clicked. 'myflow' is expected + to be a valid id of a flow definition registered in the configured registry. + + + By default, an action outcome prefixed with flowId: will be treated as a flow definition identifier. + The flow id prefix respected by the FlowNavigationHandler is configurable. See the API documentation for + more information. + + Launching a flow execution - normal HTML anchor