##// END OF EJS Templates
Adds helpers for setting field tags....
Adds helpers for setting field tags. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3198 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3065:91a493e2c7ca
r3084:6ccbcfb589b8
Show More
index.rhtml
37 lines | 1.4 KiB | text/html+ruby | RhtmlLexer
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">
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h3><%=l(:label_news_latest)%></h3>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= render :partial => 'news/news', :collection => @news %>
Jean-Philippe Lang
* Updated Russian translation (iGor kMeta)...
r911 <%= 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? %>
Jean-Philippe Lang
Removes large icons....
r3065 <div class="projects box">
<h3><%=l(:label_project_latest)%></h3>
Jean-Philippe Lang
Initial commit...
r2 <ul>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% for project in @projects %>
<li>
Jean-Philippe Lang
Escapes HTML tags....
r1598 <%= link_to h(project.name), :controller => 'projects', :action => 'show', :id => project %> (<%= format_time(project.created_on) %>)
Jean-Philippe Lang
Unlimited and optional project description. The project list will show truncated descriptions only (the first fews lines)....
r1074 <%= textilizable project.short_description, :project => project %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </li>
<% end %>
</ul>
Jean-Philippe Lang
Hide the 'Latest projects' box on the welcome screen if there are no projects (#1156)....
r1385 </div>
<% end %>
Eric Davis
Added some new view hooks to the welcome page....
r2595 <%= call_hook(:view_welcome_index_right, :projects => @projects) %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
<% content_for :header_tags do %>
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)}") %>
<%= auto_discovery_link_tag(:atom, {:controller => 'projects', :action => 'activity', :key => User.current.rss_key, :format => 'atom'},
:title => "#{Setting.app_title}: #{l(:label_activity)}") %>
Jean-Philippe Lang
Added feeds auto discovery links on projects/show (patch by Nicolas Chuche)....
r641 <% end %>