[CMF-checkins] CVS: CMF/CMFDefault/skins/zpt_generic - logged_in.pt:1.6.14.1 login_form.pt:1.5.14.1

Yvo Schubbe schubbe@web.de
Fri, 13 Jun 2003 13:11:55 -0400


Update of /cvs-repository/CMF/CMFDefault/skins/zpt_generic
In directory cvs.zope.org:/tmp/cvs-serv24223/CMFDefault/skins/zpt_generic

Modified Files:
      Tag: CMF-1_4-branch
	logged_in.pt login_form.pt 
Log Message:
- made 'never' a string
- cleanup

=== CMF/CMFDefault/skins/zpt_generic/logged_in.pt 1.6 => 1.6.14.1 ===
--- CMF/CMFDefault/skins/zpt_generic/logged_in.pt:1.6	Thu Mar  6 05:31:02 2003
+++ CMF/CMFDefault/skins/zpt_generic/logged_in.pt	Fri Jun 13 13:11:55 2003
@@ -1,8 +1,6 @@
-<div tal:condition="exists: here/portal_skins | nothing">
-  <div tal:condition="here/portal_skins/updateSkinCookie | nothing"
-        tal:define="dummy here/setupCurrentSkin">
-  </div>
-</div>
+<tal:block tal:condition="here/portal_skins/updateSkinCookie | nothing"
+           tal:define="dummy here/setupCurrentSkin" />
+
 <html xmlns:tal="http://xml.zope.org/namespaces/tal"
       xmlns:metal="http://xml.zope.org/namespaces/metal"
       metal:use-macro="here/main_template/macros/master">
@@ -16,7 +14,7 @@
                   isAnon mtool/isAnonymousUser|nothing;
                   member mtool/getAuthenticatedMember;
                   now here/ZopeTime;
-                  never python: here.ZopeTime( '2000/01/01' );
+                  never string:2000/01/01;
                  "
  >
 
@@ -43,7 +41,6 @@
                     member.getProperty( 'login_time', None ) == never
                                        and p_props.validate_email )">
 
-
    <div tal:condition="first_time">
     <div tal:define="dum_reg python:member.setProperties(
                                                 last_login_time=now,
@@ -53,7 +50,7 @@
 
     <p class="Desktop" i18n:translate="">
        This is the first time that you've logged in to
-       <span replace="p_props/title" i18n:name="portal_title">Here</span>.
+       <span tal:replace="p_props/title" i18n:name="portal_title">Here</span>.
        Before you start exploring you need to change your original password.
        This will ensure that the password we sent you via email cannot be
        used in a malicious manner.</p>


=== CMF/CMFDefault/skins/zpt_generic/login_form.pt 1.5 => 1.5.14.1 ===
--- CMF/CMFDefault/skins/zpt_generic/login_form.pt:1.5	Thu Mar  6 05:31:26 2003
+++ CMF/CMFDefault/skins/zpt_generic/login_form.pt	Fri Jun 13 13:11:55 2003
@@ -23,7 +23,7 @@
   <strong i18n:translate="">Name</strong>
   </td>
   <td align="left" valign="top">
-  <input type="TEXT" name="__ac_name" size="20" value=""
+  <input type="text" name="__ac_name" size="20" value=""
          tal:attributes="value python: request.get('__ac_name') or ''" />
   </td>
 </tr>
@@ -32,7 +32,7 @@
   <strong i18n:translate="">Password</strong>
   </td>
   <td align="left" valign="top">
-  <input type="PASSWORD" name="__ac_password" size="20" />
+  <input type="password" name="__ac_password" size="20" />
   </td>
 </tr>