##// END OF EJS Templates
scm: git: unit model latin-1 path encoding test passes on Japanese Windows (#5251)....
scm: git: unit model 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@5072 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4100:79e30e7087d7
r4952:b235e3694628
Show More
edit.rhtml
18 lines | 733 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h2><%=l(:label_news)%></h2>
Jean-Philippe Lang
Initial commit...
r2
Eric Davis
Refactor: convert News to a REST resource...
r4100 <% labelled_tabular_form_for :news, @news, :url => news_path(@news),
Eric Davis
Refactor: split NewsController#edit into #edit and #update...
r4054 :html => { :id => 'news-form', :method => :put } do |f| %>
Jean-Philippe Lang
tables and forms redesign,...
r19 <%= render :partial => 'form', :locals => { :f => f } %>
<%= submit_tag l(:button_save) %>
Jean-Philippe Lang
ProjectsController#add_news moved to NewsController#new....
r1097 <%= link_to_remote l(:label_preview),
Eric Davis
Refactor: convert News to a REST resource...
r4100 { :url => preview_news_path(:project_id => @project),
Eric Davis
Refactor: move NewsController#preview to PreviewsController#news...
r4060 :method => 'get',
Jean-Philippe Lang
ProjectsController#add_news moved to NewsController#new....
r1097 :update => 'preview',
:with => "Form.serialize('news-form')"
}, :accesskey => accesskey(:preview) %>
<% end %>
<div id="preview" class="wiki"></div>
Eric Davis
Add scm.css to news pages to allow proper syntax highlighting. #6270...
r3993
<% content_for :header_tags do %>
<%= stylesheet_link_tag 'scm' %>
<% end %>