validator_generic.html 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {% extends "layout.html" %}
  2. {% block head %}
  3. {{ super() }}
  4. <style type="text/css">
  5. .cursor {
  6. display: inline-block;
  7. background: #dfdfdf;
  8. margin-left: 1px;
  9. margin-top: 2px;
  10. vertical-align: sub;
  11. height: 16px;
  12. animation: blink 2s linear 0s infinite;
  13. }
  14. @keyframes blink {
  15. 0% { background: #fff }
  16. 49% { background: #fff }
  17. 50% { background: #dfdfdf }
  18. 99% { background: #dfdfdf }
  19. 100% { background: #fff }
  20. }
  21. </style>
  22. {%- endblock %}
  23. {% block script %}
  24. {{ super() }}
  25. <script type="text/javascript">
  26. $(function() {
  27. var evt;
  28. function validate() {
  29. evt = new EventSource("{{ validator_url }}");
  30. evt.onmessage = function(e) {
  31. $('#status').append(e.data+'\n');
  32. var pre=$("#status").parent();
  33. pre.stop();
  34. pre.animate({
  35. 'scrollTop': pre[0].scrollHeight
  36. }, 500);
  37. }
  38. evt.onerror = function(e) {
  39. $('#status').append('<span style="color: red;">/!\\ Error with the validation API, connection was closed. Retry in a few seconds\n</span>')
  40. evt.close();
  41. setTimeout(function() { $('#retry').removeAttr('disabled') }, 5000);
  42. }
  43. evt.addEventListener('control', function(e) {
  44. var msg=$.parseJSON(e.data);
  45. if(!!msg.passed)
  46. $('input[type="submit"]').removeAttr('disabled');
  47. evt.close();
  48. if(!!msg.closed) {
  49. evt.close();
  50. setTimeout(function() { $('#retry').removeAttr('disabled') }, 5000);
  51. }
  52. });
  53. }
  54. $('#retry').click(function() {
  55. $("#status").html('');
  56. validate();
  57. $('#retry').attr('disabled', 'disabled')
  58. return false;
  59. });
  60. validate();
  61. });
  62. </script>
  63. {%- endblock %}
  64. {% block container %}
  65. <div class="row">
  66. <div class="span11 well">
  67. <form method="post" action="{{ confirm_url }}" class="form-horizontal">
  68. <fieldset>
  69. <legend>{{ page_title }}</legend>
  70. <pre id="validator">
  71. <div style="line-height: normal"> _______ _______ ______ _______
  72. |_______|_______|_____ \| ___ \
  73. ______ ______ _ \ | | \ | ____ _____
  74. | ___)| ___)| | | | | | | | \| __ |
  75. | | | | | |__/ /| | | | | | | __ -|
  76. |__| |__| |_____/ |_| |_| |____/|_____|
  77. </div>
  78. <div id="status"></div><div class="cursor"> </div></pre>
  79. <div class="form-actions" style="text-align: right;">
  80. <button id="retry" class="btn" disabled="disabled">{{ _("Retry") }}</button>
  81. <input type="submit" disabled="disabled" class="btn btn-primary" value="{{ _("Confirm") }}" />
  82. </div>
  83. </fieldset>
  84. </div>
  85. </div>
  86. {% endblock %}