Problem with tomahawk.taglib.xml
Please, can someone point me to the link for downloading filetomahawk.taglib.xml.
I could not find one so I just copied it's text from http://wiki.apache.org/myfaces/Use_Facelets_with_Tomahawk, what is referring to an old tomahawk version.
After that I had to look into tomahawk jar to find a matching class and manually change the package name for everyt: tag I'm using. Very annoying.
I'm using
Facelets 1.1.11
MyFaces 1.1.3
Tomahawk 1.1.3
Tomcat 5.5.17
Also, in accordance to what I've learned on the above mentioned (Use_Facelets_with_Tomahawk) link I've tried to use tags <t:document>, <t:documentHead> and <t::documentBody>. They worked without taglib file (I guess because they are outside of ui: tags), but once I've added tomahawk.taglib and added all necessary elements in web.xml (what allowed to rendert: tags inside ui: tags) and pointed all those 'outer' tags in taglib file to org.apache.myfaces.custom.document package they stopped working:
javax.faces.FacesException: Undefined component type org.apache.myfaces.custom.document.Document
at org.apache.myfaces.application.ApplicationImpl.createComponent(ApplicationImpl.java:391)
at com.sun.facelets.tag.jsf.ComponentHandler.createComponent(ComponentHandler.java:224)
at com.sun.facelets.tag.jsf.ComponentHandler.apply(ComponentHandler.java:135)
at com.sun.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:49)
at com.sun.facelets.tag.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:47)
I just had to rool back pointing them to org.apache.myfaces package
Cheers.

