##// END OF EJS Templates
Merged LdapAuthSourceController into AuthSourceController....
Merged LdapAuthSourceController into AuthSourceController. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9232 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7225:84aca0cd61ae
r9112:bd47af098fef
Show More
_block.html.erb
14 lines | 479 B | text/plain | TextLexer
/ app / views / my / _block.html.erb
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"
Toshi MARUYAMA
remove trailing white-spaces from app/views/my/_block.html.erb...
r7132 %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
Toshi MARUYAMA
remove trailing white-spaces from app/views/my/_block.html.erb...
r7132
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <div class="handle">
Toshi MARUYAMA
replace tabs to spaces at app/views/my/_block.html.erb...
r7225 <%= render :partial => "my/blocks/#{block_name}", :locals => { :user => user } %>
</div>
Toshi MARUYAMA
remove trailing white-spaces from app/views/my/_block.html.erb...
r7132 </div>