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

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


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

  Modified:    examples/wiki/view/themes/default/mailtemplates  
                        confirmationRegistration.xhtml
  Added:       examples/wiki/view/themes/default/mailtemplates  
                        resetPassword.xhtml
  Log:
  JBSEAM-2421 - Forgot password reset feature
  
  Revision  Changes    Path
  1.7       +1 -0      jboss-seam/examples/wiki/view/themes/default/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/default/mailtemplates/confirmationRegistration.xhtml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -b -r1.6 -r1.7
  --- confirmationRegistration.xhtml	30 Dec 2007 02:33:24 -0000	1.6
  +++ confirmationRegistration.xhtml	2 Jan 2008 05:36:16 -0000	1.7
  @@ -3,6 +3,7 @@
               xmlns:h="http://java.sun.com/jsf/html"
               xmlns:f="http://java.sun.com/jsf/core">
       <m:header name="X-Sent-From" value="JBoss Seam" />
  +    <m:header name="Precedence" value="list"/>
       <m:from name="Seam Wiki" address="do-not-reply at jboss.com" />
       <m:to name="#{userHome.instance.fullname}">#{userHome.instance.email}</m:to>
       <m:subject>[LaceWiki] Registration Confirmation</m:subject>
  
  
  
  1.1      date: 2008/01/02 05:36:16;  author: cbauer;  state: Exp;jboss-seam/examples/wiki/view/themes/default/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="JBoss Seam" />
      <m:header name="Precedence" value="list"/>
      <m:from name="Seam Wiki" address="do-not-reply at jboss.com" />
      <m:to name="#{resetPasswordOfUser.fullname}">#{resetPasswordOfUser.email}</m:to>
      <m:subject>[LaceWiki] Password Reset Request</m:subject>
      <m:body>
          <html>
              <body>
              <p>Hello #{resetPasswordOfUser.fullname},</p>
  
              <p>
              you (or someone else) requested a password reset on LaceWiki. 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>
  
              <p>
              Regards,<br/>
              LaceWiki
              </p>
      </body>
          </html>
          <f:facet name="alternative">
              <h:outputText>
  Hello #{resetPasswordOfUser.fullname},
  
  you (or someone else) requested a password reset on LaceWiki. 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.
  
  Regards,
  LaceWiki
              </h:outputText>
          </f:facet>
      </m:body>
  </m:message>
  
  
  



More information about the jboss-cvs-commits mailing list