Hi, I've been trying to hack the HtmlFormRenderer. It's contained in org.apache.myfaces.shared.renderkit.html...but appears to be moved to org.apache.myfaces.shared_impl.renderkit.html during the build.
I tried commenting out all of encodeBegin. Then I deleted the myfaces directory in my maven repository. Then rebuilt. Then redeployed the testing application, and maven only downloaded non-shared resources, so I'm certain that I'm changing the right dependency. The forms are still rendering though. When I do a find on HtmlFormRendererBase the following shows up: [EMAIL PROTECTED] myfaces-shared-core-3_0_0]$ find . -name HtmlFormRendererBase.java ./shared-impl/target/refactored-shared-sources/main/java/org/apache/myfaces/shared_impl/renderkit/html/HtmlFormRendererBase.java ./core/src/main/java/org/apache/myfaces/shared/renderkit/html/HtmlFormRendererBase.java ./shared-tomahawk/target/refactored-shared-sources/main/java/org/apache/myfaces/shared_tomahawk/renderkit/html/HtmlFormRendererBase.java So it seems like there is only one HtmlFormRenderBase to be changed, since the second one is the first one, and the Tomahawk one is not being used by the HtmlFormRenderer. Ideas? TIA, - Ole

