IDEA RubyMine project files added

This commit is contained in:
Christoph Haas 2013-11-17 01:06:49 +01:00
parent 20418c47b4
commit dead80eb5e
19 changed files with 836 additions and 33 deletions

View file

@ -1,3 +0,0 @@
<li>
<%= link_to_unless current_page.first?, raw(t 'views.pagination.first'), url, :remote => remote %>
</li>

View file

@ -1,3 +0,0 @@
<li class="disabled">
<%= link_to raw(t 'views.pagination.truncate'), '#' %>
</li>

View file

@ -1,3 +0,0 @@
<li>
<%= link_to_unless current_page.last?, raw(t 'views.pagination.last'), url, {:remote => remote} %>
</li>

View file

@ -1,3 +0,0 @@
<li>
<%= link_to_unless current_page.last?, raw(t 'views.pagination.next'), url, :rel => 'next', :remote => remote %>
</li>

View file

@ -1,3 +0,0 @@
<li class="<%= 'active' if page.current? %>">
<%= link_to page, page.current? ? '#' : url, {:remote => remote, :rel => page.next? ? 'next' : page.prev? ? 'prev' : nil} %>
</li>

View file

@ -1,15 +0,0 @@
<%= paginator.render do -%>
<ul class="pagination">
<%= first_page_tag unless current_page.first? %>
<%= prev_page_tag unless current_page.first? %>
<% each_page do |page| -%>
<% if page.left_outer? || page.right_outer? || page.inside_window? -%>
<%= page_tag page %>
<% elsif !page.was_truncated? -%>
<%= gap_tag %>
<% end -%>
<% end -%>
<%= next_page_tag unless current_page.last? %>
<%= last_page_tag unless current_page.last? %>
</ul>
<% end -%>

View file

@ -1,3 +0,0 @@
<li>
<%= link_to_unless current_page.first?, raw(t 'views.pagination.previous'), url, :rel => 'prev', :remote => remote %>
</li>