What is the difference between the two lines:
A. loginURL = users.create_login_url(os.environ['PATH_INFO'])
B. loginURL = users.create_login_url(self.request.uri)
For my app engine project I want a user to make customized maps. But if he is not logged in, before he can start a new map project, I want to redirect him to login, and then right after he logs in I would like him to see the "make new project page".