##// END OF EJS Templates
* Referencing issues in commit messages: enter * in 'Referencing keywords' to link any issue id without using keywords....
* Referencing issues in commit messages: enter * in 'Referencing keywords' to link any issue id without using keywords. * Updated Polish translation (Mariusz Olejnik). git-svn-id: http://redmine.rubyforge.org/svn/trunk@918 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r875:ad68a82be19f
r905:99f9aea80a2b
Show More
index.rhtml
31 lines | 1.1 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
added svn:eol-style native property on /app files...
r330 <div class="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
Moved ProjectsController#list_news to NewsController#index....
r875 <%= link_to l(:label_issue_view_all), :controller => 'news' %>
</div>
<% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
<div class="splitcontentright">
<div class="box">
<h3 class="icon22 icon22-projects"><%=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
Application layout refactored....
r736 <%= link_to project.name, :controller => 'projects', :action => 'show', :id => project %> (<%= format_time(project.created_on) %>)
Jean-Philippe Lang
Textilized project descriptions on project list and home page....
r645 <%= textilizable project.description, :project => project %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </li>
<% end %>
</ul>
</div>
</div>
<% content_for :header_tags do %>
Jean-Philippe Lang
Added feeds auto discovery links on projects/show (patch by Nicolas Chuche)....
r641 <%= auto_discovery_link_tag(:rss, {:controller => 'feeds', :action => 'news', :key => @key}, {:title => l(:label_news_latest)}) %>
<%= auto_discovery_link_tag(:atom, {:controller => 'feeds', :action => 'news', :key => @key, :format => 'atom'}, {:title => l(:label_news_latest)}) %>
<% end %>