* Pass the page number in the URI query string.
[?]
Oct 15, 2009, 12:59 PM
E74FJWCFNVUEG34WMRXTJ37MR4O5L6ZWK6PU2VTGE5DRNBKLYVVQCDependencies
- [2]
FPK5LF53* Put the project-related actions in a separate controller. Put the - [3]
7Z3YOKCV* PROCESS -> INCLUDE in most cases. INCLUDE does proper scoping of - [4]
DEMSSSB2* Controller for jobs which inherits all actions in ListBuilds. So - [5]
T2232OBS* Add some DB indices to make the /releases page much faster. - [6]
YTSIRIMK* Separate job status and all builds pages. - [7]
SJN2QPWH* Big speed-up of the job status page and the channel generation (such - [8]
2AIIYGI5* Show job status and all builds for a project. - [9]
75XUS62Y* Added a page to quickly see all failed builds and failed evaluations - [10]
X5UVREJY* PostgreSQL compatibility. - [11]
RAKTHYAI* In the job status and error pages, show when the status of a job - [12]
RI4S7SYT* Job status: show the active jobs. - [13]
ZD5AEKWM* Job status / error pages: show only active jobs.
Change contents
- replacement in src/lib/Hydra/Base/Controller/ListBuilds.pm at line 50
my ($self, $c, $page) = @_;my ($self, $c) = @_; - replacement in src/lib/Hydra/Base/Controller/ListBuilds.pm at line 54
$page = (defined $page ? int($page) : 1) || 1;my $page = int($c->req->param('page')) || 1; - replacement in src/root/all.tt at line 14
[<a href="[% "$baseUri/1" %]">First</a>][<a href="[% "$baseUri?page=1" %]">First</a>] - replacement in src/root/all.tt at line 16
[<a href="[% "$baseUri/"; (page - 1) %]">Prev</a>][<a href="[% "$baseUri?page="; (page - 1) %]">Prev</a>] - replacement in src/root/all.tt at line 19
[<a href="[% "$baseUri/"; (page + 1) %]">Next</a>][<a href="[% "$baseUri?page="; (page + 1) %]">Next</a>] - replacement in src/root/all.tt at line 21
[<a href="[% "$baseUri/"; (totalBuilds - 1) div resultsPerPage + 1 %]">Last</a>][<a href="[% "$baseUri?page="; (totalBuilds - 1) div resultsPerPage + 1 %]">Last</a>]