SYMBOL INDEX (55 symbols across 5 files) FILE: corsheaders/middleware.py class CorsPostCsrfMiddleware (line 26) | class CorsPostCsrfMiddleware(MiddlewareMixin): method _https_referer_replace_reverse (line 28) | def _https_referer_replace_reverse(self, request): method process_request (line 39) | def process_request(self, request): method process_view (line 43) | def process_view(self, request, callback, callback_args, callback_kwar... class CorsMiddleware (line 48) | class CorsMiddleware(MiddlewareMixin): method _https_referer_replace (line 50) | def _https_referer_replace(self, request): method process_request (line 75) | def process_request(self, request): method process_view (line 94) | def process_view(self, request, callback, callback_args, callback_kwar... method process_response (line 102) | def process_response(self, request, response): method origin_not_found_in_white_lists (line 146) | def origin_not_found_in_white_lists(self, origin, url): method regex_domain_match (line 150) | def regex_domain_match(self, origin): method is_enabled (line 155) | def is_enabled(self, request): method check_signal (line 160) | def check_signal(self, request): method regex_url_allow_all_match (line 169) | def regex_url_allow_all_match(self, path): FILE: corsheaders/migrations/0001_initial.py class Migration (line 8) | class Migration(migrations.Migration): FILE: corsheaders/models.py class CorsModel (line 7) | class CorsModel(models.Model): FILE: corsheaders/tests.py function test_view (line 17) | def test_view(request): function test_view_http401 (line 21) | def test_view_http401(request): class settings_override (line 31) | class settings_override(object): method __init__ (line 32) | def __init__(self, **kwargs): method __enter__ (line 35) | def __enter__(self): method __exit__ (line 39) | def __exit__(self, exc, value, tb): class TestCorsMiddlewareProcessRequest (line 43) | class TestCorsMiddlewareProcessRequest(TestCase): method setUp (line 45) | def setUp(self): method test_process_request (line 48) | def test_process_request(self): method test_process_request_empty_header (line 56) | def test_process_request_empty_header(self): method test_process_request_no_header (line 64) | def test_process_request_no_header(self): method test_process_request_not_options (line 71) | def test_process_request_not_options(self): method test_process_request_replace_https_referer (line 78) | def test_process_request_replace_https_referer(self): method test_process_view_replace_https_referer (line 163) | def test_process_view_replace_https_referer(self): class TestCorsMiddlewareProcessResponse (line 192) | class TestCorsMiddlewareProcessResponse(TestCase): method setUp (line 194) | def setUp(self): method assertAccessControlAllowOriginEquals (line 197) | def assertAccessControlAllowOriginEquals(self, response, header): method test_process_response_no_origin (line 202) | def test_process_response_no_origin(self, settings): method test_process_response_not_in_whitelist (line 210) | def test_process_response_not_in_whitelist(self, settings): method test_process_response_signal_works (line 220) | def test_process_response_signal_works(self, settings): method test_process_response_in_whitelist (line 233) | def test_process_response_in_whitelist(self, settings): method test_process_response_expose_headers (line 243) | def test_process_response_expose_headers(self, settings): method test_process_response_dont_expose_headers (line 254) | def test_process_response_dont_expose_headers(self, settings): method test_process_response_allow_credentials (line 264) | def test_process_response_allow_credentials(self, settings): method test_process_response_dont_allow_credentials (line 274) | def test_process_response_dont_allow_credentials(self, settings): method test_process_response_options_method (line 284) | def test_process_response_options_method(self, settings): method test_process_response_options_method_no_max_age (line 300) | def test_process_response_options_method_no_max_age(self, settings): method test_process_response_whitelist_with_port (line 316) | def test_process_response_whitelist_with_port(self, settings): method test_process_response_adds_origin_when_domain_found_in_origin_regex_whitelist (line 328) | def test_process_response_adds_origin_when_domain_found_in_origin_rege... method test_process_response_will_not_add_origin_when_domain_not_found_in_origin_regex_whitelist (line 341) | def test_process_response_will_not_add_origin_when_domain_not_found_in... method test_process_response_when_custom_model_enabled (line 354) | def test_process_response_when_custom_model_enabled(self, settings): method test_process_response_in_allow_all_path (line 368) | def test_process_response_in_allow_all_path(self, settings): method test_process_response_not_in_allow_all_path (line 379) | def test_process_response_not_in_allow_all_path(self, settings): method test_middleware_integration_get (line 390) | def test_middleware_integration_get(self, settings): method test_middleware_integration_options (line 398) | def test_middleware_integration_options(self, settings): method test_middleware_integration_get_auth_view (line 412) | def test_middleware_integration_get_auth_view(self, settings): method test_middleware_integration_preflight_auth_view (line 428) | def test_middleware_integration_preflight_auth_view(self, settings): FILE: tests.py function run_tests (line 7) | def run_tests(): function main (line 47) | def main():