File: control

package info (click to toggle)
golang-context 0.0~git20140604.1.14f550f-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 92 kB
  • ctags: 33
  • sloc: sh: 90; makefile: 3
file content (20 lines) | stat: -rw-r--r-- 945 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Source: golang-context
Section: devel
Priority: extra
Maintainer: Tianon Gravi <admwiggin@gmail.com>
Uploaders: Docker Packaging Team <docker-maint@lists.alioth.debian.org>
Build-Depends: debhelper (>= 9), dh-golang, golang-go
Standards-Version: 3.9.5
Homepage: https://github.com/gorilla/context
Vcs-Git: git://anonscm.debian.org/pkg-go/packages/golang-context.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-go/packages/golang-context.git

Package: golang-context-dev
Architecture: all
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: General purpose registry for global request variables
 context is part of the Gorilla web toolkit. It stores values shared during a
 request lifetime. For example, a router can set variables extracted from the
 URL and later application handlers can access those values, or it can be used
 to store sessions values to be saved at the end of a request. There are
 several others common uses.