##// END OF EJS Templates
Upgrade to Rails 3.2.8 (#11758)....
Upgrade to Rails 3.2.8 (#11758). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10275 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9885:6a2ca5e03427
r10092:265baa1b2c5d
Show More
index.html.erb
104 lines | 4.7 KiB | text/plain | TextLexer
Jean-Philippe Lang
Makes saved query filters visible (#2883)....
r2778 <div class="contextual">
<% if !@query.new_record? && @query.editable_by?(User.current) %>
Etienne Massip
Make queries resources fully conform to common behavior (removed additonal routes) (#9108)....
r7537 <%= link_to l(:button_edit), edit_query_path(@query), :class => 'icon icon-edit' %>
Jean-Philippe Lang
Deprecated :confirm => 'Text' option....
r9754 <%= delete_link query_path(@query) %>
Jean-Philippe Lang
Makes saved query filters visible (#2883)....
r2778 <% end %>
</div>
<h2><%= @query.new_record? ? l(:label_issue_plural) : h(@query.name) %></h2>
Etienne Massip
Remove unecessary page title HTML escaping from views (#9252)....
r7445 <% html_title(@query.new_record? ? l(:label_issue_plural) : @query.name) %>
Jean-Philippe Lang
Makes saved query filters visible (#2883)....
r2778
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag({ :controller => 'issues', :action => 'index', :project_id => @project },
Toshi MARUYAMA
code layout clean up app/views/issues/index.html.erb...
r8394 :method => :get, :id => 'query_form') do %>
Jean-Philippe Lang
Converted issue filters to non-AJAX GET requests (#1965)....
r5156 <%= hidden_field_tag 'set_filter', '1' %>
Toshi MARUYAMA
replace tabs to spaces at app/views/issues/index.html.erb...
r7216 <div id="query_form_content" class="hide-when-print">
Jean-Philippe Lang
Filters collapsed by default for saved queries (#4623)....
r3415 <fieldset id="filters" class="collapsible <%= @query.new_record? ? "" : "collapsed" %>">
Toshi MARUYAMA
replace tabs to spaces at app/views/issues/index.html.erb...
r7216 <legend onclick="toggleFieldset(this);"><%= l(:label_filter_plural) %></legend>
<div style="<%= @query.new_record? ? "" : "display: none;" %>">
<%= render :partial => 'queries/filters', :locals => {:query => @query} %>
</div>
Jean-Philippe Lang
Ticket grouping (#2679)....
r2604 </fieldset>
Jean-Philippe Lang
Makes tickets and timelogs filters collapsible (UI)....
r2777 <fieldset class="collapsible collapsed">
Toshi MARUYAMA
replace tabs to spaces at app/views/issues/index.html.erb...
r7216 <legend onclick="toggleFieldset(this);"><%= l(:label_options) %></legend>
<div style="display: none;">
<table>
<tr>
<td><%= l(:field_column_names) %></td>
<td><%= render :partial => 'queries/columns', :locals => {:query => @query} %></td>
</tr>
<tr>
Toshi MARUYAMA
[#9489] linked labels to their elements...
r7559 <td><label for='group_by'><%= l(:field_group_by) %></label></td>
Toshi MARUYAMA
code layout clean up app/views/issues/index.html.erb...
r8394 <td><%= select_tag('group_by',
options_for_select(
[[]] + @query.groupable_columns.collect {|c| [c.caption, c.name.to_s]},
@query.group_by)
) %></td>
Toshi MARUYAMA
replace tabs to spaces at app/views/issues/index.html.erb...
r7216 </tr>
</table>
</div>
</fieldset>
</div>
Eric Davis
Add a css class to hide content when printing. #5508...
r3673 <p class="buttons hide-when-print">
Jean-Philippe Lang
Ticket grouping (#2679)....
r2604
Jean-Philippe Lang
Converted issue filters to non-AJAX GET requests (#1965)....
r5156 <%= link_to_function l(:button_apply), 'submit_query_form("query_form")', :class => 'icon icon-checked' %>
<%= link_to l(:button_clear), { :set_filter => 1, :project_id => @project }, :class => 'icon icon-reload' %>
Jean-Philippe Lang
Makes saved query filters visible (#2883)....
r2778 <% if @query.new_record? && User.current.allowed_to?(:save_queries, @project, :global => true) %>
Toshi MARUYAMA
code layout clean up app/views/issues/index.html.erb...
r8394 <%= link_to_function l(:button_save),
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 "$('#query_form').attr('action', '#{ @project ? new_project_query_path(@project) : new_query_path }'); submit_query_form('query_form')",
Toshi MARUYAMA
code layout clean up app/views/issues/index.html.erb...
r8394 :class => 'icon icon-save' %>
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 <% end %>
Jean-Philippe Lang
Fix IE6 display bug on the issue list....
r1270 </p>
Jean-Philippe Lang
Added a cross-project issue list. It displays the issues of all the projects visible by the user....
r673 <% end %>
Jean-Philippe Lang
Ticket grouping (#2679)....
r2604
Jean-Philippe Lang
Added a cross-project issue list. It displays the issues of all the projects visible by the user....
r673 <%= error_messages_for 'query' %>
<% if @query.valid? %>
<% if @issues.empty? %>
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 <p class="nodata"><%= l(:label_no_data) %></p>
Jean-Philippe Lang
Added a cross-project issue list. It displays the issues of all the projects visible by the user....
r673 <% else %>
Jean-Philippe Lang
Added the ability to customize columns of a saved query....
r771 <%= render :partial => 'issues/list', :locals => {:issues => @issues, :query => @query} %>
Jean-Philippe Lang
New setting added to specify how many objects should be displayed on most paginated lists....
r1013 <p class="pagination"><%= pagination_links_full @issue_pages, @issue_count %></p>
Eric Davis
Allow the other format links to appear on the issue list (ATOM, PDF, CSV)....
r2425 <% end %>
Jean-Philippe Lang
Display links to Atom feeds (closes #496, #750)....
r1171
Jean-Philippe Lang
Adds an helper to render other formats download links....
r2331 <% other_formats_links do |f| %>
Toshi MARUYAMA
replace tabs to spaces at app/views/issues/index.html.erb...
r7216 <%= f.link_to 'Atom', :url => params.merge(:key => User.current.rss_key) %>
Jean-Philippe Lang
Adds a dialog box for CSV export options (#4742)....
r7754 <%= f.link_to 'CSV', :url => params, :onclick => "showModal('csv-export-options', '330px'); return false;" %>
Toshi MARUYAMA
replace tabs to spaces at app/views/issues/index.html.erb...
r7216 <%= f.link_to 'PDF', :url => params %>
Jean-Philippe Lang
Adds an helper to render other formats download links....
r2331 <% end %>
Jean-Philippe Lang
Adds a dialog box for CSV export options (#4742)....
r7754 <div id="csv-export-options" style="display:none;">
<h3 class="title"><%= l(:label_export_options, :export_format => 'CSV') %></h3>
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag(params.merge({:format => 'csv',:page=>nil}), :method => :get, :id => 'csv-export-form') do %>
Jean-Philippe Lang
Adds a dialog box for CSV export options (#4742)....
r7754 <p>
<label><%= radio_button_tag 'columns', '', true %> <%= l(:description_selected_columns) %></label><br />
<label><%= radio_button_tag 'columns', 'all' %> <%= l(:description_all_columns) %></label>
</p>
<p>
<label><%= check_box_tag 'description', '1' %> <%= l(:field_description) %></label>
</p>
Jean-Philippe Lang
CSS class for modal box buttons....
r7811 <p class="buttons">
Jean-Philippe Lang
Adds a dialog box for CSV export options (#4742)....
r7754 <%= submit_tag l(:button_export), :name => nil, :onclick => "hideModal(this);" %>
<%= submit_tag l(:button_cancel), :name => nil, :onclick => "hideModal(this);", :type => 'button' %>
</p>
<% end %>
</div>
Jean-Philippe Lang
Added a cross-project issue list. It displays the issues of all the projects visible by the user....
r673 <% end %>
Eric Davis
Add :view_issues_index_bottom hook. #5169...
r3728 <%= call_hook(:view_issues_index_bottom, { :issues => @issues, :project => @project, :query => @query }) %>
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874
<% content_for :sidebar do %>
<%= render :partial => 'issues/sidebar' %>
Jean-Philippe Lang
Queries can be marked as 'For all projects'. Such queries will be available on all projects and on the global issue list (#897, closes #671)....
r1296 <% end %>
Jean-Philippe Lang
Added atom feed on the new cross-project issue list....
r675
<% content_for :header_tags do %>
Toshi MARUYAMA
code layout clean up app/views/issues/index.html.erb...
r8394 <%= auto_discovery_link_tag(:atom,
{:query_id => @query, :format => 'atom',
:page => nil, :key => User.current.rss_key},
:title => l(:label_issue_plural)) %>
<%= auto_discovery_link_tag(:atom,
{:controller => 'journals', :action => 'index',
:query_id => @query, :format => 'atom',
:page => nil, :key => User.current.rss_key},
:title => l(:label_changes_details)) %>
Jean-Philippe Lang
Added atom feed on the new cross-project issue list....
r675 <% end %>
Jean-Philippe Lang
Fixed: context menu not available if the initial issue list is empty....
r1119
Eric Davis
Refactor: move IssuesController#context_menu to a new controller....
r3892 <%= context_menu issues_context_menu_path %>