##// END OF EJS Templates
scm: git: unit model latin-1 path encoding test passes on Japanese Windows (#5251)....
scm: git: unit model latin-1 path encoding test passes on Japanese Windows (#5251). Ruby uses ANSI api to fork a process on Windows. Japanese Shift_JIS and Traditional Chinese Big5 have 0x5c(backslash) problem and these are incompatible with ASCII. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5072 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3321:038a88e970aa
r4952:b235e3694628
Show More
index.html.erb
37 lines | 1.1 KiB | text/plain | TextLexer
Jean-Philippe Lang
contextual links redesign...
r90 <div class="contextual">
Jean-Philippe Lang
* all icons replaced (new icons are based on GPL icon set: "KDE Crystal Diamond 2.5" -by paolino- and "kNeu! Alpha v0.1" -by Pablo Fabregat-)...
r154 <%= link_to l(:label_role_new), {:action => 'new'}, :class => 'icon icon-add' %>
Jean-Philippe Lang
contextual links redesign...
r90 </div>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h2><%=l(:label_role_plural)%></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
css cleaning...
r105 <table class="list">
<thead><tr>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <th><%=l(:label_role)%></th>
Jean-Philippe Lang
added the ability to set the sort order for roles...
r205 <th><%=l(:button_sort)%></th>
Jean-Philippe Lang
Initial commit...
r2 <th></th>
Jean-Philippe Lang
css cleaning...
r105 </tr></thead>
<tbody>
Jean-Philippe Lang
Initial commit...
r2 <% for role in @roles %>
Jean-Philippe Lang
v0.2.0...
r5 <tr class="<%= cycle("odd", "even") %>">
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <td><%= content_tag(role.builtin? ? 'em' : 'span', link_to(role.name, :action => 'edit', :id => role)) %></td>
Jean-Philippe Lang
Applied the same column width in different similar views....
r400 <td align="center" style="width:15%;">
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <% unless role.builtin? %>
Jean-Philippe Lang
Reorder links refactoring (follows r2526)....
r2478 <%= reorder_links('role', {:action => 'edit', :id => role}) %>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <% end %>
Jean-Philippe Lang
added the ability to set the sort order for roles...
r205 </td>
Jean-Philippe Lang
Makes 'delete links' the same on admin views....
r2758 <td class="buttons">
<%= link_to(l(:button_delete), { :action => 'destroy', :id => role },
:method => :post,
:confirm => l(:text_are_you_sure),
:class => 'icon icon-del') unless role.builtin? %>
Jean-Philippe Lang
Add some tests on RolesController....
r1254 </td>
Jean-Philippe Lang
Initial commit...
r2 </tr>
<% end %>
Jean-Philippe Lang
css cleaning...
r105 </tbody>
Jean-Philippe Lang
Initial commit...
r2 </table>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
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 @role_pages %></p>
Jean-Philippe Lang
Added permissions report (link available on roles list view)....
r430
<p><%= link_to l(:label_permissions_report), :action => 'report' %></p>
Jean-Philippe Lang
More detailed html title on several views....
r951
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_role_plural)) -%>