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

svn commit: r1157430 - /myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/view/facelets/tag/jsf/html/HtmlLibrary.java

Author: lu4242
Date: Sat Aug 13 22:14:11 2011
New Revision: 1157430

URL: http://svn.apache.org/viewvc?rev=1157430&view=rev
Log:
MYFACES-3275 h:doctype was not added to HtmlLibrary

Modified:
    myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/view/facelets/tag/jsf/html/HtmlLibrary.java

Modified: myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/view/facelets/tag/jsf/html/HtmlLibrary.java
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/view/facelets/tag/jsf/html/HtmlLibrary.java?rev=1157430&r1=1157429&r2=1157430&view=diff
==============================================================================
--- myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/view/facelets/tag/jsf/html/HtmlLibrary.java (original)
+++ myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/view/facelets/tag/jsf/html/HtmlLibrary.java Sat Aug 13 22:14:11 2011
@@ -45,6 +45,8 @@ public final class HtmlLibrary extends A
 
         this.addHtmlComponent("dataTable", "javax.faces.HtmlDataTable", "javax.faces.Table");
 
+        this.addHtmlComponent("doctype", "javax.faces.OutputDoctype", "javax.faces.Doctype");
+        
         this.addHtmlComponent("form", "javax.faces.HtmlForm", "javax.faces.Form");
 
         this.addHtmlComponent("graphicImage", "javax.faces.HtmlGraphicImage", "javax.faces.Image");