Files @ aec4c0071cb3
Branch filter:

Location: kallithea/pylons_app/lib/utils.py - annotation

Marcin Kuzminski
added empty controllers for branches tags files graph, routing and test for them
1
2
3
4
5
6
7
8
   
def get_repo_slug(request):
    path_info = request.environ.get('PATH_INFO')
    uri_lst = path_info.split('/')
    print uri_lst
    print 'len', len(uri_lst)    
    repo_name = uri_lst[1]
    return repo_name