You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2011/03/03 00:07:56 UTC

svn commit: r1076451 - in /tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5: SymbolConstants.java services/TapestryModule.java

Author: hlship
Date: Wed Mar  2 23:07:56 2011
New Revision: 1076451

URL: http://svn.apache.org/viewvc?rev=1076451&view=rev
Log:
TAP5-1456: Remove FORCE_ABSOLUTE_URIS

Modified:
    tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/SymbolConstants.java
    tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java

Modified: tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/SymbolConstants.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/SymbolConstants.java?rev=1076451&r1=1076450&r2=1076451&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/SymbolConstants.java (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/SymbolConstants.java Wed Mar  2 23:07:56 2011
@@ -43,13 +43,6 @@ public class SymbolConstants
     public static final String PRODUCTION_MODE_VALUE = String.format("${%s}", PRODUCTION_MODE);
 
     /**
-     * Symbol which may be set to "true" to force the use of absolute URIs (not relative URIs) exclusively.
-     * 
-     * @deprecated To be removed after Tapestry 5.2. URLs are now always absolute, since Tapestry 5.2.1.
-     */
-    public static final String FORCE_ABSOLUTE_URIS = "tapestry.force-absolute-uris";
-
-    /**
      * If set to "true", then action requests will render a page markup response immediately, rather than sending a
      * redirect to render the response. "Action request" is an outdated term for "component event request" (i.e., most
      * links and all form submissions).

Modified: tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java?rev=1076451&r1=1076450&r2=1076451&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java Wed Mar  2 23:07:56 2011
@@ -2418,8 +2418,6 @@ public final class TapestryModule
 
         configuration.add(SymbolConstants.SUPPRESS_REDIRECT_FROM_ACTION_REQUESTS, "false");
 
-        configuration.add(SymbolConstants.FORCE_ABSOLUTE_URIS, "false");
-
         configuration.add(SymbolConstants.PRODUCTION_MODE, "true");
 
         configuration.add(SymbolConstants.COMPRESS_WHITESPACE, "true");