about summary refs log tree commit diff
path: root/route.go (follow)
Commit message (Expand)AuthorAgeFilesLines
* Add GetPath and GetMethod to the Match object masterFranck Cuny2013-05-121-4/+12
* The Match type implement an interface.Franck Cuny2013-05-121-2/+6
* FmtFranck Cuny2013-05-111-3/+3
* The response object is passed to the matching function.Franck Cuny2013-05-111-3/+3
* Rename the package from mooh to routerFranck Cuny2013-05-081-1/+1
* Remove code not related to the router.Franck Cuny2013-05-061-2/+3
* Placeholder in URL use the {\w+} form, not :\w+Franck Cuny2013-04-271-4/+4
* Support default value for placeholders in route's path.Franck Cuny2013-04-271-2/+9
* Add Validations for URL parameters.Franck Cuny2013-04-261-10/+67
* Change the interface to create routes.Franck Cuny2013-04-221-38/+25
* In each route, keep a map of HTTP methods available.Franck Cuny2013-04-221-7/+4
* Split only once per request the path in components.Franck Cuny2013-04-221-6/+4
* Apply gofmtFranck Cuny2013-04-211-1/+0
* Normalize the name of captured components.Franck Cuny2013-04-211-2/+9
* Apply gofmtFranck Cuny2013-04-211-1/+1
* Simplify the dispatch's workflow.Franck Cuny2013-04-211-3/+4
* Rename the type fn to fns and add a real type fnFranck Cuny2013-04-211-4/+5
* Small improvementsFranck Cuny2013-04-211-5/+1
* Disambiguate routes when more than one match.Franck Cuny2013-04-211-8/+6
* Add support for optional parameter in a path.Franck Cuny2013-04-211-7/+17
* The test was inversed.Franck Cuny2013-04-211-1/+1
* Clean the Path from useless /.Franck Cuny2013-04-211-1/+7
* Support parameters in URL.Franck Cuny2013-04-211-16/+57
* Very simple implementation for the framework.Franck Cuny2013-04-171-0/+61