Author: craigmcc
Date: Fri Sep 1 19:57:25 2006
New Revision: 439525
URL: http://svn.apache.org/viewvc?rev=439525&view=rev
Log:
Per discussion on the dev list, make dialog and state names omit
embedded spaces.
Modified:
shale/framework/trunk/shale-apps/shale-usecases/src/main/webapp/WEB-INF/dialog-config.xml
Modified:
shale/framework/trunk/shale-apps/shale-usecases/src/main/webapp/WEB-INF/dialog-config.xml
URL:
http://svn.apache.org/viewvc/shale/framework/trunk/shale-apps/shale-usecases/src/main/webapp/WEB-INF/dialog-config.xml?rev=439525&r1=439524&r2=439525&view=diff
==============================================================================
---
shale/framework/trunk/shale-apps/shale-usecases/src/main/webapp/WEB-INF/dialog-config.xml
(original)
+++
shale/framework/trunk/shale-apps/shale-usecases/src/main/webapp/WEB-INF/dialog-config.xml
Fri Sep 1 19:57:25 2006
@@ -34,29 +34,29 @@
<!-- Log On / Create Profile Dialog -->
- <dialog name="Log On"
- start="Check Cookie">
+ <dialog name="LogOn"
+ start="CheckCookie">
- <action name="Check Cookie"
+ <action name="CheckCookie"
method="#{profile$logon.check}">
<transition outcome="authenticated"
target="Exit"/>
<transition outcome="unauthenticated"
- target="Logon Form"/>
+ target="LogonForm"/>
</action>
- <view name="Logon Form"
+ <view name="LogonForm"
viewId="/profile/logon.jsp">
<transition outcome="authenticated"
target="Exit"/>
<transition outcome="create"
- target="Create Profile"/>
+ target="CreateProfile"/>
<transition outcome="cancel"
target="Exit"/>
</view>
- <subdialog name="Create Profile"
- dialogName="Edit Profile">
+ <subdialog name="CreateProfile"
+ dialogName="EditProfile">
<transition outcome="next"
target="Exit"/>
<transition outcome="success"
@@ -70,7 +70,7 @@
<!-- Edit Profile Dialog -->
- <dialog name="Edit Profile"
+ <dialog name="EditProfile"
start="Setup">
<!-- Global transitioh definitions -->
@@ -85,26 +85,26 @@
target="Page 1"/>
</action>
- <view name="Page 1"
+ <view name="Page1"
viewId="/profile/profile1.jsp">
<transition outcome="next"
- target="Page 2"/>
+ target="Page2"/>
</view>
- <view name="Page 2"
+ <view name="Page2"
viewId="/profile/profile2.jsp">
<transition outcome="next"
- target="Page 3"/>
+ target="Page3"/>
<transition outcome="previous"
- target="Page 1"/>
+ target="Page1"/>
</view>
- <view name="Page 3"
+ <view name="Page3"
viewId="/profile/profile3.jsp">
<transition outcome="next"
target="Exit"/>
<transition outcome="previous"
- target="Page 2"/>
+ target="Page2"/>
</view>
<action name="Cancel"
@@ -116,11 +116,11 @@
<action name="Finish"
method="#{profile$edit.finish}">
<transition outcome="password"
- target="Page 1"/>
+ target="Page1"/>
<transition outcome="success"
target="Exit"/>
<transition outcome="username"
- target="Page 1"/>
+ target="Page1"/>
</action>
<end name="Exit"