1
0
forked from GitHub/gf-core

added tree visualizations in TranslateApp

This commit is contained in:
krasimir
2009-10-24 10:38:21 +00:00
parent cc69abd7b6
commit 73e1f0e81e
10 changed files with 271 additions and 32 deletions

View File

@@ -2,7 +2,8 @@
module FastCGIUtils (initFastCGI, loopFastCGI,
throwCGIError, handleCGIErrors,
stderrToFile,
outputJSONP,
outputJSONP,
outputPNG,
splitBy) where
import Control.Concurrent
@@ -164,6 +165,11 @@ outputJSONP x =
setHeader "Content-Type" "text/json; charset=utf-8"
outputStrict $ UTF8.encodeString str
outputPNG :: String -> CGI CGIResult
outputPNG x = do
setHeader "Content-Type" "image/png"
outputStrict x
outputStrict :: String -> CGI CGIResult
outputStrict x | x == x = output x
| otherwise = fail "I am the pope."