- </td>
- </tr>
-
- <tr>
- <td class="fieldName" valign="top"><%= t 'user.account.profile description' %></td>
- <td><%= f.text_area :description, :rows => '5', :cols => '60' %></td>
- </tr>
-
- <tr>
- <td class="fieldName" valign="top"><%= t 'user.account.preferred languages' %></td>
- <td><%= f.text_field :languages %></td>
- </tr>
-
- <tr>
- <td class="fieldName" valign="top"><%= t 'user.account.preferred editor' %></td>
- <td><%= f.select :preferred_editor, [[t("editor.default", :name => t("editor.#{DEFAULT_EDITOR}.name")), 'default']] + Editors::ALL_EDITORS.collect { |e| [t("editor.#{e}.description"), e] } %></td>
- </tr>
-
- <tr>
- <td class="fieldName" valign="top">
- <%= t 'user.account.image' %>
- </td>
- <td valign="top">
- <% if @user.image.nil? %>
- <%= hidden_field_tag "image_action", "new" %>
- <%= t 'user.account.new image' %><br /><%= file_column_field "user", "image" %><br /><span class="minorNote"><%= t 'user.account.image size hint' %></span>
- <% else %>
- <table id="accountImage">
- <tr>
- <td rowspan="3" valign="top"><%= image_tag url_for_file_column(@user, "image"), :class => "user_image" %></td>
- <td><%= radio_button_tag "image_action", "keep", true %></td>
- <td><%= t 'user.account.keep image' %></td>
- </tr>
- <tr>
- <td><%= radio_button_tag "image_action", "delete" %></td>
- <td><%= t 'user.account.delete image' %></td>
- </tr>
- <tr>
- <td><%= radio_button_tag "image_action", "new" %></td>
- <td><%= t 'user.account.replace image' %><br /><%= file_column_field "user", "image", :onchange => "$('image_action_new').checked = true" %><br /><span class="minorNote"><%= t 'user.account.image size hint' %></span></td>
- </tr>
- </table>
+ </p>
+ </fieldset>
+
+ <fieldset class="form-row">
+ <label><%= t 'user.account.profile description' %></label>
+ <%= richtext_area :user, :description, :rows => '15', :cols => '80' %>
+ </fieldset>
+
+ <fieldset class="form-row">
+ <label><%= t 'user.account.preferred languages' %></label>
+ <%= f.text_field :languages %>
+ </fieldset>
+
+ <fieldset class="form-row">
+ <label><%= t 'user.account.preferred editor' %></label>
+ <%= f.select :preferred_editor, [[t("editor.default", :name => t("editor.#{DEFAULT_EDITOR}.name")), 'default']] + Editors::ALL_EDITORS.collect { |e| [t("editor.#{e}.description"), e] } %>
+ </fieldset>
+
+ <fieldset class="form-row">
+ <label><%= t 'user.account.image' %></label>
+ <div class="accountImage">
+ <%= user_image @user %>
+ <table class="accountImage-options">
+ <% if @user.image.file? %>
+ <fieldset class="form-row">
+ <%= radio_button_tag "image_action", "keep", !@user.image_use_gravatar %>
+ <%= t 'user.account.keep image' %>
+ </fieldset>
+ <% end %>
+ <% if @user.image.file? || @user.image_use_gravatar? %>
+ <fieldset class="form-row">
+ <%= radio_button_tag "image_action", "delete" %>
+ <%= t 'user.account.delete image' %>
+ </fieldset>
+ <% end %>
+ <% if @user.image.file? %>
+ <fieldset class="form-row">
+ <%= radio_button_tag "image_action", "new" %>
+ <%= t 'user.account.replace image' %><br /><%= f.file_field :image, :onchange => "$('#image_action_new').prop('checked', true)" %><br /><span class="form-help deemphasize"><%= t 'user.account.image size hint' %></span>
+ </fieldset>
+ <% else %>
+ <fieldset class="form-row">
+ <%= radio_button_tag "image_action", "new" %>
+ <%= t 'user.account.new image' %><br /><%= f.file_field :image, :onchange => "$('#image_action_new').prop('checked', true)" %><br /><span class="form-help deemphasize"><%= t 'user.account.image size hint' %></span>
+ </fieldset>
+ <% end %>
+ <fieldset class="form-row">
+ <%= radio_button_tag "image_action", "gravatar", @user.image_use_gravatar %>
+ <%= t 'user.account.gravatar.gravatar' %> <span class="form-help deemphasize">(<a href="<%= t 'user.account.gravatar.link' %>" target="_new"><%= t 'user.account.gravatar.link text' %></a>)</span>
+ </fieldset>
+ </table>
+ </div>
+ </fieldset>
+
+ <fieldset id="homerow" <% unless @user.home_lat and @user.home_lon %> class="nohome" <%end%> >
+ <p class="form-help"><%= t 'user.account.home location' %></p>
+ <p class="message form-help deemphasize"><%= t 'user.account.no home location' %></p>
+ <div class="location">
+ <label><%= t 'user.account.latitude' %></label>
+ <%= f.text_field :home_lat, :id => "home_lat" %>
+ <label><%= t 'user.account.longitude' %></label>
+ <%= f.text_field :home_lon, :id => "home_lon" %>
+ </div>
+ </fieldset>
+
+ <fieldset class="form-row">
+ <p><%= t 'user.account.update home location on click' %> <input type="checkbox" value="1" <% unless @user.home_lat and @user.home_lon %> checked="checked" <% end %> id="updatehome" /> </p>
+ <% content_for :head do %>
+ <%= javascript_include_tag "user" %>