Originally created by: sf-overlords
Created by: rcopeland
Created date: 2010-05-06 22:51:09.555000
Assigned to:rcopeland
This is due to the naive code in pyforge/controllers/project.py:
@expose()
@with_trailing_slash
def index(self):
if c.project.shortname.startswith('u/'):
redirect('profile/')
else:
redirect('home/')
We need to do some other kind of check, like maybe checking to see whether the profile or home plugins are installed instead of just checking shortname (the shortname of a subproject is u/username/subname).
Originally by: sf-overlords
Post by rcopeland: