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 2009/10/13 00:18:51 UTC

svn commit: r824520 - in /myfaces/extensions/validator/trunk/examples: ./ feature-set_02/ feature-set_02/src/ feature-set_02/src/main/ feature-set_02/src/main/java/ feature-set_02/src/main/java/org/ feature-set_02/src/main/java/org/apache/ feature-set_...

Author: gpetracek
Date: Mon Oct 12 22:18:50 2009
New Revision: 824520

URL: http://svn.apache.org/viewvc?rev=824520&view=rev
Log:
first part of the feature-set example with jsr 303 constraints

Added:
    myfaces/extensions/validator/trunk/examples/feature-set_02/
    myfaces/extensions/validator/trunk/examples/feature-set_02/pom.xml
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/java/
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/java/org/
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/java/org/apache/
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/java/org/apache/myfaces/
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/java/org/apache/myfaces/extensions/
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/java/org/apache/myfaces/extensions/validator/
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/java/org/apache/myfaces/extensions/validator/demo/
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/java/org/apache/myfaces/extensions/validator/demo/domain/
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/java/org/apache/myfaces/extensions/validator/demo/domain/Person.java
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/java/org/apache/myfaces/extensions/validator/demo/gui/
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/java/org/apache/myfaces/extensions/validator/demo/gui/beans/
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/java/org/apache/myfaces/extensions/validator/demo/gui/beans/RegistrationPage.java
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/LICENSE.txt
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/NOTICE.txt
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/faces-config.xml
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/main.taglib.xml
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/web.xml
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/components/
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/components/user_form.xhtml
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/index.html
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/layout/
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/layout/template.xhtml
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/pages/
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/pages/home.xhtml
    myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/pages/registration.xhtml
Modified:
    myfaces/extensions/validator/trunk/examples/pom.xml

Added: myfaces/extensions/validator/trunk/examples/feature-set_02/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/feature-set_02/pom.xml?rev=824520&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/feature-set_02/pom.xml (added)
+++ myfaces/extensions/validator/trunk/examples/feature-set_02/pom.xml Mon Oct 12 22:18:50 2009
@@ -0,0 +1,141 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    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.
+-->
+<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-feature-set_02</artifactId>
+
+    <name>MyFaces Extensions-Validator examples feature-set 02</name>
+
+    <parent>
+        <groupId>org.apache.myfaces.extensions.validator.examples</groupId>
+        <artifactId>examples-project</artifactId>
+        <version>1.2.3-SNAPSHOT</version>
+    </parent>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.myfaces.extensions.validator</groupId>
+            <artifactId>myfaces-extval-core</artifactId>
+            <version>1.2.3-SNAPSHOT</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.myfaces.extensions.validator.validation-modules</groupId>
+            <artifactId>myfaces-extval-bean-validation</artifactId>
+            <version>1.2.3-SNAPSHOT</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.myfaces.extensions.validator.component-support-modules</groupId>
+            <artifactId>myfaces-extval-trinidad-support</artifactId>
+            <version>1.2.3-SNAPSHOT</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.hibernate</groupId>
+            <artifactId>hibernate-validator</artifactId>
+            <version>4.0.0.GA</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <version>1.4.2</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-log4j12</artifactId>
+            <version>1.4.2</version>
+        </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>
+        -->
+    </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/feature-set_02/src/main/java/org/apache/myfaces/extensions/validator/demo/domain/Person.java
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/java/org/apache/myfaces/extensions/validator/demo/domain/Person.java?rev=824520&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/java/org/apache/myfaces/extensions/validator/demo/domain/Person.java (added)
+++ myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/java/org/apache/myfaces/extensions/validator/demo/domain/Person.java Mon Oct 12 22:18:50 2009
@@ -0,0 +1,145 @@
+/*
+ * 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 javax.validation.constraints.Size;
+import javax.validation.constraints.NotNull;
+import javax.validation.constraints.Past;
+import java.util.Date;
+
+public class Person
+{
+    @Size(min = 2, max = 20)
+    private String firstName;
+
+    @Size(min = 2, max = 20)
+    private String lastName;
+
+    @Size(min = 2, max = 10)
+    private String password;
+
+    @Past
+    @NotNull
+    private Date birthday;
+
+    @Past
+    private Date finalExam;
+
+    @NotNull
+    private String nickName;
+
+    @Size(min = 6, max = 60)
+    private String email;
+
+    @NotNull
+    private int numberOfSiblings;
+
+    @Size(min = 2, max = 10)
+    private String role = "user";
+
+    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 String getRole()
+    {
+        return role;
+    }
+
+    public void setRole(String role)
+    {
+        this.role = role;
+    }
+
+    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/feature-set_02/src/main/java/org/apache/myfaces/extensions/validator/demo/gui/beans/RegistrationPage.java
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/java/org/apache/myfaces/extensions/validator/demo/gui/beans/RegistrationPage.java?rev=824520&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/java/org/apache/myfaces/extensions/validator/demo/gui/beans/RegistrationPage.java (added)
+++ myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/java/org/apache/myfaces/extensions/validator/demo/gui/beans/RegistrationPage.java Mon Oct 12 22:18:50 2009
@@ -0,0 +1,96 @@
+/*
+ * 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 javax.validation.constraints.NotNull;
+import javax.validation.constraints.Size;
+
+public class RegistrationPage
+{
+    @NotNull
+    private String password;
+
+    @NotNull
+    private String passwordRepeated;
+
+    private Person person;
+
+    public String finish()
+    {
+        this.person.setPassword(this.password);
+        return "home";
+    }
+
+    @Size(min = 6, max = 60)
+    public String getEmail()
+    {
+        return this.person.getEmail();
+    }
+
+    public void setEmail(String email)
+    {
+        this.person.setEmail(email);
+    }
+
+    @NotNull
+    public int getNumberOfSiblings()
+    {
+        return this.person.getNumberOfSiblings();
+    }
+
+    public void setNumberOfSiblings(int numberOfSiblings)
+    {
+        this.person.setNumberOfSiblings(numberOfSiblings);
+    }
+
+    /*
+     * generated
+     */
+    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;
+    }
+}

Added: myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/LICENSE.txt
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/LICENSE.txt?rev=824520&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/LICENSE.txt (added)
+++ myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/LICENSE.txt Mon Oct 12 22:18:50 2009
@@ -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/feature-set_02/src/main/webapp/WEB-INF/NOTICE.txt
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/NOTICE.txt?rev=824520&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/NOTICE.txt (added)
+++ myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/NOTICE.txt Mon Oct 12 22:18:50 2009
@@ -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/feature-set_02/src/main/webapp/WEB-INF/faces-config.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/faces-config.xml?rev=824520&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/faces-config.xml (added)
+++ myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/faces-config.xml Mon Oct 12 22:18:50 2009
@@ -0,0 +1,62 @@
+<!--
+ * 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.
+-->
+<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-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/feature-set_02/src/main/webapp/WEB-INF/main.taglib.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/main.taglib.xml?rev=824520&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/main.taglib.xml (added)
+++ myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/main.taglib.xml Mon Oct 12 22:18:50 2009
@@ -0,0 +1,35 @@
+<?xml version="1.0"?>
+<!DOCTYPE facelet-taglib PUBLIC
+        "-//Sun Microsystems, Inc.//DTD Facelet Taglib 1.0//EN"
+        "http://java.sun.com/dtd/facelet-taglib_1_0.dtd">
+
+<!--
+ * 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.
+-->
+
+<facelet-taglib>
+    <namespace>http://myfaces.apache.org/extval/demo/components</namespace>
+
+    <tag>
+        <tag-name>userForm</tag-name>
+        <source>
+            ../components/user_form.xhtml
+        </source>
+    </tag>
+
+</facelet-taglib>
\ No newline at end of file

Added: myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/web.xml?rev=824520&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/web.xml (added)
+++ myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/WEB-INF/web.xml Mon Oct 12 22:18:50 2009
@@ -0,0 +1,191 @@
+<?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>javax.faces.DEFAULT_SUFFIX</param-name>
+        <param-value>.xhtml</param-value>
+    </context-param>
+
+    <context-param>
+        <param-name>facelets.LIBRARIES</param-name>
+        <param-value>/WEB-INF/main.taglib.xml</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/feature-set_02/src/main/webapp/components/user_form.xhtml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/components/user_form.xhtml?rev=824520&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/components/user_form.xhtml (added)
+++ myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/components/user_form.xhtml Mon Oct 12 22:18:50 2009
@@ -0,0 +1,52 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<!--
+ * 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.
+-->
+
+<html xmlns="http://www.w3.org/1999/xhtml"
+      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">
+
+<ui:composition>
+    <tr:panelFormLayout>
+
+        <tr:inputText label="nick name" value="#{bean.person[ 'nickName' ]}"/>
+        <tr:inputText label="e-mail" value="#{bean.email}"/>
+
+        <tr:inputText label="first name" value="#{bean.person.firstName}"/>
+        <tr:inputText label="last name" value="#{bean.person.lastName}"/>
+        <tr:inputDate label="birthday" value="#{bean.person.birthday}">
+            <tr:convertDateTime type="date" pattern="dd.MM.yyyy"/>
+        </tr:inputDate>
+        <tr:inputDate label="final exam" value="#{bean.person.finalExam}">
+            <tr:convertDateTime type="date" pattern="dd.MM.yyyy"/>
+        </tr:inputDate>
+
+        <tr:inputText label="number of siblings" value="#{bean.numberOfSiblings}"/>
+
+        <tr:inputText label="password" value="#{bean.password}" secret="true"/>
+        <tr:inputText label="re-enter password" value="#{bean.passwordRepeated}" secret="true"/>
+
+    </tr:panelFormLayout>
+</ui:composition>
+</html>

Added: myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/index.html
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/index.html?rev=824520&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/index.html (added)
+++ myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/index.html Mon Oct 12 22:18:50 2009
@@ -0,0 +1,25 @@
+<!--
+ * 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.
+-->
+        
+<html>
+
+<head>
+    <meta http-equiv="refresh" content="0; URL=faces/pages/home.xhtml">
+</head>
+</html>
\ No newline at end of file

Added: myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/layout/template.xhtml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/layout/template.xhtml?rev=824520&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/layout/template.xhtml (added)
+++ myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/layout/template.xhtml Mon Oct 12 22:18:50 2009
@@ -0,0 +1,54 @@
+<!--
+ * 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.
+-->
+
+<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/feature-set_02/src/main/webapp/pages/home.xhtml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/pages/home.xhtml?rev=824520&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/pages/home.xhtml (added)
+++ myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/pages/home.xhtml Mon Oct 12 22:18:50 2009
@@ -0,0 +1,43 @@
+<!DOCTYPE html PUBLIC
+        "-//W3C//DTD XHTML 1.0 Transitional//EN"
+        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<!--
+ * 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.
+-->
+
+<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/>
+    </ui:define>
+</ui:composition>
+
+</body>
+</html>

Added: myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/pages/registration.xhtml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/pages/registration.xhtml?rev=824520&view=auto
==============================================================================
--- myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/pages/registration.xhtml (added)
+++ myfaces/extensions/validator/trunk/examples/feature-set_02/src/main/webapp/pages/registration.xhtml Mon Oct 12 22:18:50 2009
@@ -0,0 +1,48 @@
+<!DOCTYPE html PUBLIC
+        "-//W3C//DTD XHTML 1.0 Transitional//EN"
+        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<!--
+ * 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.
+-->
+
+<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"
+                xmlns:c="http://myfaces.apache.org/extval/demo/components"
+        >
+
+    <ui:define name="content">
+
+        <c:userForm bean="#{registrationPage}"/>
+        <tr:commandButton text="save" action="#{registrationPage.finish}"/>
+
+    </ui:define>
+</ui:composition>
+
+</body>
+</html>

Modified: myfaces/extensions/validator/trunk/examples/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/trunk/examples/pom.xml?rev=824520&r1=824519&r2=824520&view=diff
==============================================================================
--- myfaces/extensions/validator/trunk/examples/pom.xml (original)
+++ myfaces/extensions/validator/trunk/examples/pom.xml Mon Oct 12 22:18:50 2009
@@ -60,6 +60,7 @@
         <module>hello_world</module>
         <!--module>hello_bean-validation</module-->
         <module>feature-set_01</module>
+        <!--module>feature-set_02</module-->
     </modules>
 
     <profiles>