示例#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))