You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by im...@apache.org on 2007/02/22 22:44:06 UTC

svn commit: r510661 - in /myfaces/fusion/trunk/core/src/main/resources/META-INF: ./ faces-config.xml

Author: imario
Date: Thu Feb 22 13:44:05 2007
New Revision: 510661

URL: http://svn.apache.org/viewvc?view=rev&rev=510661
Log:
added faces-config and tld, added maven configuration

Added:
    myfaces/fusion/trunk/core/src/main/resources/META-INF/
    myfaces/fusion/trunk/core/src/main/resources/META-INF/faces-config.xml

Added: myfaces/fusion/trunk/core/src/main/resources/META-INF/faces-config.xml
URL: http://svn.apache.org/viewvc/myfaces/fusion/trunk/core/src/main/resources/META-INF/faces-config.xml?view=auto&rev=510661
==============================================================================
--- myfaces/fusion/trunk/core/src/main/resources/META-INF/faces-config.xml (added)
+++ myfaces/fusion/trunk/core/src/main/resources/META-INF/faces-config.xml Thu Feb 22 13:44:05 2007
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+
+<!DOCTYPE faces-config PUBLIC
+	"-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
+	"http://java.sun.com/dtd/web-facesconfig_1_1.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.
+-->
+
+<faces-config>
+
+	<component>
+		<component-type>org.apache.myfaces.EndConversation</component-type>
+		<component-class>org.apache.myfaces.fusion.conversation.jsf.components.UIEndConversation</component-class>
+	</component>
+	<component>
+		<component-type>org.apache.myfaces.SeparateConversationContext</component-type>
+		<component-class>org.apache.myfaces.fusion.conversation.jsf.components.UISeparateConversationContext
+		</component-class>
+	</component>
+	<component>
+		<component-type>org.apache.myfaces.EnsureConversation</component-type>
+		<component-class>org.apache.myfaces.fusion.conversation.jsf.components.UIEnsureConversation</component-class>
+	</component>
+
+	<lifecycle>
+		<phase-listener>org.apache.myfaces.fusion.listeners.FusionPhaseListener</phase-listener>
+	</lifecycle>
+
+</faces-config>