| OLD | NEW |
| 1 {% set title = 'Isolate Server' %} | 1 {% set title = 'Isolate Server' %} |
| 2 {% extends "isolate/base.html" %} | 2 {% extends "isolate/base.html" %} |
| 3 | 3 |
| 4 {% block headers %} | 4 {% block headers %} |
| 5 <style> | 5 <style> |
| 6 .highlight_section { | 6 .highlight_section { |
| 7 background-color: #ffffee; | 7 background-color: #ffffee; |
| 8 border-radius: 20px; | 8 border-radius: 20px; |
| 9 padding: 10px; | 9 padding: 10px; |
| 10 } | 10 } |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 <h1>Isolate Server</h1> | 28 <h1>Isolate Server</h1> |
| 29 <div class=highlight_section> | 29 <div class=highlight_section> |
| 30 Isolate Server is a Content-Addressed Cache that is used by the Swarming | 30 Isolate Server is a Content-Addressed Cache that is used by the Swarming |
| 31 project to distribute test execution accross a swarming bots. | 31 project to distribute test execution accross a swarming bots. |
| 32 It is written in python and runs on <a | 32 It is written in python and runs on <a |
| 33 href="https://cloud.google.com/appengine/">AppEngine</a>. It is part of <a | 33 href="https://cloud.google.com/appengine/">AppEngine</a>. It is part of <a |
| 34 href="https://github.com/luci/luci-py">LUCI</a>. | 34 href="https://github.com/luci/luci-py">LUCI</a>. |
| 35 </div> | 35 </div> |
| 36 <p> | 36 <p> |
| 37 | 37 |
| 38 {% if not nickname %} | 38 {% if user_type %} |
| 39 As a {{user_type}}, you are entitled to see these pages: |
| 40 {% else %} |
| 39 Please <a href="{{signin_link|safe}}">sign in</a> for more access. | 41 Please <a href="{{signin_link|safe}}">sign in</a> for more access. |
| 40 {% else %} | |
| 41 As a {{user_type}}, you are entitled to see these pages: | |
| 42 {% endif %} | 42 {% endif %} |
| 43 | 43 |
| 44 <h3>Service Status</h3> | 44 <h3>Service Status</h3> |
| 45 <ul> | 45 <ul> |
| 46 <li><a href="/stats">Usage statistics</a></li> | 46 <li><a href="/stats">Usage statistics</a></li> |
| 47 <li class="user"><a href="/browse">Browse files online</a></li> | 47 <li class="user"><a href="/browse">Browse files online</a></li> |
| 48 <li class="admin"><a href="/restricted/ereporter2/report">Exceptions in server
log</a></li> | 48 <li class="admin"><a href="/restricted/ereporter2/report">Exceptions in server
log</a></li> |
| 49 <li class="admin"><a href="/restricted/ereporter2/errors">Ereporter2 errors</a
></li> | 49 <li class="admin"><a href="/restricted/ereporter2/errors">Ereporter2 errors</a
></li> |
| 50 <li class="admin"><a href="/restricted/mapreduce/status">Map reduce jobs</a></
li> | 50 <li class="admin"><a href="/restricted/mapreduce/status">Map reduce jobs</a></
li> |
| 51 </ul> | 51 </ul> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 63 <form action="/restricted/launch_mapreduce" method="post"> | 63 <form action="/restricted/launch_mapreduce" method="post"> |
| 64 <input type="hidden" name="xsrf_token" value="{{xsrf_token}}" /> | 64 <input type="hidden" name="xsrf_token" value="{{xsrf_token}}" /> |
| 65 <input type="hidden" name="job_id" value="{{job.id}}" /> | 65 <input type="hidden" name="job_id" value="{{job.id}}" /> |
| 66 <button type="submit">Launch '{{job.name}}'</button> | 66 <button type="submit">Launch '{{job.name}}'</button> |
| 67 </form> | 67 </form> |
| 68 </li> | 68 </li> |
| 69 {% endfor %} | 69 {% endfor %} |
| 70 </ul> | 70 </ul> |
| 71 | 71 |
| 72 {% endblock %} | 72 {% endblock %} |
| OLD | NEW |