##// END OF EJS Templates
Treat Calendar and Gantt pages as separate modules. #6153...
Treat Calendar and Gantt pages as separate modules. #6153 This will let the Issue Tracking, Gantt, and Calendar modules be enabled or disabled as needed. A database migration will enable the Gantt and Calendar for all existing projects that have Issue Tracking enabled. Contributed by Adam Soltys git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4013 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3810:a1b607480abc
r3899:fc9b984cc147
Show More
index.rhtml
39 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 %>
Eric Davis
Set @project so macros will work on the welcome and project list. #5781...
r3710 <% @project = project %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <li>
Jean-Baptiste Barth
Refactor: added link_to_project helper to handle links to projects...
r3810 <%= link_to_project 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 %>
Eric Davis
Set @project so macros will work on the welcome and project list. #5781...
r3710 <% @project = nil %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </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 %>