tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

refresh-with-svg.py (326B)


      1 def main(_request, response):
      2    response.headers.set(b"Content-Type", b"image/svg+xml")
      3    response.headers.set(b"Refresh", b"0;./refreshed.txt") # Test byte to Unicode conversion
      4    response.content = u'<svg version="1.1" xmlns="http://www.w3.org/2000/svg"><text y="14" text-anchor="left" >Not refreshed.</text></svg>\n'