| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <head> | 2 <head> |
| 3 <meta charset="utf-8"> | 3 <meta charset="utf-8"> |
| 4 <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></sc
ript> | 4 <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></sc
ript> |
| 5 <link rel="stylesheet" href="/common.css"></link> | 5 <link rel="stylesheet" href="/common.css"></link> |
| 6 <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> | 6 <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> |
| 7 <title>Findit Configuration</title> | 7 <title>Findit Configuration</title> |
| 8 <style> | 8 <style> |
| 9 .previous, .next, .latest { | 9 .previous, .next, .latest { |
| 10 color: #0645AD; | 10 color: #0645AD; |
| 11 background:none!important; | 11 background: none; |
| 12 border:none; | 12 border: none; |
| 13 padding:0!important; | 13 padding: 0; |
| 14 font: inherit; | 14 font: inherit; |
| 15 border-bottom:1px solid #0645AD; | 15 border-bottom: 1px solid #0645AD; |
| 16 cursor: pointer; | 16 cursor: pointer; |
| 17 } | 17 } |
| 18 .disabled { | 18 .disabled { |
| 19 color: #d3d3d3; | 19 color: #d3d3d3; |
| 20 background:none!important; | 20 background: none; |
| 21 border:none; | 21 border: none; |
| 22 padding:0!important; | 22 padding: 0; |
| 23 font: inherit; | 23 font: inherit; |
| 24 border-bottom:1px solid #d3d3d3; | 24 border-bottom: 1px solid #d3d3d3; |
| 25 cursor: pointer; | 25 cursor: pointer; |
| 26 } | 26 } |
| 27 </style> | 27 </style> |
| 28 <script> | 28 <script> |
| 29 var findit = {}; | 29 var findit = {}; |
| 30 findit.stepsForMastersRules = {{ masters | tojson | safe }}; | 30 findit.stepsForMastersRules = {{ masters | tojson | safe }}; |
| 31 findit.builders = {{ builders | tojson | safe }}; | 31 findit.builders = {{ builders | tojson | safe }}; |
| 32 findit.tryJobSettings = {{ try_job_settings | tojson | safe}}; | 32 findit.tryJobSettings = {{ try_job_settings | tojson | safe}}; |
| 33 findit.swarmingSettings = {{ swarming_settings | tojson | safe }}; | 33 findit.swarmingSettings = {{ swarming_settings | tojson | safe }}; |
| 34 findit.downloadBuildDataSettings = {{ download_build_data_settings | tojson
| safe }}; | 34 findit.downloadBuildDataSettings = {{ download_build_data_settings | tojson
| safe }}; |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 Action Settings for identified culprits or suspects:<br> | 150 Action Settings for identified culprits or suspects:<br> |
| 151 <textarea id="action-settings" rows="10" cols="80"></textarea> | 151 <textarea id="action-settings" rows="10" cols="80"></textarea> |
| 152 </div> | 152 </div> |
| 153 <div> | 153 <div> |
| 154 Check Test Flakiness Settings:<br> | 154 Check Test Flakiness Settings:<br> |
| 155 <textarea id="check-flake-settings" rows="10" cols="80"></textarea> | 155 <textarea id="check-flake-settings" rows="10" cols="80"></textarea> |
| 156 </div> | 156 </div> |
| 157 <br> | 157 <br> |
| 158 <button type="submit" id="save-button">Save</button> | 158 <button type="submit" id="save-button">Save</button> |
| 159 </body> | 159 </body> |
| OLD | NEW |