Update Vendored Erubis to 2.6.6
This commit is contained in:
parent
c18c2f988d
commit
39c2138f88
300 changed files with 207 additions and 171 deletions
30
vendor/plugins/erubis/test/data/users-guide/example_scheme.result
vendored
Normal file
30
vendor/plugins/erubis/test/data/users-guide/example_scheme.result
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
$ 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))
|
Loading…
Add table
Add a link
Reference in a new issue