revised overview graphics to match new modules

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@930 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Thomas Risberg 2009-04-06 16:12:50 +00:00
parent e2fce909b3
commit 7496ffb202
14 changed files with 24345 additions and 4193 deletions

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 48 KiB

After

Width:  |  Height:  |  Size: 51 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<chapter id="getting-started">
<title>Getting started with Spring 3.0</title>
<para>This is a placeholder, for now ...</para>
</chapter>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<chapter id="new-in-2"> <chapter id="new-in-3">
<title>What's new in Spring 3.0?</title> <title>What's new in Spring 3.0?</title>
<para>If you have been using the Spring Framework for some time, you will be <para>If you have been using the Spring Framework for some time, you will be

View File

@ -205,15 +205,16 @@
<section> <section>
<title>Web</title> <title>Web</title>
<para>The <emphasis>Web</emphasis> layer consists of the Web, Servlet <para>The <emphasis>Web</emphasis> layer consists of the Web, Web-Servlet
and Portlet modules.</para> and Web-Portlet modules.</para>
<para>Spring's <emphasis>Web</emphasis> module provides basic <para>Spring's <emphasis>Web</emphasis> module provides basic
web-oriented integration features, such as multipart file-upload web-oriented integration features, such as multipart file-upload
functionality, the initialization of the IoC container using servlet functionality, the initialization of the IoC container using servlet
listeners and a web-oriented application context.</para> listeners and a web-oriented application context. It also contains the web
related parts of Spring's remoting support.</para>
<para>The <emphasis>Servlet</emphasis> module provides Spring's <para>The <emphasis>Web-Servlet</emphasis> module provides Spring's
Model-View-Controller (<link Model-View-Controller (<link
linkend="mvc-introduction"><emphasis>MVC</emphasis></link>) linkend="mvc-introduction"><emphasis>MVC</emphasis></link>)
implementation for web-applications. Spring's MVC framework is not just implementation for web-applications. Spring's MVC framework is not just
@ -221,9 +222,9 @@
separation between domain model code and web forms, and allows you to separation between domain model code and web forms, and allows you to
use all the other features of the Spring Framework.</para> use all the other features of the Spring Framework.</para>
<para>The <emphasis>Portlet</emphasis> module provides the MVC <para>The <emphasis>Web-Portlet</emphasis> module provides the MVC
implementation to be used in a portlet environment and mirrors what is implementation to be used in a portlet environment and mirrors what is
provided in the Servlet module.</para> provided in the Web-Servlet module.</para>
</section> </section>
<section> <section>
@ -268,11 +269,11 @@
<para><mediaobject> <para><mediaobject>
<imageobject role="fo"> <imageobject role="fo">
<imagedata align="center" fileref="images/full.png" format="PNG" /> <imagedata align="center" fileref="images/overview-full.png" format="PNG" />
</imageobject> </imageobject>
<imageobject role="html"> <imageobject role="html">
<imagedata align="center" fileref="images/full.gif" format="GIF" /> <imagedata align="center" fileref="images/overview-full.png" format="PNG" />
</imageobject> </imageobject>
<caption><para>Typical full-fledged Spring web <caption><para>Typical full-fledged Spring web
@ -297,13 +298,13 @@
<para><mediaobject> <para><mediaobject>
<imageobject role="fo"> <imageobject role="fo">
<imagedata align="center" fileref="images/thirdparty-web.png" <imagedata align="center" fileref="images/overview-thirdparty-web.png"
format="PNG" /> format="PNG" />
</imageobject> </imageobject>
<imageobject role="html"> <imageobject role="html">
<imagedata align="center" fileref="images/thirdparty-web.gif" <imagedata align="center" fileref="images/overview-thirdparty-web.png"
format="GIF" /> format="PNG" />
</imageobject> </imageobject>
<caption><para>Spring middle-tier using a third-party web <caption><para>Spring middle-tier using a third-party web
@ -323,11 +324,11 @@
<para><mediaobject> <para><mediaobject>
<imageobject role="fo"> <imageobject role="fo">
<imagedata align="center" fileref="images/remoting.png" format="PNG" /> <imagedata align="center" fileref="images/overview-remoting.png" format="PNG" />
</imageobject> </imageobject>
<imageobject role="html"> <imageobject role="html">
<imagedata align="center" fileref="images/remoting.gif" format="GIF" /> <imagedata align="center" fileref="images/overview-remoting.png" format="PNG" />
</imageobject> </imageobject>
<caption><para>Remoting usage scenario</para></caption> <caption><para>Remoting usage scenario</para></caption>
@ -341,11 +342,11 @@
<para><mediaobject> <para><mediaobject>
<imageobject role="fo"> <imageobject role="fo">
<imagedata align="center" fileref="images/ejb.png" format="PNG" /> <imagedata align="center" fileref="images/overview-ejb.png" format="PNG" />
</imageobject> </imageobject>
<imageobject role="html"> <imageobject role="html">
<imagedata align="center" fileref="images/ejb.gif" format="GIF" /> <imagedata align="center" fileref="images/overview-ejb.png" format="PNG" />
</imageobject> </imageobject>
<caption><para>EJBs - Wrapping existing POJOs</para></caption> <caption><para>EJBs - Wrapping existing POJOs</para></caption>

View File

@ -4,6 +4,7 @@
<!ENTITY preface SYSTEM "preface.xml"> <!ENTITY preface SYSTEM "preface.xml">
<!ENTITY overview SYSTEM "overview.xml"> <!ENTITY overview SYSTEM "overview.xml">
<!ENTITY whats-new-in-3 SYSTEM "new-in-3.xml"> <!ENTITY whats-new-in-3 SYSTEM "new-in-3.xml">
<!ENTITY getting-started SYSTEM "getting-started.xml">
<!ENTITY beans SYSTEM "beans.xml"> <!ENTITY beans SYSTEM "beans.xml">
<!ENTITY resources SYSTEM "resources.xml"> <!ENTITY resources SYSTEM "resources.xml">
<!ENTITY validation SYSTEM "validation.xml"> <!ENTITY validation SYSTEM "validation.xml">
@ -149,6 +150,7 @@
&preface; &preface;
&overview; &overview;
&whats-new-in-3; &whats-new-in-3;
&getting-started;
<part id="spring-core"> <part id="spring-core">
<title>Core Technologies</title> <title>Core Technologies</title>
<partintro id="spring-core-intro"> <partintro id="spring-core-intro">