[jboss-cvs] jboss-seam/examples/wiki/view/themes/sfwkorg/mailtemplates ...

Christian Bauer christian at hibernate.org
Wed Jan 2 00:36:17 EST 2008


  User: cbauer  
  Date: 08/01/02 00:36:17

  Modified:    examples/wiki/view/themes/sfwkorg/mailtemplates  
                        confirmationRegistration.xhtml
  Added:       examples/wiki/view/themes/sfwkorg/mailtemplates  
                        resetPassword.xhtml
  Log:
  JBSEAM-2421 - Forgot password reset feature
  
  Revision  Changes    Path
  1.4       +1 -0      jboss-seam/examples/wiki/view/themes/sfwkorg/mailtemplates/confirmationRegistration.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: confirmationRegistration.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/view/themes/sfwkorg/mailtemplates/confirmationRegistration.xhtml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- confirmationRegistration.xhtml	30 Dec 2007 02:33:27 -0000	1.3
  +++ confirmationRegistration.xhtml	2 Jan 2008 05:36:17 -0000	1.4
  @@ -4,6 +4,7 @@
               xmlns:f="http://java.sun.com/jsf/core">
       <m:header name="X-Sent-From" value="SeamFramework.org" />
       <m:from name="SeamFramework.org" address="do-not-reply at jboss.com" />
  +    <m:header name="Precedence" value="list"/>
       <m:to name="#{userHome.instance.fullname}">#{userHome.instance.email}</m:to>
       <m:subject>[SeamFramework.org] Registration Confirmation</m:subject>
       <m:body>
  
  
  
  1.1      date: 2008/01/02 05:36:17;  author: cbauer;  state: Exp;jboss-seam/examples/wiki/view/themes/sfwkorg/mailtemplates/resetPassword.xhtml
  
  Index: resetPassword.xhtml
  ===================================================================
  <m:message xmlns="http://www.w3.org/1999/xhtml"
              xmlns:m="http://jboss.com/products/seam/mail"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:f="http://java.sun.com/jsf/core">
      <m:header name="X-Sent-From" value="SeamFramework.org" />
      <m:header name="Precedence" value="list"/>
      <m:from name="SeamFramework.org" address="do-not-reply at jboss.com" />
      <m:to name="#{resetPasswordOfUser.fullname}">#{resetPasswordOfUser.email}</m:to>
      <m:subject>[SeamFramework.org] Password Reset Request</m:subject>
      <m:body>
          <html>
              <body>
              <p>Hello #{resetPasswordOfUser.firstname},</p>
  
              <p>
              you (or someone else) requested a password reset on the Seam community website. You need to click the following link to confirm the
              validity of your e-mail address and to enter a new password:</p>
  
              <h:outputLink value="#{preferences.get('Wiki').baseUrl}/resetPassword.seam?activationCode=#{resetPasswordOfUser.activationCode}">Click this link to reset the password of the account '#{resetPasswordOfUser.username}'</h:outputLink>
  
              <p>
                  If you did not request a password reset, or if you do not reset your password, your account will still be active
                  with your old password.
              </p>
              </body>
          </html>
          <f:facet name="alternative">
              <h:outputText>
  Hello #{resetPasswordOfUser.fullname},
  
  you (or someone else) requested a password reset on the Seam community website. You need to use the following link to confirm the
  validity of your e-mail address and to enter a new password for the account '#{resetPasswordOfUser.username}':
  
  #{preferences.get('Wiki').baseUrl}/resetPassword.seam?activationCode=#{resetPasswordOfUser.activationCode}
  
  If you did not request a password reset, or if you do not reset your password, your account will still
  be active with your old password.
              </h:outputText>
          </f:facet>
      </m:body>
  </m:message>
  
  
  



More information about the jboss-cvs-commits mailing list