Il faut maintenant utiliser getProperty pour accéder aux propriété d'un utilisateur.
authorBenoît Pin <benoit.pin@gmail.com>
Wed, 3 Jul 2013 21:50:38 +0000 (23:50 +0200)
committerBenoît Pin <benoit.pin@gmail.com>
Wed, 3 Jul 2013 21:50:38 +0000 (23:50 +0200)
skins/custom_generic/personalize_form.pt

index f4b2b8e..6836348 100755 (executable)
               <tr>
                 <th i18n:translate="">Name</th>
                 <td>
-                  <input type="text" name="name" value="" tal:attributes="value member/name|nothing" />
+                  <input type="text" name="name" value="" tal:attributes="value python:member.getProperty('name', None)" />
                 </td>
               </tr>
               <tr>
                 <th i18n:translate="">Given Name</th>
                 <td>
-                  <input type="text" name="given_name" tal:attributes="value member/given_name|nothing" />
+                  <input type="text" name="given_name" tal:attributes="value python:member.getProperty('given_name', None)" />
                 </td>
               </tr>
               <tr>
                 <th i18n:translate="">Email address</th>
                 <td>
-                  <input type="text" name="email" value="" tal:attributes="value member/email|nothing" />
+                  <input type="text" name="email" value="" tal:attributes="value python:member.getProperty('email', None)" />
                 </td>
               </tr>
-              <tr>
-                <th i18n:translate="">Text editor</th>
-                <td>
-                  <select name="wysiwyg_editor" size="1">
-                    <option value="plain text" tal:repeat="editor python:portal_object.getProperty('available_editors')" tal:attributes="value editor ; selected python:member.getProperty('wysiwyg_editor', '') == editor" tal:content="editor" i18n:translate="">plain</option>
-                  </select>
-                </td>
-              </tr>
-              <!--
-              <tr>
-                <th valign="top" i18n:translate="">Photos width</th>
-                <td>
-                  <input type="text" name="photo_width" size="3" tal:attributes="value member/photo_width|nothing" />&nbsp;pixels
-                </td>
-              </tr>
-              <tr>
-                <th valign="top" i18n:translate="">Listed status</th>
-                <td tal:define="listed member/listed|nothing">
-                  <input id="cb_listed" type="radio" name="listed" value="on" tal:attributes="checked listed" /><label for="cb_listed" i18n:translate="">Listed</label>
-                  <dl class="FieldHelp">
-                    <dd i18n:translate="">You will show up on the public membership roster.</dd>
-                  </dl>
-                  <input id="cb_unlisted" type="radio" name="listed" value="" tal:attributes="checked python:( hasattr(member,'listed')
-                                  and not(member.getProperty( 'listed' ) ) )" /><label for="cb_unlisted" i18n:translate="">Unlisted</label>
-                  <dl class="FieldHelp">
-                    <dd i18n:translate="">You will <i>not</i> show up on the public membership roster. Your Member folder will still be publicly accessible unless you change its security settings.</dd>
-                  </dl>
-                </td>
-              </tr>
-              <tr tal:define="s_tool here/portal_skins" tal:condition="python:len(s_tool.getSkinSelections()) > 1">
-                <th i18n:translate="">Skin</th>
-                <td tal:define="current request/portal_skin|nothing;">
-                  <select name="portal_skin">
-                    <option value="" tal:attributes="value skin;
-                                selected python:current == skin" tal:define="skins python:s_tool.getSkinSelections()" tal:content="skin" tal:repeat="skin skins">skin</option>
-                  </select>
-                </td>
-              </tr>
-              -->
               <tr>
                 <td><br /></td>
                 <td>