You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2010/11/08 22:48:04 UTC

svn commit: r1032751 - in /myfaces/commons/branches/jsf_20: myfaces-commons-components/src/main/conf/META-INF/ myfaces-commons-converters/src/main/conf/ myfaces-commons-validators/src/main/conf/

Author: lu4242
Date: Mon Nov  8 21:48:04 2010
New Revision: 1032751

URL: http://svn.apache.org/viewvc?rev=1032751&view=rev
Log:
update schemas to JSF 2.0

Added:
    myfaces/commons/branches/jsf_20/myfaces-commons-components/src/main/conf/META-INF/faces-config-base.xml
Modified:
    myfaces/commons/branches/jsf_20/myfaces-commons-components/src/main/conf/META-INF/facelets-taglib-base.xml
    myfaces/commons/branches/jsf_20/myfaces-commons-converters/src/main/conf/facelets-taglib-base.xml
    myfaces/commons/branches/jsf_20/myfaces-commons-converters/src/main/conf/faces-config-base.xml
    myfaces/commons/branches/jsf_20/myfaces-commons-validators/src/main/conf/facelets-taglib-base.xml
    myfaces/commons/branches/jsf_20/myfaces-commons-validators/src/main/conf/faces-config-base.xml

Modified: myfaces/commons/branches/jsf_20/myfaces-commons-components/src/main/conf/META-INF/facelets-taglib-base.xml
URL: http://svn.apache.org/viewvc/myfaces/commons/branches/jsf_20/myfaces-commons-components/src/main/conf/META-INF/facelets-taglib-base.xml?rev=1032751&r1=1032750&r2=1032751&view=diff
==============================================================================
--- myfaces/commons/branches/jsf_20/myfaces-commons-components/src/main/conf/META-INF/facelets-taglib-base.xml (original)
+++ myfaces/commons/branches/jsf_20/myfaces-commons-components/src/main/conf/META-INF/facelets-taglib-base.xml Mon Nov  8 21:48:04 2010
@@ -17,10 +17,11 @@
  * specific language governing permissions and limitations
  * under the License.
 -->
-<!DOCTYPE facelet-taglib
-  PUBLIC "-//Sun Microsystems, Inc.//DTD Facelet Taglib 1.0//EN" "http://java.sun.com/dtd/facelet-taglib_1_0.dtd">
-<facelet-taglib xmlns="http://java.sun.com/JSF/Facelet">
-
+<facelet-taglib 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-facelettaglibrary_2_0.xsd"
+              version="2.0">
+    
     <function>
         <function-name>findComponent</function-name>
         <function-class>org.apache.myfaces.commons.facelets.util.FaceletsFunctionLibrary</function-class>

Added: myfaces/commons/branches/jsf_20/myfaces-commons-components/src/main/conf/META-INF/faces-config-base.xml
URL: http://svn.apache.org/viewvc/myfaces/commons/branches/jsf_20/myfaces-commons-components/src/main/conf/META-INF/faces-config-base.xml?rev=1032751&view=auto
==============================================================================
--- myfaces/commons/branches/jsf_20/myfaces-commons-components/src/main/conf/META-INF/faces-config-base.xml (added)
+++ myfaces/commons/branches/jsf_20/myfaces-commons-components/src/main/conf/META-INF/faces-config-base.xml Mon Nov  8 21:48:04 2010
@@ -0,0 +1,27 @@
+<?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.
+-->
+
+<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_2_0.xsd" 
+              version="2.0">
+
+</faces-config>

Modified: myfaces/commons/branches/jsf_20/myfaces-commons-converters/src/main/conf/facelets-taglib-base.xml
URL: http://svn.apache.org/viewvc/myfaces/commons/branches/jsf_20/myfaces-commons-converters/src/main/conf/facelets-taglib-base.xml?rev=1032751&r1=1032750&r2=1032751&view=diff
==============================================================================
--- myfaces/commons/branches/jsf_20/myfaces-commons-converters/src/main/conf/facelets-taglib-base.xml (original)
+++ myfaces/commons/branches/jsf_20/myfaces-commons-converters/src/main/conf/facelets-taglib-base.xml Mon Nov  8 21:48:04 2010
@@ -17,8 +17,9 @@
  * specific language governing permissions and limitations
  * under the License.
 -->
-<!DOCTYPE facelet-taglib
-  PUBLIC "-//Sun Microsystems, Inc.//DTD Facelet Taglib 1.0//EN" "http://java.sun.com/dtd/facelet-taglib_1_0.dtd">
-<facelet-taglib xmlns="http://java.sun.com/JSF/Facelet">
+<facelet-taglib 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-facelettaglibrary_2_0.xsd"
+              version="2.0">
 
 </facelet-taglib>
\ No newline at end of file

Modified: myfaces/commons/branches/jsf_20/myfaces-commons-converters/src/main/conf/faces-config-base.xml
URL: http://svn.apache.org/viewvc/myfaces/commons/branches/jsf_20/myfaces-commons-converters/src/main/conf/faces-config-base.xml?rev=1032751&r1=1032750&r2=1032751&view=diff
==============================================================================
--- myfaces/commons/branches/jsf_20/myfaces-commons-converters/src/main/conf/faces-config-base.xml (original)
+++ myfaces/commons/branches/jsf_20/myfaces-commons-converters/src/main/conf/faces-config-base.xml Mon Nov  8 21:48:04 2010
@@ -21,7 +21,7 @@
 
 <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">
+              xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd" 
+              version="2.0">
 
 </faces-config>

Modified: myfaces/commons/branches/jsf_20/myfaces-commons-validators/src/main/conf/facelets-taglib-base.xml
URL: http://svn.apache.org/viewvc/myfaces/commons/branches/jsf_20/myfaces-commons-validators/src/main/conf/facelets-taglib-base.xml?rev=1032751&r1=1032750&r2=1032751&view=diff
==============================================================================
--- myfaces/commons/branches/jsf_20/myfaces-commons-validators/src/main/conf/facelets-taglib-base.xml (original)
+++ myfaces/commons/branches/jsf_20/myfaces-commons-validators/src/main/conf/facelets-taglib-base.xml Mon Nov  8 21:48:04 2010
@@ -17,8 +17,9 @@
  * specific language governing permissions and limitations
  * under the License.
 -->
-<!DOCTYPE facelet-taglib
-  PUBLIC "-//Sun Microsystems, Inc.//DTD Facelet Taglib 1.0//EN" "http://java.sun.com/dtd/facelet-taglib_1_0.dtd">
-<facelet-taglib xmlns="http://java.sun.com/JSF/Facelet">
+<facelet-taglib 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-facelettaglibrary_2_0.xsd"
+              version="2.0">
 
 </facelet-taglib>
\ No newline at end of file

Modified: myfaces/commons/branches/jsf_20/myfaces-commons-validators/src/main/conf/faces-config-base.xml
URL: http://svn.apache.org/viewvc/myfaces/commons/branches/jsf_20/myfaces-commons-validators/src/main/conf/faces-config-base.xml?rev=1032751&r1=1032750&r2=1032751&view=diff
==============================================================================
--- myfaces/commons/branches/jsf_20/myfaces-commons-validators/src/main/conf/faces-config-base.xml (original)
+++ myfaces/commons/branches/jsf_20/myfaces-commons-validators/src/main/conf/faces-config-base.xml Mon Nov  8 21:48:04 2010
@@ -21,7 +21,7 @@
 
 <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">
+              xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd" 
+              version="2.0">
 
 </faces-config>