github.com/yrj2011/jx-test-infra@v0.0.0-20190529031832-7a2065ee98eb/prow/cmd/deck/static/pr.html (about)

     1  <!DOCTYPE html>
     2  <html lang="en">
     3  <head>
     4      <meta charset="UTF-8">
     5      <meta name="viewport" content="width=device-width, initial-scale=1">
     6      <title>PR Status</title>
     7      <link id="favicon" rel="icon" type="image/png" href="favicon.ico">
     8      <link rel="stylesheet" type="text/css" href="style.css">
     9      <link rel="stylesheet" type="text/css" href="extensions/style.css">
    10      <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
    11      <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
    12      <link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css">
    13      <link rel="stylesheet" href="dialog-polyfill.css">
    14      <script type="text/javascript" src="dialog-polyfill.js"></script>
    15      <script type="text/javascript" src="pr-script.js"></script>
    16      <script type="text/javascript" src="data.js?var=allBuilds"></script>
    17      <script type="text/javascript" src="tide.js?var=tideData"></script>
    18      <script type="text/javascript" src="extensions/script.js"></script>
    19      <script type="text/javascript" src="branding.js?var=branding"></script>
    20      <script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
    21  </head>
    22  <body>
    23  <div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
    24      <header class="mdl-layout__header">
    25          <div class="mdl-layout__header-row">
    26              <a href="https://github.com/kubernetes/test-infra/tree/master/prow#prow"
    27                 class="logo"><img id="img" src="/logo.svg" alt="kubernetes logo" class="logo"/></a>
    28              <span class="mdl-layout-title header-title">PR Status</span>
    29          </div>
    30      </header>
    31      <div class="mdl-layout__drawer">
    32          <span class="mdl-layout-title">Prow Dashboard</span>
    33          <nav class="mdl-navigation">
    34              <a class="mdl-navigation__link" href="/">Prow Status</a>
    35              <a class="mdl-navigation__link mdl-navigation__link--current" href="/pr">PR Status</a>
    36              <a class="mdl-navigation__link" href="/command-help">Command Help</a>
    37              <a class="mdl-navigation__link" href="/tide">Tide Status</a>
    38              <a class="mdl-navigation__link" href="/plugins">Plugins</a>
    39          </nav>
    40      </div>
    41      <div id="loading-progress" class="mdl-progress mdl-js-progress mdl-progress__indeterminate hidden"></div>
    42      <main id="main-container" class="mdl-layout__content">
    43      </main>
    44  </div>
    45  <dialog id="search-dialog" class="pr-status-dialog mdl-dialog">
    46      <h4 class="mdl-dialog__title">Github search query</h4>
    47      <div class="mdl-dialog__content">
    48          <p>You can query for <strong>pull requests</strong> using Github search syntax.</p>
    49          <p>Notice:</p>
    50          <ol>
    51              <li>
    52                  <p>The search feature is used to search <strong>pull requests</strong>. We enforce this by dropping any <code>is:issue</code> or <code>type:issue</code> token in the query and will append <code>is:pr</code> to the query if <code>is:pr</code> does not exist.</p>
    53              </li>
    54              <li>
    55                  <p>If you do not mention any organization or repository in the query, we will search for pull requests in repositories that use either <strong>Prow</strong> or <strong>Tide</strong>.</p>
    56              </li>
    57              <li>
    58                  <p>By default, PR Status will display all of your open pull requests that are configured with either <strong>Prow</strong> or <strong>Tide</strong>.</p>
    59              </li>
    60          </ol>
    61      </div>
    62      <div class="mdl-dialog__actions">
    63          <button type="button" class="mdl-button close">Close</button>
    64      </div>
    65  </dialog>
    66  <dialog id="status-help-dialog" class="pr-status-dialog mdl-dialog">
    67      <h4 class="mdl-dialog__title"></h4>
    68      <div class="mdl-dialog__content">
    69      </div>
    70      <div class="mdl-dialog__actions">
    71          <button type="button" class="mdl-button close">Close</button>
    72      </div>
    73  </dialog>
    74  <dialog id="query-dialog" class="pr-status-dialog mdl-dialog">
    75      <h4 class="mdl-dialog__title">Query Details</h4>
    76      <div class="mdl-dialog__content">
    77          <p class="query-details-section">All required labels</p>
    78          <p id="query-all-required"></p>
    79          <p class="query-details-section">All forbidden labels</p>
    80          <p id="query-all-forbidden"></p>
    81      </div>
    82      <div class="mdl-dialog__actions">
    83          <button type="button" class="mdl-button close">Close</button>
    84      </div>
    85  </dialog>
    86  <dialog id="merge-help-dialog" class="pr-status-dialog mdl-dialog">
    87      <h4 class="mdl-dialog__title">How to meet merge requirements?</h4>
    88      <div class="mdl-dialog__content">
    89          <p>To meet merge requirements, all PR's labels need to satisfy at least one of queries configured for the repo that the PR belongs to.</p>
    90          <p>The table below shows all queries for the PR's repo. Each row of the table below shows 2 parts of a query: <strong>required</strong> labels <strong>missing</strong> from the PR and <strong>forbidden</strong> labels that the PR <strong>has</strong>.</p>
    91          <p>The PR would be considered as meeting merge requirements once it <strong>obtains all required labels</strong> and <strong>removes all forbidden labels</strong> for at least one row.</p>
    92          <p>For more information, see:<a href="https://github.com/kubernetes/community/tree/master/contributors/guide">Kubernetes Contributor Guide</a>&<a href="/command-help">Command Help Page</a></p>
    93      </div>
    94      <div class="mdl-dialog__actions">
    95          <button type="button" class="mdl-button close">Close</button>
    96      </div>
    97  </dialog>
    98  </body>
    99  </html>