munge-extra.htmlt 764 B

1234567891011
  1. --INI--
  2. URI.Munge = "/redirect?s=%s&t=%t&r=%r&n=%n&m=%m&p=%p"
  3. URI.MungeSecretKey = "foo"
  4. URI.MungeResources = true
  5. --HTML--
  6. <a href="http://example.com">Link</a>
  7. <img src="http://example.com" style="background-image:url(http://example.com);" alt="example.com" />
  8. --EXPECT--
  9. <a href="/redirect?s=http%3A%2F%2Fexample.com&amp;t=c15354f3953dfec262c55b1403067e0d045a3059&amp;r=&amp;n=a&amp;m=href&amp;p=">Link</a>
  10. <img src="/redirect?s=http%3A%2F%2Fexample.com&amp;t=c15354f3953dfec262c55b1403067e0d045a3059&amp;r=1&amp;n=img&amp;m=src&amp;p=" style="background-image:url(&quot;/redirect?s=http%3A%2F%2Fexample.com&amp;t=c15354f3953dfec262c55b1403067e0d045a3059&amp;r=1&amp;n=img&amp;m=style&amp;p=background-image&quot;);" alt="example.com" />
  11. --# vim: et sw=4 sts=4