a5e08f7bcc
I installed the rails_xss plugin, for the main purpose of seeing what will break with Rails 3.0 (where the behaviour of the plugin is the default). I think I've fixed everything, but let me know if you see stuff that is HTML-escaped, which shouldn't be. As a side benefit, we now use Erubis, rather than ERB, to render templates. They tell me it's faster ...
31 lines
608 B
Plaintext
31 lines
608 B
Plaintext
$ erubis -l scheme example.escheme
|
|
(let ((_buf '())) (define (_add x) (set! _buf (cons x _buf))) (_add "<html>
|
|
<body>\n")
|
|
|
|
(let ((user "Erubis")
|
|
(items '("<aaa>" "b&b" "\"ccc\""))
|
|
(i 0))
|
|
|
|
(_add " <p>Hello ")(_add user)(_add "!</p>
|
|
<table>\n")
|
|
|
|
(for-each
|
|
(lambda (item)
|
|
(set! i (+ i 1))
|
|
|
|
(_add " <tr bgcolor=\"")(_add (if (= (modulo i 2) 0) "#FFCCCC" "#CCCCFF"))(_add "\">
|
|
<td>")(_add i)(_add "</td>
|
|
<td>")(_add item)(_add "</td>
|
|
</tr>\n")
|
|
|
|
) ; lambda end
|
|
items) ; for-each end
|
|
|
|
(_add " </table>\n")
|
|
|
|
) ; let end
|
|
|
|
(_add " </body>
|
|
</html>\n")
|
|
(reverse _buf))
|