You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by gp...@apache.org on 2008/08/08 19:47:39 UTC

svn commit: r684024 [1/2] - in /myfaces/extensions/validator/trunk: core/src/main/java/org/apache/myfaces/extensions/validator/core/ examples/ examples/fallback_demo/ examples/fallback_demo/src/ examples/fallback_demo/src/main/ examples/fallback_demo/s...

Author: gpetracek
Date: Fri Aug  8 10:47:37 2008
New Revision: 684024

URL: http://svn.apache.org/viewvc?rev=684024&view=rev
Log:
example for converter adapter fallback

Added:
    myfaces/extensions/validator/trunk/examples/fallback_demo/
    myfaces/extensions/validator/trunk/examples/fallback_demo/pom.xml
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/custom_msg.properties
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/validator/
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/validator/custom/
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/validator/custom/validation_messages.properties
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/validator/demo/
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/validator/demo/domain/
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/validator/demo/domain/Person.java
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/validator/demo/gui/
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/validator/demo/gui/beans/
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/validator/demo/gui/beans/RegistrationPage.java
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidad/
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidad/convert/
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidad/convert/ColorConverterAdapter.java
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidad/convert/DateTimeConverterAdapter.java
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidad/convert/NumberConverterAdapter.java
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/ByteConverterAdapter.java
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/ColorConverterAdapter.java
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/DateTimeConverterAdapter.java
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/DoubleConverterAdapter.java
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/FloatConverterAdapter.java
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/IntegerConverterAdapter.java
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/LongConverterAdapter.java
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/NumberConverterAdapter.java
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/ShortConverterAdapter.java
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/WEB-INF/
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/WEB-INF/LICENSE.txt
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/WEB-INF/NOTICE.txt
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/WEB-INF/faces-config.xml
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/WEB-INF/web.xml
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/index.html
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/layout/
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/layout/template.xhtml
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/pages/
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/pages/change_nickName.xhtml
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/pages/change_password.xhtml
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/pages/home.xhtml
    myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/pages/registration.xhtml
Modified:
    myfaces/extensions/validator/trunk/core/src/main/java/org/apache/myfaces/extensions/validator/core/ProxyMappingPhaseListener.java
    myfaces/extensions/validator/trunk/examples/feature-set_01/src/main/java/org/apache/myfaces/extensions/validator/custom/validation_messages.properties
    myfaces/extensions/validator/trunk/examples/pom.xml
    myfaces/extensions/validator/trunk/validation-modules/property-validation/src/main/java/org/apache/myfaces/extensions/validator/crossval/strategy/EqualsStrategy.java

Modified: myfaces/extensions/validator/trunk/core/src/main/java/org/apache/myfaces/extensions/validator/core/ProxyMappingPhaseListener.java
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/core/src/main/java/org/apache/myfaces/extensions/validator/core/ProxyMappingPhaseListener.java?rev=684024&r1=684023&r2=684024&view=diff
==============================================================================
--- myfaces/extensions/validator/trunk/core/src/main/java/org/apache/myfaces/extensions/validator/core/ProxyMappingPhaseListener.java (original)
+++ myfaces/extensions/validator/trunk/core/src/main/java/org/apache/myfaces/extensions/validator/core/ProxyMappingPhaseListener.java Fri Aug  8 10:47:37 2008
@@ -49,8 +49,9 @@
         if (!isInitialized) {
             //don't use DEACTIVATE_PROXY_MAPPING here to allow a different concept
             String initParam = WebXmlParameter.DEACTIVATE_RESTORE_PROXY_PHASE_LISTENER;
+            String initAdapterParam = WebXmlParameter.USE_ADAPTERS;
 
-            if(initParam != null && initParam.equalsIgnoreCase("true")) {
+            if((initParam != null && initParam.equalsIgnoreCase("true")) || (initAdapterParam != null && initAdapterParam.equalsIgnoreCase("true"))) {
                 ExtValUtils.deregisterPhaseListener(this);
             }
             isInitialized = true;

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/pom.xml?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/pom.xml (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/pom.xml Fri Aug  8 10:47:37 2008
@@ -0,0 +1,103 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <packaging>war</packaging>
+
+    <groupId>org.apache.myfaces.extensions.validator.examples</groupId>
+    <artifactId>examples-fallback_demo</artifactId>
+
+    <name>MyFaces Extensions-Validator examples demo without cglib</name>
+    <version>${build.version}</version>
+
+    <parent>
+        <groupId>org.apache.myfaces.extensions.validator.examples</groupId>
+        <artifactId>examples-project</artifactId>
+        <version>${build.version}</version>
+    </parent>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.myfaces.extensions.validator</groupId>
+            <artifactId>myfaces-extval-core</artifactId>
+            <version>${build.version}</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.myfaces.extensions.validator.validation-modules</groupId>
+            <artifactId>myfaces-extval-property-validation</artifactId>
+            <version>${build.version}</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>com.sun.facelets</groupId>
+            <artifactId>jsf-facelets</artifactId>
+            <version>1.1.14</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.myfaces.core</groupId>
+            <artifactId>myfaces-api</artifactId>
+            <version>${jsf.version}</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.myfaces.core</groupId>
+            <artifactId>myfaces-impl</artifactId>
+            <version>${jsf.version}</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.myfaces.trinidad</groupId>
+            <artifactId>trinidad-api</artifactId>
+            <version>${trinidad.version}</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.myfaces.trinidad</groupId>
+            <artifactId>trinidad-impl</artifactId>
+            <version>${trinidad.version}</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>javax.el</groupId>
+            <artifactId>el-api</artifactId>
+            <version>1.0</version>
+            <scope>runtime</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.myfaces.tomahawk</groupId>
+            <artifactId>tomahawk</artifactId>
+            <version>1.1.6</version>
+            <scope>compile</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <inherited>true</inherited>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-source-plugin</artifactId>
+
+                <executions>
+                    <execution>
+                        <id>attach-sources</id>
+                        <goals>
+                            <goal>jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/custom_msg.properties
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/custom_msg.properties?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/custom_msg.properties (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/custom_msg.properties Fri Aug  8 10:47:37 2008
@@ -0,0 +1,3 @@
+# this message bundle is configured via web.xml or managed bean
+field_required=missing input
+field_required_details=missing input
\ No newline at end of file

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/validator/custom/validation_messages.properties
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/validator/custom/validation_messages.properties?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/validator/custom/validation_messages.properties (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/validator/custom/validation_messages.properties Fri Aug  8 10:47:37 2008
@@ -0,0 +1,2 @@
+repeated_password_requried=please retype the password
+repeated_password_requried_details=please retype the password
\ No newline at end of file

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/validator/demo/domain/Person.java
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/validator/demo/domain/Person.java?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/validator/demo/domain/Person.java (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/validator/demo/domain/Person.java Fri Aug  8 10:47:37 2008
@@ -0,0 +1,129 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.myfaces.extensions.validator.demo.domain;
+
+import org.apache.myfaces.extensions.validator.crossval.annotation.DateIs;
+import org.apache.myfaces.extensions.validator.crossval.annotation.DateIsType;
+import org.apache.myfaces.extensions.validator.crossval.annotation.NotEquals;
+import org.apache.myfaces.extensions.validator.baseval.annotation.Length;
+import org.apache.myfaces.extensions.validator.baseval.annotation.Regex;
+
+import javax.persistence.Column;
+import javax.persistence.Temporal;
+import javax.persistence.TemporalType;
+import java.util.Date;
+
+public class Person {
+    @Length(minimum = 2)
+    @Column(nullable = false, length = 20)
+    @NotEquals("lastName")
+    @Regex("[A-Z][a-z]+")
+    private String firstName;
+
+    @Length(minimum = 2)
+    @Column(nullable = false, length = 20)
+    private String lastName;
+
+    @Column(nullable = false, length = 10)
+    private String password;
+
+    @DateIs(type = DateIsType.before, valueOf = "finalExam")
+    @Column(nullable = false)
+    @Temporal(TemporalType.DATE)
+    private Date birthday;
+
+    @Column(nullable = false)
+    @Temporal(TemporalType.DATE)
+    private Date finalExam;
+
+    @Length(minimum = 2)
+    @Column(nullable = false, length = 10)
+    private String nickName;
+
+    @Length(minimum = 6)
+    @Column(nullable = false, length = 60)
+    private String email;
+
+    @Column(nullable = false)
+    private int numberOfSiblings;
+
+    public String getFirstName() {
+        return firstName;
+    }
+
+    public void setFirstName(String firstName) {
+        this.firstName = firstName;
+    }
+
+    public String getLastName() {
+        return lastName;
+    }
+
+    public void setLastName(String lastName) {
+        this.lastName = lastName;
+    }
+
+    public String getPassword() {
+        return password;
+    }
+
+    public void setPassword(String password) {
+        this.password = password;
+    }
+
+    public Date getBirthday() {
+        return birthday;
+    }
+
+    public void setBirthday(Date birthday) {
+        this.birthday = birthday;
+    }
+
+    public Date getFinalExam() {
+        return finalExam;
+    }
+
+    public void setFinalExam(Date finalExam) {
+        this.finalExam = finalExam;
+    }
+
+    public String getNickName() {
+        return nickName;
+    }
+
+    public void setNickName(String nickName) {
+        this.nickName = nickName;
+    }
+
+    public String getEmail() {
+        return email;
+    }
+
+    public void setEmail(String email) {
+        this.email = email;
+    }
+
+    public int getNumberOfSiblings() {
+        return numberOfSiblings;
+    }
+
+    public void setNumberOfSiblings(int numberOfSiblings) {
+        this.numberOfSiblings = numberOfSiblings;
+    }
+}

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/validator/demo/gui/beans/RegistrationPage.java
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/validator/demo/gui/beans/RegistrationPage.java?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/validator/demo/gui/beans/RegistrationPage.java (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/extensions/validator/demo/gui/beans/RegistrationPage.java Fri Aug  8 10:47:37 2008
@@ -0,0 +1,129 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.myfaces.extensions.validator.demo.gui.beans;
+
+import org.apache.myfaces.extensions.validator.demo.domain.Person;
+
+import org.apache.myfaces.extensions.validator.crossval.annotation.Equals;
+import org.apache.myfaces.extensions.validator.crossval.annotation.NotEquals;
+import org.apache.myfaces.extensions.validator.baseval.annotation.JoinValidation;
+import org.apache.myfaces.extensions.validator.baseval.annotation.LongRange;
+import org.apache.myfaces.extensions.validator.baseval.annotation.Required;
+import org.apache.myfaces.extensions.validator.baseval.annotation.Validator;
+import org.apache.myfaces.custom.emailvalidator.EmailValidator;
+
+public class RegistrationPage {
+
+    //the old password of the person isn't used within the page
+    //-> validate with value of the model
+    @Required
+    @Equals("#{person.password}")
+    @NotEquals("password")
+    private String oldPassword;
+
+    @Required
+    @Equals("passwordRepeated")
+    private String password;
+
+    @Required(validationErrorMsgKey = "repeated_password_requried")
+    private String passwordRepeated;
+
+    //use #{registrationPage.person.nickName}, #{person.nickName}
+    //or a global alias in connection with the TargetAlias annotation
+    //use registrationPage to display the second error message at old nickname
+    @NotEquals("#{registrationPage.person.nickName}")
+    @JoinValidation("#{person.nickName}")
+    private String newNickName;
+
+    private Person person;
+
+    public String finish() {
+        this.person.setPassword(this.password);
+        return "home";
+    }
+
+    public String updateNickName() {
+        this.person.setNickName(this.newNickName);
+        return "home";
+    }
+
+    //combine gui related annotations with the annoations of the domain model
+    @JoinValidation("#{person.email}")
+    @Validator(EmailValidator.class)
+    public String getEmail() {
+        return this.person.getEmail();
+    }
+
+    public void setEmail(String email) {
+        this.person.setEmail(email);
+    }
+
+    @JoinValidation("#{person.numberOfSiblings}")
+    @LongRange(maximum = 20)
+    public int getNumberOfSiblings() {
+        return this.person.getNumberOfSiblings();
+    }
+
+    public void setNumberOfSiblings(int numberOfSiblings) {
+        this.person.setNumberOfSiblings(numberOfSiblings);
+    }
+
+    /*
+     * generated
+     */
+    public String getOldPassword() {
+        return oldPassword;
+    }
+
+    public void setOldPassword(String oldPassword) {
+        this.oldPassword = oldPassword;
+    }
+
+    public String getPassword() {
+        return password;
+    }
+
+    public void setPassword(String password) {
+        this.password = password;
+    }
+
+    public String getPasswordRepeated() {
+        return passwordRepeated;
+    }
+
+    public void setPasswordRepeated(String passwordRepeated) {
+        this.passwordRepeated = passwordRepeated;
+    }
+
+    public Person getPerson() {
+        return person;
+    }
+
+    public void setPerson(Person person) {
+        this.person = person;
+    }
+
+    public String getNewNickName() {
+        return newNickName;
+    }
+
+    public void setNewNickName(String newNickName) {
+        this.newNickName = newNickName;
+    }
+}

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidad/convert/ColorConverterAdapter.java
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidad/convert/ColorConverterAdapter.java?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidad/convert/ColorConverterAdapter.java (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidad/convert/ColorConverterAdapter.java Fri Aug  8 10:47:37 2008
@@ -0,0 +1,45 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.myfaces.trinidad.convert;
+
+import org.apache.myfaces.extensions.validator.core.adapter.ExtValFallbackConverter;
+import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
+import javax.faces.convert.Converter;
+import javax.faces.convert.ConverterException;
+
+/*generated code - don't change!*/
+public class ColorConverterAdapter extends org.apache.myfaces.trinidad.convert.ColorConverter {
+	private Converter smartConverter;
+
+	public ColorConverterAdapter() {
+		this(new org.apache.myfaces.trinidad.convert.ColorConverter());
+	}
+
+	public ColorConverterAdapter(Converter converter) {
+		this.smartConverter = new ExtValFallbackConverter(converter);
+	}
+
+	public Object getAsObject(FacesContext context, UIComponent component, String value) throws ConverterException {
+		return this.smartConverter.getAsObject(context, component, value);
+	}
+	public String getAsString(FacesContext context, UIComponent component, Object value) throws ConverterException {
+		return this.smartConverter.getAsString(context, component, value);
+	}
+}

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidad/convert/DateTimeConverterAdapter.java
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidad/convert/DateTimeConverterAdapter.java?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidad/convert/DateTimeConverterAdapter.java (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidad/convert/DateTimeConverterAdapter.java Fri Aug  8 10:47:37 2008
@@ -0,0 +1,45 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.myfaces.trinidad.convert;
+
+import org.apache.myfaces.extensions.validator.core.adapter.ExtValFallbackConverter;
+import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
+import javax.faces.convert.Converter;
+import javax.faces.convert.ConverterException;
+
+/*generated code - don't change!*/
+public class DateTimeConverterAdapter extends org.apache.myfaces.trinidad.convert.DateTimeConverter {
+	private Converter smartConverter;
+
+	public DateTimeConverterAdapter() {
+		this(new org.apache.myfaces.trinidad.convert.DateTimeConverter());
+	}
+
+	public DateTimeConverterAdapter(Converter converter) {
+		this.smartConverter = new ExtValFallbackConverter(converter);
+	}
+
+	public Object getAsObject(FacesContext context, UIComponent component, String value) throws ConverterException {
+		return this.smartConverter.getAsObject(context, component, value);
+	}
+	public String getAsString(FacesContext context, UIComponent component, Object value) throws ConverterException {
+		return this.smartConverter.getAsString(context, component, value);
+	}
+}

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidad/convert/NumberConverterAdapter.java
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidad/convert/NumberConverterAdapter.java?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidad/convert/NumberConverterAdapter.java (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidad/convert/NumberConverterAdapter.java Fri Aug  8 10:47:37 2008
@@ -0,0 +1,45 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.myfaces.trinidad.convert;
+
+import org.apache.myfaces.extensions.validator.core.adapter.ExtValFallbackConverter;
+import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
+import javax.faces.convert.Converter;
+import javax.faces.convert.ConverterException;
+
+/*generated code - don't change!*/
+public class NumberConverterAdapter extends org.apache.myfaces.trinidad.convert.NumberConverter {
+	private Converter smartConverter;
+
+	public NumberConverterAdapter() {
+		this(new org.apache.myfaces.trinidad.convert.NumberConverter());
+	}
+
+	public NumberConverterAdapter(Converter converter) {
+		this.smartConverter = new ExtValFallbackConverter(converter);
+	}
+
+	public Object getAsObject(FacesContext context, UIComponent component, String value) throws ConverterException {
+		return this.smartConverter.getAsObject(context, component, value);
+	}
+	public String getAsString(FacesContext context, UIComponent component, Object value) throws ConverterException {
+		return this.smartConverter.getAsString(context, component, value);
+	}
+}

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/ByteConverterAdapter.java
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/ByteConverterAdapter.java?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/ByteConverterAdapter.java (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/ByteConverterAdapter.java Fri Aug  8 10:47:37 2008
@@ -0,0 +1,45 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.myfaces.trinidadinternal.convert;
+
+import org.apache.myfaces.extensions.validator.core.adapter.ExtValFallbackConverter;
+import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
+import javax.faces.convert.Converter;
+import javax.faces.convert.ConverterException;
+
+/*generated code - don't change!*/
+public class ByteConverterAdapter extends org.apache.myfaces.trinidadinternal.convert.ByteConverter {
+	private Converter smartConverter;
+
+	public ByteConverterAdapter() {
+		this(new org.apache.myfaces.trinidadinternal.convert.ByteConverter());
+	}
+
+	public ByteConverterAdapter(Converter converter) {
+		this.smartConverter = new ExtValFallbackConverter(converter);
+	}
+
+	public Object getAsObject(FacesContext context, UIComponent component, String value) throws ConverterException {
+		return this.smartConverter.getAsObject(context, component, value);
+	}
+	public String getAsString(FacesContext context, UIComponent component, Object value) throws ConverterException {
+		return this.smartConverter.getAsString(context, component, value);
+	}
+}

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/ColorConverterAdapter.java
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/ColorConverterAdapter.java?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/ColorConverterAdapter.java (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/ColorConverterAdapter.java Fri Aug  8 10:47:37 2008
@@ -0,0 +1,45 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.myfaces.trinidadinternal.convert;
+
+import org.apache.myfaces.extensions.validator.core.adapter.ExtValFallbackConverter;
+import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
+import javax.faces.convert.Converter;
+import javax.faces.convert.ConverterException;
+
+/*generated code - don't change!*/
+public class ColorConverterAdapter extends org.apache.myfaces.trinidadinternal.convert.ColorConverter {
+	private Converter smartConverter;
+
+	public ColorConverterAdapter() {
+		this(new org.apache.myfaces.trinidadinternal.convert.ColorConverter());
+	}
+
+	public ColorConverterAdapter(Converter converter) {
+		this.smartConverter = new ExtValFallbackConverter(converter);
+	}
+
+	public Object getAsObject(FacesContext context, UIComponent component, String value) throws ConverterException {
+		return this.smartConverter.getAsObject(context, component, value);
+	}
+	public String getAsString(FacesContext context, UIComponent component, Object value) throws ConverterException {
+		return this.smartConverter.getAsString(context, component, value);
+	}
+}

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/DateTimeConverterAdapter.java
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/DateTimeConverterAdapter.java?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/DateTimeConverterAdapter.java (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/DateTimeConverterAdapter.java Fri Aug  8 10:47:37 2008
@@ -0,0 +1,45 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.myfaces.trinidadinternal.convert;
+
+import org.apache.myfaces.extensions.validator.core.adapter.ExtValFallbackConverter;
+import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
+import javax.faces.convert.Converter;
+import javax.faces.convert.ConverterException;
+
+/*generated code - don't change!*/
+public class DateTimeConverterAdapter extends org.apache.myfaces.trinidadinternal.convert.DateTimeConverter {
+	private Converter smartConverter;
+
+	public DateTimeConverterAdapter() {
+		this(new org.apache.myfaces.trinidadinternal.convert.DateTimeConverter());
+	}
+
+	public DateTimeConverterAdapter(Converter converter) {
+		this.smartConverter = new ExtValFallbackConverter(converter);
+	}
+
+	public Object getAsObject(FacesContext context, UIComponent component, String value) throws ConverterException {
+		return this.smartConverter.getAsObject(context, component, value);
+	}
+	public String getAsString(FacesContext context, UIComponent component, Object value) throws ConverterException {
+		return this.smartConverter.getAsString(context, component, value);
+	}
+}

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/DoubleConverterAdapter.java
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/DoubleConverterAdapter.java?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/DoubleConverterAdapter.java (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/DoubleConverterAdapter.java Fri Aug  8 10:47:37 2008
@@ -0,0 +1,45 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.myfaces.trinidadinternal.convert;
+
+import org.apache.myfaces.extensions.validator.core.adapter.ExtValFallbackConverter;
+import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
+import javax.faces.convert.Converter;
+import javax.faces.convert.ConverterException;
+
+/*generated code - don't change!*/
+public class DoubleConverterAdapter extends org.apache.myfaces.trinidadinternal.convert.DoubleConverter {
+	private Converter smartConverter;
+
+	public DoubleConverterAdapter() {
+		this(new org.apache.myfaces.trinidadinternal.convert.DoubleConverter());
+	}
+
+	public DoubleConverterAdapter(Converter converter) {
+		this.smartConverter = new ExtValFallbackConverter(converter);
+	}
+
+	public Object getAsObject(FacesContext context, UIComponent component, String value) throws ConverterException {
+		return this.smartConverter.getAsObject(context, component, value);
+	}
+	public String getAsString(FacesContext context, UIComponent component, Object value) throws ConverterException {
+		return this.smartConverter.getAsString(context, component, value);
+	}
+}

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/FloatConverterAdapter.java
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/FloatConverterAdapter.java?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/FloatConverterAdapter.java (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/FloatConverterAdapter.java Fri Aug  8 10:47:37 2008
@@ -0,0 +1,45 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.myfaces.trinidadinternal.convert;
+
+import org.apache.myfaces.extensions.validator.core.adapter.ExtValFallbackConverter;
+import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
+import javax.faces.convert.Converter;
+import javax.faces.convert.ConverterException;
+
+/*generated code - don't change!*/
+public class FloatConverterAdapter extends org.apache.myfaces.trinidadinternal.convert.FloatConverter {
+	private Converter smartConverter;
+
+	public FloatConverterAdapter() {
+		this(new org.apache.myfaces.trinidadinternal.convert.FloatConverter());
+	}
+
+	public FloatConverterAdapter(Converter converter) {
+		this.smartConverter = new ExtValFallbackConverter(converter);
+	}
+
+	public Object getAsObject(FacesContext context, UIComponent component, String value) throws ConverterException {
+		return this.smartConverter.getAsObject(context, component, value);
+	}
+	public String getAsString(FacesContext context, UIComponent component, Object value) throws ConverterException {
+		return this.smartConverter.getAsString(context, component, value);
+	}
+}

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/IntegerConverterAdapter.java
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/IntegerConverterAdapter.java?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/IntegerConverterAdapter.java (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/IntegerConverterAdapter.java Fri Aug  8 10:47:37 2008
@@ -0,0 +1,45 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.myfaces.trinidadinternal.convert;
+
+import org.apache.myfaces.extensions.validator.core.adapter.ExtValFallbackConverter;
+import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
+import javax.faces.convert.Converter;
+import javax.faces.convert.ConverterException;
+
+/*generated code - don't change!*/
+public class IntegerConverterAdapter extends org.apache.myfaces.trinidadinternal.convert.IntegerConverter {
+	private Converter smartConverter;
+
+	public IntegerConverterAdapter() {
+		this(new org.apache.myfaces.trinidadinternal.convert.IntegerConverter());
+	}
+
+	public IntegerConverterAdapter(Converter converter) {
+		this.smartConverter = new ExtValFallbackConverter(converter);
+	}
+
+	public Object getAsObject(FacesContext context, UIComponent component, String value) throws ConverterException {
+		return this.smartConverter.getAsObject(context, component, value);
+	}
+	public String getAsString(FacesContext context, UIComponent component, Object value) throws ConverterException {
+		return this.smartConverter.getAsString(context, component, value);
+	}
+}

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/LongConverterAdapter.java
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/LongConverterAdapter.java?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/LongConverterAdapter.java (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/LongConverterAdapter.java Fri Aug  8 10:47:37 2008
@@ -0,0 +1,45 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.myfaces.trinidadinternal.convert;
+
+import org.apache.myfaces.extensions.validator.core.adapter.ExtValFallbackConverter;
+import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
+import javax.faces.convert.Converter;
+import javax.faces.convert.ConverterException;
+
+/*generated code - don't change!*/
+public class LongConverterAdapter extends org.apache.myfaces.trinidadinternal.convert.LongConverter {
+	private Converter smartConverter;
+
+	public LongConverterAdapter() {
+		this(new org.apache.myfaces.trinidadinternal.convert.LongConverter());
+	}
+
+	public LongConverterAdapter(Converter converter) {
+		this.smartConverter = new ExtValFallbackConverter(converter);
+	}
+
+	public Object getAsObject(FacesContext context, UIComponent component, String value) throws ConverterException {
+		return this.smartConverter.getAsObject(context, component, value);
+	}
+	public String getAsString(FacesContext context, UIComponent component, Object value) throws ConverterException {
+		return this.smartConverter.getAsString(context, component, value);
+	}
+}

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/NumberConverterAdapter.java
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/NumberConverterAdapter.java?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/NumberConverterAdapter.java (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/NumberConverterAdapter.java Fri Aug  8 10:47:37 2008
@@ -0,0 +1,45 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.myfaces.trinidadinternal.convert;
+
+import org.apache.myfaces.extensions.validator.core.adapter.ExtValFallbackConverter;
+import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
+import javax.faces.convert.Converter;
+import javax.faces.convert.ConverterException;
+
+/*generated code - don't change!*/
+public class NumberConverterAdapter extends org.apache.myfaces.trinidadinternal.convert.NumberConverter {
+	private Converter smartConverter;
+
+	public NumberConverterAdapter() {
+		this(new org.apache.myfaces.trinidadinternal.convert.NumberConverter());
+	}
+
+	public NumberConverterAdapter(Converter converter) {
+		this.smartConverter = new ExtValFallbackConverter(converter);
+	}
+
+	public Object getAsObject(FacesContext context, UIComponent component, String value) throws ConverterException {
+		return this.smartConverter.getAsObject(context, component, value);
+	}
+	public String getAsString(FacesContext context, UIComponent component, Object value) throws ConverterException {
+		return this.smartConverter.getAsString(context, component, value);
+	}
+}

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/ShortConverterAdapter.java
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/ShortConverterAdapter.java?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/ShortConverterAdapter.java (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/java/org/apache/myfaces/trinidadinternal/convert/ShortConverterAdapter.java Fri Aug  8 10:47:37 2008
@@ -0,0 +1,45 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.myfaces.trinidadinternal.convert;
+
+import org.apache.myfaces.extensions.validator.core.adapter.ExtValFallbackConverter;
+import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
+import javax.faces.convert.Converter;
+import javax.faces.convert.ConverterException;
+
+/*generated code - don't change!*/
+public class ShortConverterAdapter extends org.apache.myfaces.trinidadinternal.convert.ShortConverter {
+	private Converter smartConverter;
+
+	public ShortConverterAdapter() {
+		this(new org.apache.myfaces.trinidadinternal.convert.ShortConverter());
+	}
+
+	public ShortConverterAdapter(Converter converter) {
+		this.smartConverter = new ExtValFallbackConverter(converter);
+	}
+
+	public Object getAsObject(FacesContext context, UIComponent component, String value) throws ConverterException {
+		return this.smartConverter.getAsObject(context, component, value);
+	}
+	public String getAsString(FacesContext context, UIComponent component, Object value) throws ConverterException {
+		return this.smartConverter.getAsString(context, component, value);
+	}
+}

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/WEB-INF/LICENSE.txt
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/WEB-INF/LICENSE.txt?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/WEB-INF/LICENSE.txt (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/WEB-INF/LICENSE.txt Fri Aug  8 10:47:37 2008
@@ -0,0 +1,174 @@
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/WEB-INF/NOTICE.txt
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/WEB-INF/NOTICE.txt?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/WEB-INF/NOTICE.txt (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/WEB-INF/NOTICE.txt Fri Aug  8 10:47:37 2008
@@ -0,0 +1,9 @@
+Apache MyFaces Extensions Validator
+Copyright 2007-2008 The Apache Software Foundation
+
+This product includes software developed by
+The Apache Software Foundation (http://www.apache.org/).
+
+------------------------------------------------------------------------
+See the file LICENSE.txt
+------------------------------------------------------------------------
\ No newline at end of file

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/WEB-INF/faces-config.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/WEB-INF/faces-config.xml?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/WEB-INF/faces-config.xml (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/WEB-INF/faces-config.xml Fri Aug  8 10:47:37 2008
@@ -0,0 +1,52 @@
+<faces-config xmlns="http://java.sun.com/xml/ns/javaee"
+              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+              xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd"
+              version="1.2">
+    <application>
+        <!-- trinidad -->
+        <default-render-kit-id>
+            org.apache.myfaces.trinidad.core
+        </default-render-kit-id>
+
+    </application>
+
+    <managed-bean>
+        <managed-bean-name>registrationPage</managed-bean-name>
+        <managed-bean-class>org.apache.myfaces.extensions.validator.demo.gui.beans.RegistrationPage</managed-bean-class>
+        <managed-bean-scope>request</managed-bean-scope>
+
+        <managed-property>
+            <property-name>person</property-name>
+            <value>#{person}</value>
+        </managed-property>
+    </managed-bean>
+
+    <managed-bean>
+        <managed-bean-name>person</managed-bean-name>
+        <managed-bean-class>org.apache.myfaces.extensions.validator.demo.domain.Person</managed-bean-class>
+        <managed-bean-scope>session</managed-bean-scope>
+    </managed-bean>
+
+    <navigation-rule>
+        <from-view-id>/pages/home.xhtml</from-view-id>
+        <navigation-case>
+            <from-outcome>addUser</from-outcome>
+            <to-view-id>/pages/registration.xhtml</to-view-id>
+        </navigation-case>
+        <navigation-case>
+            <from-outcome>changeNickName</from-outcome>
+            <to-view-id>/pages/change_nickName.xhtml</to-view-id>
+        </navigation-case>
+        <navigation-case>
+            <from-outcome>changePassword</from-outcome>
+            <to-view-id>/pages/change_password.xhtml</to-view-id>
+        </navigation-case>
+    </navigation-rule>
+    <navigation-rule>
+        <from-view-id>*</from-view-id>
+        <navigation-case>
+            <from-outcome>home</from-outcome>
+            <to-view-id>/pages/home.xhtml</to-view-id>
+        </navigation-case>
+    </navigation-rule>
+</faces-config>
\ No newline at end of file

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/WEB-INF/web.xml?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/WEB-INF/web.xml (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/WEB-INF/web.xml Fri Aug  8 10:47:37 2008
@@ -0,0 +1,201 @@
+<?xml version="1.0"?>
+
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
+<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
+         version="2.4">
+
+    <description>MyProject web.xml</description>
+
+    <context-param>
+        <param-name>org.apache.myfaces.extensions.validator.USE_ADAPTERS</param-name>
+        <param-value>true</param-value>
+    </context-param>
+
+    <context-param>
+        <param-name>org.apache.myfaces.extensions.validator.CUSTOM_MESSAGE_BUNDLE</param-name>
+        <param-value>org.apache.myfaces.custom_msg</param-value>
+    </context-param>
+
+    <context-param>
+        <param-name>org.apache.myfaces.extensions.validator.JPA_VALIDATION_ERROR_MESSAGES</param-name>
+        <param-value>org.apache.myfaces.custom_msg</param-value>
+    </context-param>
+
+    <context-param>
+        <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
+        <param-value>.xhtml</param-value>
+    </context-param>
+
+    <context-param>
+        <param-name>org.apache.myfaces.trinidad.ENABLE_LIGHTWEIGHT_DIALOGS</param-name>
+        <param-value>true</param-value>
+    </context-param>
+
+    <context-param>
+        <param-name>org.apache.myfaces.trinidad.DISABLE_CONTENT_COMPRESSION</param-name>
+        <param-value>true</param-value>
+    </context-param>
+
+    <context-param>
+        <param-name>org.apache.myfaces.trinidad.ALTERNATE_VIEW_HANDLER</param-name>
+        <param-value>com.sun.facelets.FaceletViewHandler</param-value>
+    </context-param>
+
+    <context-param>
+        <param-name>org.apache.myfaces.trinidad.USE_APPLICATION_VIEW_CACHE</param-name>
+        <param-value>false</param-value>
+    </context-param>
+
+    <context-param>
+        <param-name>org.apache.myfaces.trinidad.CHANGE_PERSISTENCE</param-name>
+        <param-value>session</param-value>
+    </context-param>
+
+    <context-param>
+        <description>State saving method: "client" or "server" (= default)
+            See JSF Specification 2.5.3
+        </description>
+        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
+        <param-value>client</param-value>
+    </context-param>
+    <context-param>
+        <description>Only applicable if state saving method is "server" (= default).
+            Defines the amount (default = 20) of the latest views are stored in session.
+        </description>
+        <param-name>org.apache.myfaces.NUMBER_OF_VIEWS_IN_SESSION</param-name>
+        <param-value>20</param-value>
+    </context-param>
+    <context-param>
+        <description>Only applicable if state saving method is "server" (= default).
+            If true (default) the state will be serialized to a byte stream before it
+            is written to the session.
+            If false the state will not be serialized to a byte stream.
+        </description>
+        <param-name>org.apache.myfaces.SERIALIZE_STATE_IN_SESSION</param-name>
+        <param-value>true</param-value>
+    </context-param>
+    <context-param>
+        <description>Only applicable if state saving method is "server" (= default) and if
+            org.apache.myfaces.SERIALIZE_STATE_IN_SESSION is true (= default)
+            If true (default) the serialized state will be compressed before it
+            is written to the session. If false the state will not be compressed.
+        </description>
+        <param-name>org.apache.myfaces.COMPRESS_STATE_IN_SESSION</param-name>
+        <param-value>true</param-value>
+    </context-param>
+    <context-param>
+        <description>This parameter tells MyFaces if javascript code should be allowed in the
+            rendered HTML output.
+            If javascript is allowed, command_link anchors will have javascript code
+            that submits the corresponding form.
+            If javascript is not allowed, the state saving info and nested parameters
+            will be added as url parameters.
+            Default: "true"
+        </description>
+        <param-name>org.apache.myfaces.ALLOW_JAVASCRIPT</param-name>
+        <param-value>true</param-value>
+    </context-param>
+    <context-param>
+        <param-name>org.apache.myfaces.DETECT_JAVASCRIPT</param-name>
+        <param-value>false</param-value>
+    </context-param>
+    <context-param>
+        <description>If true, rendered HTML code will be formatted, so that it is "human readable".
+            i.e. additional line separators and whitespace will be written, that do not
+            influence the HTML code.
+            Default: "true"
+        </description>
+        <param-name>org.apache.myfaces.PRETTY_HTML</param-name>
+        <param-value>true</param-value>
+    </context-param>
+    <context-param>
+        <description>If true, a javascript function will be rendered that is able to restore the
+            former vertical scroll on every request. Convenient feature if you have pages
+            with long lists and you do not want the browser page to always jump to the top
+            if you trigger a link or button action that stays on the same page.
+            Default: "false"
+        </description>
+        <param-name>org.apache.myfaces.AUTO_SCROLL</param-name>
+        <param-value>true</param-value>
+    </context-param>
+
+    <context-param>
+        <description>Used for encrypting view state. Only relevant for client side
+            state saving. See MyFaces wiki/web site documentation for instructions
+            on how to configure an application for diffenent encryption strengths.
+        </description>
+        <param-name>org.apache.myfaces.SECRET</param-name>
+        <param-value>NzY1NDMyMTA=</param-value>
+    </context-param>
+
+    <context-param>
+        <description>
+            Validate managed beans, navigation rules and ensure that forms are not nested.
+        </description>
+        <param-name>org.apache.myfaces.VALIDATE</param-name>
+        <param-value>true</param-value>
+    </context-param>
+
+    <!-- Listener, to allow Jetty serving MyFaces apps -->
+    <listener>
+        <listener-class>org.apache.myfaces.webapp.StartupServletContextListener</listener-class>
+    </listener>
+
+    <!-- Faces Servlet -->
+    <servlet>
+        <servlet-name>Faces Servlet</servlet-name>
+        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
+        <load-on-startup>1</load-on-startup>
+    </servlet>
+
+    <servlet>
+        <servlet-name>resources</servlet-name>
+        <servlet-class>org.apache.myfaces.trinidad.webapp.ResourceServlet</servlet-class>
+    </servlet>
+
+    <filter>
+        <filter-name>trinidad</filter-name>
+        <filter-class>org.apache.myfaces.trinidad.webapp.TrinidadFilter</filter-class>
+    </filter>
+
+    <filter-mapping>
+        <filter-name>trinidad</filter-name>
+        <servlet-name>Faces Servlet</servlet-name>
+    </filter-mapping>
+
+    <!-- Faces Servlet Mappings -->
+    <servlet-mapping>
+        <servlet-name>Faces Servlet</servlet-name>
+        <url-pattern>*.faces</url-pattern>
+    </servlet-mapping>
+
+    <servlet-mapping>
+        <servlet-name>resources</servlet-name>
+        <url-pattern>/adf/*</url-pattern>
+    </servlet-mapping>
+
+    <!-- Welcome files -->
+    <welcome-file-list>
+        <welcome-file>index.html</welcome-file>
+    </welcome-file-list>
+
+</web-app>

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/index.html
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/index.html?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/index.html (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/index.html Fri Aug  8 10:47:37 2008
@@ -0,0 +1,6 @@
+<html>
+
+<head>
+    <meta http-equiv="refresh" content="0; URL=pages/home.faces">
+</head>
+</html>
\ No newline at end of file

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/layout/template.xhtml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/layout/template.xhtml?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/layout/template.xhtml (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/layout/template.xhtml Fri Aug  8 10:47:37 2008
@@ -0,0 +1,35 @@
+<tr:document
+        xmlns:ui="http://java.sun.com/jsf/facelets"
+        xmlns:h="http://java.sun.com/jsf/html"
+        xmlns:f="http://java.sun.com/jsf/core"
+        xmlns:tr="http://myfaces.apache.org/trinidad"
+        xmlns:trh="http://myfaces.apache.org/trinidad/html"
+        xmlns:c="http://java.sun.com/jstl/core">
+    <f:facet name="metaContainer">
+        <title>sev-en feature-set demo 01</title>
+    </f:facet>
+
+    <trh:body>
+
+        <!-- original -->
+        <div id="wrap">
+
+            <tr:form id="form" defaultCommand="defaultButton">
+                <div id="main">
+                    <ui:insert name="content">
+                        <div class="under_construction">
+                            <h2>!site under construction!</h2>
+
+                            <p>The content of this site is not available at the moment.</p>
+                        </div>
+                    </ui:insert>
+                </div>
+
+            </tr:form>
+            <tr:messages globalOnly="true"/>
+
+        </div>
+    </trh:body>
+
+
+</tr:document>
\ No newline at end of file

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/pages/change_nickName.xhtml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/pages/change_nickName.xhtml?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/pages/change_nickName.xhtml (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/pages/change_nickName.xhtml Fri Aug  8 10:47:37 2008
@@ -0,0 +1,36 @@
+<!DOCTYPE html PUBLIC
+        "-//W3C//DTD XHTML 1.0 Transitional//EN"
+        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml"
+      xmlns:ui="http://java.sun.com/jsf/facelets">
+
+<body>
+
+<ui:composition template="../layout/template.xhtml"
+                xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:f="http://java.sun.com/jsf/core"
+                xmlns:h="http://java.sun.com/jsf/html"
+                xmlns:tr="http://myfaces.apache.org/trinidad"
+                xmlns:trh="http://myfaces.apache.org/trinidad/html">
+
+    <ui:define name="content">
+
+        <tr:panelFormLayout>
+
+            <ui:remove>
+                just for the demo we are using two input components
+            </ui:remove>
+            <tr:inputText label="old nick name" readOnly="true" value="#{registrationPage.person.nickName}"/>
+
+            <tr:inputText label="nick name" value="#{registrationPage.newNickName}"/>
+
+        </tr:panelFormLayout>
+        <tr:commandButton text="save" action="#{registrationPage.updateNickName}"/>
+
+    </ui:define>
+</ui:composition>
+
+</body>
+</html>

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/pages/change_password.xhtml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/pages/change_password.xhtml?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/pages/change_password.xhtml (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/pages/change_password.xhtml Fri Aug  8 10:47:37 2008
@@ -0,0 +1,34 @@
+<!DOCTYPE html PUBLIC
+        "-//W3C//DTD XHTML 1.0 Transitional//EN"
+        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml"
+      xmlns:ui="http://java.sun.com/jsf/facelets">
+
+<body>
+
+<ui:composition template="../layout/template.xhtml"
+                xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:f="http://java.sun.com/jsf/core"
+                xmlns:h="http://java.sun.com/jsf/html"
+                xmlns:tr="http://myfaces.apache.org/trinidad"
+                xmlns:trh="http://myfaces.apache.org/trinidad/html">
+
+    <ui:define name="content">
+
+        <tr:panelFormLayout>
+
+            <tr:inputText label="old password" value="#{registrationPage.oldPassword}" secret="true"/>
+
+            <tr:inputText label="new password" value="#{registrationPage.password}" secret="true"/>
+            <tr:inputText label="re-enter password" value="#{registrationPage.passwordRepeated}" secret="true"/>
+
+        </tr:panelFormLayout>
+        <tr:commandButton text="save" action="#{registrationPage.finish}"/>
+
+    </ui:define>
+</ui:composition>
+
+</body>
+</html>

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/pages/home.xhtml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/pages/home.xhtml?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/pages/home.xhtml (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/pages/home.xhtml Fri Aug  8 10:47:37 2008
@@ -0,0 +1,26 @@
+<!DOCTYPE html PUBLIC
+        "-//W3C//DTD XHTML 1.0 Transitional//EN"
+        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml"
+      xmlns:ui="http://java.sun.com/jsf/facelets">
+
+<body>
+
+<ui:composition template="../layout/template.xhtml"
+                xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:f="http://java.sun.com/jsf/core"
+                xmlns:h="http://java.sun.com/jsf/html"
+                xmlns:tr="http://myfaces.apache.org/trinidad"
+                xmlns:trh="http://myfaces.apache.org/trinidad/html">
+
+    <ui:define name="content">
+        <tr:commandButton text="add user" action="addUser"/><br/>
+        <tr:commandButton text="change nick name" action="changeNickName"/><br/>
+        <tr:commandButton text="change password" action="changePassword"/>
+    </ui:define>
+</ui:composition>
+
+</body>
+</html>

Added: myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/pages/registration.xhtml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/pages/registration.xhtml?rev=684024&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/pages/registration.xhtml (added)
+++ myfaces/extensions/validator/trunk/examples/fallback_demo/src/main/webapp/pages/registration.xhtml Fri Aug  8 10:47:37 2008
@@ -0,0 +1,46 @@
+<!DOCTYPE html PUBLIC
+        "-//W3C//DTD XHTML 1.0 Transitional//EN"
+        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml"
+      xmlns:ui="http://java.sun.com/jsf/facelets">
+
+<body>
+
+<ui:composition template="../layout/template.xhtml"
+                xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:f="http://java.sun.com/jsf/core"
+                xmlns:h="http://java.sun.com/jsf/html"
+                xmlns:tr="http://myfaces.apache.org/trinidad"
+                xmlns:trh="http://myfaces.apache.org/trinidad/html">
+
+    <ui:define name="content">
+
+        <tr:panelFormLayout>
+
+            <tr:inputText label="nick name" value="#{registrationPage.person.nickName}"/>
+            <tr:inputText label="e-mail" value="#{registrationPage.email}"/>
+
+            <tr:inputText label="first name" value="#{registrationPage.person.firstName}"/>
+            <tr:inputText label="last name" value="#{registrationPage.person.lastName}"/>
+            <tr:inputDate label="birthday" value="#{registrationPage.person.birthday}">
+                <tr:convertDateTime type="date" dateStyle="short"/>
+            </tr:inputDate>
+            <tr:inputDate label="final exam" value="#{registrationPage.person.finalExam}">
+                <tr:convertDateTime type="date" dateStyle="short"/>
+            </tr:inputDate>
+
+            <tr:inputText label="number of siblings" value="#{registrationPage.numberOfSiblings}"/>
+
+            <tr:inputText label="password" value="#{registrationPage.password}" secret="true"/>
+            <tr:inputText label="re-enter password" value="#{registrationPage.passwordRepeated}" secret="true"/>
+
+        </tr:panelFormLayout>
+        <tr:commandButton text="save" action="#{registrationPage.finish}"/>
+
+    </ui:define>
+</ui:composition>
+
+</body>
+</html>