cvs commit: jakarta-struts/doc index.xml

2003-10-07 Thread husted
husted  2003/10/07 15:26:36

  Modified:doc  index.xml
  Log:
  Add "Is Struts for Everyone?" section
  
  Revision  ChangesPath
  1.52  +19 -0 jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.51
  retrieving revision 1.52
  diff -u -r1.51 -r1.52
  --- index.xml 13 Sep 2003 20:19:01 -  1.51
  +++ index.xml 7 Oct 2003 22:26:36 -   1.52
  @@ -167,6 +167,25 @@
   
   
   
  +
  +
  +
  +No. If you need to write a very simple application, with a handful of 
pages,
  +then you might consider a "Model 1" solution that uses only server 
pages.
  +
  +
  +
  +But, if you are writing a more complicated application, with dozens of 
pages,
  +that need to be maintained over time, then Struts can help. For more 
about
  +whether Model 1 or or MVC/Model 2 is right for you, see
  +http://www.javaworld.com/javaworld/jw-12-1999/jw-12-ssj-jspmvc.html";>Understanding
 JavaServer
  +Pages Model 2 architecture and
  +http://www.scioworks.net/devnews/articles/struts_adoption_issues/index.html";>
  +Issues in Struts Adoption.
  +
  +
  +
  +
   
   
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-struts/doc index.xml

2003-09-13 Thread dgraham
dgraham 2003/09/13 13:19:10

  Modified:doc  index.xml
  Log:
  Added more links to other technologies.
  
  Revision  ChangesPath
  1.51  +10 -7 jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.50
  retrieving revision 1.51
  diff -u -r1.50 -r1.51
  --- index.xml 11 Sep 2003 23:08:28 -  1.50
  +++ index.xml 13 Sep 2003 20:19:01 -  1.51
  @@ -11,6 +11,7 @@
   Ted Husted
   Martin Cooper
   James Holmes
  +David Graham
   
   
   
  @@ -20,14 +21,13 @@
   
   Welcome to Struts!
   The goal of this project is to provide an open source framework for 
  -building web applications.
  +building Java web applications.
   
   
   
   The core of the Struts framework is a flexible control layer based on
   standard technologies like Java 
  -Servlets, JavaBeans, ResourceBundles, and Extensible Markup Language 
  -(XML), as well as various
  +Servlets, JavaBeans, ResourceBundles, and XML, as well as various
   http://jakarta.apache.org/commons/index.html";>Jakarta Commons 
packages.
   Struts encourages application architectures based on the Model 2 approach,
   a variation of the classic
  @@ -38,13 +38,16 @@
   
   Struts provides its own Controller component and 
integrates with 
   other technologies to provide the Model and the View.
  +
   For the Model, Struts can interact with standard data access
  -technologies, like Enterprise Java Beans and JDBC, as well as most any 
third-party packages, like
  +technologies, like http://java.sun.com/products/jdbc/";>JDBC and 
  +http://java.sun.com/products/ejb/";>EJB, as well as most any 
third-party packages, like
   Hibernate, iBATIS, or Object Relational Bridge.
  -For the View, Struts works well with JavaServer Pages, 
including
  +
  +For the View, Struts works well with 
  +http://java.sun.com/products/jsp/";>JavaServer Pages, including
   JSTL and JSF, as well as Velocity 
Templates, XSLT, and
  -other presentation systems
  -.
  +other presentation systems.
   
   
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-struts/doc index.xml

2003-09-11 Thread husted
husted  2003/09/11 16:08:28

  Modified:doc  index.xml
  Log:
  + Add Struts in a Nutshell section.
  
  Revision  ChangesPath
  1.50  +98 -0 jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.49
  retrieving revision 1.50
  diff -u -r1.49 -r1.50
  --- index.xml 9 Sep 2003 17:49:21 -   1.49
  +++ index.xml 11 Sep 2003 23:08:28 -  1.50
  @@ -66,6 +66,104 @@
   
   
   
  +
  +
  +
  +A http://java.sun.com/webservices/docs/1.0/tutorial/doc/WebApp.html";>web 
application uses a
  +deployment descriptor to initialize resources like servlets
  +and taglibs.
  +The deployment descriptor is formatted as a XML document and named
  +"web.xml".
  +Likewise, Struts uses a configuration file to initialize its own 
resources.
  +These resources include ActionForms to
  +collect input from users,
  +http://jakarta.apache.org/struts/userGuide/building_controller.html#actionmapping";>
  +ActionMappings to direct input to server-side
  +http://jakarta.apache.org/struts/userGuide/building_controller.html#action_classes";>Actions,
  +and ActionForwards to select output pages.
  +
  +
  +
  +Here's a simple Struts configuration (struts-config.xml) for a login 
workflow:
  +
  +
  +
  +
  +
  +There are several other resources you can specify in Struts 
configuration files.
  +You can specify validations for the ActionForms in an XML descriptor, 
using the
  +Struts Validator.
  +Another extension, Tiles, helps 
you build pages from smaller
  +fragments.
  +
  +
  +
  +Struts is an extensible framework.
  +Every class deployed by Struts can be replaced by your own default 
class.
  +The properties of your default class can be set using the
  +http://jakarta.apache.org/commons/digester/";> Digester's 
set-property feature.
  +This is one reason why there are so many contributor extensions for
  +Struts.
  +Struts provides a base framework, but you can still write your 
application your way.
  +
  +
  +
  +For more about Struts and its underlying technologies, see the User
  +Guide and the Developer Guides.
  +
  +
  +
  +Struts is a volunteer project and all support for the framework is 
provided by unpaid volunteers.
  +This documentation bundle and the mailing lists are the primary ways to 
learn how to use Struts.
  +The next few pages are devoted to helping you understand what resources 
are available to you.
  +Since Struts is a volunteer project, and our resources are limited, it 
is important that we first help you
  +help yourself.
  +
  +
  +
  +
   
   
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-struts/doc index.xml

2003-06-07 Thread husted
husted  2003/06/07 05:24:25

  Modified:doc  index.xml
  Log:
  Update in preparation for RC2 with the latest skinny on JSTL and JSF.
  
  Revision  ChangesPath
  1.44  +7 -6  jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -r1.43 -r1.44
  --- index.xml 18 Mar 2003 11:39:14 -  1.43
  +++ index.xml 7 Jun 2003 12:24:24 -   1.44
  @@ -27,22 +27,23 @@
   The core of the Struts framework is a flexible control layer based on
   standard technologies like Java 
   Servlets, JavaBeans, ResourceBundles, and Extensible Markup Language 
  -(XML).
  -
  -
  -
  +(XML), as well as various
  +http://jakarta.apache.org/commons/index.html";>Jakarta Commons 
packages.
   Struts encourages application architectures based on the Model 2 approach,
   a variation of the classic
   http://java.sun.com/blueprints/guidelines/designing_enterprise_applications_2e/web-tier/web-tier5.html";>
   Model-View-Controller (MVC) design paradigm.
  +
  +
   Struts provides its own Controller component and integrates with
   other technologies to provide 
   the Model and the View.
   For the Model, Struts can interact with any 
   standard data access technology, 
   including Enterprise Java Beans, JDBC, and Object Relational Bridge.
  -For the View, Struts works well with JavaServer Pages, Velocity 
  -Templates, XSLT, and 
  +For the View, Struts works well with JavaServer Pages,
  +including JSTL and JSF,
  +as well as Velocity Templates, XSLT, and
   other presentation systems.
   
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-struts/doc index.xml

2003-03-18 Thread husted
husted  2003/03/18 03:39:14

  Modified:doc  index.xml
  Log:
  And then there were six.
  
  Revision  ChangesPath
  1.43  +11 -1 jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.42
  retrieving revision 1.43
  diff -u -r1.42 -r1.43
  --- index.xml 22 Dec 2002 16:44:25 -  1.42
  +++ index.xml 18 Mar 2003 11:39:14 -  1.43
  @@ -126,11 +126,21 @@
   
   
   
   
  +
  +  
  +  
  +  
  +  
  +  
   
 
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-struts/doc index.xml

2002-12-11 Thread husted
husted  2002/12/11 18:11:10

  Modified:doc  index.xml
  Log:
  Add books news flash.
  
  Revision  ChangesPath
  1.41  +6 -1  jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- index.xml 1 Dec 2002 16:03:21 -   1.40
  +++ index.xml 12 Dec 2002 02:11:10 -  1.41
  @@ -14,7 +14,7 @@
   
   
   
  - 
  +
   
   
   
  @@ -143,6 +143,11 @@
  A current list of books about Struts is maintained in the
  resource area. 
  Links to excerpts are provided when available. 
  +   
  +   
  +   
  +   News flash: 
  +   Struts books hit #1 and #2 on Amazon best 
seller list.
  
   
   
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc index.xml

2002-11-29 Thread husted
husted  2002/11/29 09:14:41

  Modified:doc  index.xml
  Log:
  A few tweaks.
  
  Revision  ChangesPath
  1.37  +64 -55jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- index.xml 7 Nov 2002 08:47:33 -   1.36
  +++ index.xml 29 Nov 2002 17:14:41 -  1.37
  @@ -1,60 +1,69 @@
   
   
   
  -  
  -Craig R. McClanahan
  -Ted Husted
  -Martin Cooper
  -James Holmes
  -The Apache Struts Web Application Framework
  -  
  -
  -  
  -
  -  
  -
  -  
  -  Welcome to Struts!  The goal of this project
  -  is to provide an open source framework for building Web applications.
  -  The core of Struts is a flexible control layer based on standard
  -  technologies like
  -  Java Servlets,
  -  JavaBeans,
  -  ResourceBundles,
  -  and Extensible Markup Language (XML).
  -  
  -  
  -  Struts encourages application architectures based on the Model 2 approach,
  -  a variation of the classic
  -  http://java.sun.com/blueprints/guidelines/designing_enterprise_applications_2e/web-tier/web-tier5.html";>Model-View-Controller
 (MVC) design paradigm. Struts
  -  provides its own Controller component and integrates
  -  with other technologies to provide 
the Model and the View.
  -  For the Model, Struts can interact with any
  -  standard data access technology, including 
Enterprise Java Beans, JDBC, and Object Relational Bridge.
  -  For the View, Struts works well with JavaServer Pages, Velocity Templates,
  -  XSLT, and other presentation systems.
  -  
  -
  -  
  -  The Struts framework provides the invisible underpinnings every
  -  professional Web application needs to survive. Struts helps you
  -  create an extensible development environment for your application,
  -  based on published standards and proven design patterns.
  -  
  -
  -  
  -  Struts is part of the http://jakarta.apache.org";>Apache Jakarta
  -  Project, sponsored by the
  -  http://www.apache.org";>Apache Software Foundation.  The
  -  official Struts home page is at
  -  http://jakarta.apache.org/struts";>http://jakarta.apache.org/struts.
  -  
  -
  -  
  -
  -  
  -  So when is the next 
release coming out?
  -  
  +
  +Craig R. McClanahan
  +Ted Husted
  +Martin Cooper
  +James Holmes
  +The Apache Struts Web Application Framework
  +
  +
  +
  +
  +
  +
  +
  +Welcome to Struts!
  +The goal of this project is to provide an open source framework for 
building web applications.
  +
  +
  +
  +The core of the Struts framework is a flexible control layer based 
on
  +standard
  +technologies like
  +Java Servlets,
  +JavaBeans,
  +ResourceBundles,
  +and Extensible Markup Language (XML).
  +
  +
  +
  +Struts encourages application architectures based on the Model 2 
approach,
  +a variation of the classic
  +http://java.sun.com/blueprints/guidelines/designing_enterprise_applications_2e/web-tier/web-tier5.html";>
  +Model-View-Controller
  + (MVC) design paradigm.
  +Struts provides its own
  +Controller component and integrates with
  +other technologies to 
provide the Model and the View.
  +For the Model, Struts can interact with any
  +standard data access 
technology, including Enterprise Java Beans, JDBC, and Object Relational Bridge.
  +For the View, Struts works well with JavaServer Pages, 
Velocity Templates, XSLT, and
  +other presentation systems.
  +
  +
  +
  +The Struts framework provides the invisible underpinnings every 
professional web application needs to survive.
  +Struts helps you create an extensible development environment for 
your application, based on published standards and proven design patterns.
  +
  +
  +
  +Struts is part of the
  +http://jakarta.apache.org";>Apache Jakarta Project,
  +sponsored by the
  +http://www.apache.org";>Apache Software Foundation.
  +The official Struts home page is at
  +http://jakarta.apache.org/struts";>http://jakarta.apache.org/struts.
  +
  +
  +
  +
  +
  +
  +So when is the next release 
coming out?
  +
  +
   
  -  
  +
   
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, 

cvs commit: jakarta-struts/doc index.xml

2002-11-03 Thread jmitchell
jmitchell2002/11/03 20:09:46

  Modified:doc  index.xml
  Log:
  Update link to docs that were moved under 'faqs'
  
  Revision  ChangesPath
  1.34  +2 -2  jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- index.xml 29 Oct 2002 11:08:43 -  1.33
  +++ index.xml 4 Nov 2002 04:09:45 -   1.34
  @@ -60,7 +60,7 @@
 and as a self-installing WAR in the distribution. The
 struts-documentation.war includes our
 FAQs and Howtos,
  -  Newbie along with the
  +  Newbie along with the
 Users Guide,
 Javadocs, and everything else you find here.
 You are invited to preview the documentation online, and then install the
  @@ -249,7 +249,7 @@
 
   
 
  -  So when is the next release 
coming out?
  +  So when is the next 
release coming out?
 
   
 
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc index.xml

2002-10-25 Thread husted
husted  2002/10/25 05:45:33

  Modified:doc  index.xml
  Log:
  + Add  [FRIDAY] blurb.
  
  Revision  ChangesPath
  1.32  +10 -2 jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- index.xml 25 Oct 2002 12:30:10 -  1.31
  +++ index.xml 25 Oct 2002 12:45:33 -  1.32
  @@ -130,13 +130,21 @@
 
 If you really can't find the answer to your question in the FAQs or
 http://nagoya.apache.org/eyebrowse/SummarizeList?listId=42";>list 
archive,
  -  you can post your query to the Struts User list -- BUT YOU MUST SUBSCRIBE TO THE
  +  you can post your query to the Struts User list -- BUT YOU MUST SUBSCRIBE TO 
THE
 mailto:struts-user-subscribe@;jakarta.apache.org">USER LIST
 OR THE
 mailto:struts-user-digest-subscribe@;jakarta.apache.org">USER LIST 
DIGEST
  -  BEFORE POSTING. If you would rather not subscribe to a list, you can go through 
the
  +  BEFORE POSTING. If you would rather not subscribe to a list, you can go 
through the
 http://www.proj.com/subscribe.jsp";>BaseBeans Struts Newsgroup 
instead.
 
  +
  +  
  +  Please note that the Struts User list enjoys a "casual friday" policy. More 
off-topic
  +  messages are tolerated on Fridays so long as the message is prefixed with the 
token
  +  [FRIDAY]. If you'd rather not be troubled by these postings, please set your
  +  mail filter accordingly. Posting [FRIDAY] articles on any other weekday is 
strongly
  +  discouraged. We thank you for your cooperation.
  +  
   
 
 The Struts Resources page provides 
links to
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc index.xml

2002-10-25 Thread husted
husted  2002/10/25 05:30:10

  Modified:doc  index.xml
  Log:
  + Update book listings with links to excerpts.
  
  Revision  ChangesPath
  1.31  +11 -1 jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- index.xml 12 Oct 2002 17:03:51 -  1.30
  +++ index.xml 25 Oct 2002 12:30:10 -  1.31
  @@ -140,7 +140,7 @@
   
 
 The Struts Resources page provides 
links to
  -  everything else published about  Struts, including
  +  everything else published about Struts, including
 books,
 articles,
 tutorials,
  @@ -153,6 +153,16 @@
 The Struts News & Status page highlights 
current
 events affecting the framework, including new releases, proposals for new 
features,
 and additions to the Resources page.
  +  
  +
  +  
  +
  +  
  +
  +  
  +  Printed books about Struts are available now, and several more are on the way.
  +  A current list of books about Struts is maintained in the
  +  resource area. Links to excerpts are provided when available.
 
   
 
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc index.xml

2002-10-13 Thread husted

husted  2002/10/12 10:03:51

  Modified:doc  index.xml
  Log:
  Break out some kickstart questinos into a How to Help FAQ.
  
  Revision  ChangesPath
  1.30  +5 -2  jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- index.xml 12 Oct 2002 16:51:26 -  1.29
  +++ index.xml 12 Oct 2002 17:03:51 -  1.30
  @@ -135,7 +135,7 @@
 OR THE
 mailto:[EMAIL PROTECTED]";>USER LIST 
DIGEST
 BEFORE POSTING. If you would rather not subscribe to a list, you can go through 
the
  -  http://www.proj.com/subscribe.jsp";>BaseBeanse Struts Newsgroup] 
instead.
  +  http://www.proj.com/subscribe.jsp";>BaseBeans Struts Newsgroup 
instead.
 
   
 
  @@ -311,6 +311,9 @@
 New additions for the Resources page should posted as an enhancement request to
 Bugzilla.
 
  +  
  +  For more, see the How to Help FAQ.
  +  
   
 
   
  @@ -371,7 +374,7 @@
 All work on Struts and the other Jakarta subprojects is provided on a volunteer
 basis. For more about what you can do, see the
 http://jakarta.apache.org/site/getinvolved.html";>Getting Involved
  -  Overview.
  +  Overview and the Struts How to Help FAQ.
 
   
 
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc index.xml

2002-08-14 Thread husted

husted  2002/08/14 08:21:14

  Modified:doc  index.xml
  Log:
  Add section to release note for fixes to beta 2. Other routine updates.
  
  Revision  ChangesPath
  1.28  +104 -134  jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- index.xml 13 Aug 2002 16:28:48 -  1.27
  +++ index.xml 14 Aug 2002 15:21:13 -  1.28
  @@ -5,7 +5,7 @@
   Craig R. McClanahan
   Ted Husted
   Martin Cooper
  -James Holmes 
  +James Holmes
   The Struts Web Application Framework
 
   
  @@ -16,43 +16,30 @@
   
 
 Welcome to Struts!  The goal of this project
  -  is to provide an open source framework for building Web applications. 
  -  The core of Struts is a flexible control layer based on standard 
  -  technologies like 
  -  http://java.sun.com/products/servlet";> Java Servlets, 
  -  http://java.sun.com/products/javabeans/";>JavaBeans, 
  -  http://java.sun.com/docs/books/tutorial/i18n/resbundle/concept.html";>ResourceBundles,
 
  -  and http://www.w3.org/XML/";>Extensible Markup Language (XML).
  -  
  -  
  -  Struts encourages application architectures based on the Model 2 approach, 
  -  a variation of the classic 
  -  http://java.sun.com/blueprints/guidelines/designing_enterprise_applications_2e/web-tier/web-tier5.html";>Model-View-Controller
 (MVC) design paradigm. Struts 
  -  provides its own Controller component and integrates 
  -  with other technologies to provide the Model and the View. 
  -  For the Model, Struts can interact with any standard data 
  -  access technology, including 
  -  http://java.sun.com/products/ejb/index.html";>
  -  Enterprise Java Beans, 
  -  http://java.sun.com/products/jdbc/index.html";> 
  -  JDBC, and 
  -  http://java.sun.com/products/jndi/index.html";> 
  -  JNDI. 
  -  For the View, Struts works well with 
  -  http://java.sun.com/products/jsp";>JavaServer 
  -  Pages, 
  -  http://jakarta.apache.org/velocity/index.html";>
  -  Velocity Templates, 
  -  http://www.w3.org/TR/xslt";>XSLT, and 
  -  
  -  other presentation systems
  -  .
  +  is to provide an open source framework for building Web applications.
  +  The core of Struts is a flexible control layer based on standard
  +  technologies like
  +  Java Servlets,
  +  JavaBeans,
  +  ResourceBundles,
  +  and Extensible Markup Language (XML).
  +  
  +  
  +  Struts encourages application architectures based on the Model 2 approach,
  +  a variation of the classic
  +  http://java.sun.com/blueprints/guidelines/designing_enterprise_applications_2e/web-tier/web-tier5.html";>Model-View-Controller
 (MVC) design paradigm. Struts
  +  provides its own Controller component and integrates
  +  with other technologies to provide 
the Model and the View.
  +  For the Model, Struts can interact with any
  +  standard data access technology, including 
Enterprise Java Beans, JDBC, and Object Relational Bridge.
  +  For the View, Struts works well with JavaServer Pages, Velocity Templates,
  +  XSLT, other presentation systems.
 
   
 
  -  The Struts framework provides the invisible underpinnings every 
  -  professional Web application needs to survive. Struts helps you 
  -  create an extensible development environment for your application, 
  +  The Struts framework provides the invisible underpinnings every
  +  professional Web application needs to survive. Struts helps you
  +  create an extensible development environment for your application,
 based on published standards and proven design patterns.
 
   
  @@ -69,110 +56,93 @@
 
   
 
  -  The official documentation for the framework is provided both online 
  -  and as a self-installing WAR in the distribution. The 
  -  struts-documentation.war includes the 
  +  The official documentation for the framework is provided both online
  +  and as a self-installing WAR in the distribution. The
  +  struts-documentation.war includes the
 Kickstart and
  -  Newbie FAQs,   
  -  Users Guide, 
  +  Newbie FAQs,
  +  Users Guide,
 Javadocs, and everything else you find here.
 You are invited to preview the documentation online, and then install the
  -  application locally for closer study. 
  +  application locally for closer study.
 
   
 
  -  Note: Most of the links in this section refer to the Nightly Build. 
  -  When learning about Struts, be sure to refer to the documentation for the 
  -  version you are actually using. The documentation is bundled with each 
  -  distribution as an application that you can install locally. Links to the 
  -  documentation for the current stable release (1.0.2) are also provided on the 
  -  menu bar. Whenever possible, please help conserve our bandwidth, and install 
  +  Note: Most of the links in this section refer t

cvs commit: jakarta-struts/doc index.xml

2002-06-29 Thread husted

husted  2002/06/29 11:19:16

  Modified:doc  index.xml
  Log:
  Update home page to use mail-archive on nagoya.
  
  Revision  ChangesPath
  1.26  +2 -2  jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- index.xml 25 Jun 2002 23:56:11 -  1.25
  +++ index.xml 29 Jun 2002 18:19:16 -  1.26
  @@ -131,7 +131,7 @@
 The Struts Mailing Lists are a treasure trove of useful, 
 interactive information. The user list tends to carry a high volume, so always 
check 
 the published documentation and the 
  -  http://www.mail-archive.com/struts-user%40jakarta.apache.org/";>
  +  http://nagoya.apache.org/eyebrowse/SummarizeList?listId=42";>
 MAILING LIST ARCHIVE before 
 http://www.tuxedo.org/~esr/faqs/smart-questions.html";>posting a new 
question. 
 Like as not, it's already been asked and answered.
  @@ -367,7 +367,7 @@
   
 
 Before posting a new question, be sure to consult the 
  -  http://www.mail-archive.com/struts-user%40jakarta.apache.org/";>
  +  http://nagoya.apache.org/eyebrowse/SummarizeList?listId=42";>
 MAILING LIST ARCHIVE and the very excellent
 http://www.tuxedo.org/~esr/faqs/smart-questions.html";>
 How To Ask Questions The Smart Way by Eric Raymond. Please do be sure 
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc index.xml

2002-06-23 Thread jholmes

jholmes 2002/06/23 10:51:23

  Modified:doc  index.xml
  Log:
  update references to new resources pages
  
  PR: Bugzilla #9920
  
  Revision  ChangesPath
  1.24  +6 -6  jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- index.xml 15 Jun 2002 12:09:33 -  1.23
  +++ index.xml 23 Jun 2002 17:51:23 -  1.24
  @@ -44,7 +44,7 @@
 http://jakarta.apache.org/velocity/index.html";>
 Velocity Templates, 
 http://www.w3.org/TR/xslt";>XSLT, and 
  -  
  +  
 other presentation systems
 .
 
  @@ -138,12 +138,12 @@
 
   
 
  -  The Struts Resources page provides links to 
  +  The Struts Resources page provides 
links to 
 everything else published about  Struts, including 
  -  books, 
  -  articles, 
  -  tutorials, 
  -  seminars, 
  +  books, 
  +  articles, 
  +  tutorials, 
  +  seminars, 
 and sample applications. There are also links to public sites "Powered by Struts" 
and
 a directory of professional Struts consultants.
 
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc index.xml

2002-03-02 Thread husted

husted  02/03/02 21:32:44

  Modified:doc  index.xml
  Log:
  Tweaks.
  
  Revision  ChangesPath
  1.20  +16 -14jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- index.xml 3 Mar 2002 04:58:38 -   1.19
  +++ index.xml 3 Mar 2002 05:32:44 -   1.20
  @@ -14,16 +14,16 @@
 
   
 
  -  Welcome to the Struts Framework!  The goal of this project
  +  Welcome to Struts!  The goal of this project
 is to provide an open source framework for building Web applications 
  -  that integrates standard technologies like 
  +  that integrates with standard technologies like 
 http://java.sun.com/products/servlet";> Java Servlets, 
 http://java.sun.com/products/javabeans/";>JavaBeans, 
 and http://java.sun.com/products/jsp";>JavaServer 
 Pages (JSP). 
 
 
  -  Struts encourages application architectures based the
  +  Struts encourages application architectures based on the
 Model-View-Controller (MVC) design paradigm, colloquially known as
 Model 2 in discussions on various Java mailing lists. Struts 
 provides its own Controller component and integrates 
  @@ -89,20 +89,22 @@
 
   
 
  -  The Kickstart FAQ quickly answers 
  -  the most common questions about Struts. More technical questions are 
  -  covered by the Struts Newbie FAQ, and online in the 
Struts 
  +  The Kickstart FAQ answers the most common 
  +  non-technical questions people first ask about Struts. The 
  +  Struts Newbie FAQ answers the most common 
  +  technical questions asked by first-timer Struts developers. A more extensive 
  +  Struts knowledgebase is available at the 
 http://jguru.com/faq/Struts";>JGuru FAQ and 
 http://jguru.com/forums/Struts";>Forum.
 
   
 
  -  A concise Users Guide is also provided 
  -  with the distribution. The Users Guide introduces the Model-View-Controller 
  -  architecture, and how it relates to the major components of Struts. Several 
Developer 
  -  Guides supplement the Users Guide. These help you get started with the Struts 
JSP 
  -  tag extensions and utility packages. The Users Guide also includes detailed 
installation 
  -  instructions and release notes for each version of the framework.
  +  The concise Struts Users Guide 
introduces the 
  +  Model-View-Controller architecture, and how it relates to the major components of 
Struts. 
  +  To help you get started with the Struts JSP tag extensions and utility packages, 
  +  several Developer Guides supplement the Users Guide. The Users Guide also 
  +  includes detailed installation instructions and release notes for each version of 
the 
  +  framework.
 
   
 
  @@ -125,8 +127,8 @@
   
 
 The Struts Mailing Lists are an treasure trove of useful, 
  -  interactive information. The list tends to carry a high volume, so always check 
the 
  -  published documentation and the 
  +  interactive information. The user list tends to carry a high volume, so always 
check 
  +  the published documentation and the 
 http://www.mail-archive.com/struts-user%40jakarta.apache.org/";>
 MAILING LIST ARCHIVE before 
 http://www.tuxedo.org/~esr/faqs/smart-questions.html";>posting a new 
question. 
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc index.xml project.xml release-notes-1.0.1.xml release-notes.xml

2002-01-12 Thread martinc

martinc 02/01/12 13:50:59

  Modified:doc  index.xml project.xml release-notes-1.0.1.xml
release-notes.xml
  Log:
  Updated for Struts 1.0.1 final release, plus some corrections.
  
  Revision  ChangesPath
  1.13  +15 -9 jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- index.xml 4 Nov 2001 03:04:02 -   1.12
  +++ index.xml 12 Jan 2002 21:50:58 -  1.13
  @@ -3,6 +3,7 @@
   
 
   Craig R. McClanahan
  +Martin Cooper
   The Struts Framework Project
 
   
  @@ -63,7 +64,7 @@
 Of course, the only true documentation is the code itself. If you have any 
questions 
 about how Struts actually works, do not hestate to use the source. For the 
 complete, buildable source code to the entire Struts framework, see the "src" 
folder in 
  -  the http://jakarta.apache.org/builds/jakarta-struts/release/v1.0/src/";>Struts 1.0 
source distribution.
  +  the http://jakarta.apache.org/builds/jakarta-struts/release/v1.0.1/src/";>Struts 
1.0.1 source distribution.
   
 The Struts Resources page 
provides links to 
 everything else written about  Struts, including books, articles, tutorials, and 
sample 
  @@ -73,19 +74,24 @@
   
 
   
  -  The production release of Struts 1.0 is available in
  -  in convenient binary distribution and also with complete source code.
  +  The production release of Struts 1.0.1 is available in
  +  in convenient binary distribution and also with complete source code. In
  +  addition, a library distribution is available, which contains the latest
  +  Struts binaries without the sample applications, providing a smaller,
  +  faster download.
   
 
  -  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0";>
  -  Struts 1.0 Binary Distribution
  -  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0/src";>
  -  Struts 1.0 Source Code Distribution
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0.1";>
  +  Struts 1.0.1 Binary Distribution
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0.1/lib";>
  +  Struts 1.0.1 Library Distribution
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0.1/src";>
  +  Struts 1.0.1 Source Code Distribution
 
 
  -  Check the Release Notes
  +  Check the Release Notes
 for a summary of what new features have been added and other 
  -  changes since the Struts 1.0-beta-3 release.
  +  changes since the Struts 1.0 release.
   
 In addition to a Struts distribution, you will need to ensure that
 you have downloaded and installed all of the
  
  
  
  1.15  +1 -3  jakarta-struts/doc/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/project.xml,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- project.xml   16 Nov 2001 06:01:11 -  1.14
  +++ project.xml   12 Jan 2002 21:50:58 -  1.15
  @@ -20,7 +20,7 @@
   
   
   
  -
  +
   
   http://jakarta.apache.org/site/mail.html"/>
   http://jakarta.apache.org/site/bugs.html"/>
  @@ -53,8 +53,6 @@
   
   
   
  -
  -
   
   
   
  
  
  
  1.9   +10 -20jakarta-struts/doc/release-notes-1.0.1.xml
  
  Index: release-notes-1.0.1.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/release-notes-1.0.1.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- release-notes-1.0.1.xml   28 Nov 2001 08:44:35 -  1.8
  +++ release-notes-1.0.1.xml   12 Jan 2002 21:50:58 -  1.9
  @@ -5,6 +5,7 @@
   Craig R. McClanahan
   Robert Leland
   Ted Husted
  +Martin Cooper
   Struts Release Notes (Version 1.0.1)
 
   
  @@ -20,11 +21,7 @@
   New Features and Changes
   to Struts.
   
  -Struts 1.0.1 is not yet released, but a Release Candidate
  -is available for download
  -http://jakarta.apache.org/builds/jakarta-struts/release/v1.0.1-rc1/";>here.
  -This version is intended as a near-term release to cover
  -bug-fixes only; no new functionality.
  +This version covers bug-fixes only; no new functionality.
   
 
   
  @@ -32,7 +29,7 @@
 
   
   The binary distribution of this release includes the following
  -files relevant to Struts 1.1:
  +files relevant to Struts 1.0.1:
   
   INSTALL - Brief installation instructions.  See
   the Struts Documentation Application, or online at
  @@ -50,7 +47,7 @@
   place this file in the /WEB-INF/lib directory of
   your web applica

cvs commit: jakarta-struts/doc index.xml

2002-01-10 Thread martinc

martinc 02/01/10 00:07:53

  Modified:doc  Tag: STRUTS_1_0_BRANCH index.xml
  Log:
  Update distribution main page for Struts 1.0.1 release.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.8   +10 -22jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.2.2.7
  retrieving revision 1.2.2.8
  diff -u -r1.2.2.7 -r1.2.2.8
  --- index.xml 28 Nov 2001 07:09:45 -  1.2.2.7
  +++ index.xml 10 Jan 2002 08:07:53 -  1.2.2.8
  @@ -4,12 +4,13 @@
 
   Craig R. McClanahan
   Ted Husted
  +Martin Cooper
   The Struts Framework Project
 
   
 
   
  -  
  +  
   
 Welcome to the Struts Framework!  The goal of this project
 is to provide an open source framework useful in building web applications
  @@ -63,7 +64,7 @@
 Of course, the only true documentation is the code itself. If you have any 
questions 
 about how Struts actually works, do not hestate to use the source. For the 
 complete, buildable source code to the entire Struts framework, see the "src" 
folder in 
  -  the http://jakarta.apache.org/builds/jakarta-struts/release/v1.0/src/";>Struts 1.0 
source distribution.
  +  the http://jakarta.apache.org/builds/jakarta-struts/release/v1.0.1/src/";>Struts 
1.0 source distribution.
   
 The Struts Resources page 
provides links to 
 everything else written about  Struts, including books, articles, tutorials, and 
sample 
  @@ -71,34 +72,21 @@
   
 
   
  -  
  -
  -  A release candidate for Struts 1.0.1 has been created 
and
  -  made available at
  -  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0.1-rc1";>
  -  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0.1-rc1.
  -
  -  Check the Release Notes
  -  for a summary of what new features have been added, and other significant
  -  changes, since the Struts 1.0 release.
  -
  -  
  -
 
   
  -  The production release of Struts 1.0 is available in
  +  The production release of Struts 1.0.1 is available in
 in convenient binary distribution and also with complete source code.
   
 
  -  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0";>
  -  Struts 1.0 Binary Distribution
  -  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0/src";>
  -  Struts 1.0 Source Code Distribution
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0.1";>
  +  Struts 1.0.1 Binary Distribution
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0.1/src";>
  +  Struts 1.0.1 Source Code Distribution
 
 
  -  Check the Release Notes
  +  Check the Release Notes
 for a summary of what new features have been added, and other significant
  -  changes, since the Struts 1.0-beta-3 release.
  +  changes, since the Struts 1.0 release.
   
 
   
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc index.xml

2001-11-27 Thread martinc

martinc 01/11/27 23:09:45

  Modified:doc  Tag: STRUTS_1_0_BRANCH index.xml
  Log:
  Updated designation and location of release candidate.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.7   +3 -3  jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.2.2.6
  retrieving revision 1.2.2.7
  diff -u -r1.2.2.6 -r1.2.2.7
  --- index.xml 2001/11/21 16:10:21 1.2.2.6
  +++ index.xml 2001/11/28 07:09:45 1.2.2.7
  @@ -9,7 +9,7 @@
   
 
   
  -  
  +  
   
 Welcome to the Struts Framework!  The goal of this project
 is to provide an open source framework useful in building web applications
  @@ -75,8 +75,8 @@
   
 A release candidate for Struts 1.0.1 has been created 
and
 made available at
  -  http://jakarta.apache.org/builds/jakarta-struts/archives/v1.0.1-b1";>
  -  http://jakarta.apache.org/builds/jakarta-struts/archives/v1.0.1-b1.
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0.1-rc1";>
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0.1-rc1.
   
 Check the Release Notes
 for a summary of what new features have been added, and other significant
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc index.xml

2001-11-03 Thread husted

husted  01/11/03 19:04:02

  Modified:doc  index.xml
  Log:
  Minor stylistic change.
  
  Revision  ChangesPath
  1.12  +3 -4  jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- index.xml 2001/11/03 12:24:48 1.11
  +++ index.xml 2001/11/04 03:04:02 1.12
  @@ -49,7 +49,9 @@
   
 A concise Users Guide is also 
provided 
 with the distribution. The User Guide introduces the Model View Controller 
  -  architecture, and how it relates to the major components of Struts.
  +  architecture, and how it relates to the major components of Struts. Several 
Developer 
  +  Guides are also provided, to help you get started with the Struts tag extensions 
and 
  +  utility packages.
   
 For more detail about a specific class or package, the Struts 
 http://jakarta.apache.org/struts/api-1.0/index.html";>Javadocs
  @@ -57,9 +59,6 @@
 you refer to the http://jakarta.apache.org/struts/api-1.0/index.html";>Javadoc 
 for each class as you begin to use it, to be sure important features and options 
 are not overlooked. What you don't know, can't help you.
  -
  -  Several Developer Guides are also provided, to help you get started with the 
  -  Struts tag extensions and utility packages.
   
 Of course, the only true documentation is the code itself. If you have any 
questions 
 about how Struts actually works, do not hestate to use the source. For the 
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc index.xml

2001-11-03 Thread husted

husted  01/11/03 04:24:48

  Modified:doc  index.xml
  Log:
  index.xml - Add documentation section
  project.xml - Move Kickstart above User Guide
  kickstart - Add links to mailing archives and JGuru under Getting Help. Stylistc 
changes.
  userguide/project.xml - Move Kickstart before Introduction
  userguide/introduction.xml - Several stylistic changes, mainly to stress the use of 
business logic beans.
  
  Revision  ChangesPath
  1.11  +30 -0 jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- index.xml 2001/10/20 05:02:42 1.10
  +++ index.xml 2001/11/03 12:24:48 1.11
  @@ -42,6 +42,36 @@
   
 
   
  +  
  +
  +  The Kickstart FAQ quickly 
answers 
  +  the most common questions about Struts.
  +
  +  A concise Users Guide is also 
provided 
  +  with the distribution. The User Guide introduces the Model View Controller 
  +  architecture, and how it relates to the major components of Struts.
  +
  +  For more detail about a specific class or package, the Struts 
  +  http://jakarta.apache.org/struts/api-1.0/index.html";>Javadocs
  +  are comprehensive and carefully maintained. It is strongly recommended that 
  +  you refer to the http://jakarta.apache.org/struts/api-1.0/index.html";>Javadoc 
  +  for each class as you begin to use it, to be sure important features and options 
  +  are not overlooked. What you don't know, can't help you.
  +
  +  Several Developer Guides are also provided, to help you get started with the 
  +  Struts tag extensions and utility packages.
  +
  +  Of course, the only true documentation is the code itself. If you have any 
questions 
  +  about how Struts actually works, do not hestate to use the source. For the 
  +  complete, buildable source code to the entire Struts framework, see the "src" 
folder in 
  +  the http://jakarta.apache.org/builds/jakarta-struts/release/v1.0/src/";>Struts 1.0 
source distribution.
  +
  +  The Struts Resources page 
provides links to 
  +  everything else written about  Struts, including books, articles, tutorials, and 
sample 
  +  applications. There are also links to public sites "Powered by Struts". 
  +
  +  
  +
 
   
 The production release of Struts 1.0 is available in
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc index.xml struts-html.xml

2001-10-19 Thread martinc

martinc 01/10/19 22:04:06

  Modified:doc  Tag: STRUTS_1_0_BRANCH index.xml struts-html.xml
  Log:
  Ported documentation updates to 1.0 branch.
  
  PR: 4168, 4268
  Submitted by: Joe Faith, Mark Mascolino
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.4   +1 -1  jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.2.2.3
  retrieving revision 1.2.2.4
  diff -u -r1.2.2.3 -r1.2.2.4
  --- index.xml 2001/06/15 23:31:31 1.2.2.3
  +++ index.xml 2001/10/20 05:04:05 1.2.2.4
  @@ -75,7 +75,7 @@
 
   
 Access to the CVS source repository for Struts is available through both
  -  http://jakarta.apache.org/cvsweb/index.cgi/jakarta-struts/";>web
  +  http://cvs.apache.org/viewcvs/jakarta-struts/";>web
 browser and
 http://jakarta.apache.org/getinvolved/cvsindex.html";>CVS client
 interfaces.
  
  
  
  1.11.2.7  +10 -0 jakarta-struts/doc/struts-html.xml
  
  Index: struts-html.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/struts-html.xml,v
  retrieving revision 1.11.2.6
  retrieving revision 1.11.2.7
  diff -u -r1.11.2.6 -r1.11.2.7
  --- struts-html.xml   2001/10/05 05:05:47 1.11.2.6
  +++ struts-html.xml   2001/10/20 05:04:06 1.11.2.7
  @@ -858,6 +858,16 @@
   associated with our current form. This tag is only valid when
   nested inside a form tag body.
   
  +
  +As with the corresponding HTML  element, the
  +enclosing form element must specify "POST" for the 
method
  +attribute, and "multipart/form-data" for the enctype
  +attribute. For example:
  +
  +
  +
  +
  +
   
   
   
  
  
  



cvs commit: jakarta-struts/doc index.xml

2001-06-23 Thread rleland

rleland 01/06/23 21:55:08

  Modified:doc  index.xml
  Log:
Correct typo in index.xml  Bugzilla 2205
   submitted by  [EMAIL PROTECTED]
  
  Revision  ChangesPath
  1.7   +2 -3  jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- index.xml 2001/06/15 23:35:40 1.6
  +++ index.xml 2001/06/24 04:55:08 1.7
  @@ -58,10 +58,10 @@
 changes, since the Struts 1.0-beta-3 release.
   
 
  -  
  +
 You can acquire interim binary and source distributions of Struts from the
 following locations:
  -  
  +
 
 Download the source directly via
 http://jakarta.apache.org/getinvolved/cvsindex.html";>
  @@ -111,7 +111,6 @@
 
 STRUTS-USER Mailing List - Subscribe to this list
 to communicate with other developers that are using
  -  mailing list to communicate with other developers that are using
 Struts for their own applications, including questions about the
 installation of Struts, and the usage of particular Struts features.
 [mailto:[EMAIL PROTECTED]";>Subscribe]
  
  
  



cvs commit: jakarta-struts/doc index.xml installation.xml project.xml release-notes-1.0.xml

2001-06-15 Thread craigmcc

craigmcc01/06/15 16:35:41

  Modified:doc  index.xml installation.xml project.xml
release-notes-1.0.xml
  Log:
  Port changes to HEAD branch.  NOTE:  The index.xml file is *not*
  identical, because I've removed the links to the obsolete docs.
  
  Revision  ChangesPath
  1.6   +8 -11 jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- index.xml 2001/06/03 00:25:09 1.5
  +++ index.xml 2001/06/15 23:35:40 1.6
  @@ -45,20 +45,17 @@
   
 
   
  -  A new beta release, Struts 1.0-beta-3 has been
  -  created and made available at
  -  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b3";>
  -  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b3.  The
  +  The final release of Struts 1.0 has been created and
  +  made available at
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0";>
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0.  The
 source code for this version of Struts can also be downloaded at
  -  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b3/src";>
  -  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b3/src.
  -  This release is considered to be of production quality, and only bug fixes
  -  will occur between this release and an upcoming Struts 1.0
  -  final release.
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0/src";>
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0/src.
   
  -  Check the Release Notes
  +  Check the Release Notes
 for a summary of what new features have been added, and other significant
  -  changes, since the Struts 1.0-beta-2 release.
  +  changes, since the Struts 1.0-beta-3 release.
   
 
 
  
  
  
  1.5   +7 -0  jakarta-struts/doc/installation.xml
  
  Index: installation.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/installation.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- installation.xml  2001/04/17 14:40:26 1.4
  +++ installation.xml  2001/06/15 23:35:40 1.5
  @@ -248,6 +248,13 @@
   CLASSPATH that is submitted to the compiler.
   
 
  +
  +WARNING - Do NOT add
  +struts.jar to the classpath of your servlet container in an
  +attempt to avoid placing it in the /WEB-INF/lib directory of
  +each individual web app!  Doing so will cause problems with
  +ClassNotFoundException exceptions.
  +
   For most containers, you need only to: 
   
 Copy the WAR files in your Struts /webapp directory to your 
  
  
  
  1.6   +1 -6  jakarta-struts/doc/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/project.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- project.xml   2001/06/15 01:48:58 1.5
  +++ project.xml   2001/06/15 23:35:40 1.6
  @@ -8,7 +8,7 @@
   
   
   
  -
  +
   
   
   
  @@ -42,11 +42,6 @@
   
   
   
  -
  -
  -
  -
  -
   
   
   
  
  
  
  1.3   +13 -0 jakarta-struts/doc/release-notes-1.0.xml
  
  Index: release-notes-1.0.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/release-notes-1.0.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- release-notes-1.0.xml 2001/06/14 00:24:03 1.2
  +++ release-notes-1.0.xml 2001/06/15 23:35:40 1.3
  @@ -150,6 +150,11 @@
   struts-logic custom tag library (package
   org.apache.struts.taglib.logic):
   
  +The  tag now supports a new
  +attribute, indexId.  This attribute names a page scope
  +attribute (and corresponding scripting variable) that will be
  +exposed in the nested body of the iteration, which will contain
  +the current loop index as a java.lang.Integer.
   
   
   The following new features have been added to the
  @@ -193,6 +198,13 @@
   setMultipartRequestHander() if appropriate) first.
   
   
  +The following changes and bug fixes have occurred in the file upload
  +package (package org.apache.struts.upload):
  +
  +Fixed a bug that could cause corruption in the uploaded file,
  +by converting sequences of \r\n\n into \r\n\r\n.
  +
  +
   The following changes and bug fixes have occurred in the utilities
   (package org.apache.struts.util):
   
  @@ -256,6 +268,7 @@
   pages that formerly emitted  tags in the
   generated HTML, and generated

cvs commit: jakarta-struts/doc index.xml installation.xml release-notes-1.0.xml

2001-06-15 Thread craigmcc

craigmcc01/06/15 16:31:31

  Modified:doc  Tag: STRUTS_1_0_BRANCH index.xml installation.xml
release-notes-1.0.xml
  Log:
  Miscellaneous cleanup on the docs.  (Ted, it looks like you might have
  started making some changes without doing cvs update first).
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.3   +10 -12jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.2.2.2
  retrieving revision 1.2.2.3
  diff -u -r1.2.2.2 -r1.2.2.3
  --- index.xml 2001/06/02 04:08:12 1.2.2.2
  +++ index.xml 2001/06/15 23:31:31 1.2.2.3
  @@ -45,20 +45,17 @@
   
 
   
  -  A new beta release, Struts 1.0-beta-2 has been
  -  created and made available at
  -  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b2";>
  -  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b2.  The
  +  The final release of Struts 1.0 has been created and
  +  made available at
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0";>
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0.  The
 source code for this version of Struts can also be downloaded at
  -  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b2/src";>
  -  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b2/src.
  -  This release is considered to be of production quality, and only bug fixes
  -  will occur between this release and an upcoming Struts 1.0
  -  final release.
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0/src";>
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0/src.
   
  -  Check the Release Notes
  +  Check the Release Notes
 for a summary of what new features have been added, and other significant
  -  changes, since the Struts 1.0-beta-1 release.
  +  changes, since the Struts 1.0-beta-3 release.
   
 
 
  @@ -127,7 +124,8 @@
 [mailto:[EMAIL PROTECTED]";>Unsubscribe]
 
 Bug Reports and Feature Requests Use the
  -  Bug Reporting System to submit these reports.
  +  http://nagoya.apache.org/bugzilla/";>Bug Reporting System
  +  to submit these reports.
 Patches and Modules - You can contribute patches and
 new modules to Struts by posting them to the STRUTS-DEV mailing list.
 After discussion and acceptance, one of the existing Committers will
  
  
  
  1.4.2.1   +7 -0  jakarta-struts/doc/installation.xml
  
  Index: installation.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/installation.xml,v
  retrieving revision 1.4
  retrieving revision 1.4.2.1
  diff -u -r1.4 -r1.4.2.1
  --- installation.xml  2001/04/17 14:40:26 1.4
  +++ installation.xml  2001/06/15 23:31:31 1.4.2.1
  @@ -248,6 +248,13 @@
   CLASSPATH that is submitted to the compiler.
   
 
  +
  +WARNING - Do NOT add
  +struts.jar to the classpath of your servlet container in an
  +attempt to avoid placing it in the /WEB-INF/lib directory of
  +each individual web app!  Doing so will cause problems with
  +ClassNotFoundException exceptions.
  +
   For most containers, you need only to: 
   
 Copy the WAR files in your Struts /webapp directory to your 
  
  
  
  1.1.2.2   +13 -0 jakarta-struts/doc/release-notes-1.0.xml
  
  Index: release-notes-1.0.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/release-notes-1.0.xml,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- release-notes-1.0.xml 2001/06/14 00:22:30 1.1.2.1
  +++ release-notes-1.0.xml 2001/06/15 23:31:31 1.1.2.2
  @@ -150,6 +150,11 @@
   struts-logic custom tag library (package
   org.apache.struts.taglib.logic):
   
  +The  tag now supports a new
  +attribute, indexId.  This attribute names a page scope
  +attribute (and corresponding scripting variable) that will be
  +exposed in the nested body of the iteration, which will contain
  +the current loop index as a java.lang.Integer.
   
   
   The following new features have been added to the
  @@ -193,6 +198,13 @@
   setMultipartRequestHander() if appropriate) first.
   
   
  +The following changes and bug fixes have occurred in the file upload
  +package (package org.apache.struts.upload):
  +
  +Fixed a bug that could cause corruption in the uploaded file,
  +by converting sequences of \r\n\n into \r\n\r\n.
  +
  +
   The following changes and bug fixes have occurred in the utilities
   (package org.apache.struts.util):
   
  @@ -256,6 +268,7 @@
   pages that formerly emitted  tags in the

cvs commit: jakarta-struts/doc index.xml

2001-06-01 Thread craigmcc

craigmcc01/06/01 21:08:52

  Modified:doc  index.xml
  Log:
  Subscribe and unsubscribe links.
  
  Revision  ChangesPath
  1.4   +11 -6 jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- index.xml 2001/05/31 02:02:28 1.3
  +++ index.xml 2001/06/02 04:08:51 1.4
  @@ -112,15 +112,20 @@
 community, including contributing to the future development of Struts.
 Check out the following resources:
 
  -  STRUTS-USER Mailing List - Subscribe to the
  -  mailto:[EMAIL PROTECTED]";>STRUTS-USER
  +  STRUTS-USER Mailing List - Subscribe to this list
  +  to communicate with other developers that are using
 mailing list to communicate with other developers that are using
 Struts for their own applications, including questions about the
  -  installation of Struts, and the usage of particular Struts features.
  -  STRUTS-DEV Mailing List - Subscribe to the
  -  mailto:[EMAIL PROTECTED]";>STRUTS-DEV
  +  installation of Struts, and the usage of particular Struts features.
  +  [mailto:[EMAIL PROTECTED]";>Subscribe]
  +  [mailto:[EMAIL PROTECTED]";>Unsubscribe]
  +  
  +  STRUTS-DEV Mailing List - Subscribe to this
 mailing list to communicate with other developers interested in expanding
  -  and improving the functionality supported by Struts itself.
  +  and improving the functionality supported by Struts itself.
  +  [mailto:[EMAIL PROTECTED]";>Subscribe]
  +  [mailto:[EMAIL PROTECTED]";>Unsubscribe]
  +  
 Bug Reports and Feature Requests Use the
 Bug Reporting System to submit these reports.
 Patches and Modules - You can contribute patches and
  
  
  



cvs commit: jakarta-struts/doc index.xml

2001-06-01 Thread craigmcc

craigmcc01/06/01 21:08:12

  Modified:doc  Tag: STRUTS_1_0_BRANCH index.xml
  Log:
  Place both Subscribe and Unsubscribe links to the mailing lists on the
  main page of the documentation application (and therefore the main page of
  the Struts web site next time it is updated).
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.2   +11 -6 jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.2.2.1
  retrieving revision 1.2.2.2
  diff -u -r1.2.2.1 -r1.2.2.2
  --- index.xml 2001/05/31 02:01:36 1.2.2.1
  +++ index.xml 2001/06/02 04:08:12 1.2.2.2
  @@ -112,15 +112,20 @@
 community, including contributing to the future development of Struts.
 Check out the following resources:
 
  -  STRUTS-USER Mailing List - Subscribe to the
  -  mailto:[EMAIL PROTECTED]";>STRUTS-USER
  +  STRUTS-USER Mailing List - Subscribe to this list
  +  to communicate with other developers that are using
 mailing list to communicate with other developers that are using
 Struts for their own applications, including questions about the
  -  installation of Struts, and the usage of particular Struts features.
  -  STRUTS-DEV Mailing List - Subscribe to the
  -  mailto:[EMAIL PROTECTED]";>STRUTS-DEV
  +  installation of Struts, and the usage of particular Struts features.
  +  [mailto:[EMAIL PROTECTED]";>Subscribe]
  +  [mailto:[EMAIL PROTECTED]";>Unsubscribe]
  +  
  +  STRUTS-DEV Mailing List - Subscribe to this
 mailing list to communicate with other developers interested in expanding
  -  and improving the functionality supported by Struts itself.
  +  and improving the functionality supported by Struts itself.
  +  [mailto:[EMAIL PROTECTED]";>Subscribe]
  +  [mailto:[EMAIL PROTECTED]";>Unsubscribe]
  +  
 Bug Reports and Feature Requests Use the
 Bug Reporting System to submit these reports.
 Patches and Modules - You can contribute patches and
  
  
  



cvs commit: jakarta-struts/doc index.xml

2001-05-30 Thread craigmcc

craigmcc01/05/30 19:02:29

  Modified:doc  index.xml
  Log:
  Port the documentation change to the HEAD branch.
  
  Revision  ChangesPath
  1.3   +6 -3  jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- index.xml 2001/05/20 02:09:06 1.2
  +++ index.xml 2001/05/31 02:02:28 1.3
  @@ -48,9 +48,12 @@
 A new beta release, Struts 1.0-beta-2 has been
 created and made available at
 http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b2";>
  -  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b2.  This
  -  release is considered to be of production quality, and only bug fixes will
  -  occur between this release and an upcoming Struts 1.0
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b2.  The
  +  source code for this version of Struts can also be downloaded at
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b2/src";>
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b2/src.
  +  This release is considered to be of production quality, and only bug fixes
  +  will occur between this release and an upcoming Struts 1.0
 final release.
   
 Check the Release Notes
  
  
  



cvs commit: jakarta-struts/doc index.xml

2001-05-30 Thread craigmcc

craigmcc01/05/30 19:01:38

  Modified:doc  Tag: STRUTS_1_0_BRANCH index.xml
  Log:
  Specifically identify the location of the source code download for the
  1.0-b2 release.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.1   +6 -3  jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- index.xml 2001/05/20 02:09:06 1.2
  +++ index.xml 2001/05/31 02:01:36 1.2.2.1
  @@ -48,9 +48,12 @@
 A new beta release, Struts 1.0-beta-2 has been
 created and made available at
 http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b2";>
  -  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b2.  This
  -  release is considered to be of production quality, and only bug fixes will
  -  occur between this release and an upcoming Struts 1.0
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b2.  The
  +  source code for this version of Struts can also be downloaded at
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b2/src";>
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b2/src.
  +  This release is considered to be of production quality, and only bug fixes
  +  will occur between this release and an upcoming Struts 1.0
 final release.
   
 Check the Release Notes
  
  
  



cvs commit: jakarta-struts/doc index.xml

2001-05-19 Thread craigmcc

craigmcc01/05/19 19:09:06

  Modified:doc  index.xml
  Log:
  Update front page for 1.0-b2 references.
  
  Revision  ChangesPath
  1.2   +6 -6  jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- index.xml 2001/03/18 17:48:58 1.1
  +++ index.xml 2001/05/20 02:09:06 1.2
  @@ -45,17 +45,17 @@
   
 
   
  -  A new milestone release, Struts 1.0-beta-1 has been
  +  A new beta release, Struts 1.0-beta-2 has been
 created and made available at
  -  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b1";>
  -  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b1.  This
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b2";>
  +  http://jakarta.apache.org/builds/jakarta-struts/release/v1.0-b2.  This
 release is considered to be of production quality, and only bug fixes will
 occur between this release and an upcoming Struts 1.0
 final release.
   
  -  Check the Release Notes for a summary of what
  -  new features have been added, and other significant changes, since the
  -  Struts 0.5 milestone release.
  +  Check the Release Notes
  +  for a summary of what new features have been added, and other significant
  +  changes, since the Struts 1.0-beta-1 release.