Mercurial > urweb
annotate tests/blob.ur @ 2135:a159625975a7
Allow file directives to contain slashes
Previously, adding a line such as "file /c/foo.css css/foo.css" would
cause the compiler to raise an InvalidArc exception.
author | Julian Squires <julian@cipht.net> |
---|---|
date | Fri, 24 Apr 2015 07:51:47 -0400 |
parents | 67ebd30a2283 |
children |
rev | line source |
---|---|
adam@1471 | 1 fun main () = |
adam@1471 | 2 setHeader (blessResponseHeader "X-Test") "Test"; |
adam@1471 | 3 return <xml><body>Test</body></xml> |
adamc@737 | 4 |
adam@1471 | 5 fun bad () = |
adam@1471 | 6 setHeader (blessResponseHeader "X-Test") "Test"; |
adam@1471 | 7 returnBlob (textBlob "hello") (blessMime "text/plain") |