##// END OF EJS Templates
Removes the fat ruby-openid gem. Simply use 'gem install ruby-openid' to enable openid support....
Removes the fat ruby-openid gem. Simply use 'gem install ruby-openid' to enable openid support. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2458 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2169:5c97a83a705f
r2397:ff9da0bab038
Show More
_list.rhtml
22 lines | 1.0 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Issue list now supports bulk edit/move/delete (#563, #607). For now, issues from different projects can not be bulk edited/moved/deleted at once....
r1116 <% form_tag({}) do -%>
<table class="list issues">
Jean-Philippe Lang
Added the ability to customize columns of a saved query....
r771 <thead><tr>
Jean-Philippe Lang
Javascript fix (#1636)....
r1652 <th><%= link_to image_tag('toggle_check.png'), {}, :onclick => 'toggleIssuesSelection(Element.up(this, "form")); return false;',
Jean-Philippe Lang
Change the tick image and replace the issue selection pencil with a small tick....
r1261 :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %>
Jean-Philippe Lang
Added 'Bulk edit' functionality....
r806 </th>
Jean-Philippe Lang
Validates sort_key and sort_order params (#2378)....
r2169 <%= sort_header_tag('id', :caption => '#', :default_order => 'desc') %>
Jean-Philippe Lang
Added the ability to customize columns of a saved query....
r771 <% query.columns.each do |column| %>
<%= column_header(column) %>
<% end %>
</tr></thead>
<tbody>
Jean-Philippe Lang
Issue list now supports bulk edit/move/delete (#563, #607). For now, issues from different projects can not be bulk edited/moved/deleted at once....
r1116 <% issues.each do |issue| -%>
Jean-Philippe Lang
Adds a helper that returns issues css classes....
r2137 <tr id="issue-<%= issue.id %>" class="hascontextmenu <%= cycle('odd', 'even') %> <%= css_issue_classes(issue) %>">
Jean-Philippe Lang
Display links to Atom feeds (closes #496, #750)....
r1171 <td class="checkbox"><%= check_box_tag("ids[]", issue.id, false, :id => nil) %></td>
Jean-Philippe Lang
Added the ability to customize columns of a saved query....
r771 <td><%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %></td>
Jean-Philippe Lang
Issue list now supports bulk edit/move/delete (#563, #607). For now, issues from different projects can not be bulk edited/moved/deleted at once....
r1116 <% query.columns.each do |column| %><%= content_tag 'td', column_content(column, issue), :class => column.name %><% end %>
Jean-Philippe Lang
Added the ability to customize columns of a saved query....
r771 </tr>
Jean-Philippe Lang
Issue list now supports bulk edit/move/delete (#563, #607). For now, issues from different projects can not be bulk edited/moved/deleted at once....
r1116 <% end -%>
Jean-Philippe Lang
Added the ability to customize columns of a saved query....
r771 </tbody>
</table>
Jean-Philippe Lang
Issue list now supports bulk edit/move/delete (#563, #607). For now, issues from different projects can not be bulk edited/moved/deleted at once....
r1116 <% end -%>