Files @ 670713507d03
Branch filter:

Location: kallithea/pylons_app/lib/utils.py

Marcin Kuzminski
Moved summary to seperate controller,
little cleanups in templates.
added archives to summary
1
2
3
4
5
6
7
   
def get_repo_slug(request):
    path_info = request.environ.get('PATH_INFO')
    repo_name = path_info.split('/')[-2]
    action = path_info.split('/')[-1]
    
    return repo_name