##// END OF EJS Templates
Added 'reported by me' and 'assigned to me' issue feeds on 'My page'....
Added 'reported by me' and 'assigned to me' issue feeds on 'My page'. git-svn-id: http://redmine.rubyforge.org/svn/trunk@688 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r670:088563db3e00
r677:c6ac590d17b5
Show More
show.rhtml
71 lines | 3.7 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
added rss/atom feeds at project levels for:...
r336 <div class="contextual">
<%= link_to l(:label_feed_plural), {:action => 'feeds', :id => @project}, :class => 'icon icon-feed' %>
</div>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <h2><%=l(:label_overview)%></h2>
<div class="splitcontentleft">
Jean-Philippe Lang
Various changes on views. On project summary, members are now grouped by role and subprojects are listed inline....
r431 <%= textilizable @project.description %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <ul>
Jean-Philippe Lang
Fixed: 10342 Creation of Schema in Oracle...
r476 <% unless @project.homepage.blank? %><li><%=l(:field_homepage)%>: <%= auto_link @project.homepage %></li><% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <li><%=l(:field_created_on)%>: <%= format_date(@project.created_on) %></li>
Jean-Philippe Lang
Added parent project name (if it exists) on project list and project overview....
r401 <% unless @project.parent.nil? %>
<li><%=l(:field_parent)%>: <%= link_to @project.parent.name, :controller => 'projects', :action => 'show', :id => @project.parent %></li>
<% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% for custom_value in @custom_values %>
<% if !custom_value.value.empty? %>
<li><%= custom_value.custom_field.name%>: <%=h show_value(custom_value) %></li>
<% end %>
<% end %>
</ul>
<div class="box">
Jean-Philippe Lang
Fixed: "new issue" drop-down only visible by admin users....
r670 <div class="contextual"><% if authorize_for('projects', 'add_issue') %><%= l(:label_issue_new) %>: <%= new_issue_selector %><% end %></div>
Jean-Philippe Lang
admin menu modification...
r339 <h3 class="icon22 icon22-tracker"><%=l(:label_issue_tracking)%></h3>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <ul>
<% for tracker in @trackers %>
<li><%= link_to tracker.name, :controller => 'projects', :action => 'list_issues', :id => @project,
:set_filter => 1,
"tracker_id" => tracker.id %>:
<%= @open_issues_by_tracker[tracker] || 0 %> <%= lwr(:label_open_issues, @open_issues_by_tracker[tracker] || 0) %>
<%= l(:label_on) %> <%= @total_issues_by_tracker[tracker] || 0 %></li>
<% end %>
</ul>
<p class="textcenter"><small><%= link_to l(:label_issue_view_all), :controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 %></small></p>
Jean-Philippe Lang
Initial commit...
r2 </div>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
<div class="splitcontentright">
<div class="box">
<h3 class="icon22 icon22-users"><%=l(:label_member_plural)%></h3>
Jean-Philippe Lang
Various changes on views. On project summary, members are now grouped by role and subprojects are listed inline....
r431 <% @members_by_role.keys.sort.each do |role| %>
<%= role.name %>: <%= @members_by_role[role].collect(&:user).sort.collect{|u| link_to_user u}.join(", ") %><br />
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
</div>
Jean-Philippe Lang
Added the ability to archive projects:...
r546 <% if @subprojects.any? %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <div class="box">
<h3 class="icon22 icon22-projects"><%=l(:label_subproject_plural)%></h3>
Jean-Philippe Lang
Various changes on views. On project summary, members are now grouped by role and subprojects are listed inline....
r431 <%= @subprojects.collect{|p| link_to(p.name, :action => 'show', :id => p)}.join(", ") %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
<% end %>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <% if @news.any? && authorize_for('projects', 'list_news') %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <div class="box">
<h3><%=l(:label_news_latest)%></h3>
Jean-Philippe Lang
various modifications to prevent xss...
r96 <%= render :partial => 'news/news', :collection => @news %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <p class="textcenter"><small><%= link_to l(:label_news_view_all), :controller => 'projects', :action => 'list_news', :id => @project %></small></p>
</div>
Jean-Philippe Lang
News box on project/show is hidden if there is no news to display....
r448 <% end %>
Jean-Philippe Lang
Added feeds auto discovery links on projects/show (patch by Nicolas Chuche)....
r641 </div>
<% content_for :header_tags do %>
<%= auto_discovery_link_tag(:rss, {:controller => 'feeds', :action => 'issues', :project_id => @project, :key => @key}, {:title => l(:label_reported_issues)}) %>
<%= auto_discovery_link_tag(:atom, {:controller => 'feeds', :action => 'issues', :project_id => @project, :key => @key, :format => 'atom'}, {:title => l(:label_reported_issues)}) %>
<%= auto_discovery_link_tag(:rss, {:controller => 'feeds', :action => 'history', :project_id => @project, :key => @key }, {:title => l(:label_changes_details)}) %>
<%= auto_discovery_link_tag(:atom, {:controller => 'feeds', :action => 'history', :project_id => @project, :key => @key, :format => 'atom'}, {:title => l(:label_changes_details)}) %>
<%= auto_discovery_link_tag(:rss, {:controller => 'feeds', :action => 'news', :project_id => @project, :key => @key}, {:title => l(:label_news_latest)}) %>
<%= auto_discovery_link_tag(:atom, {:controller => 'feeds', :action => 'news', :project_id => @project, :key => @key, :format => 'atom'}, {:title => l(:label_news_latest)}) %>
<% end %>