當前位置: 首頁>>代碼示例>>Python>>正文


Python settings.SILENCED_SYSTEM_CHECKS屬性代碼示例

本文整理匯總了Python中django.conf.settings.SILENCED_SYSTEM_CHECKS屬性的典型用法代碼示例。如果您正苦於以下問題:Python settings.SILENCED_SYSTEM_CHECKS屬性的具體用法?Python settings.SILENCED_SYSTEM_CHECKS怎麽用?Python settings.SILENCED_SYSTEM_CHECKS使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在django.conf.settings的用法示例。


在下文中一共展示了settings.SILENCED_SYSTEM_CHECKS屬性的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: heartbeat_check_detail

# 需要導入模塊: from django.conf import settings [as 別名]
# 或者: from django.conf.settings import SILENCED_SYSTEM_CHECKS [as 別名]
def heartbeat_check_detail(check):
    errors = check(app_configs=None)
    errors = list(filter(lambda e: e.id not in settings.SILENCED_SYSTEM_CHECKS, errors))
    level = max([0] + [e.level for e in errors])

    return {
        "status": level_to_text(level),
        "level": level,
        "messages": {e.id: e.msg for e in errors},
    } 
開發者ID:mozilla-services,項目名稱:python-dockerflow,代碼行數:12,代碼來源:views.py

示例2: check_context_processors

# 需要導入模塊: from django.conf import settings [as 別名]
# 或者: from django.conf.settings import SILENCED_SYSTEM_CHECKS [as 別名]
def check_context_processors(app_configs, **kwargs):
    errors = []

    if VERSION < (2, 2):
        # The admin.E404 check has been introduced in the Django 2.2 cycle.
        return errors

    for engine in engines.all():
        if isinstance(engine, DjangoTemplates):
            django_templates_instance = engine.engine
            break
    else:
        django_templates_instance = None

    if django_templates_instance:
        if (
            "django.contrib.messages.context_processors.messages"
            not in django_templates_instance.context_processors
            and "admin.E404" not in settings.SILENCED_SYSTEM_CHECKS
        ):
            errors.append(
                checks.Error(
                    "If using 'user_messages.context_processors.messages'"
                    " instead of the official messages context processor"
                    " you have to add 'admin.E404' to SILENCED_SYSTEM_CHECKS.",
                    id="user_messages.E001",
                )
            )

    return errors 
開發者ID:matthiask,項目名稱:django-user-messages,代碼行數:32,代碼來源:apps.py


注:本文中的django.conf.settings.SILENCED_SYSTEM_CHECKS屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。