##// END OF EJS Templates
Reverting commit r1748. Some environments are not allowing the cached file to...
Reverting commit r1748. Some environments are not allowing the cached file to write to public, causing all JavaScript to fail. Javascripts are now cached into a single file for downloads in production mode. #1186 git-svn-id: http://redmine.rubyforge.org/svn/trunk@1771 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1598:9703f576d96c
r1770:8f3a04ce6906
Show More
index.rhtml
35 lines | 1.3 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
* 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 %>
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
added svn:eol-style native property on /app files...
r330 <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
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 %>
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 %>