Add doctype declarations to all chapters and xinclude from the main reference file, fix red markers exposed by adding declarations
This commit is contained in:
@@ -1,26 +1,6 @@
|
||||
<?xml version='1.0' encoding="iso-8859-1"?>
|
||||
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd"
|
||||
[
|
||||
<!ENTITY overview SYSTEM "overview.xml">
|
||||
<!ENTITY whatsnew SYSTEM "whatsnew.xml">
|
||||
<!ENTITY defining-flows SYSTEM "defining-flows.xml">
|
||||
<!ENTITY el SYSTEM "el.xml">
|
||||
<!ENTITY views SYSTEM "views.xml">
|
||||
<!ENTITY actions SYSTEM "actions.xml">
|
||||
<!ENTITY flow-managed-persistence SYSTEM "flow-managed-persistence.xml">
|
||||
<!ENTITY flow-security SYSTEM "flow-security.xml">
|
||||
<!ENTITY flow-inheritance SYSTEM "flow-inheritance.xml">
|
||||
<!ENTITY system-setup SYSTEM "system-setup.xml">
|
||||
<!ENTITY spring-mvc SYSTEM "spring-mvc.xml">
|
||||
<!ENTITY spring-js SYSTEM "spring-js.xml">
|
||||
<!ENTITY spring-faces SYSTEM "spring-faces.xml">
|
||||
<!ENTITY portlet SYSTEM "portlet.xml">
|
||||
<!ENTITY testing SYSTEM "testing.xml">
|
||||
<!ENTITY upgrade-guide SYSTEM "upgrade-guide.xml">
|
||||
<!ENTITY flow-definition-field-mappings SYSTEM "flow-definition-field-mappings.xml">
|
||||
]>
|
||||
|
||||
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
|
||||
<book>
|
||||
<bookinfo>
|
||||
<title>Spring Web Flow Reference Guide</title>
|
||||
@@ -63,22 +43,40 @@
|
||||
|
||||
<toc />
|
||||
|
||||
&overview;
|
||||
&whatsnew;
|
||||
&defining-flows;
|
||||
⪙
|
||||
&views;
|
||||
&actions;
|
||||
&flow-managed-persistence;
|
||||
&flow-security;
|
||||
&flow-inheritance;
|
||||
&system-setup;
|
||||
&spring-mvc;
|
||||
&spring-js;
|
||||
&spring-faces;
|
||||
&portlet;
|
||||
&testing;
|
||||
&upgrade-guide;
|
||||
&flow-definition-field-mappings;
|
||||
<preface id="preface">
|
||||
<title>Preface</title>
|
||||
<para>
|
||||
Many web applications require the same sequence of steps to execute in different contexts.
|
||||
Often these sequences are merely components of a larger task the user is trying to accomplish.
|
||||
Such a reusable sequence is called a flow.
|
||||
</para>
|
||||
<para>
|
||||
Consider a typical shopping cart application.
|
||||
User registration, login, and cart checkout are all examples of flows that can be invoked from several places in this type of application.
|
||||
</para>
|
||||
<para>
|
||||
Spring Web Flow is the module of Spring for implementing flows.
|
||||
The Web Flow engine plugs into the Spring Web MVC platform and provides declarative flow definition language.
|
||||
This reference guide shows you how to use and extend Spring Web Flow.
|
||||
</para>
|
||||
</preface>
|
||||
|
||||
<xi:include href="overview.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
|
||||
<xi:include href="whatsnew.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
|
||||
<xi:include href="defining-flows.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
|
||||
<xi:include href="el.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
|
||||
<xi:include href="views.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
|
||||
<xi:include href="actions.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
|
||||
<xi:include href="flow-managed-persistence.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
|
||||
<xi:include href="flow-security.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
|
||||
<xi:include href="flow-inheritance.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
|
||||
<xi:include href="system-setup.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
|
||||
<xi:include href="spring-mvc.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
|
||||
<xi:include href="spring-js.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
|
||||
<xi:include href="spring-faces.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
|
||||
<xi:include href="portlet.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
|
||||
<xi:include href="testing.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
|
||||
<xi:include href="upgrade-guide.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
|
||||
<xi:include href="flow-definition-field-mappings.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
|
||||
|
||||
</book>
|
||||
|
||||
Reference in New Issue
Block a user