| OLD | NEW |
| (Empty) | |
| 1 <dom-module id="som-help"> |
| 2 <template> |
| 3 <style> |
| 4 ul, p { |
| 5 line-height: 160%; |
| 6 } |
| 7 </style> |
| 8 <h2>Sheriff-o-Matic Help</h2> |
| 9 <p> |
| 10 Sheriff-o-Matic (SoM) is a tool designed to help make sheriffing easier. S
oM shows alerts for failures and allows you to |
| 11 place some basic annotations on them. Some examples of things you can do o
n SoM include: |
| 12 </p> |
| 13 <ul> |
| 14 <li><strong>Examine</strong> failures to see detailed information on relat
ed revisions. </li> |
| 15 <li><strong>Snooze</strong> an alert to temporarily move a failure outside
of your view. </li> |
| 16 <li><strong>Link a Bug</strong> to an alert to keep track of which bug cau
sed the failure. |
| 17 <ul> |
| 18 <li>Find bugs to link from the <a href="http://crbug.com" target="_bla
nk">Chromium Issue Tracker</a>.</li> |
| 19 <li>To link a bug, you can enter the URL or number for the bug. </li> |
| 20 <li>If a bug does not yet exist for the failure, you can file a new bu
g. |
| 21 If you do so, remember to go back to Sheriff-o-Matic to link the bug
! </li> |
| 22 </ul> |
| 23 </li> |
| 24 </ul> |
| 25 <p> |
| 26 If you encounter any issues with Sheriff-o-Matic, you can file a bug by cl
icking on the feedback button |
| 27 in the bottom right corner of the screen. |
| 28 </p> |
| 29 <h2>Useful Links</h2> |
| 30 <ul> |
| 31 <li> |
| 32 <a href="http://www.chromium.org/developers/tree-sheriffs/sheriff-detail
s-chromium" target="_blank">How to Sheriff</a> |
| 33 </li> |
| 34 <li> |
| 35 <a href="https://g.co/bugatrooper" target="_blank">How to contact a Troo
per</a> |
| 36 </li> |
| 37 </ul> |
| 38 </template> |
| 39 <script> |
| 40 (function() { |
| 41 'use strict'; |
| 42 |
| 43 Polymer({ |
| 44 is: 'som-help', |
| 45 }) |
| 46 })(); |
| 47 </script> |
| 48 </dom-module> |
| OLD | NEW |