<command name="signupSubmit">
<controller class="controlleurs.SignupSubmit"/>
<view name="success" type="redirect" path="edit.m"/>
<view name="error" path="signup.jsp">
<transform path="trimOutside.jsp"/>
</view>
</command>
<command name="edit">
<controller class="controlleurs.Edit"/>
<view ref="loginRequired"/>
<view name="success" path="edit.jsp">
<transform path="trimInside.jsp"/>
</view>
</command>
<command name="editSubmit">
<controller class="controlleurs.EditSubmit"/>
<view ref="loginRequired"/>
<view name="success" type="redirect" path="friends.m"/>
</command>
<command name="addFriend">
<controller class="controlleurs.EditFriend"/>
<view ref="loginRequired"/>
<view name="success" type="redirect" path="friends.m"/>
</command>
<command name="changePassword">
<controller class="controlleurs.ChangePassword"/>
<view ref="loginRequired"/>
<view name="success" path="changePassword.jsp">
<transform path="trimInside.jsp"/>
</view>
</command>
<command name="changePasswordSubmit">
<controller class="controlleurs.ChangePasswordSubmit"/>
<view ref="loginRequired"/>
<view name="success" type="redirect" path="friends.m"/>
<view name="error" path="changePassword.jsp">
<transform path="trimInside.jsp"/>
</view>
</command>
<command name="logout">
<controller class="controlleurs.Logout"/>
<view ref="loginRequired"/>
<view name="success" type="redirect" path="welcome.m"/>
</command>
<command name="friends">
<controller class="controlleurs.Friends"/>
<view ref="loginRequired"/>
<view name="success" path="friends.jsp">
<transform path="trimInside.jsp"/>
</view>
</command>
</commands>