コード例 #1
0
def redirect_to(*args, **kw):
    '''A routes.redirect_to wrapper to retain the i18n settings'''
    kw['__ckan_no_root'] = True
    if are_there_flash_messages():
        kw['__no_cache__'] = True
    return _redirect_to(url_for(*args, **kw))
コード例 #2
0
ファイル: helpers.py プロジェクト: HHS/ckan
def redirect_to(*args, **kw):
    '''A routes.redirect_to wrapper to retain the i18n settings'''
    kw['__ckan_no_root'] = True
    if are_there_flash_messages():
        kw['__no_cache__'] = True
    return _redirect_to(url_for(*args, **kw))
コード例 #3
0
ファイル: helpers.py プロジェクト: icmurray/ckan
def redirect_to(*args, **kw):
    '''A routes.redirect_to wrapper to retain the i18n settings'''
    kw['__ckan_no_root'] = True
    return _redirect_to(url_for(*args, **kw))
コード例 #4
0
ファイル: helpers.py プロジェクト: Brackets/ckan
def redirect_to(*args, **kw):
    """A routes.redirect_to wrapper to retain the i18n settings"""
    kw["__ckan_no_root"] = True
    if are_there_flash_messages():
        kw["__no_cache__"] = True
    return _redirect_to(url_for(*args, **kw))
コード例 #5
0
ファイル: helpers.py プロジェクト: zydio/ckan
def redirect_to(*args, **kw):
    '''A routes.redirect_to wrapper to retain the i18n settings'''
    return _redirect_to(url_for(*args, **kw))