Author: martinc
Date: Sun Mar 13 22:20:47 2005
New Revision: 157397
URL: http://svn.apache.org/viewcvs?view=rev&rev=157397
Log:
Bugzilla #33998: Fix incorrect @link syntax.
Modified:
struts/core/branches/STRUTS_1_2_BRANCH/src/example/org/apache/struts/webapp/example/LocaleAction.java
struts/core/branches/STRUTS_1_2_BRANCH/src/examples/org/apache/struts/webapp/validator/LocaleAction.java
struts/core/branches/STRUTS_1_2_BRANCH/src/share/org/apache/struts/action/ActionServlet.java
struts/core/branches/STRUTS_1_2_BRANCH/src/share/org/apache/struts/action/RequestProcessor.java
struts/core/branches/STRUTS_1_2_BRANCH/src/share/org/apache/struts/actions/LocaleAction.java
Modified:
struts/core/branches/STRUTS_1_2_BRANCH/src/example/org/apache/struts/webapp/example/LocaleAction.java
URL:
http://svn.apache.org/viewcvs/struts/core/branches/STRUTS_1_2_BRANCH/src/example/org/apache/struts/webapp/example/LocaleAction.java?view=diff&r1=157396&r2=157397
==============================================================================
---
struts/core/branches/STRUTS_1_2_BRANCH/src/example/org/apache/struts/webapp/example/LocaleAction.java
(original)
+++
struts/core/branches/STRUTS_1_2_BRANCH/src/example/org/apache/struts/webapp/example/LocaleAction.java
Sun Mar 13 22:20:47 2005
@@ -30,7 +30,7 @@
/**
- * <p>Change user's Struts @link(java.util.Locale).</p>
+ * <p>Change user's Struts [EMAIL PROTECTED] java.util.Locale}.</p>
*/
public final class LocaleAction extends BaseAction {
@@ -44,13 +44,13 @@
}
/**
- * <p>Parameter for @link(java.util.Locale) language property.
+ * <p>Parameter for [EMAIL PROTECTED] java.util.Locale} language property.
* ["language"]</p>
*/
private static final String LANGUAGE = "language" ;
/**
- * <p>Parameter for @link(java.util.Locale) country property.
+ * <p>Parameter for [EMAIL PROTECTED] java.util.Locale} country property.
* ["country"]</p>
*/
private static final String COUNTRY = "country";
@@ -73,7 +73,7 @@
/**
* <p>
- * Change the user's Struts @link(java.util.Locale) based on request
+ * Change the user's Struts [EMAIL PROTECTED] java.util.Locale} based on
request
* parameters for "language", "country".
* After setting the Locale, control is forwarded to an URI path
* indicated by a "page" parameter, or a forward indicated by a
Modified:
struts/core/branches/STRUTS_1_2_BRANCH/src/examples/org/apache/struts/webapp/validator/LocaleAction.java
URL:
http://svn.apache.org/viewcvs/struts/core/branches/STRUTS_1_2_BRANCH/src/examples/org/apache/struts/webapp/validator/LocaleAction.java?view=diff&r1=157396&r2=157397
==============================================================================
---
struts/core/branches/STRUTS_1_2_BRANCH/src/examples/org/apache/struts/webapp/validator/LocaleAction.java
(original)
+++
struts/core/branches/STRUTS_1_2_BRANCH/src/examples/org/apache/struts/webapp/validator/LocaleAction.java
Sun Mar 13 22:20:47 2005
@@ -37,7 +37,7 @@
/**
* Implementation of <strong>Action</strong> that changes the user's
- * @link(java.util.Locale and forwards to a page, based on request level
+ * [EMAIL PROTECTED] java.util.Locale} and forwards to a page, based on
request level
* parameters that are set (language, country, & page).
*
*/
@@ -50,7 +50,7 @@
/**
* <p>
- * Change the user's @link(java.util.Locale) based on @link(ActionForm)
+ * Change the user's [EMAIL PROTECTED] java.util.Locale} based on [EMAIL
PROTECTED] ActionForm}
* properties.
* </p>
* <p>
@@ -58,7 +58,7 @@
* <code>country</code> properties on the given form, constructs an
* appropriate Locale object, and sets it as the Struts Locale for this
* user's session.
- * Any <code>ActionForm, including a @link(DynaActionForm), may be used.
+ * Any <code>ActionForm, including a [EMAIL PROTECTED] DynaActionForm},
may be used.
* </p>
* <p>
* If a <code>page</code> property is also provided, then after
Modified:
struts/core/branches/STRUTS_1_2_BRANCH/src/share/org/apache/struts/action/ActionServlet.java
URL:
http://svn.apache.org/viewcvs/struts/core/branches/STRUTS_1_2_BRANCH/src/share/org/apache/struts/action/ActionServlet.java?view=diff&r1=157396&r2=157397
==============================================================================
---
struts/core/branches/STRUTS_1_2_BRANCH/src/share/org/apache/struts/action/ActionServlet.java
(original)
+++
struts/core/branches/STRUTS_1_2_BRANCH/src/share/org/apache/struts/action/ActionServlet.java
Sun Mar 13 22:20:47 2005
@@ -89,9 +89,9 @@
* <li>There can be <b>one</b> 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 the
- * handling of a request to a @link(RequestProcessor) object. This
component
+ * handling of a request to a [EMAIL PROTECTED] RequestProcessor} object.
This component
* represents the "controller" component of an MVC architecture.</li>
- * <li>The <code>RequestProcessor</code> selects and invokes an @link(Action)
class to perform
+ * <li>The <code>RequestProcessor</code> selects and invokes an [EMAIL
PROTECTED] Action} class to perform
* the requested business logic, or delegates the response to another
resource.</li>
* <li>The <code>Action</code> classes can manipulate the state of the
application's
* interaction with the user, typically by creating or modifying JavaBeans
@@ -99,7 +99,7 @@
* they need to be available). Such JavaBeans represent the "model"
* component of an MVC architecture.</li>
* <li>Instead of producing the next page of the user interface directly,
- * <code>Action</code> classes generally return an @link(ActionForward) to
indicate
+ * <code>Action</code> classes generally return an [EMAIL PROTECTED]
ActionForward} to indicate
* which resource should handle the response. If the <code>Action</code>
* does not return null, the <code>RequestProcessor</code> forwards or
* redirects to the specified resource (by utilizing
Modified:
struts/core/branches/STRUTS_1_2_BRANCH/src/share/org/apache/struts/action/RequestProcessor.java
URL:
http://svn.apache.org/viewcvs/struts/core/branches/STRUTS_1_2_BRANCH/src/share/org/apache/struts/action/RequestProcessor.java?view=diff&r1=157396&r2=157397
==============================================================================
---
struts/core/branches/STRUTS_1_2_BRANCH/src/share/org/apache/struts/action/RequestProcessor.java
(original)
+++
struts/core/branches/STRUTS_1_2_BRANCH/src/share/org/apache/struts/action/RequestProcessor.java
Sun Mar 13 22:20:47 2005
@@ -44,7 +44,7 @@
/**
* <p><strong>RequestProcessor</strong> contains the processing logic that
- * the @link(ActionServlet) performs as it receives each servlet request
+ * the [EMAIL PROTECTED] 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.</p>
Modified:
struts/core/branches/STRUTS_1_2_BRANCH/src/share/org/apache/struts/actions/LocaleAction.java
URL:
http://svn.apache.org/viewcvs/struts/core/branches/STRUTS_1_2_BRANCH/src/share/org/apache/struts/actions/LocaleAction.java?view=diff&r1=157396&r2=157397
==============================================================================
---
struts/core/branches/STRUTS_1_2_BRANCH/src/share/org/apache/struts/actions/LocaleAction.java
(original)
+++
struts/core/branches/STRUTS_1_2_BRANCH/src/share/org/apache/struts/actions/LocaleAction.java
Sun Mar 13 22:20:47 2005
@@ -50,7 +50,7 @@
/**
* <p>
- * Change the user's @link(java.util.Locale) based on @link(ActionForm)
+ * Change the user's [EMAIL PROTECTED] java.util.Locale} based on [EMAIL
PROTECTED] ActionForm}
* properties.
* </p>
* <p>
@@ -58,7 +58,7 @@
* <code>country</code> properties on the given form, constructs an
* appropriate Locale object, and sets it as the Struts Locale for this
* user's session.
- * Any <code>ActionForm, including a @link(DynaActionForm), may be used.
+ * Any <code>ActionForm, including a [EMAIL PROTECTED] DynaActionForm},
may be used.
* </p>
* <p>
* If a <code>page</code> property is also provided, then after
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]