Mercurial > urweb
view demo/metaform2.ur @ 1726:4df4521fbd3b
Removed excess zero byte from empty pages.
Zero byte sometimes breaks http tunneling in Safari. Empty page is a "Not Modified" response for app.js
author | Vladimir Shabanov <vshabanoff@gmail.com> |
---|---|
date | Wed, 25 Apr 2012 03:07:07 +0400 |
parents | 6302b10dbe0e |
children |
line wrap: on
line source
structure MM = Metaform.Make(struct val names = {X = "x", Y = "y"} end) fun diversion () = return <xml><body> Welcome to the diversion. </body></xml> fun main () = return <xml><body> <li> <a link={diversion ()}>See something shiny!</a></li> <li> <a link={MM.main ()}>Fill out a form!</a></li> </body></xml>