husted 2002/07/12 02:51:31
Modified: src/share/org/apache/struts/config ForwardConfig.java
ControllerConfig.java
Log:
Change $A token to $M.
Revision Changes Path
1.8 +6 -6
jakarta-struts/src/share/org/apache/struts/config/ForwardConfig.java
Index: ForwardConfig.java
===================================================================
RCS file:
/home/cvs/jakarta-struts/src/share/org/apache/struts/config/ForwardConfig.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ForwardConfig.java 9 Jul 2002 23:57:37 -0000 1.7
+++ ForwardConfig.java 12 Jul 2002 09:51:30 -0000 1.8
@@ -188,11 +188,11 @@
* prefixed by the context path to create a server-relative URL.</li>
* <li>If the <code>contextRelative</code> property is false, the path is
* considered to be the module-relative portion of the URL.
- * It will be used as the replacement for the <code>$F</code>
+ * It will be used as the replacement for the <code>$P</code>
* marker in the <code>forwardPattern</code> property defined on the
* {@link ControllerConfig} element for our current module.
* For the default <code>forwardPattern</code> value of
- * <code>$C$A$P</code>, the resulting server-relative URL will be
+ * <code>$C$M$P</code>, the resulting server-relative URL will be
* the concatenation of the context path, the module prefix,
* and the <code>path</code> from this <code>ForwardConfig</code>.</li>
* </ul>
1.8 +8 -8
jakarta-struts/src/share/org/apache/struts/config/ControllerConfig.java
Index: ControllerConfig.java
===================================================================
RCS file:
/home/cvs/jakarta-struts/src/share/org/apache/struts/config/ControllerConfig.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ControllerConfig.java 9 Jul 2002 23:57:37 -0000 1.7
+++ ControllerConfig.java 12 Jul 2002 09:51:30 -0000 1.8
@@ -147,7 +147,7 @@
* from a {@link ForwardConfig} element. The pattern may consist of any
* combination of the following markers and characters:</p>
* <ul>
- * <li><code><strong>$A</strong></code> - Replaced by the module
+ * <li><code><strong>$M</strong></code> - Replaced by the module
* prefix for the current application module.</li>
* <li><code><strong>$P</strong></code> - Replaced by the <code>path</code>
* property of a {@link ForwardConfig} instance.</li>
@@ -160,7 +160,7 @@
* </ul>
*
* <p>If this property is set to <code>null</code>, a default pattern of
- * <code>$A$P</code> is utilized, which is backwards compatible with
+ * <code>$M$P</code> is utilized, which is backwards compatible with
* the hard coded functionality in prior versions.</p>
*/
protected String forwardPattern = null;
@@ -270,7 +270,7 @@
* properties. The pattern may consist of any combination of the
* following markers and characters:</p>
* <ul>
- * <li><code><strong>$A</strong></code> - Replaced by the module
+ * <li><code><strong>$M</strong></code> - Replaced by the module
* prefix for the current application module.</li>
* <li><code><strong>$P</strong></code> - Replaced by the <code>page</code>
* attribute value being evaluated.</li>
@@ -283,7 +283,7 @@
* </ul>
*
* <p>If this property is set to <code>null</code>, a default pattern of
- * <code>$A$P</code> is utilized, which is backwards compatible with
+ * <code>$M$P</code> is utilized, which is backwards compatible with
* the hard coded functionality in prior versions.</p>
*/
protected String pagePattern = null;
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>