# Django settings for mysite project. DEBUG = True TEMPLATE_DEBUG = DEBUG ADMINS = ( # ('Your Name', 'your_email@example.com'), ) MANAGERS = ADMINS DATABASES = { 'default': { 'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. 'NAME': '', # Or path to database file if using sqlite3. # The following settings are not used with sqlite3: 'USER': '', 'PASSWORD': '', 'HOST': '', # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP. 'PORT': '', # Set to empty string for default. } } # Hosts/domain names that are valid for this site; required if DEBUG is False # See https://d...content-available-to-author-only...t.com/en/1.5/ref/settings/#allowed-hosts ALLOWED_HOSTS = [] # Local time zone for this installation. Choices can be found here: # http://e...content-available-to-author-only...a.org/wiki/List_of_tz_zones_by_name # although not all choices may be available on all operating systems. # In a Windows environment this must be set to your system time zone. TIME_ZONE = 'America/Chicago' # Language code for this installation. All choices can be found here: # http://w...content-available-to-author-only...y.com/unicode/language-identifiers.html LANGUAGE_CODE = 'en-us' SITE_ID = 1 # If you set this to False, Django will make some optimizations so as not # to load the internationalization machinery. USE_I18N = True # If you set this to False, Django will not format dates, numbers and # calendars according to the current locale. USE_L10N = True # If you set this to False, Django will not use timezone-aware datetimes. USE_TZ = True # Absolute filesystem path to the directory that will hold user-uploaded files. # Example: "/var/www/example.com/media/" MEDIA_ROOT = '' # URL that handles the media served from MEDIA_ROOT. Make sure to use a # trailing slash. # Examples: "http://e...content-available-to-author-only...e.com/media/", "http://m...content-available-to-author-only...e.com/" MEDIA_URL = '' # Absolute path to the directory static files should be collected to. # Don't put anything in this directory yourself; store your static files # in apps' "static/" subdirectories and in STATICFILES_DIRS. # Example: "/var/www/example.com/static/" STATIC_ROOT = '' # URL prefix for static files. # Example: "http://e...content-available-to-author-only...e.com/static/", "http://s...content-available-to-author-only...e.com/" STATIC_URL = '/static/' # Additional locations of static files STATICFILES_DIRS = ( # Put strings here, like "/home/html/static" or "C:/www/django/static". # Always use forward slashes, even on Windows. # Don't forget to use absolute paths, not relative paths. ) # List of finder classes that know how to find static files in # various locations. STATICFILES_FINDERS = ( 'django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder', # 'django.contrib.staticfiles.finders.DefaultStorageFinder', ) # Make this unique, and don't share it with anybody. SECRET_KEY = '4fn^)6q#$u)!#@1c!q()lgynst*)42&g)htv4_qwu4gql#ii5^' # List of callables that know how to import templates from various sources. TEMPLATE_LOADERS = ( 'django.template.loaders.filesystem.Loader', 'django.template.loaders.app_directories.Loader', # 'django.template.loaders.eggs.Loader', ) MIDDLEWARE_CLASSES = ( 'django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', # Uncomment the next line for simple clickjacking protection: # 'django.middleware.clickjacking.XFrameOptionsMiddleware', ) ROOT_URLCONF = 'mysite.urls' # Python dotted path to the WSGI application used by Django's runserver. WSGI_APPLICATION = 'mysite.wsgi.application' TEMPLATE_DIRS = ( # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". # Always use forward slashes, even on Windows. # Don't forget to use absolute paths, not relative paths. ) INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', 'django.contrib.staticfiles', # Uncomment the next line to enable the admin: # 'django.contrib.admin', # Uncomment the next line to enable admin documentation: # 'django.contrib.admindocs', ) # A sample logging configuration. The only tangible logging # performed by this configuration is to send an email to # the site admins on every HTTP 500 error when DEBUG=False. # See http://d...content-available-to-author-only...t.com/en/dev/topics/logging for # more details on how to customize your logging configuration. LOGGING = { 'version': 1, 'disable_existing_loggers': False, 'filters': { 'require_debug_false': { '()': 'django.utils.log.RequireDebugFalse' } }, 'handlers': { 'mail_admins': { 'level': 'ERROR', 'filters': ['require_debug_false'], 'class': 'django.utils.log.AdminEmailHandler' } }, 'loggers': { 'django.request': { 'handlers': ['mail_admins'], 'level': 'ERROR', 'propagate': True, }, } }
Standard input is empty
prog.cpp:1:3: error: invalid preprocessing directive #Django prog.cpp:7:7: error: invalid preprocessing directive #( prog.cpp:13:5: warning: character constant too long for its type [enabled by default] prog.cpp:14:9: warning: character constant too long for its type [enabled by default] prog.cpp:14:19: warning: character constant too long for its type [enabled by default] prog.cpp:14:9: error: stray ‘#’ in program prog.cpp:14:48: warning: character constant too long for its type [enabled by default] prog.cpp:14:71: warning: character constant too long for its type [enabled by default] prog.cpp:14:80: warning: character constant too long for its type [enabled by default] prog.cpp:14:93: warning: character constant too long for its type [enabled by default] prog.cpp:15:9: warning: multi-character character constant [-Wmultichar] prog.cpp:15:17: error: empty character constant prog.cpp:15:9: error: stray ‘#’ in program prog.cpp:16:11: error: invalid preprocessing directive #The prog.cpp:17:9: warning: multi-character character constant [-Wmultichar] prog.cpp:17:17: error: empty character constant prog.cpp:18:9: warning: character constant too long for its type [enabled by default] prog.cpp:18:21: error: empty character constant prog.cpp:19:9: warning: multi-character character constant [-Wmultichar] prog.cpp:19:17: error: empty character constant prog.cpp:19:9: error: stray ‘#’ in program prog.cpp:19:90: warning: character constant too long for its type [enabled by default] prog.cpp:20:9: warning: multi-character character constant [-Wmultichar] prog.cpp:20:17: error: empty character constant prog.cpp:20:9: error: stray ‘#’ in program prog.cpp:24:3: error: invalid preprocessing directive #Hosts prog.cpp:25:3: error: invalid preprocessing directive #See prog.cpp:28:3: error: invalid preprocessing directive #Local prog.cpp:29:3: error: invalid preprocessing directive #http prog.cpp:30:3: error: invalid preprocessing directive #although prog.cpp:31:3: error: invalid preprocessing directive #In prog.cpp:32:13: warning: character constant too long for its type [enabled by default] prog.cpp:34:3: error: invalid preprocessing directive #Language prog.cpp:35:3: error: invalid preprocessing directive #http prog.cpp:36:17: warning: character constant too long for its type [enabled by default] prog.cpp:40:3: error: invalid preprocessing directive #If prog.cpp:41:3: error: invalid preprocessing directive #to prog.cpp:44:3: error: invalid preprocessing directive #If prog.cpp:45:3: error: invalid preprocessing directive #calendars prog.cpp:48:3: error: invalid preprocessing directive #If prog.cpp:51:3: error: invalid preprocessing directive #Absolute prog.cpp:52:3: error: invalid preprocessing directive #Example prog.cpp:53:14: error: empty character constant prog.cpp:55:3: error: invalid preprocessing directive #URL prog.cpp:56:3: error: invalid preprocessing directive #trailing prog.cpp:57:3: error: invalid preprocessing directive #Examples prog.cpp:58:13: error: empty character constant prog.cpp:60:3: error: invalid preprocessing directive #Absolute prog.cpp:61:3: error: invalid preprocessing directive #Don prog.cpp:61:6: warning: missing terminating ' character [enabled by default] prog.cpp:62:3: error: invalid preprocessing directive #in prog.cpp:62:10: warning: missing terminating ' character [enabled by default] prog.cpp:63:3: error: invalid preprocessing directive #Example prog.cpp:64:15: error: empty character constant prog.cpp:66:3: error: invalid preprocessing directive #URL prog.cpp:67:3: error: invalid preprocessing directive #Example prog.cpp:68:14: warning: character constant too long for its type [enabled by default] prog.cpp:70:3: error: invalid preprocessing directive #Additional prog.cpp:72:7: error: invalid preprocessing directive #Put prog.cpp:73:7: error: invalid preprocessing directive #Always prog.cpp:74:7: error: invalid preprocessing directive #Don prog.cpp:74:10: warning: missing terminating ' character [enabled by default] prog.cpp:77:3: error: invalid preprocessing directive #List prog.cpp:78:3: error: invalid preprocessing directive #various prog.cpp:80:5: warning: character constant too long for its type [enabled by default] prog.cpp:81:5: warning: character constant too long for its type [enabled by default] prog.cpp:82:6: error: invalid preprocessing directive #'django.contrib.staticfiles.finders.DefaultStorageFinder' prog.cpp:85:3: error: invalid preprocessing directive #Make prog.cpp:85:28: warning: missing terminating ' character [enabled by default] prog.cpp:86:14: warning: character constant too long for its type [enabled by default] prog.cpp:88:3: error: invalid preprocessing directive #List prog.cpp:90:5: warning: character constant too long for its type [enabled by default] prog.cpp:91:5: warning: character constant too long for its type [enabled by default] prog.cpp:92:7: error: invalid preprocessing directive #'django.template.loaders.eggs.Loader' prog.cpp:96:5: warning: character constant too long for its type [enabled by default] prog.cpp:97:5: warning: character constant too long for its type [enabled by default] prog.cpp:98:5: warning: character constant too long for its type [enabled by default] prog.cpp:99:5: warning: character constant too long for its type [enabled by default] prog.cpp:100:5: warning: character constant too long for its type [enabled by default] prog.cpp:101:7: error: invalid preprocessing directive #Uncomment prog.cpp:102:7: error: invalid preprocessing directive #'django.middleware.clickjacking.XFrameOptionsMiddleware' prog.cpp:105:16: warning: character constant too long for its type [enabled by default] prog.cpp:107:3: error: invalid preprocessing directive #Python prog.cpp:107:60: warning: missing terminating ' character [enabled by default] prog.cpp:108:20: warning: character constant too long for its type [enabled by default] prog.cpp:111:7: error: invalid preprocessing directive #Put prog.cpp:112:7: error: invalid preprocessing directive #Always prog.cpp:113:7: error: invalid preprocessing directive #Don prog.cpp:113:10: warning: missing terminating ' character [enabled by default] prog.cpp:117:5: warning: character constant too long for its type [enabled by default] prog.cpp:118:5: warning: character constant too long for its type [enabled by default] prog.cpp:119:5: warning: character constant too long for its type [enabled by default] prog.cpp:120:5: warning: character constant too long for its type [enabled by default] prog.cpp:121:5: warning: character constant too long for its type [enabled by default] prog.cpp:122:5: warning: character constant too long for its type [enabled by default] prog.cpp:123:7: error: invalid preprocessing directive #Uncomment prog.cpp:124:7: error: invalid preprocessing directive #'django.contrib.admin' prog.cpp:125:7: error: invalid preprocessing directive #Uncomment prog.cpp:126:7: error: invalid preprocessing directive #'django.contrib.admindocs' prog.cpp:129:3: error: invalid preprocessing directive #A prog.cpp:130:3: error: invalid preprocessing directive #performed prog.cpp:131:3: error: invalid preprocessing directive #the prog.cpp:132:3: error: invalid preprocessing directive #See prog.cpp:133:3: error: invalid preprocessing directive #more prog.cpp:135:5: warning: character constant too long for its type [enabled by default] prog.cpp:136:5: warning: character constant too long for its type [enabled by default] prog.cpp:137:5: warning: character constant too long for its type [enabled by default] prog.cpp:138:9: warning: character constant too long for its type [enabled by default] prog.cpp:139:13: warning: multi-character character constant [-Wmultichar] prog.cpp:139:19: warning: character constant too long for its type [enabled by default] prog.cpp:142:5: warning: character constant too long for its type [enabled by default] prog.cpp:143:9: warning: character constant too long for its type [enabled by default] prog.cpp:144:13: warning: character constant too long for its type [enabled by default] prog.cpp:144:22: warning: character constant too long for its type [enabled by default] prog.cpp:145:13: warning: character constant too long for its type [enabled by default] prog.cpp:145:25: warning: character constant too long for its type [enabled by default] prog.cpp:146:13: warning: character constant too long for its type [enabled by default] prog.cpp:146:22: warning: character constant too long for its type [enabled by default] prog.cpp:149:5: warning: character constant too long for its type [enabled by default] prog.cpp:150:9: warning: character constant too long for its type [enabled by default] prog.cpp:151:13: warning: character constant too long for its type [enabled by default] prog.cpp:151:26: warning: character constant too long for its type [enabled by default] prog.cpp:152:13: warning: character constant too long for its type [enabled by default] prog.cpp:152:22: warning: character constant too long for its type [enabled by default] prog.cpp:153:13: warning: character constant too long for its type [enabled by default] prog.cpp:3:1: error: ‘DEBUG’ does not name a type prog.cpp:26:1: error: ‘ALLOWED_HOSTS’ does not name a type
Standard output is empty