From seam-commits at lists.jboss.org Wed Jun 16 17:06:01 2010 Content-Type: multipart/mixed; boundary="===============2082919371044324189==" MIME-Version: 1.0 From: seam-commits at lists.jboss.org To: seam-commits at lists.jboss.org Subject: [seam-commits] Seam SVN: r13194 - in examples/trunk/booking-simplified/src/main: webapp/WEB-INF and 1 other directories. Date: Wed, 16 Jun 2010 17:06:01 -0400 Message-ID: <201006162106.o5GL61xj032177@svn01.web.mwc.hst.phx2.redhat.com> --===============2082919371044324189== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Author: lincolnthree Date: 2010-06-16 17:06:00 -0400 (Wed, 16 Jun 2010) New Revision: 13194 Modified: examples/trunk/booking-simplified/src/main/java/org/jboss/seam/examples/= booking/account/PasswordConfirmValidator.java examples/trunk/booking-simplified/src/main/webapp/WEB-INF/layout/templat= e.xhtml examples/trunk/booking-simplified/src/main/webapp/WEB-INF/pretty-config.= xml Log: Stateless logout and removed CID from permalinks via pretty-link to get aro= und Weld bug Modified: examples/trunk/booking-simplified/src/main/java/org/jboss/seam/ex= amples/booking/account/PasswordConfirmValidator.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- examples/trunk/booking-simplified/src/main/java/org/jboss/seam/examples= /booking/account/PasswordConfirmValidator.java 2010-06-16 20:00:40 UTC (rev= 13193) +++ examples/trunk/booking-simplified/src/main/java/org/jboss/seam/examples= /booking/account/PasswordConfirmValidator.java 2010-06-16 21:06:00 UTC (rev= 13194) @@ -57,7 +57,7 @@ = public void validate(final FacesContext context, final UIComponent comp= , final Object components) throws ValidatorException { - if ((currentUser.getPassword() !=3D null) && currentUser.getPassword= ().equals(oldPassword)) + if ((currentUser.getPassword() !=3D null) && !currentUser.getPasswor= d().equals(oldPassword)) { throw new ValidatorException(new FacesMessage("Your original pass= word was incorrect.")); } Modified: examples/trunk/booking-simplified/src/main/webapp/WEB-INF/layout/= template.xhtml =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- examples/trunk/booking-simplified/src/main/webapp/WEB-INF/layout/templa= te.xhtml 2010-06-16 20:00:40 UTC (rev 13193) +++ examples/trunk/booking-simplified/src/main/webapp/WEB-INF/layout/templa= te.xhtml 2010-06-16 21:06:00 UTC (rev 13194) @@ -3,6 +3,7 @@ @@ -20,18 +21,18 @@
#{' '} - + Home #{' | '} #{' | '} - + Login #{' | '} - + Account #{' | '} - + Logout
Modified: examples/trunk/booking-simplified/src/main/webapp/WEB-INF/pretty-= config.xml =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- examples/trunk/booking-simplified/src/main/webapp/WEB-INF/pretty-config= .xml 2010-06-16 20:00:40 UTC (rev 13193) +++ examples/trunk/booking-simplified/src/main/webapp/WEB-INF/pretty-config= .xml 2010-06-16 21:06:00 UTC (rev 13194) @@ -4,11 +4,17 @@ xsi:schemaLocation=3D"http://ocpsoft.com/prettyfaces/2.0.4 http://ocpsoft.com/xml/ns/prettyfaces= /ocpsoft-pretty-faces-2.0.4.xsd"> = - + /home.seam = + + + /home.seam + #{identity.logout} + + = /search.seam @@ -29,13 +35,13 @@ /confirm.seam = - + /register.seam = - - + + /password.seam = --===============2082919371044324189==--