craigmcc    2003/11/11 13:23:32

  Modified:    contrib/struts-faces build.xml
               doc      learning.xml using.xml
               doc/faqs kickstart.xml
               doc/news news_2001.xml news_2002_q2.xml news_2002_q3.xml
                        news_2002_q4.xml news_2003_q1.xml news_2003_q2.xml
                        news_2003_q3.xml
               doc/resources archives.xml consultants.xml powered.xml
                        sigs.xml
  Log:
  Vic Cekvenich of BaseBeans.com has made it clear in public postings that
  he is ashamed of using Struts, and has engaged in an attack on the proper
  behavior of the Apache Software Foundation's Board of Directors.  In these
  circumstances, it would be hypocritical for BaseBeans to benefit from the
  free advertising value of being visible on the Struts web site.  Help them
  out of this conundrum by removing such references.
  
  Revision  Changes    Path
  1.4       +131 -4    jakarta-struts/contrib/struts-faces/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/contrib/struts-faces/build.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build.xml 9 Aug 2003 19:29:30 -0000       1.3
  +++ build.xml 11 Nov 2003 21:23:32 -0000      1.4
  @@ -88,6 +88,7 @@
     <property name="username" value="tomcat"/>
   
     <property name="example.path"     value="/struts-faces"/>
  +  <property name="stf.path"         value="/struts-tiles-faces"/>
   
   
     <!-- ===================== LIBRARY: Maintenance ========================= -->
  @@ -312,7 +313,7 @@
     <!-- ===================== EXAMPLE:  Tomcat Integration ================= -->
   
   
  -  <target name="install" depends="example.compile"
  +  <target name="example.install" depends="example.compile"
      description="Install example webapp on Tomcat">
       <install url="${url}" username="${username}" password="${password}"
               path="${example.path}"
  @@ -320,24 +321,142 @@
     </target>
   
   
  -  <target name="reload" depends="example.compile"
  +  <target name="example.reload" depends="example.compile"
      description="Reload example webapp on Tomcat">
       <reload url="${url}" username="${username}" password="${password}"
               path="${example.path}"/>
     </target>
   
   
  -  <target name="remove"
  +  <target name="example.remove"
      description="Remove example webapp from Tomcat">
       <remove url="${url}" username="${username}" password="${password}"
               path="${example.path}"/>
     </target>
   
   
  +  <!-- ===================== STF: Create Webapp ============================ -->
  +
  +
  +  <target name="stf.prepare" depends="library">
  +
  +    <echo message="------------ ${project.name} STF Webapp -------------"/>
  +    <mkdir         dir="${build.home}/webapps"/>
  +    <mkdir         dir="${build.home}/webapps/stf"/>
  +
  +  </target>
  +
  +
  +  <target name="stf.static" depends="stf.prepare">
  +
  +    <!-- Copy static web resources -->
  +    <copy        todir="${build.home}/webapps/stf">
  +      <fileset     dir="web/stf"/>
  +    </copy>
  +
  +    <!-- Copy required configuration files -->
  +    <copy        todir="${build.home}/webapps/stf/WEB-INF">
  +      <fileset     dir="${struts.home}/lib">
  +        <include  name="*.tld"/>
  +        <include  name="valid*.xml"/>
  +      </fileset>
  +    </copy>
  +
  +    <!-- Copy required library JAR files -->
  +    <mkdir         dir="${build.home}/webapps/stf/WEB-INF/lib"/>
  +    <copy        todir="${build.home}/webapps/stf/WEB-INF/lib"
  +                  file="${build.home}/lib/struts-faces.jar"/>
  +    <copy        todir="${build.home}/webapps/stf/WEB-INF/lib"
  +                  file="${commons-beanutils.jar}"/>
  +    <copy        todir="${build.home}/webapps/stf/WEB-INF/lib"
  +                  file="${commons-collections.jar}"/>
  +    <copy        todir="${build.home}/webapps/stf/WEB-INF/lib"
  +                  file="${commons-digester.jar}"/>
  +    <copy        todir="${build.home}/webapps/stf/WEB-INF/lib"
  +                  file="${commons-fileupload.jar}"/>
  +    <copy        todir="${build.home}/webapps/stf/WEB-INF/lib"
  +                  file="${commons-lang.jar}"/>
  +    <copy        todir="${build.home}/webapps/stf/WEB-INF/lib"
  +                  file="${commons-logging.jar}"/>
  +    <copy        todir="${build.home}/webapps/stf/WEB-INF/lib"
  +                  file="${commons-validator.jar}"/>
  +    <copy        todir="${build.home}/webapps/stf/WEB-INF/lib"
  +                  file="${struts.jar}"/>
  +
  +  </target>
  +
  +
  +  <target name="stf.libraries" depends="stf.static"
  +            if="build.standalone">
  +
  +    <!-- Copy libraries required for standalone use only -->
  +    <copy        todir="${build.home}/webapps/stf/WEB-INF/lib"
  +                  file="${commons-dbcp.jar}"/>
  +    <copy        todir="${build.home}/webapps/stf/WEB-INF/lib"
  +                  file="${commons-pool.jar}"/>
  +    <copy        todir="${build.home}/webapps/stf/WEB-INF/lib"
  +                  file="${jsf-api.jar}"/>
  +    <copy        todir="${build.home}/webapps/stf/WEB-INF/lib"
  +                  file="${jsf-ri.jar}"/>
  +    <copy        todir="${build.home}/webapps/stf/WEB-INF/lib"
  +                  file="${jstl.jar}"/>
  +    <copy        todir="${build.home}/webapps/stf/WEB-INF/lib"
  +                  file="${standard.jar}"/>
  +
  +  </target>
  +
  +
  +  <target name="stf.compile" depends="stf.libraries">
  +
  +    <!-- Compile Java Sources -->
  +    <mkdir         dir="${build.home}/webapps/stf/WEB-INF/classes"/>
  +    <javac      srcdir="src/stf"
  +               destdir="${build.home}/webapps/stf/WEB-INF/classes"
  +                 debug="${compile.debug}"
  +           deprecation="${compile.deprecation}"
  +              optimize="${compile.optimize}">
  +      <classpath refid="classpath" />
  +    </javac>
  +
  +    <!-- Copy non-Java Sources -->
  +    <copy    todir="${build.home}/webapps/stf/WEB-INF/classes">
  +      <fileset dir="src/stf">
  +        <exclude name="**/*.java"/>
  +      </fileset>
  +    </copy>
  +
  +  </target>
  +
  +
  +  <!-- ===================== STF:  Tomcat Integration ===================== -->
  +
  +
  +  <target name="stf.install" depends="stf.compile"
  +   description="Install STF webapp on Tomcat">
  +    <install url="${url}" username="${username}" password="${password}"
  +            path="${stf.path}"
  +             war="file://${build.home}/webapps/stf"/>
  +  </target>
  +
  +
  +  <target name="stf.reload" depends="stf.compile"
  +   description="Reload STF webapp on Tomcat">
  +    <reload url="${url}" username="${username}" password="${password}"
  +            path="${stf.path}"/>
  +  </target>
  +
  +
  +  <target name="stf.remove"
  +   description="Remove STF webapp from Tomcat">
  +    <remove url="${url}" username="${username}" password="${password}"
  +            path="${stf.path}"/>
  +  </target>
  +
  +
     <!-- ==================== Create Binary Distribution ==================== -->
   
   
  -  <target name="dist" depends="example.compile, docs"
  +  <target name="dist" depends="example.compile, stf.compile, docs"
      description="Create binary distribution">
   
       <mkdir     dir="${dist.home}"/>
  @@ -372,6 +491,14 @@
           <include name="META-INF/LICENSE.txt"/>
         </fileset>
         <fileset dir="${build.home}/webapps/example">
  +        <exclude name="**/jsf-*.jar"/>   <!-- EA license so no redistrib -->
  +      </fileset>
  +    </jar>
  +    <jar  destfile="${dist.home}/webapps/struts-tiles-faces.war">
  +      <fileset dir="${build.home}/classes">
  +        <include name="META-INF/LICENSE.txt"/>
  +      </fileset>
  +      <fileset dir="${build.home}/webapps/stf">
           <exclude name="**/jsf-*.jar"/>   <!-- EA license so no redistrib -->
         </fileset>
       </jar>
  
  
  
  1.16      +1 -6      jakarta-struts/doc/learning.xml
  
  Index: learning.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/learning.xml,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- learning.xml      9 Sep 2003 17:49:21 -0000       1.15
  +++ learning.xml      11 Nov 2003 21:23:32 -0000      1.16
  @@ -217,12 +217,7 @@
       <strong>BUT YOU MUST SUBSCRIBE TO THE 
       <a href="mailto:[EMAIL PROTECTED]">USER LIST</a>
       OR THE <a href="mailto:[EMAIL PROTECTED]">
  -    USER LIST DIGEST</a> BEFORE POSTING</strong>. 
  -    If you would rather not subscribe 
  -    to a list, you can go through the
  -    <a href="http://www.proj.com/subscribe.jsp";>BaseBeans Struts Newsgroup</a>
  -    instead.
  -    </p>
  +    USER LIST DIGEST</a> BEFORE POSTING</strong>. </p>
   
       
           Please note that the Struts User list enjoys a "casual friday" policy. 
  
  
  
  1.11      +0 -1      jakarta-struts/doc/using.xml
  
  Index: using.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/using.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- using.xml 9 Sep 2003 17:49:21 -0000       1.10
  +++ using.xml 11 Nov 2003 21:23:32 -0000      1.11
  @@ -154,7 +154,6 @@
         [<a href="http://www.proj.com/subscribe.jsp";>Struts Newsgroup</a>]<br/>
         This is another way to post to the User list without subscribing to the 
         regular list. <br/>
  -      Our thanks to BaseBeans Engineering for providing this much-needed service!
         </li>
       </ul>
   
  
  
  
  1.13      +4 -3      jakarta-struts/doc/faqs/kickstart.xml
  
  Index: kickstart.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/faqs/kickstart.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- kickstart.xml     15 Sep 2003 00:33:03 -0000      1.12
  +++ kickstart.xml     11 Nov 2003 21:23:32 -0000      1.13
  @@ -342,8 +342,9 @@
   <p>
   Not a usenet group, but the Struts User list can be accessed with your
   favorite newsgroup reader from the
  -<a href="http://news.basebeans.com/forums.jsp";>
  -BaseBeans Engineering</a> site.
  +<a href="http://news.gmane.org/";>GMane News Site</a>.  Subscribe to groups
  +<code>gmane.comp.jakarta.struts.devel</code> for the developer list, or
  +<code>gmane.comp.jakarta.struts.user</code> for the user list.
   </p>
   </section>
   
  @@ -351,7 +352,7 @@
   <p>
   You must be subscribed to the <a href="mailto:[EMAIL PROTECTED]">user list</a>
   or <a href="mailto:[EMAIL PROTECTED]">user digest</a> before posting
  -(or use the <a href="http://news.basebeans.com/forums.jsp";>BaseBeans newsgroup</a> 
instead).
  +(or use the <a href="http://news.gmane.org";>GMane Newsgroups</a> instead).
   </p>
   </section>
   
  
  
  
  1.6       +0 -73     jakarta-struts/doc/news/news_2001.xml
  
  Index: news_2001.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/news/news_2001.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- news_2001.xml     9 Sep 2003 17:49:22 -0000       1.5
  +++ news_2001.xml     11 Nov 2003 21:23:32 -0000      1.6
  @@ -83,79 +83,6 @@
   <hr/>
   
   
  -<h4 id="S20011130">30 Nov 2001 - Struts/MVC Book and Training Seminars</h4>
  -<p>
  -[PUBLIC/PRIVATE TRAINING]
  -</p>
  -<p>
  -      BaseBeans Engineering offers both public and private training classes in 
  -      developing MVC applications using the Struts framework and other open 
  -      standards software.  Please visit the BaseBeans web site for more 
  -      information (http://www.basebeans.com).
  -</p>
  -<p>
  -      [BOOK]
  -</p>
  -<p>
  -      BaseBeans Engineering is announcing the widespread availability of the book 
  -      "Struts Fast Track: J2EE/JSP Framework", covering the necessities of 
  -      developing open standards, MVC, Struts-based applications, including open 
  -      standard software overviews, database CRUD, object orientation, tiles, 
  -      menus, security, refactoring, and deployment.
  -</p>
  -<p>
  -      "Struts Fast Track" may be purchased at Atlas Books 
  -      (http://www.atlasbooks.com/marktplc/00670.htm).
  -</p>
  -<p>
  -      TABLE OF CONTENTS
  -</p>
  -<pre>
  -      Chapter 1: Orientation
  -      Chapter 2: Warm Up
  -      Chapter 3: Requirements
  -      Chapter 4: Framework Installation
  -      Chapter 5: Support
  -      Chapter 6: Application Architecture
  -      Chapter 7: Searching
  -      Chapter 8: Setup RDBMS
  -      Chapter 9: Data Retrieval
  -      Chapter 10: Object Orientation
  -      Chapter 11: XML from JSP
  -      Chapter 12: Drill Down
  -      Chapter 13: Debugging
  -      Chapter 14: Data Entry
  -      Chapter 15: Master-Detail Processing
  -      Chapter 16: Security
  -      Chapter 17: Demo
  -      Chapter 18: Data Validation
  -      Chapter 19: Administration
  -      Chapter 20: Portal Tiles
  -      Chapter 21: Refactoring
  -      Chapter 22: Menus
  -      Chapter 23: Deployment
  -      Chapter 24: Performance Assurance
  -      Chapter 25: Audit Queue
  -      Chapter 26: Content Syndication
  -      Chapter 27: Review
  -
  -      Appendix A: Downloads
  -      Appendix B: Technology Architecture
  -      Appendix C: Struts Tiles
  -      Appendix D: Struts Validation
  -      Appendix E: WebLogic Deployment
  -      Appendix F: Why not use ... ?
  -</pre>
  -<p>
  -      [MORE INFORMATION]
  -</p>
  -<p>
  -      For more information, please visit the 
  -      <a href="http://www.basebeans.com";>BaseBeans Engineering</a> web site. 
  -</p>
  -<hr/>
  -
  -
   <h4 id="S20011127">27 Nov 2001 - Routines to validate Data in Struts</h4>
   <p>
   The 
  
  
  
  1.6       +0 -4      jakarta-struts/doc/news/news_2002_q2.xml
  
  Index: news_2002_q2.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/news/news_2002_q2.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- news_2002_q2.xml  9 Sep 2003 17:49:22 -0000       1.5
  +++ news_2002_q2.xml  11 Nov 2003 21:23:32 -0000      1.6
  @@ -401,10 +401,6 @@
   The columns first run on the MVC-Programmers list and will later be available 
through Husted dot Com and JGuru. 
   </p>
   <p>
  -MVC-Programmer List<br/>
  -- <a 
href="http://www.basebeans.com:8081/mailman/listinfo/mvc-programmers";>www.basebeans.com:8081/mailman/listinfo/mvc-programmers</a>
  -</p>
  -<p>
   Struts Tips archives<br/>
   - <a 
href="http://jguru.com/faq/subtopic.jsp?topicID=893704";>jguru.com/faq/subtopic.jsp?topicID=893704</a><br/>
   - <a href="http://www.husted.com/struts/tips";>www.husted.com/struts/tips</a>
  
  
  
  1.6       +0 -77     jakarta-struts/doc/news/news_2002_q3.xml
  
  Index: news_2002_q3.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/news/news_2002_q3.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- news_2002_q3.xml  9 Sep 2003 17:49:22 -0000       1.5
  +++ news_2002_q3.xml  11 Nov 2003 21:23:32 -0000      1.6
  @@ -384,83 +384,6 @@
   <p><a href="http://www.fawcette.com/javapro/2002_07/online/kjones/";><strong>Create 
Better Web Apps with Struts</strong></a> by Kevin Jones.</p>
   <hr/>
   
  -<h4 id="S20020723.2">23 Jul 2002 - STL (Standard Tags) + Struts (MVC) live web 
Demo</h4>
  -<p>If you are starting a Java Web, you should use MVC and Standard tags,
  -this "kit" is a sample of "best" (at least good) practices.
  -</p><p>
  -It is MVC (Struts/Tiles)+JSTL +XSLT+ DAO (Open Source Data Access Object
  -w/ SQL) + DB CRUD (Create update delete and SQL DLL scripts)+ J2EE
  -Security ( to make Tomcat run like Apache )
  -</p><p>
  -It is KISS (you'll see how simple and how very standard) , good
  -practices Free Open Source Framework to develop any web app, with the
  -aim of being 80% of any app, but done as simple as possible and easy to
  -teach. Again, everything is standard and simple. And it is the fastest,
  -most efficient way to develop maintainable code I know of.
  -</p><p>
  -Samples include CMS (Authorize content, XSLT, CMS Comments, sinkable,
  -single sign on, etc.),  Issue tracking, + more coming.
  -</p><p>
  -Please download and install and see if you want to attend. Details:
  -<a href="http://basicportal.sourceforge.net";>http://basicportal.sourceforge.net</a>
  -</p><p>
  -I use it to teach Struts + JSTL public and private classes. I epically
  -teach WHY you should want to do something in a certain way, not just how.
  -</p><p>
  -To attend and see "best practices"
  -http://www.basebeans.com/webEx.jsp
  -The seminar requires you know servlets, jsp,  SQL, JDBC, and at least
  -some MVC. (a plus is if you have already deployed and MVC web app in the
  -past) Oh...it is $10.00 ( but free to baseBeans clients and/or apache.org
  -committers.)
  -</p><p>
  -To keep in touch on this join "MVC-Programmers" mail list at
  -http://www.netbean.net/mailman/listinfo/mvc-programmers
  -</p><p>
  -To keep in touch with open source projects go to
  -http://news.netbean.net/cgi-bin/webnews.cgi
  -</p>
  -<hr/>
  -
  -
  -<h4 id="S20020723">23 Jul 2002 - STL (Standard Tags) + Struts (MVC) live web 
Demo</h4>
  -<p>If you are starting a Java Web, you should use MVC and Standard tags,
  -this "kit" is a sample of "best" (at least good) practices.
  -</p><p>
  -It is MVC (Struts/Tiles)+JSTL +XSLT+ DAO (Open Source Data Access Object
  -w/ SQL) + DB CRUD (Create update delete and SQL DLL scripts)+ J2EE
  -Security ( to make Tomcat run like Apache )
  -</p><p>
  -It is KISS (you'll see how simple and how very standard) , good
  -practices Free Open Source Framework to develop any web app, with the
  -aim of being 80% of any app, but done as simple as possible and easy to
  -teach. Again, everything is standard and simple. And it is the fastest,
  -most efficient way to develop maintainable code I know of.
  -</p><p>
  -Samples include CMS (Authorize content, XSLT, CMS Comments, sinkable,
  -single sign on, etc.),  Issue tracking, + more coming.
  -</p><p>
  -Please download and install and see if you want to attend. Details:
  -http://basicportal.sourceforge.net
  -</p><p>
  -I use it to teach Struts + JSTL public and private classes. I epically
  -teach WHY you should want to do something in a certain way, not just how.
  -</p><p>
  -To attend and see "best practices"
  -http://www.basebeans.com/webEx.jsp
  -The seminar requires you know servlets, jsp,  SQL, JDBC, and at least
  -some MVC. (a plus is if you have already deployed and MVC web app in the
  -past) Oh...it is $10.00 ( but free to baseBeans clients and/or apache.org
  -committers.)
  -</p><p>
  -To keep in touch on this join "MVC-Programmers" mail list at
  -http://www.netbean.net/mailman/listinfo/mvc-programmers
  -</p><p>
  -To keep in touch with open source projects go to
  -http://news.netbean.net/cgi-bin/webnews.cgi
  -</p>
  -<hr/>
  -
   
   <h4 id="S20020718">18 July 2002 - JavaBoutique Struts Tutorials</h4>
   <p><a href="http://javaboutique.internet.com/tutorials/Struts/";><strong>Stepping 
through Jakarta Struts</strong></a> by Keld H. Hansen.</p>
  
  
  
  1.8       +0 -84     jakarta-struts/doc/news/news_2002_q4.xml
  
  Index: news_2002_q4.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/news/news_2002_q4.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- news_2002_q4.xml  9 Sep 2003 17:49:22 -0000       1.7
  +++ news_2002_q4.xml  11 Nov 2003 21:23:32 -0000      1.8
  @@ -108,45 +108,6 @@
       </ul>
   <hr/>
   
  -    <h4 id="S20031229">29 Dec 2002 - BasicPortal 0.7k available on SourceForge</h4>
  -    <p>
  -    The BasicPortal Project has released version 0.7k.  BasicPortal is a Struts
  -    based application that can help your developers get a head start on their
  -    Portal development.  Setup the database and deploy the .war and you are
  -    ready to go!
  -    </p>
  -    <p>
  -    Version 0.7k contains:
  -    </p>
  -    <ul>
  -        <li>
  -    - ability to add content to comments
  -        </li>
  -        <li>
  -    - contact manager module
  -        </li>
  -        <li>
  -    - task manager module
  -        </li>
  -        <li>
  -    - email module
  -        </li>
  -        <li>
  -    - custom DAO
  -        </li>
  -        <li>
  -    - secure modules
  -        </li>
  -    </ul>
  -
  -    <p>
  -    The BasicPortal application can be customized for use in your company.
  -    </p>
  -    <p>
  -    Any questions on BasicPortal should be directed to the MVC Progammers
  -    list -- [EMAIL PROTECTED]
  -    </p>
  -<hr/>
   
   <h4 id="S20021213">12 Dec 2002 - Struts book #1 and #2</h4>
   <p>
  @@ -224,51 +185,6 @@
           tracker, forums). Don't hesitate to 'get dirty' with the code, but make
           sure to contribute the changes back to the project. If you're willing to
           use CVS, open the SourceForge account and mail me the username.
  -    </p>
  -    <hr/>
  -
  -    <h4 id="S20021203.1">03 Dec 2002 - Best and Worst Development Practices -- 
Training in NYC and DC</h4>
  -    <p>
  -        Increase Your Struts Productivity - Attend the BaseBeans Public Struts
  -        Training!!!!
  -    </p>
  -    <p>
  -        We have a 11 hour public class in DC and in NYC in January. If you sign up
  -        soon the price is $145. The regular price is $275 and it goes up as we
  -        approach the date due to capacity planning.
  -    </p>
  -    <p>
  -        This class is taught by baseBeans Engineering, the company voted to have the
  -        best hands on training class by JDJ for their "Fast Track to Struts" class.
  -    </p>
  -    <p>
  -        Get your training from the #1 trainer with a money back guarantee!!!!
  -    </p>
  -    <p>
  -        You will pay $50 to register and be billed the balance. Upon registration,
  -        you will be shipped a CD that contains the tools needed for the class, such
  -        as an IDE, App. Server, some sample working source code, Struts, etc.
  -    </p>
  -    <p>
  -        Follow this link to register:
  -        <a 
href="http://64.253.60.21/do/classReservation";>http://64.253.60.21/do/classReservation</a>
  -
  -    </p>
  -    <p>
  -        At the training, we will cover Struts, Java Server Faces, JDO, DAO,
  -        JDBC,etc.
  -    </p>
  -    <p>
  -        A pre-requisite for attendance is some Struts knowledge or at least Servlet
  -        and SQL knowledge. This class is targeted at tech leads. Bring your
  -        questions and receive practical advice from the baseBeans team.
  -    </p>
  -    <p>
  -        You can FedEx a check or a PO for the balance to BaseBeans.
  -    </p>
  -    <p>
  -        Prior paid students and clients are free for this class, as always, but we
  -        need to know you are coming.
       </p>
       <hr/>
   
  
  
  
  1.5       +0 -251    jakarta-struts/doc/news/news_2003_q1.xml
  
  Index: news_2003_q1.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/news/news_2003_q1.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- news_2003_q1.xml  15 Sep 2003 00:33:03 -0000      1.4
  +++ news_2003_q1.xml  11 Nov 2003 21:23:32 -0000      1.5
  @@ -366,35 +366,6 @@
       </p>
       <hr/>
   
  -    <h4 id="S20030217">17 Feb 2003 - Struts talk .. &amp; labs live online w/ 4 
Authors</h4>
  -    <p>
  -        Ted &amp; James have now both graciously agreed to join the WebEx labs.
  -    </p>
  -    <p>
  -        Try to see them in person! <br />
  -        (I just did DC 2 weeks ago).
  -    </p>
  -    <p>
  -        This in addition to doing real labs for multi row master detail processing 
to DB, etc.
  -        I just added extra sessions.
  -        You can find out more and how to sign up at
  -        <a 
href="http://www.mail-archive.com/mvc-programmers%40basebeans.net/msg00006.html";>http://www.mail-archive.com/mvc-programmers%40basebeans.net/msg00006.html</a>
  -    </p>
  -    <p>
  -        But if you can't ... you can see their presentation and hear them live from 
your home or work,
  -        shortly after their live shows.
  -    </p>
  -    <p>
  -        The qualifier is that this is not intro to Struts
  -        and that you please do the hands on labs after each of the 5 sessions.
  -    </p>
  -    <p>
  -        Vic Cekvenich <br />
  -        - Best Training by readers of JDJ<br />
  -        - Project recovery
  -    </p>
  -    <hr/>
  -
       <h4 id="S20030216">16 Feb 2003 - Struts talks at Lone Star</h4>
       <p>
           The Lone Star Software Symposium in Austin TX February 21-23 features 
Struts presentations by
  @@ -483,166 +454,6 @@
       <hr/>
   
   
  -    <h4 id="S20030206">06 Feb 2003 -  Easy Struts 0.6.3 for Eclipse is out</h4>
  -    <p>
  -        Easy Struts 0.6.3 for Eclipse is now available.
  -        This release has no new features, only bug correction.
  -    </p>
  -    <p>
  -    <a href="http://easystruts.sf.net";>http://easystruts.sf.net</a>
  -    </p>
  -    <p>
  -        Changes on 0.6.3<br/>
  -        * Fix root dir problem with Tomcat Sysdeo plugin<br/>
  -        * Fix roles generation in &lt;action.../><br/>
  -        * XML elements forward/form-property/exception/set-property respect DTD 
order
  -    </p>
  -    <hr/>
  -
  -    <h4 id="S20030205">05 Feb 2003 - Live Internet based Intermediate Struts 
Training by "Best Training"
  -        as voted by Java Developers Journal.</h4>
  -
  -    <p>
  -    Live Internet based Intermediate Struts Training by "Best Training" as voted
  -    by Java Developers Journal. Learn good (best?) practices of web application
  -    development!
  -    </p>
  -
  -    <ul>
  -    <li>
  -    Multi row processing to DB
  -    </li>
  -    <li>
  -    Master/Detail processing
  -    </li>
  -    <li>
  -    Java Script Navigation
  -    </li>
  -    <li>
  -    and lots more, full agenda available, and it's all practical, no theory from me!
  -    </li>
  -    </ul>
  -
  -    <p>
  -    The title of the class is "Pretenders vs. Pros" used to be Best and Worst
  -    Practices. This is version 3 of my intermediate advanced class.
  -    </p>
  -
  -    <p>
  -    The class will meet online over 4 weeks, Saturdays at 10 AM Eastern on WebEx for
  -    about an hour or a bit more or less. My goal is to start on the 2/22.
  -    </p>
  -
  -    <p>
  -    You should have a DSL or Cable connection, ( not sure how modem will work,
  -    Web Ex says yeah, I say nay. Maybe you can go to work on Saturday?), and the
  -    call in on a phone # to hear voice
  -    </p>
  -
  -    <p>
  -    You will have a mail list and newsgroup to ask questions on, I expect a lot
  -    of questions on the labs.
  -    </p>
  -
  -    <p>
  -    This is NOT a intro to MVC, it is suitable for people that did one
  -    Struts/MVC project or are very familiar with Servelts/JDBC/JSP/SQL. If you
  -    are a Struts experienced, this is the class for you! If you are new to Java
  -    / Web, this is not class for you. It help if you have production web/mvc
  -    experience.
  -    </p>
  -
  -    <p>
  -    This is NOT for hands off types, it is lab based, for each hour of lecture,
  -    there is at least 8 hours of labs each week. I promise the labs will be
  -    challenging.
  -    </p>
  -
  -    <p>
  -    If you can't or don't do the web labs, the next lesson will make no sense to
  -    you. Not doing "home work" labs, you will be invited not to attend the rest.
  -    I want to avoid pretenders, and nurturer pros.
  -    </p>
  -
  -    <p>
  -    Scared?  The labs are doable. Clients like BEA, Borland, Cisco, IBM, etc.
  -    already did the hand on in person labs. That is how baseBeans.com got voted
  -    for "Best Training" by Java Developers Journal. I am willing to put it on
  -    the line! by teaching the class over the web via WebEx.com.  I really want
  -    to be the teach of the year next year as well!
  -    </p>
  -
  -    <p>
  -    I also did Struts project recovery, and worked on 40,000 concurrent users
  -    Struts site, I guess I did more Struts training than all others combined,
  -    plus more.
  -    </p>
  -
  -    <p>
  -    I am certified OO instructor, certified SQL performance and Tuning, J2EE
  -    certified and Java Certified by 3 different J2EE vendors! You will enjoy the
  -    class and learn, guranteed.
  -    </p>
  -
  -    <p>
  -    You charges will be mostly for the WebEx + voice, so you can see my screen.
  -    When you register early, you will get a CD mailed to you with the lab
  -    materials. (International clients will have another way)
  -    </p>
  -
  -    <p>
  -    If you register earlier, you get a cheaper price, goes up every few days,
  -    just like for seminars, the later your register, the more you pay.
  -    </p>
  -
  -    <p>
  -    Since the cost is low, you can only register via the web, no P.O. or checks.
  -    </p>
  -
  -    <p>
  -    To find the price, to discuss the class before hand, as well as lab
  -    questions later, etc. sign up at
  -    </p>
  -
  -    <p>
  -    <a href="http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers";>
  -    http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers
  -    </a>
  -    </p>
  -
  -    <p>
  -    Please use the
  -    <a href="http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers";>
  -    MVC mail list</a>
  -    for any questions regarding this!
  -    </p>
  -
  -    <p>
  -    </p>
  -
  -    <p>
  -    Click here to register:
  -    <br/>
  -    <a 
href="http://www.basebeans.com/do/classReservation";>http://www.basebeans.com/do/classReservation</a>
  -    </p>
  -
  -    <p>
  -    The seminar is being given at near cost, on Open Source principles.
  -    </p>
  -
  -    <p>
  -    Questions? Comments? On the
  -    <a href="http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers";>
  -    MVC mail list
  -    </a>.
  -    </p>
  -
  -    <p>
  -    Vic Cekvenich &lt;<a href="mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]</a>&gt;
  -    </p>
  -    <hr/>
  -
  -
       <h4 id="S20030204">04 Feb 2003 - Struts Console v3.2</h4>
       <p>
       Struts Console version 3.2 is now available.<br />
  @@ -718,68 +529,6 @@
            size and location.
           </li>
       </ul>
  -    <hr/>
  -
  -    <h4 id="S20030118">18 Jan 2003 - Struts Training in DC and NYC</h4>
  -    <p>
  -        Increase Your Struts Productivity - Attend the BaseBeans Public Struts
  -        Training!!!!
  -    </p>
  -    <p>
  -        We have a 11 hour public class in DC and in NYC in January.
  -    </p>
  -    <p>
  -        Washington DC Class -- January 18th 2003
  -        NYC Class  -- January 24th 2003
  -    </p>
  -    <p>
  -        This class is taught by baseBeans Engineering, the company voted to have the
  -        best hands on training class by JDJ for their "Fast Track to Struts" class.
  -    </p>
  -    <p>
  -        Get your training from the #1 trainer with a money back guarantee!!!!
  -    </p>
  -    <p>
  -        You will pay $50 to register and be billed the balance. Upon registration,
  -        you will be shipped a CD that contains the tools needed for the class, such
  -        as an IDE, App. Server, some sample working source code, Struts, etc.
  -    </p>
  -    <p>
  -        Follow this link to register:  http://www.basebeans.com/do/classReservation
  -    </p>
  -    <p>
  -        At the training, we will cover Struts, Java Server Faces, JDO, DAO,
  -        JDBC,etc.
  -    </p>
  -    <p>
  -        A pre-requisite for attendance is some Struts knowledge or at least Servlet
  -        and SQL knowledge. This class is targeted at tech leads. Bring your
  -        questions and receive practical advice from the baseBeans team.
  -    </p>
  -    <p>
  -        You can FedEx a check or a PO for the balance to BaseBeans.
  -    </p>
  -    <p>
  -        Prior paid students and clients are free for this class, as always, but we
  -        need to know you are coming.
  -    </p>
  -    <p>
  -        Hope to see you there,
  -    </p>
  -    <p>
  -    #1. We are looking for more people to develop basicPortal.sf.net (baseBeans.com 
is on basicPortal).
  -        Now we are working on setup.exe (currently in beta but available) that will 
install DB,
  -        Tomcat (because people do not know how to set up JDBC realms in server.xml).
  -        As you know bP demos master detail processing, XML, RSS, CMS, task 
tracking, contact management,
  -        JDBC realms, BLOBs, CRUD,  JMeter, JaserReports, etc.
  -        Just e-mail me if you know Struts and want to contribute to open source.
  -    </p>
  -    <p>
  -    #2. Bring a laptop to public training in DC/NYC training to get *FREE* 
autographed "Struts in Action".
  -        Prices goes up tmrw by 9:30 AM Eastern.
  -        This is not intro to Struts, you must know some MVC (and JAVA and SQL well),
  -        I do not like teaching intro.
  -    </p>
       <hr/>
   
       <h4 id="S20031701">17 Jan 2003 - JSP taglibs + FreeMarker</h4>
  
  
  
  1.3       +0 -47     jakarta-struts/doc/news/news_2003_q2.xml
  
  Index: news_2003_q2.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/news/news_2003_q2.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- news_2003_q2.xml  15 Sep 2003 00:33:03 -0000      1.2
  +++ news_2003_q2.xml  11 Nov 2003 21:23:32 -0000      1.3
  @@ -83,53 +83,6 @@
        <hr/>
    
    
  -     <h4 id="S20030611">11 Jun 2003 - Last chance to register for online web
  -     training for advancedStruts.</h4>
  -     <p>Advanced Struts best practices web cast training by winner of best
  -     training
  -        with money back guarantee (this is no *Intro* To    Struts): </p>
  -     <p>Last chance to Register now by going to www.baseBeans.com and click
  -     training,
  -        then click register. The cost is very reasonable and cost effective
  -        take web
  -        training, compared to a conference cost. The rate goes up a lot as we
  -        get closer
  -        to the start date to $300+; register today for $180. Training starts in
  -        a few
  -        weeks, right after JavaOne; on 6/21. We will meet every Saturday for 3
  -        Saturdays
  -        via a web cast (DSL/Cable recommended) at 10AM Eastern (NYC) Time to
  -        complete
  -        the labs. Outstanding reviews/references. If you can't get private
  -        training
  -        paid by your company, this is it, (and over the web!-ask voice
  -        questions via
  -        webcast!) </p>
  -     <p>Best training hands on labs, voted by Java Developers Journal (search
  -        for Training) </p>
  -     <p>We offer money back guarantee, take the classes; you must do the labs,
  -        and after you watch all the sessions, ask for money back if you do not
  -        think
  -        it was valuable! If you know Struts. This WILL    make you a better
  -        programmer. </p>
  -     <p>Shortly after you register, you will receive the training materials, a
  -        book and the labs. </p>
  -     <p>We will write an application from scratch in Struts with DB access,
  -     updates,
  -        master detail processing, validation, navigation, tiles, JSTL, testing,
  -        reporting,
  -        mail, etc. We will cover good practices and bad. Full agenda to follow
  -        on the
  -        mail list (sign up    for mail list on the main page of baseBeans.com).
  -        </p>
  -     <p>Students are always able to retake future training for FREE (even live
  -           in person training offered in the big north east    cities) </p>
  -     <p>Struts Instructors: If you want to teach Advanced Struts in the future
  -           with baseBeans materials, you must sit trough a class by    Vic! </p
  -           >
  -     <hr/>
  - 
  - 
        <h4 id="S20030608">08 Jun 2003 - Wildcard-Matched    Actions</h4>
        <p>This project allows wildcards to be used in Struts 1.1+ action
        mappings.
  
  
  
  1.2       +0 -13     jakarta-struts/doc/news/news_2003_q3.xml
  
  Index: news_2003_q3.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/news/news_2003_q3.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- news_2003_q3.xml  25 Oct 2003 20:35:56 -0000      1.1
  +++ news_2003_q3.xml  11 Nov 2003 21:23:32 -0000      1.2
  @@ -457,19 +457,6 @@
           </p>
           <hr/>
   
  -        <h4 id="S20030711">11 Jul 2003 - new release of bP</h4>
  -        <p>
  -            A new build of bP Jasic v9.7_3 was released. bP is a Struts CMS app, 
that requires a DB to run.
  -        </p>
  -        <p>
  -            It uses JSTL 1.1 (not 1.03), which requires JSP 2.0 (Tomcat 5 AND Resin 
3 included).
  -        </p>
  -        <p>
  -            Also three are few new newsgroups added to new.baseBeans.com (new: 
Oracle, MS SQL, C#, old are JDO,
  -            Eclipse, JavaScript, etc.) so refresh your news reader if you are using 
news.basebeans.com
  -        </p>
  -        <hr/>
  -
           <h4 id="S20030709">09 Jul 2003 - Struts Studio Professional</h4>
           <p>
               Building on the tremendous success of the first release of Struts 
Studio and incorporating substantial
  
  
  
  1.7       +0 -1      jakarta-struts/doc/resources/archives.xml
  
  Index: archives.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/resources/archives.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- archives.xml      9 Sep 2003 17:49:20 -0000       1.6
  +++ archives.xml      11 Nov 2003 21:23:32 -0000      1.7
  @@ -17,7 +17,6 @@
   </ul>
   <p><a href="http://nagoya.apache.org/eyebrowse/";><strong>ASF List 
Archive</strong></a></p>
   <p><a href="http://mail-archive.com/";><strong>mail-archive.com</strong></a>.</p>
  -<p><a href="http://news.basebeans.com/forums.jsp";><strong>BaseBeans Struts 
Newsgroup</strong></a></p>
   <p><a href="http://archive.covalent.net/";><strong>covalent.net</strong></a>.</p>
   </section>
   
  
  
  
  1.17      +0 -1      jakarta-struts/doc/resources/consultants.xml
  
  Index: consultants.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/resources/consultants.xml,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- consultants.xml   9 Sep 2003 17:49:20 -0000       1.16
  +++ consultants.xml   11 Nov 2003 21:23:32 -0000      1.17
  @@ -28,7 +28,6 @@
   <p><a href="http://www.accessdc.com/";>AccessData</a> - <a href="mailto:[EMAIL 
PROTECTED]">Chris Assenza</a>.</p>
   <p><a href="http://www.aragost.com";>aragost (Switzerland)</a> - <a 
href="mailto:[EMAIL PROTECTED]">Klaus Bucka-Lassen</a>.</p>
   <p><a href="http://www.athensgroup.com/";>Athens Group</a> - <a href="mailto:[EMAIL 
PROTECTED]">Frank Lawlor</a>.</p>
  -<p><a href="http://www.basebeans.com/";>Basebeans Engineering</a> - <a 
href="mailto:[EMAIL PROTECTED]">Vic Cekvenich</a>.</p>
   <p><a href="http://www.blackbear.com/software.html";>Black Bear Software</a> - <a 
href="mailto:[EMAIL PROTECTED]">James Turner</a>.</p>
   <p><a href="http://www.bluefish.se/";>Bluefish</a> - <a href="mailto:[EMAIL 
PROTECTED]">Torben Norling</a>.</p>
   <p><a href="http://www.bravepoint.com";>Bravepoint</a> - <a href="mailto:[EMAIL 
PROTECTED]">Struts Info</a>.</p>
  
  
  
  1.16      +0 -1      jakarta-struts/doc/resources/powered.xml
  
  Index: powered.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/resources/powered.xml,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- powered.xml       9 Sep 2003 17:49:20 -0000       1.15
  +++ powered.xml       11 Nov 2003 21:23:32 -0000      1.16
  @@ -25,7 +25,6 @@
   
   <!--
   <p><a href="http://amalregistry.webhop.org/";><strong>Alaskan Malamute 
Registry</strong></a></p>
  -<p><a href="http://www.basebeans.com/";><strong>baseBeans 
Engineering</strong></a></p>
   <p><a href="https://secure.benefit-systems.com/benefit/bsi/";><strong>Benefit 
Systems, Inc.</strong></a></p>
   <p><a href="http://www.bug-track.com/";><strong>Bug-Track.com</strong></a></p>
   <p><a href="http://adminweb.enitel.no/login.jsp";><strong>Enitel</strong></a> - 
French site.</p>
  
  
  
  1.7       +0 -4      jakarta-struts/doc/resources/sigs.xml
  
  Index: sigs.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/resources/sigs.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- sigs.xml  9 Sep 2003 17:49:20 -0000       1.6
  +++ sigs.xml  11 Nov 2003 21:23:32 -0000      1.7
  @@ -35,10 +35,6 @@
           <a href="http://groups.yahoo.com/group/model_struts/";><strong>Model Layer 
in MVC (Struts)</strong></a>.
       </p>
   
  -    <p>
  -        <a 
href="http://www.basebeans.net:8080/mailman/listinfo/mvc-programmers";><strong>MVC 
Programmers</strong></a>.
  -    </p>
  -
       </subsection>
       
       </section>
  
  
  

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

Reply via email to