You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2012/11/27 11:12:08 UTC

svn commit: r1414063 - in /myfaces/tobago/trunk: src/site/apt/migration-1.6.apt tobago-core/src/main/java/org/apache/myfaces/tobago/component/Facets.java

Author: lofwyr
Date: Tue Nov 27 10:12:07 2012
New Revision: 1414063

URL: http://svn.apache.org/viewvc?rev=1414063&view=rev
Log:
TOBAGO-1192: buttons and links rendering without javascript fragments

Modified:
    myfaces/tobago/trunk/src/site/apt/migration-1.6.apt
    myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/component/Facets.java

Modified: myfaces/tobago/trunk/src/site/apt/migration-1.6.apt
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/src/site/apt/migration-1.6.apt?rev=1414063&r1=1414062&r2=1414063&view=diff
==============================================================================
--- myfaces/tobago/trunk/src/site/apt/migration-1.6.apt (original)
+++ myfaces/tobago/trunk/src/site/apt/migration-1.6.apt Tue Nov 27 10:12:07 2012
@@ -71,3 +71,7 @@ CSS
   The class <<<tobago-sheet-headerSpacerOuter>>> is renamed to <<<tobago-sheet-headerResize>>>.
   The class <<<tobago-sheet-headerSpacer>>> is no longer needed.
   The class <<<tobago-sheet-headerSpacer-markup-resizable>>> is no longer needed.
+
+Internal
+
+  The facet name of the picker popup is now named "popup" instead of "pickerPopup".

Modified: myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/component/Facets.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/component/Facets.java?rev=1414063&r1=1414062&r2=1414063&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/component/Facets.java (original)
+++ myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/component/Facets.java Tue Nov 27 10:12:07 2012
@@ -41,11 +41,6 @@ public final class Facets {
   public static final String MENUPOPUP = "menupopup";
   public static final String PAGER_PAGE = "pagerPage";
   public static final String PAGER_ROW = "pagerRow";
-  /**
-   * @deprecated since 1.6.0. Please use {@link #POPUP}
-   */
-  @Deprecated
-  public static final String PICKER_POPUP = "pickerPopup";
   public static final String POPUP = "popup";
   public static final String RADIO = "radio";
   public static final String RELOAD = "reload";
@@ -61,4 +56,11 @@ public final class Facets {
   private Facets() {
     // to prevent instantiation
   }
+
+  /**
+   * @deprecated since 1.6.0. Please use {@link #POPUP} The value of the constant is changed for backward compatibility.
+   */
+  @Deprecated
+  public static final String PICKER_POPUP = POPUP;
+
 }