Mercurial > urweb
view tests/reqheader.ur @ 783:ec0a0dd0ca12
Revising manual through end of Section 3
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Tue, 05 May 2009 11:45:03 -0400 |
parents | 360cbc202756 |
children |
line wrap: on
line source
fun main () : transaction page = ua <- requestHeader "User-Agent"; case ua of None => return <xml>Not found</xml> | Some s => return <xml>User-Agent: {[s]}</xml>