##// END OF EJS Templates
remove trailing white-spaces from app/views/welcome/index.html.erb...
remove trailing white-spaces from app/views/welcome/index.html.erb git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7337 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7217:9555f740611a
r7217:9555f740611a
Show More
index.html.erb
40 lines | 1.4 KiB | text/plain | TextLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <h2><%= l(:label_home) %></h2>
<div class="splitcontentleft">
Jean-Philippe Lang
Application welcome text is now textilized....
r646 <%= textilizable Setting.welcome_text %>
Jean-Philippe Lang
Moved ProjectsController#list_news to NewsController#index....
r875 <% if @news.any? %>
Jean-Philippe Lang
Removes large icons....
r3065 <div class="news box">
Toshi MARUYAMA
replace tabs to spaces at app/views/welcome/index.html.erb...
r7184 <h3><%=l(:label_news_latest)%></h3>
<%= render :partial => 'news/news', :collection => @news %>
<%= link_to l(:label_news_view_all), :controller => 'news' %>
Jean-Philippe Lang
Moved ProjectsController#list_news to NewsController#index....
r875 </div>
<% end %>
Eric Davis
Added some new view hooks to the welcome page....
r2595 <%= call_hook(:view_welcome_index_left, :projects => @projects) %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
<div class="splitcontentright">
Jean-Philippe Lang
Hide the 'Latest projects' box on the welcome screen if there are no projects (#1156)....
r1385 <% if @projects.any? %>
Toshi MARUYAMA
replace tabs to spaces at app/views/welcome/index.html.erb...
r7184 <div class="projects box">
<h3><%=l(:label_project_latest)%></h3>
<ul>
<% for project in @projects %>
<% @project = project %>
<li>
<%= link_to_project project %> (<%= format_time(project.created_on) %>)
<%= textilizable project.short_description, :project => project %>
</li>
<% end %>
Eric Davis
Set @project so macros will work on the welcome and project list. #5781...
r3710 <% @project = nil %>
Toshi MARUYAMA
replace tabs to spaces at app/views/welcome/index.html.erb...
r7184 </ul>
</div>
<% end %>
Eric Davis
Added some new view hooks to the welcome page....
r2595 <%= call_hook(:view_welcome_index_right, :projects => @projects) %>
Toshi MARUYAMA
remove trailing white-spaces from app/views/welcome/index.html.erb...
r7217 </div>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
<% content_for :header_tags do %>
Jean-Philippe Lang
Adds css for syntax highlight on welcome page (#8512)....
r6050 <%= stylesheet_link_tag 'scm' %>
Jean-Philippe Lang
Activity enhancements:...
r1213 <%= auto_discovery_link_tag(:atom, {:controller => 'news', :action => 'index', :key => User.current.rss_key, :format => 'atom'},
:title => "#{Setting.app_title}: #{l(:label_news_latest)}") %>
Eric Davis
Refactor: extract ProjectsController#activity to a new Activities controller....
r3933 <%= auto_discovery_link_tag(:atom, {:controller => 'activities', :action => 'index', :key => User.current.rss_key, :format => 'atom'},
Jean-Philippe Lang
Activity enhancements:...
r1213 :title => "#{Setting.app_title}: #{l(:label_activity)}") %>
Jean-Philippe Lang
Added feeds auto discovery links on projects/show (patch by Nicolas Chuche)....
r641 <% end %>