##// END OF EJS Templates
scm: git: unit adapter latin-1 path encoding test passes on Japanese Windows (#5251)....
scm: git: unit adapter latin-1 path encoding test passes on Japanese Windows (#5251). Ruby uses ANSI api to fork a process on Windows. Japanese Shift_JIS and Traditional Chinese Big5 have 0x5c(backslash) problem and these are incompatible with ASCII. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5071 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4135:71dd4b8a7db0
r4951:74f44a5b6a0b
Show More
_general.rhtml
7 lines | 421 B | text/html+ruby | RhtmlLexer
Eric Davis
Refactor: split UsersController#edit into #edit and #update...
r4116 <% labelled_tabular_form_for :user, @user, :url => { :controller => 'users', :action => "update", :tab => nil }, :html => { :method => :put, :class => nil } do |f| %>
Jean-Philippe Lang
Move checkbox for "Send account information to the user" to be clicked before the "Create" button (#4193)....
r2923 <%= render :partial => 'form', :locals => { :f => f } %>
<% if @user.active? -%>
Jean-Baptiste Barth
Fixed bad markup in users/general partial...
r4135 <p><label><%= check_box_tag 'send_information', 1, true %> <%= l(:label_send_information) %></label></p>
Jean-Philippe Lang
Move checkbox for "Send account information to the user" to be clicked before the "Create" button (#4193)....
r2923 <% end -%>
<p><%= submit_tag l(:button_save) %></p>
Jean-Philippe Lang
Split user edit screen into tabs....
r1389 <% end %>