about summary refs log tree commit diff
path: root/route_test.go (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-05-12Add GetPath and GetMethod to the Match object masterFranck Cuny1-3/+3
2013-05-12The Match type implement an interface.Franck Cuny1-2/+6
The "mapping" field that contains the map of elements in the path is now private and can be accesed via the RouteParams function.
2013-05-11FmtFranck Cuny1-3/+3
2013-05-11The response object is passed to the matching function.Franck Cuny5-20/+17
Instead of letting the matching function creates the response object, it's created earlier with a default HTTP status of 200, and the object is passed to the function.
2013-05-08remove the example, it does not make sense anymoreFranck Cuny1-72/+0
2013-05-08request and response are in web-requestFranck Cuny1-8/+9
2013-05-08fix importFranck Cuny1-1/+1
2013-05-08clean up last mention of moohFranck Cuny1-14/+14
2013-05-08Clean up messy path before matching a request.Franck Cuny2-1/+22
Try to clean up messy path (too many slashes for now) in the path before applying the Match.
2013-05-08Rename the package from mooh to routerFranck Cuny5-16/+19
2013-05-07