##// 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:

r2464:5b96d1b083a8
r4952:b235e3694628
Show More
_block.rhtml
13 lines | 485 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Allow underscore in block partial name (#2840)....
r2464 <div id="block_<%= block_name.dasherize %>" class="mypage-box">
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
<div style="float:right;margin-right:16px;z-index:500;">
<%= link_to_remote "", {
:url => { :action => "remove_block", :block => block_name },
Jean-Philippe Lang
Allow underscore in block partial name (#2840)....
r2464 :complete => "removeBlock('block_#{block_name.dasherize}')" },
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 :class => "close-icon"
%>
</div>
<div class="handle">
<%= render :partial => "my/blocks/#{block_name}", :locals => { :user => user } %>
</div>
Jean-Philippe Lang
- new controller "myController"...
r60 </div>