Return-Path: Delivered-To: apmail-struts-commits-archive@locus.apache.org Received: (qmail 60925 invoked from network); 23 Mar 2007 02:29:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 23 Mar 2007 02:29:54 -0000 Received: (qmail 86283 invoked by uid 500); 23 Mar 2007 02:30:00 -0000 Delivered-To: apmail-struts-commits-archive@struts.apache.org Received: (qmail 86239 invoked by uid 500); 23 Mar 2007 02:30:00 -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 86230 invoked by uid 99); 23 Mar 2007 02:30:00 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Mar 2007 19:30:00 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS X-Spam-Check-By: apache.org Received: from [140.211.11.130] (HELO eos.apache.org) (140.211.11.130) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Mar 2007 19:29:51 -0700 Received: from eos.apache.osuosl.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id B1DCF59A05 for ; Fri, 23 Mar 2007 02:29:31 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki To: commits@struts.apache.org Date: Fri, 23 Mar 2007 02:29:31 -0000 Message-ID: <20070323022931.9813.92418@eos.apache.osuosl.org> Subject: [Struts Wiki] Update of "Struts14Roadmap" by Paul Benedict X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Struts Wiki" for change notification. The following page has been changed by Paul Benedict: http://wiki.apache.org/struts/Struts14Roadmap ------------------------------------------------------------------------------ The 1.4 release will focus on being a "bridge" to 2.1 by adopting some of the conventions and ideas to make the user's codebase look similar (if not identical) to 2.x actions. This will mainly benefit users who already have large 1.x applications, but cannot afford to refactor and replace previous development. - == Actions == + == S2-like Actions == + * Adopt the S2 "public String execute() throws Exception" signature. + * Provide the ActionContext to the actions (undetermined method). + * Place the SUCCESS, INPUT, etc. constants in Action + * How to determine the model object that would fill out the parameters of the result string? + + == POJO Actions == + * No longer mandatory to require a subclass of Action + * POJO Actions will simply be proxied by an ActionProxy + * Allow actions to be prototypical + == I18N == + * Shared subproject of localization strategies + * S1/S2/Tiles will have unique adapters to use the strategies + * Will refactor [https://issues.apache.org/struts/browse/STR-2897 STR-2897] for this purpose + == Tiles == + * Tiles2 integration +