You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sc...@apache.org on 2005/05/25 14:50:49 UTC

svn commit: r178429 - in /myfaces/trunk: src/myfaces/org/apache/myfaces/taglib/html/HtmlInputHiddenTag.java tlds/myfaces_html.tld

Author: schof
Date: Wed May 25 05:50:49 2005
New Revision: 178429

URL: http://svn.apache.org/viewcvs?rev=178429&view=rev
Log:
Fixes MYFACES-231 (Thanks to Brandon Goddin and Bruno Aranda)

Added:
    myfaces/trunk/src/myfaces/org/apache/myfaces/taglib/html/HtmlInputHiddenTag.java
Modified:
    myfaces/trunk/tlds/myfaces_html.tld

Added: myfaces/trunk/src/myfaces/org/apache/myfaces/taglib/html/HtmlInputHiddenTag.java
URL: http://svn.apache.org/viewcvs/myfaces/trunk/src/myfaces/org/apache/myfaces/taglib/html/HtmlInputHiddenTag.java?rev=178429&view=auto
==============================================================================
--- myfaces/trunk/src/myfaces/org/apache/myfaces/taglib/html/HtmlInputHiddenTag.java (added)
+++ myfaces/trunk/src/myfaces/org/apache/myfaces/taglib/html/HtmlInputHiddenTag.java Wed May 25 05:50:49 2005
@@ -0,0 +1,32 @@
+/*
+ * Copyright 2005 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.myfaces.taglib.html;
+
+import javax.faces.component.html.HtmlInputHidden;
+
+/**
+ * @author Manfred Geiler
+ * @author Martin Marinschek
+ * @version $Revision$ $Date: $
+ */
+public class HtmlInputHiddenTag
+        extends HtmlInputHiddenTagBase
+{
+    public String getComponentType()
+    {
+        return HtmlInputHidden.COMPONENT_TYPE;
+    }
+}

Modified: myfaces/trunk/tlds/myfaces_html.tld
URL: http://svn.apache.org/viewcvs/myfaces/trunk/tlds/myfaces_html.tld?rev=178429&r1=178428&r2=178429&view=diff
==============================================================================
--- myfaces/trunk/tlds/myfaces_html.tld (original)
+++ myfaces/trunk/tlds/myfaces_html.tld Wed May 25 05:50:49 2005
@@ -144,7 +144,7 @@
 <!-- input_hidden -->
     <tag>
         <name>inputHidden</name>
-        <tag-class>org.apache.myfaces.taglib.html.HtmlInputHiddenTagBase</tag-class>
+        <tag-class>org.apache.myfaces.taglib.html.HtmlInputHiddenTag</tag-class>
         <body-content>JSP</body-content>
         &ui_input_attributes;
         <!-- HiddenRenderer attributes -->