A copyright violation detector running on Wikimedia Cloud Services https://tools.wmflabs.org/copyvios/
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

11 строки
401 B

  1. <%include file="/support/header.mako" args="title='Debug - Earwig\'s Copyvio Detector'"/>
  2. <%! from flask import request %>\
  3. <ul>
  4. % for key, value in request.environ.items():
  5. % if key not in ["wsgi.input", "wsgi.errors", "PATH"]:
  6. <li><b>${key}</b>: ${value | h}</li>
  7. % endif
  8. % endfor
  9. </ul>
  10. <%include file="/support/footer.mako"/>