Return-Path: Delivered-To: apmail-struts-commits-archive@locus.apache.org Received: (qmail 88736 invoked from network); 30 Aug 2006 16:13:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 30 Aug 2006 16:13:44 -0000 Received: (qmail 95543 invoked by uid 500); 30 Aug 2006 16:13:41 -0000 Delivered-To: apmail-struts-commits-archive@struts.apache.org Received: (qmail 95497 invoked by uid 500); 30 Aug 2006 16:13:41 -0000 Mailing-List: contact commits-help@struts.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@struts.apache.org Delivered-To: mailing list commits@struts.apache.org Received: (qmail 95488 invoked by uid 99); 30 Aug 2006 16:13:41 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Aug 2006 09:13:40 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Aug 2006 09:13:40 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id C4E531A981A; Wed, 30 Aug 2006 09:13:19 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r438532 - in /struts: sandbox/trunk/struts2/apps/cookbook/ sandbox/trunk/struts2/apps/mailreader-bang/ sandbox/trunk/struts2/apps/mailreader-ibatis/ sandbox/trunk/struts2/apps/mailreader-wildone/ struts2/trunk/apps/blank/ struts2/trunk/apps... Date: Wed, 30 Aug 2006 16:13:18 -0000 To: commits@struts.apache.org From: husted@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060830161319.C4E531A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: husted Date: Wed Aug 30 09:13:17 2006 New Revision: 438532 URL: http://svn.apache.org/viewvc?rev=438532&view=rev Log: WW-1349 Update and Add READMEs for applications. Added: struts/sandbox/trunk/struts2/apps/cookbook/README.txt struts/sandbox/trunk/struts2/apps/mailreader-ibatis/README.txt struts/sandbox/trunk/struts2/apps/mailreader-wildone/README.txt struts/struts2/trunk/apps/blank/README.txt struts/struts2/trunk/apps/portlet/README.txt struts/struts2/trunk/apps/showcase/README.txt struts/struts2/trunk/apps/starter/README.txt Modified: struts/sandbox/trunk/struts2/apps/mailreader-bang/README.txt struts/struts2/trunk/apps/mailreader/README.txt Added: struts/sandbox/trunk/struts2/apps/cookbook/README.txt URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2/apps/cookbook/README.txt?rev=438532&view=auto ============================================================================== --- struts/sandbox/trunk/struts2/apps/cookbook/README.txt (added) +++ struts/sandbox/trunk/struts2/apps/cookbook/README.txt Wed Aug 30 09:13:17 2006 @@ -0,0 +1,13 @@ +README.txt - cookbook + +The Cookbook is a collection of working examples which demonstrate how to +code common web application use cases. + +The application is designed so that the code used to impolement the +examples can be viewed online. + +This application is being retained as a placeholder until we can refactor +the Showcase to use a similar format. + + +---------------------------------------------------------------------------- \ No newline at end of file Modified: struts/sandbox/trunk/struts2/apps/mailreader-bang/README.txt URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2/apps/mailreader-bang/README.txt?rev=438532&r1=438531&r2=438532&view=diff ============================================================================== --- struts/sandbox/trunk/struts2/apps/mailreader-bang/README.txt (original) +++ struts/sandbox/trunk/struts2/apps/mailreader-bang/README.txt Wed Aug 30 09:13:17 2006 @@ -1,15 +1,26 @@ README.txt - mailreader-bang -This application demonstrates switching from the "bang" syntax for invoking -dynamic methods to a general-purpose wild card approach. +The MailReader demonstrates a localized application with a master/child +CRUD workflow. -To switch between approaches, edit the struts.xml file to include either the -struts-bang.xml file OR the struts-wildcard.xml. (But not both.) +This rendition also demonstrates switching from the "bang" syntax for +invoking dynamic methods to a general-purpose wild card approach. + +To switch between approaches, edit the struts.xml file to include either +the struts-bang.xml file OR the struts-wildcard.xml. (But not both.) When using the -bang application, be sure that the struts.enable.DynamicMethodInvocation property is set to "true". For the -wilcard application. be sure that the struts.enable.DynamicMethodInvocation property is set to "false". + +See the Sandbox for other MailReader examples using other architectures. + +* http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2/apps/ + +For more about the MailReader applicaton genneraly, visit Struts University. + +* http://www.StrutsUniversity.org/ ---------------------------------------------------------------------------- Added: struts/sandbox/trunk/struts2/apps/mailreader-ibatis/README.txt URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2/apps/mailreader-ibatis/README.txt?rev=438532&view=auto ============================================================================== --- struts/sandbox/trunk/struts2/apps/mailreader-ibatis/README.txt (added) +++ struts/sandbox/trunk/struts2/apps/mailreader-ibatis/README.txt Wed Aug 30 09:13:17 2006 @@ -0,0 +1,18 @@ +README.txt - mailreader-ibatis + +The MailReader demonstrates a localized application with a master/child +CRUD workflow. + +This rendition also demonstrates using iBATIS SQL Maps and a streamlined +data access layer for database access. + +See the Sandbox for other MailReader examples using other architectures. + +* http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2/apps/ + +For more about the MailReader applicaton genneraly, visit Struts University. + +* http://www.StrutsUniversity.org/ + + +---------------------------------------------------------------------------- \ No newline at end of file Added: struts/sandbox/trunk/struts2/apps/mailreader-wildone/README.txt URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2/apps/mailreader-wildone/README.txt?rev=438532&view=auto ============================================================================== --- struts/sandbox/trunk/struts2/apps/mailreader-wildone/README.txt (added) +++ struts/sandbox/trunk/struts2/apps/mailreader-wildone/README.txt Wed Aug 30 09:13:17 2006 @@ -0,0 +1,19 @@ +README.txt - mailreader + +The MailReader demonstrates a localized application with a master/child +CRUD workflow. + +This rendition also demonstrates using multiple Action classes as +opposed to multiple "alias" methods. Each application "entity" has +its own Java package, and each class in the package represents a command. + +See the Sandbox for other MailReader examples using other architectures. + +* http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2/apps/ + +For more about the MailReader applicaton genneraly, visit Struts University. + +* http://www.StrutsUniversity.org/ + + +---------------------------------------------------------------------------- \ No newline at end of file Added: struts/struts2/trunk/apps/blank/README.txt URL: http://svn.apache.org/viewvc/struts/struts2/trunk/apps/blank/README.txt?rev=438532&view=auto ============================================================================== --- struts/struts2/trunk/apps/blank/README.txt (added) +++ struts/struts2/trunk/apps/blank/README.txt Wed Aug 30 09:13:17 2006 @@ -0,0 +1,10 @@ +README.txt - blank + +This is an "empty" application that you can deploy as the basis of your own +application. + +For more on getting started with Struts, see + +* http://cwiki.apache.org/WW/home.html + +---------------------------------------------------------------------------- \ No newline at end of file Modified: struts/struts2/trunk/apps/mailreader/README.txt URL: http://svn.apache.org/viewvc/struts/struts2/trunk/apps/mailreader/README.txt?rev=438532&r1=438531&r2=438532&view=diff ============================================================================== --- struts/struts2/trunk/apps/mailreader/README.txt (original) +++ struts/struts2/trunk/apps/mailreader/README.txt Wed Aug 30 09:13:17 2006 @@ -1,15 +1,18 @@ -README.txt - mailreader-bang +README.txt - mailreader -This application demonstrates switching from the "bang" syntax for invoking -dynamic methods to a general-purpose wild card approach. +The MailReader demonstrates a localized application with a master/child +CRUD workflow. -To switch between approaches, edit the struts.xml file to include either the -struts-bang.xml file OR the struts-wildcard.xml. (But not both.) +This rendition also demonstrates using wildcards to "normalize" an +application. -When using the -bang application, be sure that the -struts.enable.DynamicMethodInvocation property is set to "true". +See the Sandbox for other MailReader examples using other architectures. + +* http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2/apps/ + +For more about the MailReader applicaton genneraly, visit Struts University. + +* http://www.StrutsUniversity.org/ -For the -wilcard application. be sure that the -struts.enable.DynamicMethodInvocation property is set to "false". ---------------------------------------------------------------------------- Added: struts/struts2/trunk/apps/portlet/README.txt URL: http://svn.apache.org/viewvc/struts/struts2/trunk/apps/portlet/README.txt?rev=438532&view=auto ============================================================================== --- struts/struts2/trunk/apps/portlet/README.txt (added) +++ struts/struts2/trunk/apps/portlet/README.txt Wed Aug 30 09:13:17 2006 @@ -0,0 +1,9 @@ +README.txt - portlet + +This is a simple example of using the portlet API with Struts applications. + +For more on getting started with Struts, see + +* http://cwiki.apache.org/WW/home.html + +---------------------------------------------------------------------------- \ No newline at end of file Added: struts/struts2/trunk/apps/showcase/README.txt URL: http://svn.apache.org/viewvc/struts/struts2/trunk/apps/showcase/README.txt?rev=438532&view=auto ============================================================================== --- struts/struts2/trunk/apps/showcase/README.txt (added) +++ struts/struts2/trunk/apps/showcase/README.txt Wed Aug 30 09:13:17 2006 @@ -0,0 +1,10 @@ +README.txt - showcase + +Showcase is a collection of examples with code that you might be adopt and +adapt in your own applications. + +For more on getting started with Struts, see + +* http://cwiki.apache.org/WW/home.html + +---------------------------------------------------------------------------- \ No newline at end of file Added: struts/struts2/trunk/apps/starter/README.txt URL: http://svn.apache.org/viewvc/struts/struts2/trunk/apps/starter/README.txt?rev=438532&view=auto ============================================================================== --- struts/struts2/trunk/apps/starter/README.txt (added) +++ struts/struts2/trunk/apps/starter/README.txt Wed Aug 30 09:13:17 2006 @@ -0,0 +1,10 @@ +README.txt - starter + +This is an "hello world" application that you can deploy and review, and +perhaps use as the basis of your own application. + +For more on getting started with Struts, see + +* http://cwiki.apache.org/WW/home.html + +---------------------------------------------------------------------------- \ No newline at end of file