Mercurial > genshi > mirror
view examples/bench/kid/base.kid @ 949:8bc6f32fdd45 trunk
Improve sanitizing of CSS in style attributes (note that the Genshi documentation already warns users that enabling the style attribute is dangerous -- now it is slightly less dangerous). Fixes #455. Patch taken from jomae's Trac commit trac:r10788 and modified for Genshi -- thanks!
author | hodgestar |
---|---|
date | Fri, 02 Sep 2011 22:01:42 +0000 |
parents | c40a5dcd2b55 |
children |
line wrap: on
line source
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"> <p py:def="greeting(name)"> Hello, ${name}! </p> <body py:match="item.tag == '{http://www.w3.org/1999/xhtml}body'" py:strip=""> <div id="header"> <h1>${title}</h1> </div> ${item} <div id="footer" /> </body> </html>