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

Unified Diff: milo/appengine/frontend/templates/buildbot/pages/builder.html

Issue 2748073006: Milo Refactor: Remove theme support (Closed)
Patch Set: Fix builder.html pointer Created 3 years, 9 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
Index: milo/appengine/frontend/templates/buildbot/pages/builder.html
diff --git a/milo/appengine/frontend/templates/buildbot/pages/builder.html b/milo/appengine/frontend/templates/buildbot/pages/builder.html
deleted file mode 100644
index 1e53a952a84fd5426e4615b1aff1abfe1b698512..0000000000000000000000000000000000000000
--- a/milo/appengine/frontend/templates/buildbot/pages/builder.html
+++ /dev/null
@@ -1,130 +0,0 @@
-{{define "title"}}Builder {{ .Builder.Name }}{{end}}
-
-{{define "head"}}
-<link id="favicon" rel="shortcut icon"
- type="image/png" href="/static/common/favicon/milo-32.png">
-{{end}}
-
-{{define "body"}}
-<h1>Builder {{.Builder.Name}}</h1>
-
-{{ if .Builder.CurrentBuilds }}
- <h2>Current Builds ({{len .Builder.CurrentBuilds}}):</h2>
- <ul>
- {{ range .Builder.CurrentBuilds }}
- <li>{{ .Link | linkify }}
- {{ $nb := len .Blame }}
- {{ if lt $nb 4 }}
- {{ range $i, $c := .Blame }}
- {{ if gt $i 0 }},{{ end }}
- {{ if .Changelist }}
- {{ .Changelist | linkify }}
- {{ if .AuthorEmail }}
- by {{ .AuthorEmail }}
- {{ end }}
- {{ else }}
- (<a href="{{ .CommitURL }}">{{ .AuthorEmail }}</a>)
- {{ end }}
- {{ end }}
- {{ else }}
- ({{ $nb }} changes)
- {{ end }}
- [Running for: {{ .ExecutionTime.Duration | humanDuration }}]
- {{ range .Text }} {{ . }}{{ end }}
- </li>
- {{ end }}
- </ul>
-{{ else }}
- <h2>No current builds</h2>
-{{ end }}
-
-{{ if .Builder.PendingBuilds }}
- <h2>Pending Build Requests ({{len .Builder.PendingBuilds}}):</h2>
- <ul>
- {{ range .Builder.PendingBuilds }}
- <li><small>({{ .PendingTime.Started | localTime "" }}, waiting {{ .PendingTime.Duration | humanDuration }})</small>
-
- {{ $nb := len .Blame }}
- {{ if lt $nb 4 }}
- {{ range $i, $c := .Blame }}
- (<a href="{{ .CommitURL }}">{{ .AuthorEmail }}</a>)
- {{ if ne $i (sub $nb 1) }},{{ end }}
- {{ end }}
- {{ else }}
- ({{ $nb }} changes)
- {{ end }}
-
- </li>
- {{ end }}
- </ul>
-{{ else }}
- <h2>No Pending Build Requests</h2>
-{{ end }}
-
-{{ if .Builder.FinishedBuilds }}
- <h2>Recent Builds:</h2>
-
- <table class="info">
- <tr>
- <th>Time</th>
- <th>Revision</th>
- <th>Result</th>
- <th>Build #</th>
- <th>Changes</th>
- <th>Info</th>
- </tr>
-
- {{ range .Builder.FinishedBuilds }}
- <tr>
- <td>{{ .ExecutionTime.Finished | localTime "" }}</td>
- <td class="revision">{{ .Revision }}</td>
- {{ if eq .Status.String "Success" }}
- <td class="status-Success">Success</td>
- {{ else if eq .Status.String "Failure" }}
- <td class="status-Failure">Failed</td>
- {{ else if eq .Status.String "InfraFailure" }}
- <td class="status-Exception">Infra Failure</td>
- {{ else }}
- <td> {{ .Status.String }} </td>
- {{ end }}
- <td>{{ .Link | linkify }}</td>
- <td>
- {{ $nb := len .Blame }}
- {{ if lt $nb 4 }}
- {{ range $i, $c := .Blame }}
- {{ if gt $i 0 }},{{ end }}
- {{ if .Changelist }}
- {{ .Changelist | linkify }}
- {{ if .AuthorEmail }}
- by {{ .AuthorEmail }}
- {{ end }}
- {{ else }}
- (<a href="{{ .CommitURL }}">{{ .AuthorEmail }}</a>)
- {{ end }}
- {{ end }}
- {{ else }}
- ({{ $nb }} changes)
- {{ end }}
- </td>
- <td class="left">
- {{ range $i, $value := .Text }}
- {{ if gt $i 0 }}<br>{{ end }}
- {{ . }}
- {{ end }}
- </td>
- </tr>
- {{ end }}
- </table>
-{{ else }}
- <h2>No Recent Builds</h2>
-{{ end }}
-
-(Show:
-<a href=".">default</a>
-<a href="?limit=25">25</a>
-<a href="?limit=50">50</a>
-<a href="?limit=100">100</a>
-<a href="?limit=200">200</a>
-)
-
-{{end}}

Powered by Google App Engine
This is Rietveld 408576698