IN PROGRESS - issue SWF-388: Extract all JSF-related code into a separate component project

http://opensource.atlassian.com/projects/spring/browse/SWF-388
This commit is contained in:
Jeremy Grelle
2007-08-16 20:37:09 +00:00
parent c162d6f094
commit 972663fe1a
217 changed files with 118 additions and 51 deletions

View File

@@ -0,0 +1,44 @@
<?xml version="1.0"?>
<!DOCTYPE faces-config PUBLIC
"-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
"http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
<faces-config>
<component>
<component-type>spring.faces.ClientTextValidator</component-type>
<component-class>org.springframework.faces.ui.ClientTextValidator</component-class>
</component>
<component>
<component-type>spring.faces.ClientNumberValidator</component-type>
<component-class>org.springframework.faces.ui.ClientNumberValidator</component-class>
</component>
<component>
<component-type>spring.faces.ClientDateValidator</component-type>
<component-class>org.springframework.faces.ui.ClientDateValidator</component-class>
</component>
<component>
<component-type>spring.faces.ExtJsComponent</component-type>
<component-class>org.springframework.faces.ui.ExtJsComponent</component-class>
</component>
<render-kit>
<render-kit-id>HTML_BASIC</render-kit-id>
<renderer>
<component-family>spring.faces.ExtAdvisor</component-family>
<renderer-type>spring.faces.ExtAdvisor</renderer-type>
<renderer-class>org.springframework.faces.ui.ExtAdvisorRenderer</renderer-class>
</renderer>
<renderer>
<component-family>spring.faces.ExtAdvisor</component-family>
<renderer-type>spring.faces.ExtValidateAll</renderer-type>
<renderer-class>org.springframework.faces.ui.ExtValidateAllRenderer</renderer-class>
</renderer>
</render-kit>
</faces-config>