auth
auth/oauth2.go
Add our BUG notices. Rather than keeping the list of things to implement or test on sticky notes attached to my monitor, let's give them BUG designations within the code. Now `godoc . bugs` will list them out for us. Isn't that nice?
1.1 --- a/oauth2.go Mon Jan 19 06:01:51 2015 -0500 1.2 +++ b/oauth2.go Mon Jan 19 06:42:42 2015 -0500 1.3 @@ -198,7 +198,8 @@ 1.4 } 1.5 return 1.6 } 1.7 - // BUG(paddy): checking if the redirect URI is valid should be a helper function 1.8 + // BUG(paddy): Checking if the redirect URI is valid should be a helper function. 1.9 + 1.10 // whether a redirect URI is valid or not depends on the number of endpoints 1.11 // the client has registered 1.12 numEndpoints, err := context.CountEndpoints(clientID)