husted 2003/09/02 16:44:08
Modified: doc learning.xml status.xml
doc/resources examples.xml index.xml
doc/userGuide building_view.xml
Log:
Routine updates
Revision Changes Path
1.13 +56 -1 jakarta-struts/doc/learning.xml
Index: learning.xml
===================================================================
RCS file: /home/cvs/jakarta-struts/doc/learning.xml,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- learning.xml 29 Aug 2003 16:50:08 -0000 1.12
+++ learning.xml 2 Sep 2003 23:44:08 -0000 1.13
@@ -141,8 +141,63 @@
</section>
-<section name="Learning More About Struts" href="Docs">
+<section name="Struts by Example" href="Examples">
+ <p>
+ To help you see how it all fits together, several example applications are
bundled with the Struts
+ distribution:
+ </p>
+
+ <ul>
+ <li>
+ Blank - A simple template for starting new Struts applications.</li>
+ <li>
+ Exercise-Taglib - A set of test pages that also demonstrate use of the
custom tags.</li>
+ <li>
+ Documentation - The Struts documentation bundle, as seen on the
website.</li>
+ <li>
+ <b>MailReader</b> - The original Struts example application. Try me
first.</li>
+ <li>
+ Tiles-Doc - Extensive demonstration of Tiles extension.</li>
+ <li>
+ Upload - Demonstrates using the file upload facilities. (Based on
Commons Upload.)</li>
+ <li>
+ Validator - Demonstrate using the Validator extension.</li>
+ </ul>
+
+ <p>
+ These applications provided as standalone WARs in the binary distribution.
+ The source code for each application is available under
<code>WEB-INF/src</code> in the binaries and under the
+ <code>web</code> package in the source distribution.
+ </p>
+
+ <p>
+ There are also many third-party example applications available for study,
including these:
+ </p>
+
+ <ul>
+ <li>
+ <a
href="http://raibledesigns.com/wiki/Wiki.jsp?page=AppFuse">AppFuse</a> - Demonstrates
using XDoclet with
+ Struts, along with different security packages and Hibernate for
database persistence.
+ </li>
+ <li>
+ <a href="http://www.ibatis.com/jpetstore/jpetstore.html">JPetStore</a>
- A streamlined version of the Java
+ Petstore application implemented with Struts and iBATIS database layer.
+ </li>
+ <li>
+ <a href="http://www.codeczar.com/products/logweb/index.html">LogWeb</a>
- A Struts webapp for configuring
+ Log4J at runtime within a servlet container.
+ </li>
+ </ul>
+
+ <p>
+ See the <a href="resources/examples.html">Resources section</a> for a
complete listing of freely-available
+ Struts examples.
+ </p>
+
+</section>
+
+<section name="Learning More About Struts" href="More">
<p>
The Struts <a href="using.html#Lists">Mailing Lists</a> are a treasure trove of
useful, interactive information. The user list tends to carry a high
1.40 +2 -2 jakarta-struts/doc/status.xml
Index: status.xml
===================================================================
RCS file: /home/cvs/jakarta-struts/doc/status.xml,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- status.xml 30 Aug 2003 14:59:50 -0000 1.39
+++ status.xml 2 Sep 2003 23:44:08 -0000 1.40
@@ -359,7 +359,7 @@
<section>
<p align="right">
- Next: <a href="news/index.html">Release Guidelines</a>
+ Next: <a href="releases.html">Release Guidelines</a>
</p>
</section>
1.9 +2 -1 jakarta-struts/doc/resources/examples.xml
Index: examples.xml
===================================================================
RCS file: /home/cvs/jakarta-struts/doc/resources/examples.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- examples.xml 30 Aug 2003 14:59:50 -0000 1.8
+++ examples.xml 2 Sep 2003 23:44:08 -0000 1.9
@@ -11,7 +11,8 @@
<section name="Projects and Examples">
-<p><a href="http://www.codeczar.com/products/logweb/index.html">LogWeb</a> by
Nathan Coast - A Struts webapp for configuring Log4J at runtime within a servlet
container.</p>
+<p><a href="http://www.ibatis.com/jpetstore/jpetstore.html"><b>JPetStore 3</b></a>
by Clinton Begin - A new JPetStore has arrived! Version 3 takes the best of the
previous implementations and puts them together into one comprehensive example of web
application architecture using Struts, Data Access Objects and advanced JDBC (via SQL
Maps)..</p>
+<p><a href="http://www.codeczar.com/products/logweb/index.html"><b>LogWeb</b></a>
by Nathan Coast - A Struts webapp for configuring Log4J at runtime within a servlet
container.</p>
<p><a href="http://raibledesigns.com/wiki/Wiki.jsp?page=StrutsResume"><b>Struts
Resume</b></a> by Matt Raible - A resume hosting application built using AppFuse.</p>
<p><a href="http://raibledesigns.com/wiki/Wiki.jsp?page=AppFuse"><b>AppFuse</b></a>
by Matt Raible - Demonstrates how to use XDoclet with Struts to generate your Forms,
web.xml, struts-config.xml, and validation.xml. AppFuse also shows how you can use the
different security packages (i.e. form-based authentication, SSLExt) and advanced
Struts techniques (i.e. Tiles, Validator) to build your webapps. AppFuse integrates
with Hibernate on the backend to do database persistence.</p>
<p><a href="http://www.reumann.net/do/struts/main"><b>Struttin' with Struts</b></a>
by Rick Reumann - How to use iBATIS Database Layer with Struts, lessons and
examples.</p>
1.8 +2 -1 jakarta-struts/doc/resources/index.xml
Index: index.xml
===================================================================
RCS file: /home/cvs/jakarta-struts/doc/resources/index.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- index.xml 4 Jul 2003 17:39:20 -0000 1.7
+++ index.xml 2 Sep 2003 23:44:08 -0000 1.8
@@ -8,9 +8,11 @@
</properties>
<body>
<section name="Struts Resources">
+
<ul>
<li><a href="1st.html"><b>Read Me First - A path for newbies</b></a></li>
<li><a href="tutorials.html">Tutorials</a></li>
+ <li><a href="examples.html">Projects and Examples</a></li>
<li><a href="articles.html">Articles and Presentations</a></li>
<li><a href="books.html">Books</a></li>
<li><a href="seminars.html">Seminars</a></li>
@@ -24,7 +26,6 @@
<li><a href="guis.html">Code Generators and GUIs</a></li>
<li><a href="taglibs.html">Contributor Taglibs</a></li>
<li><a href="extensions.html">Contributor Extensions</a></li>
- <li><a href="examples.html">Projects and Examples</a></li>
</ul>
<ul>
1.33 +4 -0 jakarta-struts/doc/userGuide/building_view.xml
Index: building_view.xml
===================================================================
RCS file: /home/cvs/jakarta-struts/doc/userGuide/building_view.xml,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- building_view.xml 26 Jul 2003 03:56:25 -0000 1.32
+++ building_view.xml 2 Sep 2003 23:44:08 -0000 1.33
@@ -890,6 +890,10 @@
fill their needs.
</p>
+ <p>
+ For more see, <a href="../faq/struts-el.html">Struts-El Extension</a> in the
FAQ/HOWTO section.
+ </p>
+
</section>
<section>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]