I'd like to move away from JSP to XHTML via Facelets for my JSF project.
 
I've have the following jar files:
 
commons-beanutils-1.7.0.jar
commons-codec-1.3.jar
commons-collections-3.1.jar
commons-digester-1.6.jar
commons-el-1.0.jar
commons-fileupload-1.0.jar
commons-lang-2.1.jar
commons-logging-1.0.4.jar
jstl-1.1.0.jar
myfaces-api-1.1.3.jar
myfaces-impl-1.1.3.jar
tomahawk-1.1.2.jar
jsf-facelets.jar
 
I've added the following to my web.xml file:
 
<context-param>
   <param-name>facelets.LIBRARIES</param-name>
   <param-value>/WEB-INF/tomahawk.taglib.xml</param-value>
</context-param>
 
Therefore, do I just copy the example content on the
http://wiki.apache.org/myfaces/Use_Facelets_with_Tomahawk into my
tomahawk.taglib.xml?

What does the following statement mean?

"Please add additional component definitions to this example as you use
them (in alphabetical order). To find the component and renderer types,
look at the getComponentType() and getRendererType() methods in the Tag
class for the component. If the Tag class does anything other than
providing pass-through getters and setters, you will need to write a
facelets TagHandler or submit patches to MyFaces to "standardize" the
tag handler."

Do I need to worry about this?

Thanks,

--Todd

Reply via email to