happstack-static-routing: Support for static URL routing with overlap detection for Happstack.

[ bsd3, distributed-computing, library, web ] [ Propose Tags ]

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.


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1, 0.2, 0.3, 0.3.1, 0.3.2, 0.4.0, 0.4.2, 0.6.0.0, 0.7.0.0
Change log CHANGELOG.md
Dependencies base (>=4 && <=10), containers (>=0.3), happstack-server (>=6), list-tries (>=0.4), transformers (>=0.2) [details]
License BSD-3-Clause
Author Scrive AB
Maintainer Gracjan Polak <gracjanpolak@gmail.com>, Jonathan Jouty <jonathan@scrive.com>, Mikhail Glushenkov <mikhail@scrive.com>
Category Web, Distributed Computing
Home page https://github.com/scrive/happstack-static-routing
Source repo head: git clone git://github.com/scrive/happstack-static-routing.git
Uploaded by MikhailGlushenkov at 2017-06-20T14:02:42Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 6969 total (26 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2017-06-20 [all 1 reports]

Readme for happstack-static-routing-0.6.0.0

[back to package description]

happstack-static-routing Hackage version Build Status

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.