]> gitweb @ CieloNegro.org - Lucu.git/blobdiff - Network/HTTP/Lucu/Postprocess.hs
Use blaze-html instead of HXT.
[Lucu.git] / Network / HTTP / Lucu / Postprocess.hs
index 6735652d6a5656410c6cc5ebfcdc922c11184761..a8359758f9d90eaf107f58fc2bb4cf008b611cac 100644 (file)
@@ -47,15 +47,15 @@ abortOnCertainConditions (NI {..})
                    $ A.toAsciiBuilder "Inappropriate status code for a response: "
                    ⊕ printStatusCode resStatus
 
-               when ( resStatus â\89¡ MethodNotAllowed ∧
+               when ( resStatus â\89\88 MethodNotAllowed ∧
                       hasHeader "Allow" res        )
                    $ abort'
                    $ A.toAsciiBuilder "The status was "
                    ⊕ printStatusCode resStatus
                    ⊕ A.toAsciiBuilder " but no \"Allow\" header."
 
-               when ( resStatus â\89¢ NotModified  ∧
-                      isRedirection resStatus ∧
+               when ( resStatus â\89\89 NotModified  ∧
+                      isRedirection resStatus  
                       hasHeader "Location" res )
                    $ abort'
                    $ A.toAsciiBuilder "The status code was "
@@ -108,7 +108,7 @@ writeDefaultPageIfNeeded ni@(NI {..})
              $ do writeHeader ni "Content-Type" $ Just defaultPageContentType
                   writeHeader ni "Content-Encoding" Nothing
                   res ← readTVar niResponse
-                  let body = getDefaultPage niConfig (Just niRequest) res
+                  let body = defaultPageForResponse niConfig (Just niRequest) res
                   putTMVar niBodyToSend body
 
 completeUnconditionalHeaders ∷ NormalInteraction → STM ()