Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 373
- Log:
Initial import of Radiant 0.9.1, which is now packaged as a gem. This is an
import of the tagged 0.9.1 source checked out from GitHub, which isn't quite
the same as the gem distribution - but it doesn't seem to be available in an
archived form and the installed gem already has modifications, so this is
the closest I can get.
- Author:
- rool
- Date:
- Mon Mar 21 13:40:05 +0000 2011
- Size:
- 889 Bytes
1 | Feature: Paginating admin views |
2 | In order to reduce load time and page bulk |
3 | a content editor |
4 | wants longer resource lists to be paginated |
5 | |
6 | Background: |
7 | Given There are many snippets |
8 | And I am logged in as "designer" |
9 | And I go to the "snippets" admin page |
10 | |
11 | Scenario: More snippets than we want to show on one page |
12 | Then I should see "first" |
13 | And I should not see "snippet_50" |
14 | And I should see page 1 of the results |
15 | And I should see pagination controls |
16 | And I should see a depagination link |
17 | |
18 | When I follow "2" within "div.pagination" |
19 | Then I should see page 2 of the results |
20 | And I should see "snippet_50" |
21 | |
22 | When I follow "show all" within "div.depaginate" |
23 | # Then I should mention the request parameters |
24 | Then I should see all the snippets |
25 | And I should not see pagination controls |
26 | And I should not see a depagination link |
27 |