Name: happstack-static-routing Version: 0.6.0.0 Synopsis: Support for static URL routing with overlap detection for Happstack. Description: If you have a large routing table in Happstack and want to insert a new handler, you might run into overlap problems (ambiguity). The new handler might not fire because it matches against a URL that is already handled earlier. Or if you put your new handler first, it might steal requests from existing handlers. This Happstack support library allows you to detect overlap cases and build unambiguous routing tables where the order of the handlers is irrelevant. License: BSD3 License-file: LICENSE Author: Scrive AB Maintainer: Gracjan Polak , Jonathan Jouty , Mikhail Glushenkov Homepage: https://github.com/scrive/happstack-static-routing Stability: Development Category: Web, Distributed Computing Build-type: Simple Cabal-version: >=1.6 Tested-with: GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.1 Extra-source-files: README.md, CHANGELOG.md source-repository head type: git location: git://github.com/scrive/happstack-static-routing.git library exposed-modules: Happstack.StaticRouting other-modules: Happstack.StaticRouting.Internal hs-source-dirs: src build-depends: base >= 4 && <= 10 build-depends: happstack-server >= 6 build-depends: containers >= 0.3 build-depends: list-tries >= 0.4 build-depends: transformers >= 0.2