A copyright violation detector running on Wikimedia Cloud Services https://tools.wmflabs.org/copyvios/
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

10 lines
366 B

  1. <%include file="/support/header.mako" args="environ=environ, 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}</li>
  6. % endif
  7. % endfor
  8. </ul>
  9. <%include file="/support/footer.mako" args="environ=environ"/>