2008-07-05 06:34:19 +00:00
|
|
|
--INI--
|
|
|
|
URI.Munge = "/redirect?s=%s&t=%t&r=%r&n=%n&m=%m&p=%p"
|
|
|
|
URI.MungeSecretKey = "foo"
|
|
|
|
URI.MungeResources = true
|
|
|
|
--HTML--
|
|
|
|
<a href="http://example.com">Link</a>
|
|
|
|
<img src="http://example.com" style="background-image:url(http://example.com);" alt="example.com" />
|
|
|
|
--EXPECT--
|
|
|
|
<a href="/redirect?s=http%3A%2F%2Fexample.com&t=c15354f3953dfec262c55b1403067e0d045a3059&r=&n=a&m=href&p=">Link</a>
|
2010-05-21 15:53:52 +00:00
|
|
|
<img src="/redirect?s=http%3A%2F%2Fexample.com&t=c15354f3953dfec262c55b1403067e0d045a3059&r=1&n=img&m=src&p=" style="background-image:url("/redirect?s=http%3A%2F%2Fexample.com&t=c15354f3953dfec262c55b1403067e0d045a3059&r=1&n=img&m=style&p=background-image");" alt="example.com" />
|
2008-12-06 09:24:59 +00:00
|
|
|
--# vim: et sw=4 sts=4
|