You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by so...@apache.org on 2007/11/29 01:50:31 UTC

svn commit: r599228 - /myfaces/portlet-bridge/trunk/impl/src/main/resources/META-INF/faces-config.xml

Author: sobryan
Date: Wed Nov 28 16:50:30 2007
New Revision: 599228

URL: http://svn.apache.org/viewvc?rev=599228&view=rev
Log:
PORTLETBRIDGE-17: Bridge faces-config.xml doesn't configure the bridge's StateManager

Patch provided by Michael Freedman.  Thanks..

* Also applied some minor changes to existing faces-config.xml to have
  Apache liscence and use UTF-8 encoding.

Modified:
    myfaces/portlet-bridge/trunk/impl/src/main/resources/META-INF/faces-config.xml

Modified: myfaces/portlet-bridge/trunk/impl/src/main/resources/META-INF/faces-config.xml
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/trunk/impl/src/main/resources/META-INF/faces-config.xml?rev=599228&r1=599227&r2=599228&view=diff
==============================================================================
--- myfaces/portlet-bridge/trunk/impl/src/main/resources/META-INF/faces-config.xml (original)
+++ myfaces/portlet-bridge/trunk/impl/src/main/resources/META-INF/faces-config.xml Wed Nov 28 16:50:30 2007
@@ -1,7 +1,26 @@
-<?xml version="1.0" encoding="windows-1252"?>
+<?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 version="1.2" xmlns="http://java.sun.com/xml/ns/javaee">
     <application>
         <view-handler>org.apache.myfaces.portlet.faces.application.PortletViewHandlerImpl</view-handler>
+        <state-manager>org.apache.myfaces.portlet.faces.application.PortletStateManagerImpl</state-manager>
         <el-resolver>org.apache.myfaces.portlet.faces.el.PortletELResolver</el-resolver>
     </application>
 </faces-config>