Return-Path: Delivered-To: apmail-struts-dev-archive@www.apache.org Received: (qmail 19473 invoked from network); 14 Mar 2005 06:01:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 14 Mar 2005 06:01:01 -0000 Received: (qmail 92482 invoked by uid 500); 14 Mar 2005 06:00:59 -0000 Delivered-To: apmail-struts-dev-archive@struts.apache.org Received: (qmail 92458 invoked by uid 500); 14 Mar 2005 06:00:59 -0000 Mailing-List: contact dev-help@struts.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Struts Developers List" Reply-To: "Struts Developers List" Delivered-To: mailing list dev@struts.apache.org Received: (qmail 92445 invoked by uid 500); 14 Mar 2005 06:00:59 -0000 Received: (qmail 92442 invoked by uid 99); 14 Mar 2005 06:00:58 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Sun, 13 Mar 2005 22:00:58 -0800 Received: (qmail 19436 invoked by uid 65534); 14 Mar 2005 06:00:57 -0000 Message-ID: <20050314060057.19434.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Mailer: svnmailer-1.0.0-dev Date: Mon, 14 Mar 2005 06:00:57 -0000 Subject: svn commit: r157395 - struts/core/trunk/src/share/org/apache/struts/action/ActionServlet.java struts/core/trunk/src/share/org/apache/struts/action/RequestProcessor.java struts/core/trunk/src/share/org/apache/struts/actions/LocaleAction.java To: commits@struts.apache.org From: martinc@apache.org X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Author: martinc Date: Sun Mar 13 22:00:56 2005 New Revision: 157395 URL: http://svn.apache.org/viewcvs?view=3Drev&rev=3D157395 Log: Bugzilla #33998: Fix incorrect @link syntax. Modified: struts/core/trunk/src/share/org/apache/struts/action/ActionServlet.java struts/core/trunk/src/share/org/apache/struts/action/RequestProcessor.j= ava struts/core/trunk/src/share/org/apache/struts/actions/LocaleAction.java Modified: struts/core/trunk/src/share/org/apache/struts/action/ActionServle= t=2Ejava URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/s= truts/action/ActionServlet.java?view=3Ddiff&r1=3D157394&r2=3D157395 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- struts/core/trunk/src/share/org/apache/struts/action/ActionServlet.java= (original) +++ struts/core/trunk/src/share/org/apache/struts/action/ActionServlet.java= Sun Mar 13 22:00:56 2005 @@ -90,9 +90,9 @@ *
  • There can be one instance of this servlet class, * which receives and processes all requests that change the state of * a user's interaction with the application. The servlet delegates t= he - * handling of a request to a @link(RequestProcessor) object. This com= ponent + * handling of a request to a {@link RequestProcessor} object. This co= mponent * represents the "controller" component of an MVC architecture.
  • - *
  • The RequestProcessor selects and invokes an @link(Acti= on) class to perform + *
  • The RequestProcessor selects and invokes an {@link Act= ion} class to perform * the requested business logic, or delegates the response to another = resource.
  • *
  • The Action classes can manipulate the state of the app= lication's * interaction with the user, typically by creating or modifying JavaB= eans @@ -100,7 +100,7 @@ * they need to be available). Such JavaBeans represent the "model" * component of an MVC architecture.
  • *
  • Instead of producing the next page of the user interface directly, - * Action classes generally return an @link(ActionForward= ) to indicate + * Action classes generally return an {@link ActionForwar= d} to indicate * which resource should handle the response. If the Action * does not return null, the RequestProcessor forwards or * redirects to the specified resource (by utilizing Modified: struts/core/trunk/src/share/org/apache/struts/action/RequestProce= ssor.java URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/s= truts/action/RequestProcessor.java?view=3Ddiff&r1=3D157394&r2=3D157395 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- struts/core/trunk/src/share/org/apache/struts/action/RequestProcessor.j= ava (original) +++ struts/core/trunk/src/share/org/apache/struts/action/RequestProcessor.j= ava Sun Mar 13 22:00:56 2005 @@ -43,7 +43,7 @@ =20 /** *

    RequestProcessor contains the processing logic that - * the @link(ActionServlet) performs as it receives each servlet request + * the {@link ActionServlet} performs as it receives each servlet request * from the container. You can customize the request processing behavior by * subclassing this class and overriding the method(s) whose behavior you = are * interested in changing.

    Modified: struts/core/trunk/src/share/org/apache/struts/actions/LocaleActio= n=2Ejava URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/s= truts/actions/LocaleAction.java?view=3Ddiff&r1=3D157394&r2=3D157395 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- struts/core/trunk/src/share/org/apache/struts/actions/LocaleAction.java= (original) +++ struts/core/trunk/src/share/org/apache/struts/actions/LocaleAction.java= Sun Mar 13 22:00:56 2005 @@ -50,7 +50,7 @@ =20 /** *

    - * Change the user's @link(java.util.Locale) based on @link(ActionForm) + * Change the user's {@link java.util.Locale} based on {@link ActionFo= rm} * properties. *

    *

    @@ -58,7 +58,7 @@ * country properties on the given form, constructs an * appropriate Locale object, and sets it as the Struts Locale for this * user's session. - * Any ActionForm, including a @link(DynaActionForm), may be use= d=2E + * Any ActionForm, including a {@link DynaActionForm}, may be us= ed. *

    *

    * If a page property is also provided, then after --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@struts.apache.org For additional commands, e-mail: dev-help@struts.apache.org