golang-mux-dev 0.0~git20140505.1.136d54f-2~ubuntu0.14.04.1 source package in Ubuntu

Changelog

golang-mux-dev (0.0~git20140505.1.136d54f-2~ubuntu0.14.04.1) trusty-proposed; urgency=medium

  [ Serge Hallyn ]
  * Backport new version to Ubuntu 14.04 to support Docker SRU (LP: #1338768):
    - Rename package to golang-mux-dev to align with 14.04.
 -- James Page <email address hidden>   Fri, 08 Aug 2014 12:34:31 +0200

Upload details

Uploaded by:
James Page
Uploaded to:
Trusty
Original maintainer:
Ubuntu Developers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty updates universe misc

Builds

Trusty: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
golang-mux-dev_0.0~git20140505.1.136d54f.orig.tar.gz 18.3 KiB 97423d9cff4e04a0dfdfc10463468421a79551625d87d595348fb7cdea71f844
golang-mux-dev_0.0~git20140505.1.136d54f-2~ubuntu0.14.04.1.debian.tar.xz 4.7 KiB 9fbbf4ccded5255a0310a45ff90ec3bb9ecdc1c601f073620d2ba5d2c9cd453e
golang-mux-dev_0.0~git20140505.1.136d54f-2~ubuntu0.14.04.1.dsc 2.3 KiB 07723d92117cc6a4fc510441285ce2dde1928cb1d4e264f635f6d0b5f6b42bed

View changes file

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.