Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(853)

Unified Diff: milo/appengine/buildbot/html.go

Issue 2810113002: Milo buildbot builder page: Add pagnation with cursors. (Closed)
Patch Set: train Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « milo/appengine/buildbot/grpc.go ('k') | milo/appengine/common/funcs.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/appengine/buildbot/html.go
diff --git a/milo/appengine/buildbot/html.go b/milo/appengine/buildbot/html.go
index bde2071bb83b558daf4c747bc75e9b41fda32f30..3b1d2b84f08b7ae8d30bc9fedef0563269a0725d 100644
--- a/milo/appengine/buildbot/html.go
+++ b/milo/appengine/buildbot/html.go
@@ -80,8 +80,9 @@ func BuilderHandler(c *router.Context) {
if limit < 0 {
limit = 25
}
+ cursor := c.Request.FormValue("cursor")
- result, err := builderImpl(c.Context, master, builder, limit)
+ result, err := builderImpl(c.Context, master, builder, limit, cursor)
if err != nil {
common.ErrorPage(c, http.StatusInternalServerError, err.Error())
return
« no previous file with comments | « milo/appengine/buildbot/grpc.go ('k') | milo/appengine/common/funcs.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698