packages feed

web-plugins 0.2.7 → 0.2.8

raw patch · 2 files changed

+2/−2 lines, 2 files

Files

Web/Plugins/Core.hs view
@@ -488,7 +488,7 @@       isDigitChar c    = (c >= '0' && c <= '9')        isOk :: Char -> Bool-      isOk c = isAlphaChar c || isDigitChar c || c `elem` ":@$-_.~"+      isOk c = isAlphaChar c || isDigitChar c || elem c (":@$-_.~" :: String)        escapeChar c           | c == ' '  = singleton '+'
web-plugins.cabal view
@@ -1,5 +1,5 @@ name:                web-plugins-version:             0.2.7+version:             0.2.8 synopsis:            dynamic plugin system for web applications homepage:            http://www.happstack.com/ license:             BSD3