A copyright violation detector running on Wikimedia Cloud Services https://tools.wmflabs.org/copyvios/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 lines
541 B

  1. <%include file="/support/header.mako" args="environ=environ, cookies=cookies, title='Debug'"/>
  2. <ul>
  3. % for key, value in environ.items():
  4. % if key not in ["wsgi.input", "wsgi.errors", "PATH"]:
  5. <li><b>${key}</b>: ${value | h}</li>
  6. % elif key == "wsgi.input":
  7. <li><b>${key}</b>: ${value.read(int(environ.get("CONTENT_LENGTH", 0))) | h}</li>
  8. % endif
  9. % endfor
  10. </ul>
  11. <%include file="/support/footer.mako" args="environ=environ, cookies=cookies"/>