├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .dockerignore ├── .editorconfig ├── .eslintrc.json ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── build-and-push.yml │ └── release.yml ├── .gitignore ├── .log4brains.yml ├── .prettierrc ├── .readthedocs.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.rst ├── GRAVEYARD.md ├── LICENSE ├── README.rst ├── WHATSNEW.rst ├── bin ├── create_superuser.sh ├── entrypoint.sh ├── es_cli.py ├── insert_missing_versions.py ├── jsonprint.py ├── lint.sh ├── permadelete_crash_data.py ├── process_crashes.sh ├── run_cache_manager.sh ├── run_fakecollector.sh ├── run_mdsw.sh ├── run_migrations.sh ├── run_postdeploy.sh ├── run_processor.sh ├── run_service_crontabber.sh ├── run_service_processor.sh ├── run_service_stage_submitter.sh ├── run_service_webapp.sh ├── run_symbolsserver.sh ├── setup_postgres.sh ├── setup_services.sh ├── test.sh ├── update_data.sh ├── update_siggen.py ├── upload_telemetry_schema.py ├── verify_reqs.sh └── waitfor_services.sh ├── contribute.json ├── docker-compose.override.yml ├── docker-compose.yml ├── docker ├── Dockerfile ├── config │ ├── .env.dist │ ├── gunicorn_config.py │ ├── local_dev.env │ └── test.env ├── images │ ├── elasticsearch │ │ └── Dockerfile │ ├── fakesentry │ │ └── Dockerfile │ ├── gcs-emulator │ │ └── Dockerfile │ ├── memcached │ │ └── Dockerfile │ ├── oidcprovider │ │ ├── Dockerfile │ │ └── fixtures.json │ ├── postgres │ │ └── Dockerfile │ └── pubsub-emulator │ │ └── Dockerfile ├── set_up_stackwalker.sh └── set_up_ubuntu.sh ├── docs ├── Makefile ├── _static │ └── css │ │ └── custom.css ├── adr │ ├── 20110419-elasticsearch.md │ ├── 20150320-separate-collector.md │ ├── 20210816-use-log4brains-to-manage-the-adrs.md │ ├── 20210816-use-markdown-architectural-decision-records.md │ ├── 20210819-run-stackwalk-as-subprocess.md │ ├── README.md │ ├── index.md │ └── template.md ├── adr_log.rst ├── annotations.rst ├── conf.py ├── configuration.rst ├── contributing.rst ├── correlations.rst ├── crashpings.rst ├── crashqueue.rst ├── crashstorage.rst ├── dev.rst ├── drawio │ ├── README.rst │ └── socorro_architecture.drawio.svg ├── exts │ ├── __init__.py │ ├── adr_log.py │ └── document_metrics.py ├── flows │ ├── bugs.rst │ ├── graphicsdevice.rst │ ├── index.rst │ ├── platforms.rst │ ├── signature.rst │ └── versions.rst ├── glossary.rst ├── index.rst ├── metrics.rst ├── overview.rst ├── products.rst ├── project_readme.rst ├── reprocessing.rst ├── schemas.rst ├── service │ ├── collector.rst │ ├── cron.rst │ ├── index.rst │ ├── processor.rst │ ├── stage_submitter.rst │ └── webapp.rst ├── signaturegeneration.rst ├── spec_crashreport.rst ├── stackwalk.rst ├── telemetry_socorro_crash.rst └── whatsnew.rst ├── fakecollector └── collector.py ├── justfile ├── processor └── Procfile ├── product_details ├── Fenix.json ├── Firefox.json ├── Focus.json ├── MozillaVPN.json ├── README.rst ├── ReferenceBrowser.json └── Thunderbird.json ├── pyproject.toml ├── pytest.ini ├── renovate.json ├── requirements.in ├── requirements.txt ├── setup.py ├── socorro-cmd ├── socorro ├── __init__.py ├── external │ ├── __init__.py │ ├── crashqueue_base.py │ ├── crashstorage_base.py │ ├── es │ │ ├── __init__.py │ │ ├── base.py │ │ ├── connection_context.py │ │ ├── crashstorage.py │ │ ├── query.py │ │ ├── search_common.py │ │ ├── super_search_fields.py │ │ └── supersearch.py │ ├── fs │ │ ├── __init__.py │ │ └── crashstorage.py │ ├── gcs │ │ ├── __init__.py │ │ └── crashstorage.py │ └── pubsub │ │ ├── __init__.py │ │ └── crashqueue.py ├── lib │ ├── __init__.py │ ├── external_common.py │ ├── libcache.py │ ├── libdatetime.py │ ├── libdockerflow.py │ ├── libjava.py │ ├── libjsonschema.py │ ├── liblogging.py │ ├── libmarkdown.py │ ├── libooid.py │ ├── librequests.py │ ├── libsocorrodataschema.py │ ├── libversion.py │ ├── task_manager.py │ ├── threaded_task_manager.py │ └── util.py ├── libclass.py ├── libmarkus.py ├── mozilla_rulesets.py ├── mozilla_settings.py ├── processor │ ├── __init__.py │ ├── cache_manager.py │ ├── pipeline.py │ ├── processor_app.py │ └── rules │ │ ├── __init__.py │ │ ├── android.py │ │ ├── base.py │ │ ├── breakpad.py │ │ ├── general.py │ │ ├── java.py │ │ ├── memory_report_extraction.py │ │ └── mozilla.py ├── schemas │ ├── README.rst │ ├── __init__.py │ ├── processed_crash.schema.yaml │ ├── raw_crash.schema.yaml │ ├── socorro-data-1-0-0.schema.yaml │ ├── telemetry_socorro_crash.json │ ├── validate_processed_crash.py │ ├── validate_raw_crash.py │ └── validate_telemetry_socorro_crash.py ├── scripts │ ├── __init__.py │ ├── db.py │ ├── fetch_crash_data.py │ ├── fetch_crashids.py │ ├── fetch_missing.py │ └── reprocess.py ├── signature │ ├── README.rst │ ├── __init__.py │ ├── cmd_doc.py │ ├── cmd_signature.py │ ├── generator.py │ ├── pipeline.rst │ ├── rules.py │ ├── schema.rst │ ├── siglists │ │ ├── README.rst │ │ ├── irrelevant_signature_re.txt │ │ ├── prefix_signature_re.txt │ │ ├── signature_sentinels.txt │ │ └── signatures_with_line_numbers_re.txt │ ├── siglists_utils.py │ ├── tests │ │ ├── __init__.py │ │ ├── siglists │ │ │ ├── test-invalid-sig-list.txt │ │ │ ├── test-sig-list.txt │ │ │ └── test-valid-sig-list.txt │ │ ├── test_rules.py │ │ ├── test_siglists.py │ │ ├── test_signature_generator.py │ │ └── test_utils.py │ └── utils.py ├── stage_submitter │ ├── __init__.py │ └── submitter.py ├── statsd_metrics.yaml └── tests │ ├── __init__.py │ ├── conftest.py │ ├── external │ ├── __init__.py │ ├── es │ │ ├── __init__.py │ │ ├── test_analyzers.py │ │ ├── test_connection_context.py │ │ ├── test_crashstorage.py │ │ ├── test_query.py │ │ ├── test_search_common.py │ │ ├── test_super_search_fields.py │ │ └── test_supersearch.py │ ├── fs │ │ ├── __init__.py │ │ └── test_fspermanentstorage.py │ ├── gcs │ │ ├── __init__.py │ │ └── test_crashstorage.py │ ├── pubsub │ │ ├── __init__.py │ │ └── test_crashqueue.py │ ├── test_crashqueue_base.py │ └── test_crashstorage_base.py │ ├── lib │ ├── __init__.py │ ├── config.tst │ ├── test_external_common.py │ ├── test_libcache.py │ ├── test_libdatetime.py │ ├── test_libdockerflow.py │ ├── test_libjava.py │ ├── test_libjsonschema.py │ ├── test_libooid.py │ ├── test_libsocorrodataschema.py │ ├── test_libversion.py │ ├── test_task_manager.py │ ├── test_threaded_task_manager.py │ └── test_util.py │ ├── processor │ ├── __init__.py │ ├── rules │ │ ├── __init__.py │ │ ├── memory_reports │ │ │ ├── bad_kind.json │ │ │ ├── bad_missing_key.json │ │ │ ├── bad_units.json │ │ │ ├── bad_unrecognizable.json │ │ │ └── good.json │ │ ├── test_android.py │ │ ├── test_breakpad.py │ │ ├── test_general.py │ │ ├── test_java.py │ │ ├── test_memory_report_extraction.py │ │ └── test_mozilla.py │ ├── test_cache_manager.py │ ├── test_pipeline.py │ └── test_processor_app.py │ ├── schemas │ ├── __init__.py │ ├── test_socorro_data_schemas.py │ └── test_telemetry_schemas.py │ ├── scripts │ ├── __init__.py │ ├── test_db.py │ ├── test_fetch_crashids.py │ └── test_init.py │ ├── stage_submitter │ ├── conftest.py │ └── test_submitter.py │ ├── test_es_cli.py │ ├── test_permadelete_crash_data.py │ ├── test_settings.py │ └── test_upload_telemetry_schema.py └── webapp ├── .eslintignore ├── .gitignore ├── __init__.py ├── conftest.py ├── crashstats ├── __init__.py ├── api │ ├── __init__.py │ ├── cleaner.py │ ├── jinja2 │ │ └── api │ │ │ └── documentation.html │ ├── models.py │ ├── static │ │ └── api │ │ │ ├── css │ │ │ └── documentation.css │ │ │ └── js │ │ │ └── testdrive.js │ ├── templatetags │ │ ├── __init__.py │ │ └── jinja_helpers.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_cleaner.py │ │ ├── test_jinja_helpers.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── authentication │ ├── __init__.py │ ├── admin.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── auditgroups.py │ │ │ └── makesuperuser.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ └── tests │ │ ├── __init__.py │ │ ├── test_auditgroups.py │ │ └── test_makesuperuser.py ├── crashstats │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── context_processors.py │ ├── decorators.py │ ├── fixtures │ │ └── platforms.json │ ├── forms.py │ ├── jinja2 │ │ ├── 400.html │ │ ├── 404.html │ │ ├── 500.html │ │ ├── crashstats │ │ │ ├── about_throttling.html │ │ │ ├── home.html │ │ │ ├── login.html │ │ │ ├── product_home.html │ │ │ ├── ratelimit_blocked.html │ │ │ ├── report_index.html │ │ │ ├── report_index_malformed_raw_crash.html │ │ │ ├── report_index_not_found.html │ │ │ └── report_index_pending.html │ │ ├── crashstats_base.html │ │ ├── error_base.html │ │ ├── footer_nav.html │ │ └── macros │ │ │ ├── pagination.html │ │ │ └── signature_startup_icons.html │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── archivescraper.py │ │ │ ├── bugassociations.py │ │ │ ├── dumppv.py │ │ │ ├── update_graphics_pci.py │ │ │ ├── updatemissing.py │ │ │ ├── updatesignatures.py │ │ │ └── verifyprocessed.py │ ├── middleware.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_1457747_graphics_devices.py │ │ ├── 0003_1457747_graphics_data_migration.py │ │ ├── 0004_1463121-signature.py │ │ ├── 0005_1463121-signature-data-migration.py │ │ ├── 0006_1493768-bug-associations.py │ │ ├── 0007_1498441-platform.py │ │ ├── 0008_1498441-name-unique.py │ │ ├── 0009_1506907_product.py │ │ ├── 0010_1506907_product_migration.py │ │ ├── 0011_1506907_productversion.py │ │ ├── 0012_1507916_productversion_major_version.py │ │ ├── 0013_1507916_major_version_data_migration.py │ │ ├── 0014_auto_20181214_1951.py │ │ ├── 0015_1463514-remove-eventlog.py │ │ ├── 0016_1523284_fenix.py │ │ ├── 0017_missingprocessedcrashes.py │ │ ├── 0018_missingprocessedcrash.py │ │ ├── 0019_missing-crashes-migration.py │ │ ├── 0020_auto_20190403_2208.py │ │ ├── 0021_bug_1657668_product_support.py │ │ ├── 0022_auto_20210317_2220.py │ │ └── __init__.py │ ├── models.py │ ├── signals.py │ ├── static │ │ ├── crashstats │ │ │ ├── css │ │ │ │ ├── base │ │ │ │ │ ├── forms.css │ │ │ │ │ ├── layout.css │ │ │ │ │ ├── reset.css │ │ │ │ │ ├── tables.css │ │ │ │ │ ├── typography.css │ │ │ │ │ └── variables.css │ │ │ │ ├── components │ │ │ │ │ ├── accordion.css │ │ │ │ │ ├── admin.css │ │ │ │ │ ├── bugzilla.css │ │ │ │ │ ├── code.css │ │ │ │ │ ├── footer.css │ │ │ │ │ ├── message.css │ │ │ │ │ ├── nav.css │ │ │ │ │ ├── note.css │ │ │ │ │ ├── pagination.css │ │ │ │ │ ├── panel.css │ │ │ │ │ ├── select.css │ │ │ │ │ ├── simplebox.css │ │ │ │ │ ├── statusicon.css │ │ │ │ │ ├── sumo_link.css │ │ │ │ │ ├── table_sorter.css │ │ │ │ │ ├── tip.css │ │ │ │ │ └── tree.css │ │ │ │ ├── crashstats-base.css │ │ │ │ ├── lib │ │ │ │ │ ├── images │ │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ │ ├── ui-bg_flat_100_fcfdfd_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_45_9fa1a2_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_50_82857f_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_55_999999_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_dadbdc_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_ececeb_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_55_eed536_1x400.png │ │ │ │ │ │ ├── ui-bg_gloss-wave_45_e14f1c_500x100.png │ │ │ │ │ │ ├── ui-icons_333_256x240.png │ │ │ │ │ │ ├── ui-icons_6b6868_256x240.png │ │ │ │ │ │ ├── ui-icons_fcd113_256x240.png │ │ │ │ │ │ └── ui-icons_fff_256x240.png │ │ │ │ │ ├── jquery-ui.css │ │ │ │ │ ├── jquery-ui.structure.css │ │ │ │ │ ├── jquery-ui.theme.css │ │ │ │ │ ├── jsonview.custom.css │ │ │ │ │ └── metricsgraphics_custom.css │ │ │ │ └── pages │ │ │ │ │ ├── product_home.css │ │ │ │ │ ├── report_index.css │ │ │ │ │ └── report_pending.css │ │ │ ├── fonts │ │ │ │ ├── icons.eot │ │ │ │ ├── icons.svg │ │ │ │ ├── icons.ttf │ │ │ │ └── icons.woff │ │ │ └── js │ │ │ │ ├── esm-shim-jquery.js │ │ │ │ ├── jquery │ │ │ │ └── plugins │ │ │ │ │ └── jquery.cookies.2.2.0.js │ │ │ │ ├── lib │ │ │ │ └── accordions.js │ │ │ │ └── socorro │ │ │ │ ├── bugzilla.js │ │ │ │ ├── correlation.js │ │ │ │ ├── crashstats-base.js │ │ │ │ ├── hangreport.js │ │ │ │ ├── nav.js │ │ │ │ ├── pending.js │ │ │ │ ├── report.js │ │ │ │ ├── reprocessing.js │ │ │ │ ├── timeutils.js │ │ │ │ └── utils.js │ │ ├── img │ │ │ ├── 2.0 │ │ │ │ ├── down-selected.png │ │ │ │ ├── down.png │ │ │ │ ├── header-bg.png │ │ │ │ ├── logo.png │ │ │ │ ├── logo2.png │ │ │ │ ├── mozilla.png │ │ │ │ ├── product-bg.png │ │ │ │ ├── product-selected-bg.png │ │ │ │ ├── search.png │ │ │ │ ├── title.png │ │ │ │ └── version-bg.png │ │ │ ├── 3.0 │ │ │ │ ├── caret.svg │ │ │ │ ├── logo.png │ │ │ │ └── mozilla.gif │ │ │ ├── 3rdparty │ │ │ │ ├── fatcow │ │ │ │ │ ├── application16x16.png │ │ │ │ │ ├── brick16x16.png │ │ │ │ │ ├── content16x16.png │ │ │ │ │ └── stop16x16.png │ │ │ │ └── silk │ │ │ │ │ ├── application_edit.png │ │ │ │ │ ├── application_form_add.png │ │ │ │ │ ├── arrow_bottom.png │ │ │ │ │ ├── arrow_top.png │ │ │ │ │ ├── bricks.png │ │ │ │ │ ├── calendar.png │ │ │ │ │ ├── chart_curve.png │ │ │ │ │ ├── cross.png │ │ │ │ │ ├── delete.png │ │ │ │ │ ├── error.png │ │ │ │ │ ├── exclamation.png │ │ │ │ │ ├── flag_red.png │ │ │ │ │ ├── flag_yellow.png │ │ │ │ │ ├── information.png │ │ │ │ │ ├── magnifier.png │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── resultset_next.png │ │ │ │ │ ├── resultset_previous.png │ │ │ │ │ ├── tick.png │ │ │ │ │ └── wrench.png │ │ │ ├── __utm.gif │ │ │ ├── ajax-loader.gif │ │ │ ├── ajax-loader16x16.gif │ │ │ ├── arrow_collapsed.png │ │ │ ├── arrow_expanded.png │ │ │ ├── block-bg.png │ │ │ ├── block-vrule.png │ │ │ ├── body-vrule.png │ │ │ ├── down_arrow.png │ │ │ ├── favicon.ico │ │ │ ├── feed-icon16x16.png │ │ │ ├── feed-icon32x32.png │ │ │ ├── footer_bg.png │ │ │ ├── header-bg.png │ │ │ ├── header-logo.png │ │ │ ├── header-watermark.png │ │ │ ├── icons │ │ │ │ ├── add.png │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── calendar.png │ │ │ │ ├── close_round.png │ │ │ │ ├── external.png │ │ │ │ └── rocket_fly.png │ │ │ ├── loading.png │ │ │ ├── logo.png │ │ │ ├── menu.svg │ │ │ ├── search-icon.png │ │ │ ├── slate │ │ │ │ ├── button-grad-active.png │ │ │ │ ├── button-grad.png │ │ │ │ ├── calendar.png │ │ │ │ ├── disclosure-down.png │ │ │ │ ├── disclosure.png │ │ │ │ ├── header-bg.png │ │ │ │ ├── main-bg.png │ │ │ │ ├── moz-developer.png │ │ │ │ ├── mozillalogo.png │ │ │ │ ├── topcrashhead-bg.png │ │ │ │ └── white-grad.png │ │ │ ├── table-bg.png │ │ │ └── up_arrow.png │ │ └── js │ │ │ └── error.js │ ├── templatetags │ │ ├── __init__.py │ │ └── jinja_helpers.py │ ├── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── sample_pci.ids │ │ ├── test_archivescraper.py │ │ ├── test_bugassociations.py │ │ ├── test_decorators.py │ │ ├── test_forms.py │ │ ├── test_jinja_helpers.py │ │ ├── test_middleware.py │ │ ├── test_models.py │ │ ├── test_sentry.py │ │ ├── test_updatemissing.py │ │ ├── test_updatesignatures.py │ │ ├── test_utils.py │ │ ├── test_verifyprocessed.py │ │ ├── test_views.py │ │ └── testbase.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── cron │ ├── __init__.py │ ├── admin.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── cleanse_cronlog.py │ │ │ ├── cronlist.py │ │ │ ├── cronmarksuccess.py │ │ │ ├── cronreset.py │ │ │ ├── cronrun.py │ │ │ └── crontest.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_job_log.py │ │ ├── 0003_auto_20181116_1432.py │ │ ├── 0004_auto_20181214_1951.py │ │ ├── 0005_auto_20190430_1242.py │ │ └── __init__.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_cleansecronlog.py │ │ ├── test_cronmarksuccess.py │ │ ├── test_cronreset.py │ │ ├── test_cronrun.py │ │ └── test_utils.py │ └── utils.py ├── documentation │ ├── __init__.py │ ├── jinja2 │ │ └── docs │ │ │ ├── datadictionary │ │ │ ├── field_doc.html │ │ │ └── index.html │ │ │ ├── docs_base.html │ │ │ ├── home.html │ │ │ ├── protected_data_access.html │ │ │ ├── supersearch │ │ │ ├── api.html │ │ │ ├── examples.html │ │ │ └── home.html │ │ │ └── whatsnew.html │ ├── models.py │ ├── static │ │ └── documentation │ │ │ ├── css │ │ │ └── documentation.css │ │ │ └── js │ │ │ └── documentation.js │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── libbugzilla.py ├── libproduct.py ├── manage │ ├── __init__.py │ ├── admin.py │ ├── admin_site.py │ ├── admin_urls.py │ ├── apps.py │ ├── decorators.py │ ├── models.py │ ├── templates │ │ └── admin │ │ │ ├── debug_view.html │ │ │ ├── protected_data_users.html │ │ │ ├── site_status.html │ │ │ ├── socorro_admin_index.html │ │ │ └── supersearch_status.html │ ├── tests │ │ ├── __init__.py │ │ └── test_admin_views.py │ ├── urls.py │ └── views.py ├── monitoring │ ├── __init__.py │ ├── jinja2 │ │ └── monitoring │ │ │ └── index.html │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── profile │ ├── __init__.py │ ├── jinja2 │ │ └── profile │ │ │ └── profile.html │ ├── models.py │ ├── static │ │ └── profile │ │ │ └── css │ │ │ └── profile.css │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── settings │ ├── __init__.py │ ├── base.py │ └── test.py ├── signature │ ├── __init__.py │ ├── jinja2 │ │ └── signature │ │ │ ├── signature_aggregation.html │ │ │ ├── signature_bugzilla.html │ │ │ ├── signature_comments.html │ │ │ ├── signature_correlations.html │ │ │ ├── signature_report.html │ │ │ ├── signature_reports.html │ │ │ └── signature_summary.html │ ├── models.py │ ├── static │ │ └── signature │ │ │ ├── css │ │ │ └── signature_report.css │ │ │ └── js │ │ │ ├── signature_panel.js │ │ │ ├── signature_report.js │ │ │ ├── signature_tab.js │ │ │ ├── signature_tab_aggregations.js │ │ │ ├── signature_tab_bugzilla.js │ │ │ ├── signature_tab_comments.js │ │ │ ├── signature_tab_correlations.js │ │ │ ├── signature_tab_graphs.js │ │ │ ├── signature_tab_reports.js │ │ │ └── signature_tab_summary.js │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── sources │ ├── __init__.py │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── status │ ├── __init__.py │ ├── admin.py │ ├── context_processors.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20180522_1545.py │ │ ├── 0003_auto_20181214_1951.py │ │ ├── 0004_auto_20190118_1546.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ └── status │ │ │ └── css │ │ │ └── status.css │ └── tests │ │ ├── __init__.py │ │ └── test_views.py ├── supersearch │ ├── __init__.py │ ├── form_fields.py │ ├── forms.py │ ├── jinja2 │ │ └── supersearch │ │ │ ├── macros │ │ │ ├── date_filters.html │ │ │ └── links.html │ │ │ ├── search.html │ │ │ ├── search_custom.html │ │ │ └── search_results.html │ ├── libsupersearch.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── esclean.py │ ├── models.py │ ├── static │ │ └── supersearch │ │ │ ├── css │ │ │ └── search.css │ │ │ └── js │ │ │ ├── lib │ │ │ └── dynamic_form.js │ │ │ └── socorro │ │ │ ├── date_filters.js │ │ │ ├── search.js │ │ │ └── search_custom.js │ ├── tests │ │ ├── __init__.py │ │ ├── test_esclean.py │ │ ├── test_form_fields.py │ │ ├── test_forms.py │ │ ├── test_libsupersearch.py │ │ ├── test_utils.py │ │ └── test_views.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── tests │ ├── test_libbugzilla.py │ └── test_libproduct.py ├── tokens │ ├── __init__.py │ ├── admin.py │ ├── forms.py │ ├── jinja2 │ │ └── tokens │ │ │ └── home.html │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── createtoken.py │ ├── middleware.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ └── tokens │ │ │ ├── css │ │ │ └── home.css │ │ │ └── js │ │ │ └── home.js │ ├── tests │ │ ├── __init__.py │ │ ├── test_createtoken.py │ │ ├── test_middleware.py │ │ ├── test_models.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── topcrashers │ ├── __init__.py │ ├── forms.py │ ├── jinja2 │ │ └── topcrashers │ │ │ └── topcrashers.html │ ├── models.py │ ├── static │ │ └── topcrashers │ │ │ ├── css │ │ │ └── topcrashers.css │ │ │ └── js │ │ │ └── topcrashers.js │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── urls.py └── wsgi.py ├── esbuild.js ├── manage.py ├── package-lock.json ├── package.json ├── pytest.ini └── shell.py /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/.github/workflows/build-and-push.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/.gitignore -------------------------------------------------------------------------------- /.log4brains.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/.log4brains.yml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | printWidth: 120 2 | singleQuote: true 3 | trailingComma: es5 4 | -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /GRAVEYARD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/GRAVEYARD.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/README.rst -------------------------------------------------------------------------------- /WHATSNEW.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/WHATSNEW.rst -------------------------------------------------------------------------------- /bin/create_superuser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/create_superuser.sh -------------------------------------------------------------------------------- /bin/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/entrypoint.sh -------------------------------------------------------------------------------- /bin/es_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/es_cli.py -------------------------------------------------------------------------------- /bin/insert_missing_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/insert_missing_versions.py -------------------------------------------------------------------------------- /bin/jsonprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/jsonprint.py -------------------------------------------------------------------------------- /bin/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/lint.sh -------------------------------------------------------------------------------- /bin/permadelete_crash_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/permadelete_crash_data.py -------------------------------------------------------------------------------- /bin/process_crashes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/process_crashes.sh -------------------------------------------------------------------------------- /bin/run_cache_manager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/run_cache_manager.sh -------------------------------------------------------------------------------- /bin/run_fakecollector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/run_fakecollector.sh -------------------------------------------------------------------------------- /bin/run_mdsw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/run_mdsw.sh -------------------------------------------------------------------------------- /bin/run_migrations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/run_migrations.sh -------------------------------------------------------------------------------- /bin/run_postdeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/run_postdeploy.sh -------------------------------------------------------------------------------- /bin/run_processor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/run_processor.sh -------------------------------------------------------------------------------- /bin/run_service_crontabber.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/run_service_crontabber.sh -------------------------------------------------------------------------------- /bin/run_service_processor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/run_service_processor.sh -------------------------------------------------------------------------------- /bin/run_service_stage_submitter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/run_service_stage_submitter.sh -------------------------------------------------------------------------------- /bin/run_service_webapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/run_service_webapp.sh -------------------------------------------------------------------------------- /bin/run_symbolsserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/run_symbolsserver.sh -------------------------------------------------------------------------------- /bin/setup_postgres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/setup_postgres.sh -------------------------------------------------------------------------------- /bin/setup_services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/setup_services.sh -------------------------------------------------------------------------------- /bin/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/test.sh -------------------------------------------------------------------------------- /bin/update_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/update_data.sh -------------------------------------------------------------------------------- /bin/update_siggen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/update_siggen.py -------------------------------------------------------------------------------- /bin/upload_telemetry_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/upload_telemetry_schema.py -------------------------------------------------------------------------------- /bin/verify_reqs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/verify_reqs.sh -------------------------------------------------------------------------------- /bin/waitfor_services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/bin/waitfor_services.sh -------------------------------------------------------------------------------- /contribute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/contribute.json -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/config/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docker/config/.env.dist -------------------------------------------------------------------------------- /docker/config/gunicorn_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docker/config/gunicorn_config.py -------------------------------------------------------------------------------- /docker/config/local_dev.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docker/config/local_dev.env -------------------------------------------------------------------------------- /docker/config/test.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docker/config/test.env -------------------------------------------------------------------------------- /docker/images/elasticsearch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docker/images/elasticsearch/Dockerfile -------------------------------------------------------------------------------- /docker/images/fakesentry/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docker/images/fakesentry/Dockerfile -------------------------------------------------------------------------------- /docker/images/gcs-emulator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docker/images/gcs-emulator/Dockerfile -------------------------------------------------------------------------------- /docker/images/memcached/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docker/images/memcached/Dockerfile -------------------------------------------------------------------------------- /docker/images/oidcprovider/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docker/images/oidcprovider/Dockerfile -------------------------------------------------------------------------------- /docker/images/oidcprovider/fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docker/images/oidcprovider/fixtures.json -------------------------------------------------------------------------------- /docker/images/postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docker/images/postgres/Dockerfile -------------------------------------------------------------------------------- /docker/images/pubsub-emulator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docker/images/pubsub-emulator/Dockerfile -------------------------------------------------------------------------------- /docker/set_up_stackwalker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docker/set_up_stackwalker.sh -------------------------------------------------------------------------------- /docker/set_up_ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docker/set_up_ubuntu.sh -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/_static/css/custom.css -------------------------------------------------------------------------------- /docs/adr/20110419-elasticsearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/adr/20110419-elasticsearch.md -------------------------------------------------------------------------------- /docs/adr/20150320-separate-collector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/adr/20150320-separate-collector.md -------------------------------------------------------------------------------- /docs/adr/20210816-use-log4brains-to-manage-the-adrs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/adr/20210816-use-log4brains-to-manage-the-adrs.md -------------------------------------------------------------------------------- /docs/adr/20210816-use-markdown-architectural-decision-records.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/adr/20210816-use-markdown-architectural-decision-records.md -------------------------------------------------------------------------------- /docs/adr/20210819-run-stackwalk-as-subprocess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/adr/20210819-run-stackwalk-as-subprocess.md -------------------------------------------------------------------------------- /docs/adr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/adr/README.md -------------------------------------------------------------------------------- /docs/adr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/adr/index.md -------------------------------------------------------------------------------- /docs/adr/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/adr/template.md -------------------------------------------------------------------------------- /docs/adr_log.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/adr_log.rst -------------------------------------------------------------------------------- /docs/annotations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/annotations.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/configuration.rst -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/correlations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/correlations.rst -------------------------------------------------------------------------------- /docs/crashpings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/crashpings.rst -------------------------------------------------------------------------------- /docs/crashqueue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/crashqueue.rst -------------------------------------------------------------------------------- /docs/crashstorage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/crashstorage.rst -------------------------------------------------------------------------------- /docs/dev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/dev.rst -------------------------------------------------------------------------------- /docs/drawio/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/drawio/README.rst -------------------------------------------------------------------------------- /docs/drawio/socorro_architecture.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/drawio/socorro_architecture.drawio.svg -------------------------------------------------------------------------------- /docs/exts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/exts/__init__.py -------------------------------------------------------------------------------- /docs/exts/adr_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/exts/adr_log.py -------------------------------------------------------------------------------- /docs/exts/document_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/exts/document_metrics.py -------------------------------------------------------------------------------- /docs/flows/bugs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/flows/bugs.rst -------------------------------------------------------------------------------- /docs/flows/graphicsdevice.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/flows/graphicsdevice.rst -------------------------------------------------------------------------------- /docs/flows/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/flows/index.rst -------------------------------------------------------------------------------- /docs/flows/platforms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/flows/platforms.rst -------------------------------------------------------------------------------- /docs/flows/signature.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/flows/signature.rst -------------------------------------------------------------------------------- /docs/flows/versions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/flows/versions.rst -------------------------------------------------------------------------------- /docs/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/glossary.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/metrics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/metrics.rst -------------------------------------------------------------------------------- /docs/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/overview.rst -------------------------------------------------------------------------------- /docs/products.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/products.rst -------------------------------------------------------------------------------- /docs/project_readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/reprocessing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/reprocessing.rst -------------------------------------------------------------------------------- /docs/schemas.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../socorro/schemas/README.rst 2 | -------------------------------------------------------------------------------- /docs/service/collector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/service/collector.rst -------------------------------------------------------------------------------- /docs/service/cron.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/service/cron.rst -------------------------------------------------------------------------------- /docs/service/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/service/index.rst -------------------------------------------------------------------------------- /docs/service/processor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/service/processor.rst -------------------------------------------------------------------------------- /docs/service/stage_submitter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/service/stage_submitter.rst -------------------------------------------------------------------------------- /docs/service/webapp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/service/webapp.rst -------------------------------------------------------------------------------- /docs/signaturegeneration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/signaturegeneration.rst -------------------------------------------------------------------------------- /docs/spec_crashreport.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/spec_crashreport.rst -------------------------------------------------------------------------------- /docs/stackwalk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/stackwalk.rst -------------------------------------------------------------------------------- /docs/telemetry_socorro_crash.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/docs/telemetry_socorro_crash.rst -------------------------------------------------------------------------------- /docs/whatsnew.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../WHATSNEW.rst 2 | -------------------------------------------------------------------------------- /fakecollector/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/fakecollector/collector.py -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/justfile -------------------------------------------------------------------------------- /processor/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/processor/Procfile -------------------------------------------------------------------------------- /product_details/Fenix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/product_details/Fenix.json -------------------------------------------------------------------------------- /product_details/Firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/product_details/Firefox.json -------------------------------------------------------------------------------- /product_details/Focus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/product_details/Focus.json -------------------------------------------------------------------------------- /product_details/MozillaVPN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/product_details/MozillaVPN.json -------------------------------------------------------------------------------- /product_details/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/product_details/README.rst -------------------------------------------------------------------------------- /product_details/ReferenceBrowser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/product_details/ReferenceBrowser.json -------------------------------------------------------------------------------- /product_details/Thunderbird.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/product_details/Thunderbird.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/pytest.ini -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/renovate.json -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/setup.py -------------------------------------------------------------------------------- /socorro-cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro-cmd -------------------------------------------------------------------------------- /socorro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/__init__.py -------------------------------------------------------------------------------- /socorro/external/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/external/__init__.py -------------------------------------------------------------------------------- /socorro/external/crashqueue_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/external/crashqueue_base.py -------------------------------------------------------------------------------- /socorro/external/crashstorage_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/external/crashstorage_base.py -------------------------------------------------------------------------------- /socorro/external/es/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/external/es/__init__.py -------------------------------------------------------------------------------- /socorro/external/es/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/external/es/base.py -------------------------------------------------------------------------------- /socorro/external/es/connection_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/external/es/connection_context.py -------------------------------------------------------------------------------- /socorro/external/es/crashstorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/external/es/crashstorage.py -------------------------------------------------------------------------------- /socorro/external/es/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/external/es/query.py -------------------------------------------------------------------------------- /socorro/external/es/search_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/external/es/search_common.py -------------------------------------------------------------------------------- /socorro/external/es/super_search_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/external/es/super_search_fields.py -------------------------------------------------------------------------------- /socorro/external/es/supersearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/external/es/supersearch.py -------------------------------------------------------------------------------- /socorro/external/fs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/external/fs/__init__.py -------------------------------------------------------------------------------- /socorro/external/fs/crashstorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/external/fs/crashstorage.py -------------------------------------------------------------------------------- /socorro/external/gcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/external/gcs/__init__.py -------------------------------------------------------------------------------- /socorro/external/gcs/crashstorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/external/gcs/crashstorage.py -------------------------------------------------------------------------------- /socorro/external/pubsub/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/external/pubsub/__init__.py -------------------------------------------------------------------------------- /socorro/external/pubsub/crashqueue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/external/pubsub/crashqueue.py -------------------------------------------------------------------------------- /socorro/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/lib/__init__.py -------------------------------------------------------------------------------- /socorro/lib/external_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/lib/external_common.py -------------------------------------------------------------------------------- /socorro/lib/libcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/lib/libcache.py -------------------------------------------------------------------------------- /socorro/lib/libdatetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/lib/libdatetime.py -------------------------------------------------------------------------------- /socorro/lib/libdockerflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/lib/libdockerflow.py -------------------------------------------------------------------------------- /socorro/lib/libjava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/lib/libjava.py -------------------------------------------------------------------------------- /socorro/lib/libjsonschema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/lib/libjsonschema.py -------------------------------------------------------------------------------- /socorro/lib/liblogging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/lib/liblogging.py -------------------------------------------------------------------------------- /socorro/lib/libmarkdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/lib/libmarkdown.py -------------------------------------------------------------------------------- /socorro/lib/libooid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/lib/libooid.py -------------------------------------------------------------------------------- /socorro/lib/librequests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/lib/librequests.py -------------------------------------------------------------------------------- /socorro/lib/libsocorrodataschema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/lib/libsocorrodataschema.py -------------------------------------------------------------------------------- /socorro/lib/libversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/lib/libversion.py -------------------------------------------------------------------------------- /socorro/lib/task_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/lib/task_manager.py -------------------------------------------------------------------------------- /socorro/lib/threaded_task_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/lib/threaded_task_manager.py -------------------------------------------------------------------------------- /socorro/lib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/lib/util.py -------------------------------------------------------------------------------- /socorro/libclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/libclass.py -------------------------------------------------------------------------------- /socorro/libmarkus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/libmarkus.py -------------------------------------------------------------------------------- /socorro/mozilla_rulesets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/mozilla_rulesets.py -------------------------------------------------------------------------------- /socorro/mozilla_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/mozilla_settings.py -------------------------------------------------------------------------------- /socorro/processor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/processor/__init__.py -------------------------------------------------------------------------------- /socorro/processor/cache_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/processor/cache_manager.py -------------------------------------------------------------------------------- /socorro/processor/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/processor/pipeline.py -------------------------------------------------------------------------------- /socorro/processor/processor_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/processor/processor_app.py -------------------------------------------------------------------------------- /socorro/processor/rules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/processor/rules/__init__.py -------------------------------------------------------------------------------- /socorro/processor/rules/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/processor/rules/android.py -------------------------------------------------------------------------------- /socorro/processor/rules/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/processor/rules/base.py -------------------------------------------------------------------------------- /socorro/processor/rules/breakpad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/processor/rules/breakpad.py -------------------------------------------------------------------------------- /socorro/processor/rules/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/processor/rules/general.py -------------------------------------------------------------------------------- /socorro/processor/rules/java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/processor/rules/java.py -------------------------------------------------------------------------------- /socorro/processor/rules/memory_report_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/processor/rules/memory_report_extraction.py -------------------------------------------------------------------------------- /socorro/processor/rules/mozilla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/processor/rules/mozilla.py -------------------------------------------------------------------------------- /socorro/schemas/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/schemas/README.rst -------------------------------------------------------------------------------- /socorro/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/schemas/__init__.py -------------------------------------------------------------------------------- /socorro/schemas/processed_crash.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/schemas/processed_crash.schema.yaml -------------------------------------------------------------------------------- /socorro/schemas/raw_crash.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/schemas/raw_crash.schema.yaml -------------------------------------------------------------------------------- /socorro/schemas/socorro-data-1-0-0.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/schemas/socorro-data-1-0-0.schema.yaml -------------------------------------------------------------------------------- /socorro/schemas/telemetry_socorro_crash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/schemas/telemetry_socorro_crash.json -------------------------------------------------------------------------------- /socorro/schemas/validate_processed_crash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/schemas/validate_processed_crash.py -------------------------------------------------------------------------------- /socorro/schemas/validate_raw_crash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/schemas/validate_raw_crash.py -------------------------------------------------------------------------------- /socorro/schemas/validate_telemetry_socorro_crash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/schemas/validate_telemetry_socorro_crash.py -------------------------------------------------------------------------------- /socorro/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/scripts/__init__.py -------------------------------------------------------------------------------- /socorro/scripts/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/scripts/db.py -------------------------------------------------------------------------------- /socorro/scripts/fetch_crash_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/scripts/fetch_crash_data.py -------------------------------------------------------------------------------- /socorro/scripts/fetch_crashids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/scripts/fetch_crashids.py -------------------------------------------------------------------------------- /socorro/scripts/fetch_missing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/scripts/fetch_missing.py -------------------------------------------------------------------------------- /socorro/scripts/reprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/scripts/reprocess.py -------------------------------------------------------------------------------- /socorro/signature/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/README.rst -------------------------------------------------------------------------------- /socorro/signature/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/__init__.py -------------------------------------------------------------------------------- /socorro/signature/cmd_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/cmd_doc.py -------------------------------------------------------------------------------- /socorro/signature/cmd_signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/cmd_signature.py -------------------------------------------------------------------------------- /socorro/signature/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/generator.py -------------------------------------------------------------------------------- /socorro/signature/pipeline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/pipeline.rst -------------------------------------------------------------------------------- /socorro/signature/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/rules.py -------------------------------------------------------------------------------- /socorro/signature/schema.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/schema.rst -------------------------------------------------------------------------------- /socorro/signature/siglists/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/siglists/README.rst -------------------------------------------------------------------------------- /socorro/signature/siglists/irrelevant_signature_re.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/siglists/irrelevant_signature_re.txt -------------------------------------------------------------------------------- /socorro/signature/siglists/prefix_signature_re.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/siglists/prefix_signature_re.txt -------------------------------------------------------------------------------- /socorro/signature/siglists/signature_sentinels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/siglists/signature_sentinels.txt -------------------------------------------------------------------------------- /socorro/signature/siglists/signatures_with_line_numbers_re.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/siglists/signatures_with_line_numbers_re.txt -------------------------------------------------------------------------------- /socorro/signature/siglists_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/siglists_utils.py -------------------------------------------------------------------------------- /socorro/signature/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/tests/__init__.py -------------------------------------------------------------------------------- /socorro/signature/tests/siglists/test-invalid-sig-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/tests/siglists/test-invalid-sig-list.txt -------------------------------------------------------------------------------- /socorro/signature/tests/siglists/test-sig-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/tests/siglists/test-sig-list.txt -------------------------------------------------------------------------------- /socorro/signature/tests/siglists/test-valid-sig-list.txt: -------------------------------------------------------------------------------- 1 | # Test Signatures List. 2 | # Contains a few valid regular expressions. 3 | 4 | fooBarStuff 5 | moz::.* 6 | @0x[0-9a-fA-F]{2,} 7 | -------------------------------------------------------------------------------- /socorro/signature/tests/test_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/tests/test_rules.py -------------------------------------------------------------------------------- /socorro/signature/tests/test_siglists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/tests/test_siglists.py -------------------------------------------------------------------------------- /socorro/signature/tests/test_signature_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/tests/test_signature_generator.py -------------------------------------------------------------------------------- /socorro/signature/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/tests/test_utils.py -------------------------------------------------------------------------------- /socorro/signature/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/signature/utils.py -------------------------------------------------------------------------------- /socorro/stage_submitter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/stage_submitter/__init__.py -------------------------------------------------------------------------------- /socorro/stage_submitter/submitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/stage_submitter/submitter.py -------------------------------------------------------------------------------- /socorro/statsd_metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/statsd_metrics.yaml -------------------------------------------------------------------------------- /socorro/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/__init__.py -------------------------------------------------------------------------------- /socorro/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/conftest.py -------------------------------------------------------------------------------- /socorro/tests/external/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/external/__init__.py -------------------------------------------------------------------------------- /socorro/tests/external/es/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/external/es/__init__.py -------------------------------------------------------------------------------- /socorro/tests/external/es/test_analyzers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/external/es/test_analyzers.py -------------------------------------------------------------------------------- /socorro/tests/external/es/test_connection_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/external/es/test_connection_context.py -------------------------------------------------------------------------------- /socorro/tests/external/es/test_crashstorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/external/es/test_crashstorage.py -------------------------------------------------------------------------------- /socorro/tests/external/es/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/external/es/test_query.py -------------------------------------------------------------------------------- /socorro/tests/external/es/test_search_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/external/es/test_search_common.py -------------------------------------------------------------------------------- /socorro/tests/external/es/test_super_search_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/external/es/test_super_search_fields.py -------------------------------------------------------------------------------- /socorro/tests/external/es/test_supersearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/external/es/test_supersearch.py -------------------------------------------------------------------------------- /socorro/tests/external/fs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/external/fs/__init__.py -------------------------------------------------------------------------------- /socorro/tests/external/fs/test_fspermanentstorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/external/fs/test_fspermanentstorage.py -------------------------------------------------------------------------------- /socorro/tests/external/gcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/external/gcs/__init__.py -------------------------------------------------------------------------------- /socorro/tests/external/gcs/test_crashstorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/external/gcs/test_crashstorage.py -------------------------------------------------------------------------------- /socorro/tests/external/pubsub/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/external/pubsub/__init__.py -------------------------------------------------------------------------------- /socorro/tests/external/pubsub/test_crashqueue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/external/pubsub/test_crashqueue.py -------------------------------------------------------------------------------- /socorro/tests/external/test_crashqueue_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/external/test_crashqueue_base.py -------------------------------------------------------------------------------- /socorro/tests/external/test_crashstorage_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/external/test_crashstorage_base.py -------------------------------------------------------------------------------- /socorro/tests/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/lib/__init__.py -------------------------------------------------------------------------------- /socorro/tests/lib/config.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/lib/config.tst -------------------------------------------------------------------------------- /socorro/tests/lib/test_external_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/lib/test_external_common.py -------------------------------------------------------------------------------- /socorro/tests/lib/test_libcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/lib/test_libcache.py -------------------------------------------------------------------------------- /socorro/tests/lib/test_libdatetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/lib/test_libdatetime.py -------------------------------------------------------------------------------- /socorro/tests/lib/test_libdockerflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/lib/test_libdockerflow.py -------------------------------------------------------------------------------- /socorro/tests/lib/test_libjava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/lib/test_libjava.py -------------------------------------------------------------------------------- /socorro/tests/lib/test_libjsonschema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/lib/test_libjsonschema.py -------------------------------------------------------------------------------- /socorro/tests/lib/test_libooid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/lib/test_libooid.py -------------------------------------------------------------------------------- /socorro/tests/lib/test_libsocorrodataschema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/lib/test_libsocorrodataschema.py -------------------------------------------------------------------------------- /socorro/tests/lib/test_libversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/lib/test_libversion.py -------------------------------------------------------------------------------- /socorro/tests/lib/test_task_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/lib/test_task_manager.py -------------------------------------------------------------------------------- /socorro/tests/lib/test_threaded_task_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/lib/test_threaded_task_manager.py -------------------------------------------------------------------------------- /socorro/tests/lib/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/lib/test_util.py -------------------------------------------------------------------------------- /socorro/tests/processor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/processor/__init__.py -------------------------------------------------------------------------------- /socorro/tests/processor/rules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/processor/rules/__init__.py -------------------------------------------------------------------------------- /socorro/tests/processor/rules/memory_reports/bad_kind.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/processor/rules/memory_reports/bad_kind.json -------------------------------------------------------------------------------- /socorro/tests/processor/rules/memory_reports/bad_missing_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/processor/rules/memory_reports/bad_missing_key.json -------------------------------------------------------------------------------- /socorro/tests/processor/rules/memory_reports/bad_units.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/processor/rules/memory_reports/bad_units.json -------------------------------------------------------------------------------- /socorro/tests/processor/rules/memory_reports/bad_unrecognizable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/processor/rules/memory_reports/bad_unrecognizable.json -------------------------------------------------------------------------------- /socorro/tests/processor/rules/memory_reports/good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/processor/rules/memory_reports/good.json -------------------------------------------------------------------------------- /socorro/tests/processor/rules/test_android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/processor/rules/test_android.py -------------------------------------------------------------------------------- /socorro/tests/processor/rules/test_breakpad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/processor/rules/test_breakpad.py -------------------------------------------------------------------------------- /socorro/tests/processor/rules/test_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/processor/rules/test_general.py -------------------------------------------------------------------------------- /socorro/tests/processor/rules/test_java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/processor/rules/test_java.py -------------------------------------------------------------------------------- /socorro/tests/processor/rules/test_memory_report_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/processor/rules/test_memory_report_extraction.py -------------------------------------------------------------------------------- /socorro/tests/processor/rules/test_mozilla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/processor/rules/test_mozilla.py -------------------------------------------------------------------------------- /socorro/tests/processor/test_cache_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/processor/test_cache_manager.py -------------------------------------------------------------------------------- /socorro/tests/processor/test_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/processor/test_pipeline.py -------------------------------------------------------------------------------- /socorro/tests/processor/test_processor_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/processor/test_processor_app.py -------------------------------------------------------------------------------- /socorro/tests/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/schemas/__init__.py -------------------------------------------------------------------------------- /socorro/tests/schemas/test_socorro_data_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/schemas/test_socorro_data_schemas.py -------------------------------------------------------------------------------- /socorro/tests/schemas/test_telemetry_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/schemas/test_telemetry_schemas.py -------------------------------------------------------------------------------- /socorro/tests/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/scripts/__init__.py -------------------------------------------------------------------------------- /socorro/tests/scripts/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/scripts/test_db.py -------------------------------------------------------------------------------- /socorro/tests/scripts/test_fetch_crashids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/scripts/test_fetch_crashids.py -------------------------------------------------------------------------------- /socorro/tests/scripts/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/scripts/test_init.py -------------------------------------------------------------------------------- /socorro/tests/stage_submitter/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/stage_submitter/conftest.py -------------------------------------------------------------------------------- /socorro/tests/stage_submitter/test_submitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/stage_submitter/test_submitter.py -------------------------------------------------------------------------------- /socorro/tests/test_es_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/test_es_cli.py -------------------------------------------------------------------------------- /socorro/tests/test_permadelete_crash_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/test_permadelete_crash_data.py -------------------------------------------------------------------------------- /socorro/tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/test_settings.py -------------------------------------------------------------------------------- /socorro/tests/test_upload_telemetry_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/socorro/tests/test_upload_telemetry_schema.py -------------------------------------------------------------------------------- /webapp/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/.eslintignore -------------------------------------------------------------------------------- /webapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/.gitignore -------------------------------------------------------------------------------- /webapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/__init__.py -------------------------------------------------------------------------------- /webapp/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/conftest.py -------------------------------------------------------------------------------- /webapp/crashstats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/api/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/api/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/api/cleaner.py -------------------------------------------------------------------------------- /webapp/crashstats/api/jinja2/api/documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/api/jinja2/api/documentation.html -------------------------------------------------------------------------------- /webapp/crashstats/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/api/models.py -------------------------------------------------------------------------------- /webapp/crashstats/api/static/api/css/documentation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/api/static/api/css/documentation.css -------------------------------------------------------------------------------- /webapp/crashstats/api/static/api/js/testdrive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/api/static/api/js/testdrive.js -------------------------------------------------------------------------------- /webapp/crashstats/api/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/api/templatetags/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/api/templatetags/jinja_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/api/templatetags/jinja_helpers.py -------------------------------------------------------------------------------- /webapp/crashstats/api/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/api/tests/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/api/tests/test_cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/api/tests/test_cleaner.py -------------------------------------------------------------------------------- /webapp/crashstats/api/tests/test_jinja_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/api/tests/test_jinja_helpers.py -------------------------------------------------------------------------------- /webapp/crashstats/api/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/api/tests/test_views.py -------------------------------------------------------------------------------- /webapp/crashstats/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/api/urls.py -------------------------------------------------------------------------------- /webapp/crashstats/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/api/views.py -------------------------------------------------------------------------------- /webapp/crashstats/authentication/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/authentication/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/authentication/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/authentication/admin.py -------------------------------------------------------------------------------- /webapp/crashstats/authentication/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/authentication/management/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/authentication/management/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/authentication/management/commands/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/authentication/management/commands/auditgroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/authentication/management/commands/auditgroups.py -------------------------------------------------------------------------------- /webapp/crashstats/authentication/management/commands/makesuperuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/authentication/management/commands/makesuperuser.py -------------------------------------------------------------------------------- /webapp/crashstats/authentication/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/authentication/migrations/0001_initial.py -------------------------------------------------------------------------------- /webapp/crashstats/authentication/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/authentication/migrations/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/authentication/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/authentication/models.py -------------------------------------------------------------------------------- /webapp/crashstats/authentication/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/authentication/tests/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/authentication/tests/test_auditgroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/authentication/tests/test_auditgroups.py -------------------------------------------------------------------------------- /webapp/crashstats/authentication/tests/test_makesuperuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/authentication/tests/test_makesuperuser.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/admin.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/apps.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/context_processors.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/decorators.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/fixtures/platforms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/fixtures/platforms.json -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/forms.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/jinja2/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/jinja2/400.html -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/jinja2/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/jinja2/404.html -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/jinja2/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/jinja2/500.html -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/jinja2/crashstats/about_throttling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/jinja2/crashstats/about_throttling.html -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/jinja2/crashstats/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/jinja2/crashstats/home.html -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/jinja2/crashstats/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/jinja2/crashstats/login.html -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/jinja2/crashstats/product_home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/jinja2/crashstats/product_home.html -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/jinja2/crashstats/ratelimit_blocked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/jinja2/crashstats/ratelimit_blocked.html -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/jinja2/crashstats/report_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/jinja2/crashstats/report_index.html -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/jinja2/crashstats/report_index_malformed_raw_crash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/jinja2/crashstats/report_index_malformed_raw_crash.html -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/jinja2/crashstats/report_index_not_found.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/jinja2/crashstats/report_index_not_found.html -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/jinja2/crashstats/report_index_pending.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/jinja2/crashstats/report_index_pending.html -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/jinja2/crashstats_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/jinja2/crashstats_base.html -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/jinja2/error_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/jinja2/error_base.html -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/jinja2/footer_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/jinja2/footer_nav.html -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/jinja2/macros/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/jinja2/macros/pagination.html -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/jinja2/macros/signature_startup_icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/jinja2/macros/signature_startup_icons.html -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/management/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/management/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/management/commands/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/management/commands/archivescraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/management/commands/archivescraper.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/management/commands/bugassociations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/management/commands/bugassociations.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/management/commands/dumppv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/management/commands/dumppv.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/management/commands/update_graphics_pci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/management/commands/update_graphics_pci.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/management/commands/updatemissing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/management/commands/updatemissing.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/management/commands/updatesignatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/management/commands/updatesignatures.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/management/commands/verifyprocessed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/management/commands/verifyprocessed.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/middleware.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0001_initial.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0002_1457747_graphics_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0002_1457747_graphics_devices.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0003_1457747_graphics_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0003_1457747_graphics_data_migration.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0004_1463121-signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0004_1463121-signature.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0005_1463121-signature-data-migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0005_1463121-signature-data-migration.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0006_1493768-bug-associations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0006_1493768-bug-associations.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0007_1498441-platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0007_1498441-platform.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0008_1498441-name-unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0008_1498441-name-unique.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0009_1506907_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0009_1506907_product.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0010_1506907_product_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0010_1506907_product_migration.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0011_1506907_productversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0011_1506907_productversion.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0012_1507916_productversion_major_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0012_1507916_productversion_major_version.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0013_1507916_major_version_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0013_1507916_major_version_data_migration.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0014_auto_20181214_1951.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0014_auto_20181214_1951.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0015_1463514-remove-eventlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0015_1463514-remove-eventlog.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0016_1523284_fenix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0016_1523284_fenix.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0017_missingprocessedcrashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0017_missingprocessedcrashes.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0018_missingprocessedcrash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0018_missingprocessedcrash.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0019_missing-crashes-migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0019_missing-crashes-migration.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0020_auto_20190403_2208.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0020_auto_20190403_2208.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0021_bug_1657668_product_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0021_bug_1657668_product_support.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/0022_auto_20210317_2220.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/0022_auto_20210317_2220.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/migrations/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/models.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/signals.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/base/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/base/forms.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/base/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/base/layout.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/base/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/base/reset.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/base/tables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/base/tables.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/base/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/base/typography.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/base/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/base/variables.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/components/accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/components/accordion.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/components/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/components/admin.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/components/bugzilla.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/components/bugzilla.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/components/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/components/code.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/components/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/components/footer.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/components/message.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/components/message.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/components/nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/components/nav.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/components/note.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/components/note.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/components/pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/components/pagination.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/components/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/components/panel.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/components/select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/components/select.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/components/simplebox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/components/simplebox.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/components/statusicon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/components/statusicon.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/components/sumo_link.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/components/sumo_link.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/components/table_sorter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/components/table_sorter.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/components/tip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/components/tip.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/components/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/components/tree.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/crashstats-base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/crashstats-base.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/lib/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/lib/images/animated-overlay.gif -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-bg_flat_100_fcfdfd_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-bg_flat_100_fcfdfd_40x100.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-bg_flat_45_9fa1a2_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-bg_flat_45_9fa1a2_40x100.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-bg_flat_50_82857f_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-bg_flat_50_82857f_40x100.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-bg_flat_55_999999_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-bg_flat_55_999999_40x100.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-bg_flat_75_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-bg_flat_75_aaaaaa_40x100.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-bg_flat_75_dadbdc_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-bg_flat_75_dadbdc_40x100.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-bg_flat_75_ececeb_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-bg_flat_75_ececeb_40x100.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-bg_glass_55_eed536_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-bg_glass_55_eed536_1x400.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-bg_gloss-wave_45_e14f1c_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-bg_gloss-wave_45_e14f1c_500x100.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-icons_333_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-icons_333_256x240.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-icons_6b6868_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-icons_6b6868_256x240.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-icons_fcd113_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-icons_fcd113_256x240.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-icons_fff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/lib/images/ui-icons_fff_256x240.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/lib/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/lib/jquery-ui.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/lib/jquery-ui.structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/lib/jquery-ui.structure.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/lib/jquery-ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/lib/jquery-ui.theme.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/lib/jsonview.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/lib/jsonview.custom.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/lib/metricsgraphics_custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/lib/metricsgraphics_custom.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/pages/product_home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/pages/product_home.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/pages/report_index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/pages/report_index.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/css/pages/report_pending.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/css/pages/report_pending.css -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/fonts/icons.eot -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/fonts/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/fonts/icons.svg -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/fonts/icons.ttf -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/fonts/icons.woff -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/js/esm-shim-jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/js/esm-shim-jquery.js -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/js/jquery/plugins/jquery.cookies.2.2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/js/jquery/plugins/jquery.cookies.2.2.0.js -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/js/lib/accordions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/js/lib/accordions.js -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/js/socorro/bugzilla.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/js/socorro/bugzilla.js -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/js/socorro/correlation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/js/socorro/correlation.js -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/js/socorro/crashstats-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/js/socorro/crashstats-base.js -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/js/socorro/hangreport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/js/socorro/hangreport.js -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/js/socorro/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/js/socorro/nav.js -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/js/socorro/pending.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/js/socorro/pending.js -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/js/socorro/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/js/socorro/report.js -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/js/socorro/reprocessing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/js/socorro/reprocessing.js -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/js/socorro/timeutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/js/socorro/timeutils.js -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/crashstats/js/socorro/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/crashstats/js/socorro/utils.js -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/2.0/down-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/2.0/down-selected.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/2.0/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/2.0/down.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/2.0/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/2.0/header-bg.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/2.0/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/2.0/logo.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/2.0/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/2.0/logo2.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/2.0/mozilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/2.0/mozilla.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/2.0/product-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/2.0/product-bg.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/2.0/product-selected-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/2.0/product-selected-bg.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/2.0/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/2.0/search.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/2.0/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/2.0/title.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/2.0/version-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/2.0/version-bg.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3.0/caret.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3.0/caret.svg -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3.0/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3.0/logo.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3.0/mozilla.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3.0/mozilla.gif -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/fatcow/application16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/fatcow/application16x16.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/fatcow/brick16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/fatcow/brick16x16.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/fatcow/content16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/fatcow/content16x16.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/fatcow/stop16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/fatcow/stop16x16.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/silk/application_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/silk/application_edit.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/silk/application_form_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/silk/application_form_add.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/silk/arrow_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/silk/arrow_bottom.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/silk/arrow_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/silk/arrow_top.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/silk/bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/silk/bricks.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/silk/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/silk/calendar.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/silk/chart_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/silk/chart_curve.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/silk/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/silk/cross.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/silk/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/silk/delete.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/silk/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/silk/error.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/silk/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/silk/exclamation.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/silk/flag_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/silk/flag_red.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/silk/flag_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/silk/flag_yellow.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/silk/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/silk/information.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/silk/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/silk/magnifier.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/silk/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/silk/readme.txt -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/silk/resultset_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/silk/resultset_next.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/silk/resultset_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/silk/resultset_previous.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/silk/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/silk/tick.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/3rdparty/silk/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/3rdparty/silk/wrench.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/__utm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/__utm.gif -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/ajax-loader.gif -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/ajax-loader16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/ajax-loader16x16.gif -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/arrow_collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/arrow_collapsed.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/arrow_expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/arrow_expanded.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/block-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/block-bg.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/block-vrule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/block-vrule.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/body-vrule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/body-vrule.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/down_arrow.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/favicon.ico -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/feed-icon16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/feed-icon16x16.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/feed-icon32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/feed-icon32x32.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/footer_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/footer_bg.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/header-bg.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/header-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/header-logo.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/header-watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/header-watermark.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/icons/add.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/icons/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/icons/ajax-loader.gif -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/icons/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/icons/calendar.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/icons/close_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/icons/close_round.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/icons/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/icons/external.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/icons/rocket_fly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/icons/rocket_fly.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/loading.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/logo.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/menu.svg -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/search-icon.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/slate/button-grad-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/slate/button-grad-active.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/slate/button-grad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/slate/button-grad.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/slate/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/slate/calendar.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/slate/disclosure-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/slate/disclosure-down.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/slate/disclosure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/slate/disclosure.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/slate/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/slate/header-bg.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/slate/main-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/slate/main-bg.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/slate/moz-developer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/slate/moz-developer.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/slate/mozillalogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/slate/mozillalogo.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/slate/topcrashhead-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/slate/topcrashhead-bg.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/slate/white-grad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/slate/white-grad.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/table-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/table-bg.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/img/up_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/img/up_arrow.png -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/static/js/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/static/js/error.js -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/templatetags/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/templatetags/jinja_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/templatetags/jinja_helpers.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/tests/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/tests/conftest.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/tests/sample_pci.ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/tests/sample_pci.ids -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/tests/test_archivescraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/tests/test_archivescraper.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/tests/test_bugassociations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/tests/test_bugassociations.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/tests/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/tests/test_decorators.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/tests/test_forms.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/tests/test_jinja_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/tests/test_jinja_helpers.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/tests/test_middleware.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/tests/test_models.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/tests/test_sentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/tests/test_sentry.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/tests/test_updatemissing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/tests/test_updatemissing.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/tests/test_updatesignatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/tests/test_updatesignatures.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/tests/test_utils.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/tests/test_verifyprocessed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/tests/test_verifyprocessed.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/tests/test_views.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/tests/testbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/tests/testbase.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/urls.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/utils.py -------------------------------------------------------------------------------- /webapp/crashstats/crashstats/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/crashstats/views.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/admin.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/management/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/management/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/management/commands/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/management/commands/cleanse_cronlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/management/commands/cleanse_cronlog.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/management/commands/cronlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/management/commands/cronlist.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/management/commands/cronmarksuccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/management/commands/cronmarksuccess.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/management/commands/cronreset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/management/commands/cronreset.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/management/commands/cronrun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/management/commands/cronrun.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/management/commands/crontest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/management/commands/crontest.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/migrations/0001_initial.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/migrations/0002_job_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/migrations/0002_job_log.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/migrations/0003_auto_20181116_1432.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/migrations/0003_auto_20181116_1432.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/migrations/0004_auto_20181214_1951.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/migrations/0004_auto_20181214_1951.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/migrations/0005_auto_20190430_1242.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/migrations/0005_auto_20190430_1242.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/migrations/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/models.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/tests/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/tests/test_cleansecronlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/tests/test_cleansecronlog.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/tests/test_cronmarksuccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/tests/test_cronmarksuccess.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/tests/test_cronreset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/tests/test_cronreset.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/tests/test_cronrun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/tests/test_cronrun.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/tests/test_utils.py -------------------------------------------------------------------------------- /webapp/crashstats/cron/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/cron/utils.py -------------------------------------------------------------------------------- /webapp/crashstats/documentation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/documentation/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/documentation/jinja2/docs/datadictionary/field_doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/documentation/jinja2/docs/datadictionary/field_doc.html -------------------------------------------------------------------------------- /webapp/crashstats/documentation/jinja2/docs/datadictionary/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/documentation/jinja2/docs/datadictionary/index.html -------------------------------------------------------------------------------- /webapp/crashstats/documentation/jinja2/docs/docs_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/documentation/jinja2/docs/docs_base.html -------------------------------------------------------------------------------- /webapp/crashstats/documentation/jinja2/docs/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/documentation/jinja2/docs/home.html -------------------------------------------------------------------------------- /webapp/crashstats/documentation/jinja2/docs/protected_data_access.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/documentation/jinja2/docs/protected_data_access.html -------------------------------------------------------------------------------- /webapp/crashstats/documentation/jinja2/docs/supersearch/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/documentation/jinja2/docs/supersearch/api.html -------------------------------------------------------------------------------- /webapp/crashstats/documentation/jinja2/docs/supersearch/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/documentation/jinja2/docs/supersearch/examples.html -------------------------------------------------------------------------------- /webapp/crashstats/documentation/jinja2/docs/supersearch/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/documentation/jinja2/docs/supersearch/home.html -------------------------------------------------------------------------------- /webapp/crashstats/documentation/jinja2/docs/whatsnew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/documentation/jinja2/docs/whatsnew.html -------------------------------------------------------------------------------- /webapp/crashstats/documentation/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/documentation/models.py -------------------------------------------------------------------------------- /webapp/crashstats/documentation/static/documentation/css/documentation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/documentation/static/documentation/css/documentation.css -------------------------------------------------------------------------------- /webapp/crashstats/documentation/static/documentation/js/documentation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/documentation/static/documentation/js/documentation.js -------------------------------------------------------------------------------- /webapp/crashstats/documentation/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/documentation/tests/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/documentation/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/documentation/tests/test_views.py -------------------------------------------------------------------------------- /webapp/crashstats/documentation/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/documentation/urls.py -------------------------------------------------------------------------------- /webapp/crashstats/documentation/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/documentation/views.py -------------------------------------------------------------------------------- /webapp/crashstats/libbugzilla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/libbugzilla.py -------------------------------------------------------------------------------- /webapp/crashstats/libproduct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/libproduct.py -------------------------------------------------------------------------------- /webapp/crashstats/manage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/manage/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/manage/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/manage/admin.py -------------------------------------------------------------------------------- /webapp/crashstats/manage/admin_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/manage/admin_site.py -------------------------------------------------------------------------------- /webapp/crashstats/manage/admin_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/manage/admin_urls.py -------------------------------------------------------------------------------- /webapp/crashstats/manage/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/manage/apps.py -------------------------------------------------------------------------------- /webapp/crashstats/manage/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/manage/decorators.py -------------------------------------------------------------------------------- /webapp/crashstats/manage/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/manage/models.py -------------------------------------------------------------------------------- /webapp/crashstats/manage/templates/admin/debug_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/manage/templates/admin/debug_view.html -------------------------------------------------------------------------------- /webapp/crashstats/manage/templates/admin/protected_data_users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/manage/templates/admin/protected_data_users.html -------------------------------------------------------------------------------- /webapp/crashstats/manage/templates/admin/site_status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/manage/templates/admin/site_status.html -------------------------------------------------------------------------------- /webapp/crashstats/manage/templates/admin/socorro_admin_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/manage/templates/admin/socorro_admin_index.html -------------------------------------------------------------------------------- /webapp/crashstats/manage/templates/admin/supersearch_status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/manage/templates/admin/supersearch_status.html -------------------------------------------------------------------------------- /webapp/crashstats/manage/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/manage/tests/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/manage/tests/test_admin_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/manage/tests/test_admin_views.py -------------------------------------------------------------------------------- /webapp/crashstats/manage/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/manage/urls.py -------------------------------------------------------------------------------- /webapp/crashstats/manage/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/manage/views.py -------------------------------------------------------------------------------- /webapp/crashstats/monitoring/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/monitoring/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/monitoring/jinja2/monitoring/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/monitoring/jinja2/monitoring/index.html -------------------------------------------------------------------------------- /webapp/crashstats/monitoring/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/monitoring/tests/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/monitoring/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/monitoring/tests/test_views.py -------------------------------------------------------------------------------- /webapp/crashstats/monitoring/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/monitoring/urls.py -------------------------------------------------------------------------------- /webapp/crashstats/monitoring/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/monitoring/views.py -------------------------------------------------------------------------------- /webapp/crashstats/profile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/profile/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/profile/jinja2/profile/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/profile/jinja2/profile/profile.html -------------------------------------------------------------------------------- /webapp/crashstats/profile/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/profile/models.py -------------------------------------------------------------------------------- /webapp/crashstats/profile/static/profile/css/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/profile/static/profile/css/profile.css -------------------------------------------------------------------------------- /webapp/crashstats/profile/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/profile/tests/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/profile/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/profile/tests/test_views.py -------------------------------------------------------------------------------- /webapp/crashstats/profile/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/profile/urls.py -------------------------------------------------------------------------------- /webapp/crashstats/profile/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/profile/views.py -------------------------------------------------------------------------------- /webapp/crashstats/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/settings/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/settings/base.py -------------------------------------------------------------------------------- /webapp/crashstats/settings/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/settings/test.py -------------------------------------------------------------------------------- /webapp/crashstats/signature/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/signature/jinja2/signature/signature_aggregation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/jinja2/signature/signature_aggregation.html -------------------------------------------------------------------------------- /webapp/crashstats/signature/jinja2/signature/signature_bugzilla.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/jinja2/signature/signature_bugzilla.html -------------------------------------------------------------------------------- /webapp/crashstats/signature/jinja2/signature/signature_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/jinja2/signature/signature_comments.html -------------------------------------------------------------------------------- /webapp/crashstats/signature/jinja2/signature/signature_correlations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/jinja2/signature/signature_correlations.html -------------------------------------------------------------------------------- /webapp/crashstats/signature/jinja2/signature/signature_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/jinja2/signature/signature_report.html -------------------------------------------------------------------------------- /webapp/crashstats/signature/jinja2/signature/signature_reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/jinja2/signature/signature_reports.html -------------------------------------------------------------------------------- /webapp/crashstats/signature/jinja2/signature/signature_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/jinja2/signature/signature_summary.html -------------------------------------------------------------------------------- /webapp/crashstats/signature/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/models.py -------------------------------------------------------------------------------- /webapp/crashstats/signature/static/signature/css/signature_report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/static/signature/css/signature_report.css -------------------------------------------------------------------------------- /webapp/crashstats/signature/static/signature/js/signature_panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/static/signature/js/signature_panel.js -------------------------------------------------------------------------------- /webapp/crashstats/signature/static/signature/js/signature_report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/static/signature/js/signature_report.js -------------------------------------------------------------------------------- /webapp/crashstats/signature/static/signature/js/signature_tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/static/signature/js/signature_tab.js -------------------------------------------------------------------------------- /webapp/crashstats/signature/static/signature/js/signature_tab_aggregations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/static/signature/js/signature_tab_aggregations.js -------------------------------------------------------------------------------- /webapp/crashstats/signature/static/signature/js/signature_tab_bugzilla.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/static/signature/js/signature_tab_bugzilla.js -------------------------------------------------------------------------------- /webapp/crashstats/signature/static/signature/js/signature_tab_comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/static/signature/js/signature_tab_comments.js -------------------------------------------------------------------------------- /webapp/crashstats/signature/static/signature/js/signature_tab_correlations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/static/signature/js/signature_tab_correlations.js -------------------------------------------------------------------------------- /webapp/crashstats/signature/static/signature/js/signature_tab_graphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/static/signature/js/signature_tab_graphs.js -------------------------------------------------------------------------------- /webapp/crashstats/signature/static/signature/js/signature_tab_reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/static/signature/js/signature_tab_reports.js -------------------------------------------------------------------------------- /webapp/crashstats/signature/static/signature/js/signature_tab_summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/static/signature/js/signature_tab_summary.js -------------------------------------------------------------------------------- /webapp/crashstats/signature/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/tests/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/signature/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/tests/test_views.py -------------------------------------------------------------------------------- /webapp/crashstats/signature/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/urls.py -------------------------------------------------------------------------------- /webapp/crashstats/signature/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/signature/views.py -------------------------------------------------------------------------------- /webapp/crashstats/sources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/sources/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/sources/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/sources/tests/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/sources/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/sources/tests/test_views.py -------------------------------------------------------------------------------- /webapp/crashstats/sources/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/sources/urls.py -------------------------------------------------------------------------------- /webapp/crashstats/sources/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/sources/views.py -------------------------------------------------------------------------------- /webapp/crashstats/status/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/status/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/status/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/status/admin.py -------------------------------------------------------------------------------- /webapp/crashstats/status/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/status/context_processors.py -------------------------------------------------------------------------------- /webapp/crashstats/status/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/status/migrations/0001_initial.py -------------------------------------------------------------------------------- /webapp/crashstats/status/migrations/0002_auto_20180522_1545.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/status/migrations/0002_auto_20180522_1545.py -------------------------------------------------------------------------------- /webapp/crashstats/status/migrations/0003_auto_20181214_1951.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/status/migrations/0003_auto_20181214_1951.py -------------------------------------------------------------------------------- /webapp/crashstats/status/migrations/0004_auto_20190118_1546.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/status/migrations/0004_auto_20190118_1546.py -------------------------------------------------------------------------------- /webapp/crashstats/status/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/status/migrations/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/status/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/status/models.py -------------------------------------------------------------------------------- /webapp/crashstats/status/static/status/css/status.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/status/static/status/css/status.css -------------------------------------------------------------------------------- /webapp/crashstats/status/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/status/tests/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/status/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/status/tests/test_views.py -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/form_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/form_fields.py -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/forms.py -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/jinja2/supersearch/macros/date_filters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/jinja2/supersearch/macros/date_filters.html -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/jinja2/supersearch/macros/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/jinja2/supersearch/macros/links.html -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/jinja2/supersearch/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/jinja2/supersearch/search.html -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/jinja2/supersearch/search_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/jinja2/supersearch/search_custom.html -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/jinja2/supersearch/search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/jinja2/supersearch/search_results.html -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/libsupersearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/libsupersearch.py -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/management/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/management/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/management/commands/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/management/commands/esclean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/management/commands/esclean.py -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/models.py -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/static/supersearch/css/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/static/supersearch/css/search.css -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/static/supersearch/js/lib/dynamic_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/static/supersearch/js/lib/dynamic_form.js -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/static/supersearch/js/socorro/date_filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/static/supersearch/js/socorro/date_filters.js -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/static/supersearch/js/socorro/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/static/supersearch/js/socorro/search.js -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/static/supersearch/js/socorro/search_custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/static/supersearch/js/socorro/search_custom.js -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/tests/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/tests/test_esclean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/tests/test_esclean.py -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/tests/test_form_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/tests/test_form_fields.py -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/tests/test_forms.py -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/tests/test_libsupersearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/tests/test_libsupersearch.py -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/tests/test_utils.py -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/tests/test_views.py -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/urls.py -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/utils.py -------------------------------------------------------------------------------- /webapp/crashstats/supersearch/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/supersearch/views.py -------------------------------------------------------------------------------- /webapp/crashstats/tests/test_libbugzilla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tests/test_libbugzilla.py -------------------------------------------------------------------------------- /webapp/crashstats/tests/test_libproduct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tests/test_libproduct.py -------------------------------------------------------------------------------- /webapp/crashstats/tokens/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tokens/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/tokens/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tokens/admin.py -------------------------------------------------------------------------------- /webapp/crashstats/tokens/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tokens/forms.py -------------------------------------------------------------------------------- /webapp/crashstats/tokens/jinja2/tokens/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tokens/jinja2/tokens/home.html -------------------------------------------------------------------------------- /webapp/crashstats/tokens/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tokens/management/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/tokens/management/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tokens/management/commands/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/tokens/management/commands/createtoken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tokens/management/commands/createtoken.py -------------------------------------------------------------------------------- /webapp/crashstats/tokens/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tokens/middleware.py -------------------------------------------------------------------------------- /webapp/crashstats/tokens/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tokens/migrations/0001_initial.py -------------------------------------------------------------------------------- /webapp/crashstats/tokens/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tokens/migrations/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/tokens/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tokens/models.py -------------------------------------------------------------------------------- /webapp/crashstats/tokens/static/tokens/css/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tokens/static/tokens/css/home.css -------------------------------------------------------------------------------- /webapp/crashstats/tokens/static/tokens/js/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tokens/static/tokens/js/home.js -------------------------------------------------------------------------------- /webapp/crashstats/tokens/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tokens/tests/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/tokens/tests/test_createtoken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tokens/tests/test_createtoken.py -------------------------------------------------------------------------------- /webapp/crashstats/tokens/tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tokens/tests/test_middleware.py -------------------------------------------------------------------------------- /webapp/crashstats/tokens/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tokens/tests/test_models.py -------------------------------------------------------------------------------- /webapp/crashstats/tokens/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tokens/tests/test_views.py -------------------------------------------------------------------------------- /webapp/crashstats/tokens/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tokens/urls.py -------------------------------------------------------------------------------- /webapp/crashstats/tokens/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/tokens/views.py -------------------------------------------------------------------------------- /webapp/crashstats/topcrashers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/topcrashers/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/topcrashers/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/topcrashers/forms.py -------------------------------------------------------------------------------- /webapp/crashstats/topcrashers/jinja2/topcrashers/topcrashers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/topcrashers/jinja2/topcrashers/topcrashers.html -------------------------------------------------------------------------------- /webapp/crashstats/topcrashers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/topcrashers/models.py -------------------------------------------------------------------------------- /webapp/crashstats/topcrashers/static/topcrashers/css/topcrashers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/topcrashers/static/topcrashers/css/topcrashers.css -------------------------------------------------------------------------------- /webapp/crashstats/topcrashers/static/topcrashers/js/topcrashers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/topcrashers/static/topcrashers/js/topcrashers.js -------------------------------------------------------------------------------- /webapp/crashstats/topcrashers/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/topcrashers/tests/__init__.py -------------------------------------------------------------------------------- /webapp/crashstats/topcrashers/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/topcrashers/tests/test_views.py -------------------------------------------------------------------------------- /webapp/crashstats/topcrashers/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/topcrashers/urls.py -------------------------------------------------------------------------------- /webapp/crashstats/topcrashers/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/topcrashers/views.py -------------------------------------------------------------------------------- /webapp/crashstats/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/urls.py -------------------------------------------------------------------------------- /webapp/crashstats/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/crashstats/wsgi.py -------------------------------------------------------------------------------- /webapp/esbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/esbuild.js -------------------------------------------------------------------------------- /webapp/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/manage.py -------------------------------------------------------------------------------- /webapp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/package-lock.json -------------------------------------------------------------------------------- /webapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/package.json -------------------------------------------------------------------------------- /webapp/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/pytest.ini -------------------------------------------------------------------------------- /webapp/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/socorro/HEAD/webapp/shell.py --------------------------------------------------------------------------------