view pylons_app/lib/utils.py @ 96:f24b9a2934cf

added is mercurial method in utils,
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 24 Apr 2010 18:20:59 +0200
parents aec4c0071cb3
children cc5cf1a93902
line wrap: on
line source

   
def get_repo_slug(request):
    path_info = request.environ.get('PATH_INFO')
    uri_lst = path_info.split('/')   
    repo_name = uri_lst[1]
    return repo_name

def is_mercurial(environ):
    """
    Returns True if request's target is mercurial server - header
    ``HTTP_ACCEPT`` of such request would start with ``application/mercurial``.
    """
    http_accept = environ.get('HTTP_ACCEPT')
    if http_accept and http_accept.startswith('application/mercurial'):
        return True
    return False