Polish
This commit is contained in:
@@ -5,15 +5,15 @@
|
||||
|
||||
<faces-config>
|
||||
<application>
|
||||
<navigation-handler>org.springframework.webflow.executor.jsf.FlowNavigationHandler</navigation-handler>
|
||||
<variable-resolver>org.springframework.webflow.executor.jsf.DelegatingFlowVariableResolver</variable-resolver>
|
||||
<navigation-handler>org.springframework.faces.webflow.FlowNavigationHandler</navigation-handler>
|
||||
<variable-resolver>org.springframework.faces.webflow.el.DelegatingFlowVariableResolver</variable-resolver>
|
||||
<variable-resolver>org.springframework.web.jsf.DelegatingVariableResolver</variable-resolver>
|
||||
<view-handler>com.sun.facelets.FaceletViewHandler</view-handler>
|
||||
</application>
|
||||
|
||||
<lifecycle>
|
||||
<phase-listener>org.springframework.webflow.samples.booking.util.DebuggingPhaseListener</phase-listener>
|
||||
<phase-listener>org.springframework.webflow.executor.jsf.FlowPhaseListener</phase-listener>
|
||||
<phase-listener>org.springframework.faces.webflow.FlowPhaseListener</phase-listener>
|
||||
</lifecycle>
|
||||
|
||||
<managed-bean>
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
<filter>
|
||||
<filter-name>Flow System Cleanup Filter</filter-name>
|
||||
<filter-class>
|
||||
org.springframework.webflow.executor.jsf.FlowSystemCleanupFilter
|
||||
org.springframework.faces.webflow.FlowSystemCleanupFilter
|
||||
</filter-class>
|
||||
</filter>
|
||||
|
||||
|
||||
@@ -47,7 +47,7 @@
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<bean id="jsfExpressionParser" class="org.springframework.webflow.executor.jsf.Jsf12ELExpressionParser">
|
||||
<bean id="jsfExpressionParser" class="org.springframework.faces.el.Jsf12ELExpressionParser">
|
||||
<constructor-arg >
|
||||
<bean class="org.jboss.el.ExpressionFactoryImpl"/>
|
||||
</constructor-arg>
|
||||
|
||||
@@ -156,7 +156,10 @@ input[type="submit"], input[type="button"] {
|
||||
font-size: small;
|
||||
color: #8B7869;
|
||||
line-height: 150%;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
#sidebar li {
|
||||
font-size: small;
|
||||
@@ -177,7 +180,7 @@ input[type="submit"], input[type="button"] {
|
||||
#content .section {
|
||||
float: left;
|
||||
width: 518px;
|
||||
padding: 15px 15px 0 3px;
|
||||
padding: 15px 15px 0 10px;
|
||||
}
|
||||
#content .section h1 {
|
||||
font-family: "Trebuchet MS", Arial, sans-serif;
|
||||
@@ -212,7 +215,7 @@ input[type="submit"], input[type="button"] {
|
||||
border-left: 1px solid #E4DBD5;
|
||||
padding: 4px;
|
||||
border-bottom: 1px solid #D2C9C4;
|
||||
font-size: small;
|
||||
font-size: 8pt;
|
||||
}
|
||||
#content dt {
|
||||
font-weight: bold;
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">Created with Spring, Spring Web Flow, MyFaces, and Facelets</div>
|
||||
<div id="footer">Created with Spring, Spring Web Flow, Spring Faces, MyFaces, and Facelets</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -34,7 +34,7 @@
|
||||
<ui:insert name="content"/>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">Created with Spring, Spring Web Flow, MyFaces, and Facelets</div>
|
||||
<div id="footer">Created with Spring, Spring Web Flow, Spring Faces, MyFaces, and Facelets</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,5 @@
|
||||
#Thu Aug 09 13:12:30 EDT 2007
|
||||
eclipse.preferences.version=1
|
||||
instance/org.eclipse.core.net/org.eclipse.core.net.hasMigrated=true
|
||||
org.eclipse.jpt.core.discoverAnnotatedClasses=true
|
||||
org.eclipse.jpt.core.platform=generic
|
||||
@@ -5,11 +5,11 @@
|
||||
|
||||
<faces-config>
|
||||
<application>
|
||||
<navigation-handler>org.springframework.webflow.executor.jsf.FlowNavigationHandler</navigation-handler>
|
||||
<variable-resolver>org.springframework.webflow.executor.jsf.DelegatingFlowVariableResolver</variable-resolver>
|
||||
<navigation-handler>org.springframework.faces.webflow.FlowNavigationHandler</navigation-handler>
|
||||
<variable-resolver>org.springframework.f.el.DelegatingFlowVariableResolver</variable-resolver>
|
||||
</application>
|
||||
|
||||
<lifecycle>
|
||||
<phase-listener>org.springframework.webflow.executor.jsf.FlowPhaseListener</phase-listener>
|
||||
<phase-listener>org.springframework.faces.webflow.FlowPhaseListener</phase-listener>
|
||||
</lifecycle>
|
||||
</faces-config>
|
||||
@@ -26,7 +26,7 @@
|
||||
<!-- Guarantees that under all JSF exit conditions, the flow context will be cleaned up -->
|
||||
<filter>
|
||||
<filter-name>Flow System Cleanup Filter</filter-name>
|
||||
<filter-class>org.springframework.webflow.executor.jsf.FlowSystemCleanupFilter</filter-class>
|
||||
<filter-class>org.springframework.faces.webflow.FlowSystemCleanupFilter</filter-class>
|
||||
</filter>
|
||||
|
||||
<!-- Filters all request to *.faces to the Flow System Cleanup Filter for guarenteed cleanup -->
|
||||
|
||||
Reference in New Issue
Block a user