[ 
http://issues.apache.org/jira/browse/MYFACES-146?page=comments#action_61553 ]
     
Hal Deadman commented on MYFACES-146:
-------------------------------------

OK, I didn't realize that the extensions tags had their own tld. I think the 
problem is that the ext tld references the HtmlInputHiddenTag which is not in 
the taglib.html.ext package. There doesn't seem to be an ext version of the 
hidden tag so maybe someone just tried to include the spec version but the 
class doesn't make it into the ext jar. I haven't verified that this is the 
only class missing, I will try to do so later today. 

from myfaces_ext.tld
    <!-- inputHidden -->
    <tag>
        <name>inputHidden</name>
        <tag-class>org.apache.myfaces.taglib.html.HtmlInputHiddenTag</tag-class>
        <body-content>JSP</body-content>
        <description>
            Extends standard inputHidden by providing additional MyFaces 
goodies.
        </description>
        &ui_input_attributes;
        &ext_forceId_attribute;
    </tag>



> latest build of extensions jar doesn't include Tag classes
> ----------------------------------------------------------
>
>          Key: MYFACES-146
>          URL: http://issues.apache.org/jira/browse/MYFACES-146
>      Project: MyFaces
>         Type: Bug
>     Versions: Nightly Build
>     Reporter: Hal Deadman

>
> I was trying to use the regexp validator in from the extensions jar. This 
> meant I needed to use the <x:validateRegExp .../> tag and Weblogic complained 
> that it couldn't find other tag classes referenced in the x tld. I added the 
> following to build script and was able to use the validators I wanted. 
>             <fileset dir="${impl.classes}"
>                      includes="org/apache/myfaces/taglib/**/*.class"/>        
> Index: build.xml
> ===================================================================
> RCS file: /home/cvspublic/incubator-myfaces/build/build.xml,v
> retrieving revision 1.87
> diff -u -r1.87 build.xml
> --- build.xml 22 Mar 2005 06:59:42 -0000      1.87
> +++ build.xml 23 Mar 2005 00:42:50 -0000
> @@ -235,6 +235,8 @@
>                       includes="**/*.class"/>
>              <fileset dir="${components.classes}"
>                       includes="**/*.class"/>
> +            <fileset dir="${impl.classes}"
> +                     includes="org/apache/myfaces/taglib/**/*.class"/>       
>         
>              <!-- TLDs -->
>              <zipfileset dir="${resolved-tlds.dir}"
>                          includes="myfaces_ext.tld,myfaces_ext_sf.tld"

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira

Reply via email to