golang-mux-dev 0.0~git20130701-1 source package in Ubuntu

Changelog

golang-mux-dev (0.0~git20130701-1) unstable; urgency=low


  * Initial release (Closes: #714805)

 -- Daniel Mizyrycki <email address hidden>  Fri, 13 Jul 2013 11:19:06 -0700

Upload details

Uploaded by:
Daniel Mizyrycki
Uploaded to:
Sid
Original maintainer:
Daniel Mizyrycki
Architectures:
all
Section:
misc
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release universe misc

Builds

Saucy: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
golang-mux-dev_0.0~git20130701-1.dsc 1.9 KiB d04f398e95717c75d6c38d7e402027ed35eb39c60f24222875403da5ea89eec9
golang-mux-dev_0.0~git20130701.orig.tar.gz 17.0 KiB a7432cc0ac4e241652ac4cc195eb515332e4bd2e1767bfed34f902853d55d69e
golang-mux-dev_0.0~git20130701-1.debian.tar.gz 3.3 KiB 9f87a34651e182bd48da4562d94d1e0197936c6245acd047b065db793e817982

No changes file available.

Binary packages built by this source

golang-mux-dev: URL router and dispatcher

 gorilla/mux implements a request router and dispatcher.
 .
 The name mux stands for "HTTP request multiplexer". Like the standard
 http.ServeMux, mux.Router matches incoming requests against a list of
 registered routes and calls a handler for the route that matches the URL
 or other conditions. The main features are:
 .
  * Requests can be matched based on URL host, path, path prefix, schemes,
    header and query values, HTTP methods or using custom matchers.
  * URL hosts and paths can have variables with an optional regular
    expression.
  * Registered URLs can be built, or "reversed", which helps maintaining
    references to resources.
  * Routes can be used as subrouters: nested routes are only tested if the
    parent route matches. This is useful to define groups of routes that
    share common conditions like a host, a path prefix or other repeated
    attributes. As a bonus, this optimizes request matching.
  * It implements the http.Handler interface so it is compatible with the
    standard http.ServeMux.