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 2012/07/06 02:38:01 UTC

[16/16] git commit: Remove deprecated symbols related to the old Blackbird console

Remove deprecated symbols related to the old Blackbird console


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/31034c71
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/31034c71
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/31034c71

Branch: refs/heads/5.4-js-rewrite
Commit: 31034c713e1eadc0af2a9224aa1b1e3ae14477e1
Parents: 4cd5be6
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Thu Jul 5 09:58:42 2012 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Thu Jul 5 09:58:42 2012 -0700

----------------------------------------------------------------------
 .../java/org/apache/tapestry5/SymbolConstants.java |   15 ---------------
 .../apache/tapestry5/services/TapestryModule.java  |    4 ----
 2 files changed, 0 insertions(+), 19 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/31034c71/tapestry-core/src/main/java/org/apache/tapestry5/SymbolConstants.java
----------------------------------------------------------------------
diff --git a/tapestry-core/src/main/java/org/apache/tapestry5/SymbolConstants.java b/tapestry-core/src/main/java/org/apache/tapestry5/SymbolConstants.java
index d6517b4..07229bb 100644
--- a/tapestry-core/src/main/java/org/apache/tapestry5/SymbolConstants.java
+++ b/tapestry-core/src/main/java/org/apache/tapestry5/SymbolConstants.java
@@ -183,13 +183,6 @@ public class SymbolConstants
      */
     public static final String COMBINE_SCRIPTS = "tapestry.combine-scripts";
 
-    /**
-     * If "true" then Blackbird JavaScript console is enabled.
-     *
-     * @since 5.2.0
-     * @deprecated in 5.3, with no replacement (due to removal of Blackbird console entirely)
-     */
-    public static final String BLACKBIRD_ENABLED = "tapestry.blackbird-enabled";
 
     /**
      * The default time interval that cookies created by Tapestry will be kept in the client web browser. The default is
@@ -228,14 +221,6 @@ public class SymbolConstants
     public static final String DATEPICKER = "tapestry.datepicker";
 
     /**
-     * The Asset path to the embedded copy of blackbird packaged with Tapestry.
-     *
-     * @since 5.2.0
-     * @deprecated in 5.3 with no replacement
-     */
-    public static final String BLACKBIRD = "tapestry.blackbird";
-
-    /**
      * If "true", then JSON page initialization content is compressed; if "false"
      * then extra white space is added (pretty printing). Defaults to "true" in production mode.
      *

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/31034c71/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java
----------------------------------------------------------------------
diff --git a/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java b/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java
index b811e34..c9d0d08 100644
--- a/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java
+++ b/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java
@@ -2146,8 +2146,6 @@ public final class TapestryModule
         configuration.add("tapestry.datepicker.path", "org/apache/tapestry5/datepicker_106");
         configuration.add(SymbolConstants.DATEPICKER, "classpath:${tapestry.datepicker.path}");
 
-        configuration.add(SymbolConstants.BLACKBIRD, "");
-
         configuration.add(SymbolConstants.PERSISTENCE_STRATEGY, PersistenceConstants.SESSION);
 
         configuration.add(MetaDataConstants.RESPONSE_CONTENT_TYPE, "text/html");
@@ -2172,8 +2170,6 @@ public final class TapestryModule
 
         configuration.add(SymbolConstants.ENCODE_LOCALE_INTO_PATH, true);
 
-        configuration.add(SymbolConstants.BLACKBIRD_ENABLED, false);
-
         configuration.add(InternalSymbols.PRE_SELECTED_FORM_NAMES, "reset,submit,select,id,method,action,onsubmit," + InternalConstants.CANCEL_NAME);
 
         configuration.add(SymbolConstants.COMPONENT_RENDER_TRACING_ENABLED, false);