##// END OF EJS Templates
Added user status criteria in Redmine.pm...
Added user status criteria in Redmine.pm git-svn-id: http://redmine.rubyforge.org/svn/trunk@930 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r911:c21ee95ade20
r917:f2a12d9eb5ae
Show More
index.rhtml
30 lines | 967 B | 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">
<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
* Fixed: Error when displaying the issue list if a float custom field is marked as 'used as filter'...
r908 <%= auto_discovery_link_tag(:atom, {:controller => 'news', :action => 'index', :key => User.current.rss_key, :format => 'atom'}, {:title => l(:label_news_latest)}) %>
Jean-Philippe Lang
Added feeds auto discovery links on projects/show (patch by Nicolas Chuche)....
r641 <% end %>