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

Unified Diff: appengine/chromium_cq_status/html/recent.html

Issue 2111713004: Teach CQ status app to check login status of users. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Review and tests. Created 4 years, 6 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: appengine/chromium_cq_status/html/recent.html
diff --git a/appengine/chromium_cq_status/html/recent.html b/appengine/chromium_cq_status/html/recent.html
deleted file mode 100644
index 05d98895c625ddd389ba723de5694a6a7a7e3590..0000000000000000000000000000000000000000
--- a/appengine/chromium_cq_status/html/recent.html
+++ /dev/null
@@ -1,94 +0,0 @@
-<!DOCTYPE html>
-<title>Chromium CQ Status recent logs</title>
-<script src="../js/recent.js"></script>
-<style>
-:root {
- font-family: monospace;
- white-space: pre;
-}
-h1 {
- font-family: sans-serif;
-}
-a {
- text-decoration: none;
-}
-h1 > a {
- color: black;
-}
-hint {
- color: gray;
- font-size: 80%;
-}
-table {
- border-spacing: 0;
-}
-tr:hover {
- background-color: aliceblue;
-}
-tr.selected {
- background-color: lightskyblue;
-}
-th {
- border-bottom: solid 1px black;
-}
-td {
- max-width: 400px;
- overflow-wrap: break-word;
- white-space: pre-wrap;
- border-top: solid 1px grey;
-}
-td ~ td, th ~ th {
- border-left: solid 1px black;
- padding: 1px 4px;
-}
-.hide {
- visibility: hidden;
-}
-dialog {
- position: fixed;
- top: 0;
- bottom: 0;
- max-width: 90vw;
- max-height: 90vh;
-}
-textarea {
- width: 600px;
- height: 400px;
-}
-flex {
- display: flex;
- justify-content: center;
- flex-direction: column;
- align-items: center;
-}
-</style>
-
-<h1><a href='/'>Chromium CQ Status</a> recent logs</h1>
-Filters: <span id="filterList"></span>
-<br>
-<table>
- <tbody id="table">
- <tr>
- <th>Timestamp</th>
- <th>Project</th>
- <th>Owner</th>
- <th>Codereview</th>
- <th>Issue</th>
- <th>Patchset</th>
- <th>Action</th>
- <th>Verifier</th>
- <th>Message</th>
- <th></th>
- </tr>
- </tbody>
-</table>
-<flex>
- <div id="loading">Loading...</div>
- <button id="loadMore" disabled>Load More</button>
-</flex>
-<br>
-<hint>
-Variables available to Javascript console for programmatic analysis:
- - records
- - selectedRecords
-</hint>
« no previous file with comments | « appengine/chromium_cq_status/handlers/test/stats_query_test.py ('k') | appengine/chromium_cq_status/js/patch_status.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698