You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by im...@apache.org on 2006/06/06 14:51:07 UTC

svn commit: r412108 - /myfaces/shared/trunk/core/src/main/java/org/apache/myfaces/shared/renderkit/html/HtmlLinkRendererBase.java

Author: imario
Date: Tue Jun  6 05:51:07 2006
New Revision: 412108

URL: http://svn.apache.org/viewvc?rev=412108&view=rev
Log:
point the user to a web-page on how to solve the dummyForm deprecation
problem

Modified:
    myfaces/shared/trunk/core/src/main/java/org/apache/myfaces/shared/renderkit/html/HtmlLinkRendererBase.java

Modified: myfaces/shared/trunk/core/src/main/java/org/apache/myfaces/shared/renderkit/html/HtmlLinkRendererBase.java
URL: http://svn.apache.org/viewvc/myfaces/shared/trunk/core/src/main/java/org/apache/myfaces/shared/renderkit/html/HtmlLinkRendererBase.java?rev=412108&r1=412107&r2=412108&view=diff
==============================================================================
--- myfaces/shared/trunk/core/src/main/java/org/apache/myfaces/shared/renderkit/html/HtmlLinkRendererBase.java (original)
+++ myfaces/shared/trunk/core/src/main/java/org/apache/myfaces/shared/renderkit/html/HtmlLinkRendererBase.java Tue Jun  6 05:51:07 2006
@@ -209,8 +209,8 @@
             String path = RendererUtils.getPathToComponent(component);
             String msg = "Change component/tag '" + clientId + "' from javax.faces.*/<h:tagName /> " +
                     "to org.apache.myfaces.*/<t:tagName />, or embed it in a form.  This is not a bug. " +
-                    " MyFaces core implementation no longer supports formless action sources in order to " +
-                    "make your application more inter-operable with the RI. The path to this component is " + path ;
+                    "Please see: http://wiki.apache.org/myfaces/Upgrading_to_Tomahawk_1.1.3 " +
+                    "The path to this component is " + path ;
     		throw new IllegalArgumentException(msg);
     	}
     	UIComponent nestingForm = formInfo.getForm();