redirect - ActiveState ActiveGo 1.8
...

Package redirect

import "golang.org/x/tools/godoc/redirect"
Overview
Index

Overview ▾

Package redirect provides hooks to register HTTP handlers that redirect old godoc paths to their new equivalents and assist in accessing the issue tracker, wiki, code review system, etc.

func Handler

func Handler(target string) http.Handler

func LoadChangeMap

func LoadChangeMap(filename string) error

LoadChangeMap loads the specified map of Mercurial to Git revisions, which is used by the /change/ handler to intelligently map old hg revisions to their new git equivalents. It should be called before calling Register. The file should remain open as long as the process is running. See the implementation of this package for details.

func PrefixHandler

func PrefixHandler(prefix, baseURL string) http.Handler

func Register

func Register(mux *http.ServeMux)

Register registers HTTP handlers that redirect old godoc paths to their new equivalents and assist in accessing the issue tracker, wiki, code review system, etc. If mux is nil it uses http.DefaultServeMux.