golang-github-gorilla-mux 0.0~git20150814.0.f7b6aaa-1 source package in Ubuntu

Changelog

golang-github-gorilla-mux (0.0~git20150814.0.f7b6aaa-1) unstable; urgency=medium

  * Upstream bump to f7b6aaa (2015-08-14).

 -- Tianon Gravi <email address hidden>  Fri, 14 Aug 2015 16:18:20 -0600

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Xenial release main misc

Builds

Xenial: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-gorilla-mux_0.0~git20150814.0.f7b6aaa-1.dsc 2.3 KiB d725d50e0e4e6f3bf7e789d3fc537790bd89f8ce4aba8432b7f067a5a3d57eb9
golang-github-gorilla-mux_0.0~git20150814.0.f7b6aaa.orig.tar.bz2 19.8 KiB 32a03a6b2e0cbdc7aa073f7e44f232827818a759829ccf601e49fc826b75768b
golang-github-gorilla-mux_0.0~git20150814.0.f7b6aaa-1.debian.tar.xz 4.6 KiB 73d25441ab2cef9a8c8ee343438ea5d627ac4ebbf3c929dd09541ce060cd8091

No changes file available.

Binary packages built by this source

golang-github-gorilla-mux-dev: A powerful URL router and dispatcher for golang.

 Package 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.