├── .dockerignore ├── .editorconfig ├── .github └── workflows │ ├── ci.yml │ ├── deploy.yml │ └── perl-slim.yml ├── .gitignore ├── .mailmap ├── .perlcriticrc ├── .perltidyrc ├── .readthedocs.yaml ├── .vscode ├── bmo.code-snippets ├── settings.json └── tasks.json ├── Bugzilla.pm ├── Bugzilla ├── API │ └── V1 │ │ ├── BugGraph.pm │ │ ├── Component.pm │ │ ├── Configuration.pm │ │ ├── Github.pm │ │ ├── Reminders.pm │ │ ├── Teams.pm │ │ └── User.pm ├── App.pm ├── App │ ├── Command │ │ ├── move_flag_types.pm │ │ └── revoke_api_keys.pm │ ├── Controller │ │ ├── API.pm │ │ ├── BMO │ │ │ ├── AntiSpam.pm │ │ │ ├── ComponentGraveyard.pm │ │ │ └── NewRelease.pm │ │ ├── BouncedEmails.pm │ │ ├── CGI.pm │ │ ├── MFA │ │ │ └── Duo.pm │ │ ├── Main.pm │ │ ├── OAuth2 │ │ │ └── Provider │ │ │ │ └── Clients.pm │ │ └── SES.pm │ ├── Plugin │ │ ├── BlockIP.pm │ │ ├── Error.pm │ │ ├── Glue.pm │ │ ├── Helpers.pm │ │ ├── Hostage.pm │ │ ├── Login.pm │ │ ├── OAuth2 │ │ │ ├── Client.pm │ │ │ └── Provider.pm │ │ └── SizeLimit.pm │ ├── Static.pm │ └── Stdout.pm ├── Attachment.pm ├── Attachment │ ├── Archive.pm │ ├── PatchReader.pm │ └── Storage │ │ ├── Base.pm │ │ ├── Database.pm │ │ ├── FileSystem.pm │ │ └── Net.pm ├── Auth.pm ├── Auth │ ├── Login.pm │ ├── Login │ │ ├── APIKey.pm │ │ ├── CGI.pm │ │ ├── Cookie.pm │ │ ├── Env.pm │ │ ├── OAuth2.pm │ │ └── Stack.pm │ ├── Persist │ │ └── Cookie.pm │ ├── Verify.pm │ └── Verify │ │ ├── DB.pm │ │ ├── LDAP.pm │ │ ├── RADIUS.pm │ │ └── Stack.pm ├── Bloomfilter.pm ├── Bug.pm ├── BugMail.pm ├── BugUrl.pm ├── BugUrl │ ├── External.pm │ └── Local.pm ├── BugUserLastVisit.pm ├── CGI.pm ├── CGI │ └── ContentSecurityPolicy.pm ├── CPAN.pm ├── Chart.pm ├── Classification.pm ├── Comment.pm ├── Comment │ └── TagWeights.pm ├── Component.pm ├── Config.pm ├── Config │ ├── Admin.pm │ ├── Advanced.pm │ ├── Attachment.pm │ ├── Auth.pm │ ├── BugChange.pm │ ├── BugFields.pm │ ├── Common.pm │ ├── General.pm │ ├── Github.pm │ ├── GroupSecurity.pm │ ├── LDAP.pm │ ├── MTA.pm │ ├── NewRelease.pm │ ├── OAuth2Client.pm │ ├── PatchViewer.pm │ ├── Query.pm │ ├── RADIUS.pm │ ├── Reminders.pm │ ├── Reports.pm │ ├── ShadowDB.pm │ └── UserMatch.pm ├── Constants.pm ├── DB.pm ├── DB │ ├── Mysql.pm │ ├── Oracle.pm │ ├── Pg.pm │ ├── Schema.pm │ ├── Schema │ │ ├── Mysql.pm │ │ ├── Oracle.pm │ │ ├── Pg.pm │ │ └── Sqlite.pm │ └── Sqlite.pm ├── DaemonControl.pm ├── DuoClient.pm ├── Error.pm ├── Error │ ├── Base.pm │ ├── Code.pm │ ├── Template.pm │ └── User.pm ├── Extension.pm ├── Field.pm ├── Field │ ├── Choice.pm │ └── ChoiceInterface.pm ├── Flag.pm ├── FlagType.pm ├── Group.pm ├── Hook.pm ├── Install.pm ├── Install │ ├── DB.pm │ ├── Filesystem.pm │ ├── Localconfig.pm │ ├── Requirements.pm │ └── Util.pm ├── Job │ ├── BugMail.pm │ ├── Mailer.pm │ └── RunTask.pm ├── JobQueue.pm ├── JobQueue │ ├── Runner.pm │ └── Worker.pm ├── Keyword.pm ├── Localconfig.pm ├── Logging.pm ├── MFA.pm ├── MFA │ ├── Dummy.pm │ ├── Duo.pm │ └── TOTP.pm ├── Mailer.pm ├── Markdown.pm ├── Markdown │ ├── GFM.pm │ └── GFM │ │ ├── Node.pm │ │ ├── Parser.pm │ │ ├── SyntaxExtension.pm │ │ └── SyntaxExtensionList.pm ├── Memcached.pm ├── Migrate.pm ├── Migrate │ └── Gnats.pm ├── Milestone.pm ├── Model.pm ├── Net │ ├── Google.pm │ ├── S3.pm │ └── Storage.pm ├── Object.pm ├── PatchReader.pm ├── PatchReader │ ├── AddCVSContext.pm │ ├── Base.pm │ ├── CVSClient.pm │ ├── DiffPrinter │ │ ├── raw.pm │ │ └── template.pm │ ├── FilterPatch.pm │ ├── FixPatchRoot.pm │ ├── NarrowPatch.pm │ ├── PatchInfoGrabber.pm │ └── Raw.pm ├── Product.pm ├── RNG.pm ├── Reminder.pm ├── Report │ ├── Graph.pm │ ├── Net.pm │ └── SecurityRisk.pm ├── Role │ ├── FlattenToHash.pm │ └── Storable.pm ├── Search.pm ├── Search │ ├── Clause.pm │ ├── ClauseGroup.pm │ ├── Condition.pm │ ├── Quicksearch.pm │ ├── Recent.pm │ └── Saved.pm ├── Series.pm ├── Status.pm ├── Task.pm ├── Teams.pm ├── Template.pm ├── Template │ ├── Context.pm │ ├── Plugin │ │ ├── Bugzilla.pm │ │ ├── Hook.pm │ │ └── User.pm │ └── PreloadProvider.pm ├── Test │ ├── MockDB.pm │ ├── MockLocalconfig.pm │ ├── MockParams.pm │ ├── Selenium.pm │ └── Util.pm ├── Token.pm ├── Types.pm ├── Update.pm ├── User.pm ├── User │ ├── APIKey.pm │ ├── Session.pm │ ├── Setting.pm │ └── Setting │ │ ├── Lang.pm │ │ ├── Skin.pm │ │ └── Timezone.pm ├── UserAgent.pm ├── Util.pm ├── Util │ └── DateTime.pm ├── Version.pm ├── WebService.pm ├── WebService │ ├── Bug.pm │ ├── BugUserLastVisit.pm │ ├── Bugzilla.pm │ ├── Classification.pm │ ├── Constants.pm │ ├── Group.pm │ ├── Product.pm │ ├── README │ ├── Server.pm │ ├── Server │ │ ├── JSONRPC.pm │ │ ├── REST.pm │ │ ├── REST │ │ │ └── Resources │ │ │ │ ├── Bug.pm │ │ │ │ ├── BugUserLastVisit.pm │ │ │ │ ├── Bugzilla.pm │ │ │ │ ├── Classification.pm │ │ │ │ ├── Group.pm │ │ │ │ ├── Product.pm │ │ │ │ └── User.pm │ │ └── XMLRPC.pm │ ├── User.pm │ ├── Util.pm │ └── Wants.pm ├── Whine.pm └── Whine │ ├── Query.pm │ └── Schedule.pm ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── Dockerfile.bmo-slim ├── Dockerfile.cpanfile ├── LICENSE ├── Log └── Log4perl │ └── Layout │ └── Mozilla.pm ├── Makefile.PL ├── README.rst ├── admin.cgi ├── attachment.cgi ├── buglist.cgi ├── bugzilla.dtd ├── bugzilla.pl ├── chart.cgi ├── checksetup.pl ├── clean-bug-user-last-visit.pl ├── colchange.cgi ├── collectstats.pl ├── conf ├── checksetup_answers.txt ├── checksetup_answers_suite.txt ├── log4perl-docker.conf ├── log4perl-json.conf ├── log4perl-morbo.conf ├── log4perl-suite.conf ├── log4perl-syslog.conf ├── log4perl-t.conf └── log4perl-test.conf ├── config.cgi ├── contrib ├── clear-memcached.pl ├── clear-templates.pl └── fixperms.pl ├── contribute.json ├── cpanfile ├── cpanfile.snapshot ├── createaccount.cgi ├── describecomponents.cgi ├── describekeywords.cgi ├── docker-compose.test.yml ├── docker-compose.yml ├── docker ├── bigquery │ ├── Dockerfile │ └── data.yaml ├── mysql │ └── bmo.cnf └── proxy │ └── haproxy.cfg ├── docs ├── en │ ├── Makefile │ ├── images │ │ ├── bzLifecycle.png │ │ └── bzLifecycle.xml │ └── rst │ │ ├── _static │ │ └── bugzilla.css │ │ ├── about │ │ └── index.rst │ │ ├── administering │ │ ├── categorization.rst │ │ ├── custom-fields.rst │ │ ├── extensions.rst │ │ ├── field-values.rst │ │ ├── flags.rst │ │ ├── groups.rst │ │ ├── index.rst │ │ ├── keywords.rst │ │ ├── parameters.rst │ │ ├── preferences.rst │ │ ├── quips.rst │ │ ├── users.rst │ │ ├── whining.rst │ │ └── workflow.rst │ │ ├── api │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── attachment.rst │ │ │ │ ├── bug-user-last-visit.rst │ │ │ │ ├── bug.rst │ │ │ │ ├── bugzilla.rst │ │ │ │ ├── classification.rst │ │ │ │ ├── comment.rst │ │ │ │ ├── component.rst │ │ │ │ ├── field.rst │ │ │ │ ├── flag-activity.rst │ │ │ │ ├── general.rst │ │ │ │ ├── github.rst │ │ │ │ ├── group.rst │ │ │ │ ├── index.rst │ │ │ │ ├── product.rst │ │ │ │ ├── reminders.rst │ │ │ │ └── user.rst │ │ └── index.rst │ │ ├── conf.py │ │ ├── extensions │ │ └── Webhooks │ │ │ └── api │ │ │ └── v1 │ │ │ ├── index.rst │ │ │ └── webhooks.rst │ │ ├── index.rst │ │ ├── integrating │ │ ├── apis.rst │ │ ├── auth0.rst │ │ ├── extensions.rst │ │ ├── faq.rst │ │ ├── index.rst │ │ ├── languages.rst │ │ ├── skins.rst │ │ └── templates.rst │ │ ├── requirements.txt │ │ ├── style.rst │ │ └── using │ │ ├── creating-an-account.rst │ │ ├── editing.rst │ │ ├── extensions.rst │ │ ├── filing.rst │ │ ├── finding.rst │ │ ├── index.rst │ │ ├── preferences.rst │ │ ├── reports-and-charts.rst │ │ ├── tips.rst │ │ └── understanding.rst ├── lib │ └── Pod │ │ └── Simple │ │ ├── HTML │ │ └── Bugzilla.pm │ │ └── HTMLBatch │ │ └── Bugzilla.pm ├── makedocs.pl └── style.css ├── duplicates.cgi ├── editclassifications.cgi ├── editcomponents.cgi ├── editfields.cgi ├── editflagtypes.cgi ├── editgroups.cgi ├── editkeywords.cgi ├── editmilestones.cgi ├── editparams.cgi ├── editproducts.cgi ├── editsettings.cgi ├── editusers.cgi ├── editvalues.cgi ├── editversions.cgi ├── editwhines.cgi ├── editworkflow.cgi ├── email_in.pl ├── enter_bug.cgi ├── errors ├── 401.html ├── 403.html ├── 404.html └── 500.html ├── extensions ├── AntiSpam │ ├── Config.pm │ ├── Extension.pm │ ├── bin │ │ └── spam_cleanup.pl │ ├── lib │ │ └── Config.pm │ └── template │ │ └── en │ │ └── default │ │ ├── admin │ │ └── params │ │ │ └── antispam.html.tmpl │ │ └── hook │ │ ├── admin │ │ ├── admin-end_links_right.html.tmpl │ │ └── params │ │ │ └── editparams-current_panel.html.tmpl │ │ └── global │ │ └── user-error-errors.html.tmpl ├── BMO │ ├── Config.pm │ ├── Extension.pm │ ├── bin │ │ ├── bug_1022707.pl │ │ ├── bug_1093952.pl │ │ ├── export_bmo_etl.pl │ │ ├── migrate-bug-type.pl │ │ └── migrate-github-pull-requests.pl │ ├── lib │ │ ├── API │ │ │ └── V1 │ │ │ │ └── Triage.pm │ │ ├── Constants.pm │ │ ├── Data.pm │ │ ├── FakeBug.pm │ │ ├── Reports │ │ │ ├── Attention.pm │ │ │ ├── Groups.pm │ │ │ ├── Internship.pm │ │ │ ├── ProductSecurity.pm │ │ │ ├── Recruiting.pm │ │ │ ├── ReleaseTracking.pm │ │ │ ├── Triage.pm │ │ │ └── UserActivity.pm │ │ └── WebService.pm │ ├── t │ │ ├── bmo │ │ │ └── bmo_etl.t │ │ ├── bounty_attachment.t │ │ └── inject_headers_into_body.t │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── account │ │ │ └── create.html.tmpl │ │ │ ├── bug │ │ │ ├── create │ │ │ │ ├── bugzilla-admin.html.tmpl │ │ │ │ ├── comment-automative.txt.tmpl │ │ │ │ ├── comment-comm-newsletter.txt.tmpl │ │ │ │ ├── comment-costume.txt.tmpl │ │ │ │ ├── comment-creative.txt.tmpl │ │ │ │ ├── comment-crm.txt.tmpl │ │ │ │ ├── comment-data-compliance.txt.tmpl │ │ │ │ ├── comment-doc.txt.tmpl │ │ │ │ ├── comment-employee-incident.txt.tmpl │ │ │ │ ├── comment-finance.txt.tmpl │ │ │ │ ├── comment-fsa-budget.txt.tmpl │ │ │ │ ├── comment-intern.txt.tmpl │ │ │ │ ├── comment-ipp.txt.tmpl │ │ │ │ ├── comment-legal.txt.tmpl │ │ │ │ ├── comment-mdn.txt.tmpl │ │ │ │ ├── comment-mobile-compat.txt.tmpl │ │ │ │ ├── comment-mozlist.txt.tmpl │ │ │ │ ├── comment-mozpr.txt.tmpl │ │ │ │ ├── comment-name-clearance.txt.tmpl │ │ │ │ ├── comment-nda.txt.tmpl │ │ │ │ ├── comment-recoverykey.txt.tmpl │ │ │ │ ├── comment-recruiting.txt.tmpl │ │ │ │ ├── comment-screen-share-whitelist.txt.tmpl │ │ │ │ ├── comment-shield-studies-data-review.txt.tmpl │ │ │ │ ├── comment-shield-studies-legal.txt.tmpl │ │ │ │ ├── comment-shield-studies-shipping-status.txt.tmpl │ │ │ │ ├── comment-shield-studies-validation-review.txt.tmpl │ │ │ │ ├── comment-shield-studies.txt.tmpl │ │ │ │ ├── comment-swag.txt.tmpl │ │ │ │ ├── comment-user-engagement.txt.tmpl │ │ │ │ ├── cost-centers.none.tmpl │ │ │ │ ├── create-blocklist.html.tmpl │ │ │ │ ├── create-client-bounty.html.tmpl │ │ │ │ ├── create-comm-newsletter.html.tmpl │ │ │ │ ├── create-costume.html.tmpl │ │ │ │ ├── create-creative.html.tmpl │ │ │ │ ├── create-crm.html.tmpl │ │ │ │ ├── create-data-compliance.html.tmpl │ │ │ │ ├── create-doc.html.tmpl │ │ │ │ ├── create-employee-incident.html.tmpl │ │ │ │ ├── create-finance.html.tmpl │ │ │ │ ├── create-fsa-budget.html.tmpl │ │ │ │ ├── create-intern.html.tmpl │ │ │ │ ├── create-ipp.html.tmpl │ │ │ │ ├── create-itrequest.html.tmpl │ │ │ │ ├── create-legal.html.tmpl │ │ │ │ ├── create-mdn.html.tmpl │ │ │ │ ├── create-mobile-compat.html.tmpl │ │ │ │ ├── create-mozlist.html.tmpl │ │ │ │ ├── create-mozpr.html.tmpl │ │ │ │ ├── create-name-clearance.html.tmpl │ │ │ │ ├── create-nda.html.tmpl │ │ │ │ ├── create-presentation.html.tmpl │ │ │ │ ├── create-recoverykey.html.tmpl │ │ │ │ ├── create-recruiting.html.tmpl │ │ │ │ ├── create-screen-share-whitelist.html.tmpl │ │ │ │ ├── create-shield-studies.html.tmpl │ │ │ │ ├── create-swag.html.tmpl │ │ │ │ ├── create-trademark.html.tmpl │ │ │ │ ├── create-user-engagement.html.tmpl │ │ │ │ ├── create-web-bounty.html.tmpl │ │ │ │ ├── created-intern.html.tmpl │ │ │ │ ├── created-recruiting.html.tmpl │ │ │ │ ├── custom-forms-message.html.tmpl │ │ │ │ ├── custom_forms.none.tmpl │ │ │ │ ├── groups.html.tmpl │ │ │ │ ├── user-message.html.tmpl │ │ │ │ └── vp-authority.html.tmpl │ │ │ └── legal_disclaimer.html.tmpl │ │ │ ├── email │ │ │ ├── bugmail.html.tmpl │ │ │ └── bugmail.txt.tmpl │ │ │ ├── global │ │ │ ├── choose-product.html.tmpl │ │ │ └── redirect.html.tmpl │ │ │ ├── hook │ │ │ ├── admin │ │ │ │ ├── params │ │ │ │ │ └── editparams-current_panel.html.tmpl │ │ │ │ ├── products │ │ │ │ │ ├── edit-common-rows.html.tmpl │ │ │ │ │ └── updated-changes.html.tmpl │ │ │ │ └── sanitycheck │ │ │ │ │ └── messages-statuses.html.tmpl │ │ │ ├── attachment │ │ │ │ ├── edit-view.html.tmpl │ │ │ │ ├── list-action.html.tmpl │ │ │ │ └── list-warnings.html.tmpl │ │ │ ├── bug │ │ │ │ ├── comments-a_comment-end.html.tmpl │ │ │ │ ├── comments-aftercomments.html.tmpl │ │ │ │ ├── comments-comment_banner.html.tmpl │ │ │ │ ├── create │ │ │ │ │ ├── create-after_custom_fields.html.tmpl │ │ │ │ │ ├── create-custom_field.html.tmpl │ │ │ │ │ ├── create-end.html.tmpl │ │ │ │ │ └── create-security.html.tmpl │ │ │ │ ├── edit-after_importance.html.tmpl │ │ │ │ ├── edit-after_op_sys.html.tmpl │ │ │ │ ├── edit-before_restrict_visibility.html.tmpl │ │ │ │ ├── edit-custom_field.html.tmpl │ │ │ │ ├── field-help-end.none.tmpl │ │ │ │ ├── process │ │ │ │ │ └── header-title.html.tmpl │ │ │ │ └── show-header-end.html.tmpl │ │ │ ├── bug_modal │ │ │ │ ├── attachments-row.html.tmpl │ │ │ │ ├── attachments-warnings.html.tmpl │ │ │ │ ├── create-before_modules.html.tmpl │ │ │ │ ├── create-security.html.tmpl │ │ │ │ ├── edit-after_modules.html.tmpl │ │ │ │ ├── edit-custom_field-cf_crash_signature.html.tmpl │ │ │ │ ├── edit-top_actions.html.tmpl │ │ │ │ └── header-end.html.tmpl │ │ │ ├── flag │ │ │ │ └── type_comment-form.html.tmpl │ │ │ ├── global │ │ │ │ ├── code-error-errors.html.tmpl │ │ │ │ ├── header-action-links.html.tmpl │ │ │ │ ├── header-additional_header.html.tmpl │ │ │ │ ├── header-external-links.html.tmpl │ │ │ │ ├── header-start.html.tmpl │ │ │ │ ├── messages-messages.html.tmpl │ │ │ │ ├── setting-descs-settings.none.tmpl │ │ │ │ ├── user-error-auth_failure_object.html.tmpl │ │ │ │ ├── user-error-error_message.html.tmpl │ │ │ │ ├── user-error-errors.html.tmpl │ │ │ │ ├── user-error.html.tmpl │ │ │ │ │ └── auth_failure │ │ │ │ │ │ └── permissions.html.tmpl │ │ │ │ └── variables-end.none.tmpl │ │ │ ├── list │ │ │ │ ├── list-links.html.tmpl │ │ │ │ └── table-before_table.html.tmpl │ │ │ ├── pages │ │ │ │ └── fields-resolution.html.tmpl │ │ │ ├── reports │ │ │ │ ├── components-start.html.tmpl │ │ │ │ └── menu-end.html.tmpl │ │ │ └── request │ │ │ │ └── email-start.txt.tmpl │ │ │ ├── list │ │ │ └── list.microsummary.tmpl │ │ │ ├── pages │ │ │ ├── attachment_bounty_form.html.tmpl │ │ │ ├── attention.html.tmpl │ │ │ ├── bug-writing.html.tmpl │ │ │ ├── custom_forms.html.tmpl │ │ │ ├── email_queue.html.tmpl │ │ │ ├── etiquette.html.tmpl │ │ │ ├── get_permissions.html.tmpl │ │ │ ├── group_admins.html.tmpl │ │ │ ├── group_members.html.tmpl │ │ │ ├── group_members.json.tmpl │ │ │ ├── group_membership.html.tmpl │ │ │ ├── group_membership.txt.tmpl │ │ │ ├── internship_dashboard.html.tmpl │ │ │ ├── product_security_report.html.tmpl │ │ │ ├── query_database.csv.tmpl │ │ │ ├── query_database.html.tmpl │ │ │ ├── recruiting_dashboard.html.tmpl │ │ │ ├── release_tracking_report.html.tmpl │ │ │ ├── socorro-lens.html.tmpl │ │ │ ├── triage_owners.html.tmpl │ │ │ ├── triage_reports.html.tmpl │ │ │ ├── triage_request.html.tmpl │ │ │ ├── upgrade-3.6.html.tmpl │ │ │ └── user_activity.html.tmpl │ │ │ └── search │ │ │ └── search-plugin.xml.tmpl │ └── web │ │ ├── core.png │ │ ├── images │ │ ├── advanced.png │ │ ├── background.png │ │ ├── bugzilla.png │ │ ├── creative.png │ │ ├── favicon.ico │ │ ├── favicon.svg │ │ ├── groups │ │ │ ├── bugzilla-approvers.png │ │ │ └── calendar-drivers.png │ │ ├── guided.png │ │ ├── moz-fav-one-color-white-rgb.svg │ │ ├── notice.png │ │ ├── presshat.png │ │ ├── sign_warning.png │ │ ├── stop-sign.gif │ │ ├── throbber.gif │ │ └── user-engagement.png │ │ ├── js │ │ ├── attach-desc.js │ │ ├── attachment_bounty_form.js │ │ ├── attention.js │ │ ├── dev_engagement.js │ │ ├── edit_bug.js │ │ ├── edituser_menu.js │ │ ├── firefox-crash-table.js │ │ ├── form_validate.js │ │ ├── home.js │ │ ├── release_tracking_report.js │ │ ├── shield_studies.js │ │ ├── sorttable.js │ │ ├── swag.js │ │ ├── triage_owners.js │ │ └── triage_reports.js │ │ ├── producticons │ │ ├── component.png │ │ ├── data-science.png │ │ ├── devedition.png │ │ ├── dino.png │ │ ├── firefox.png │ │ ├── firefox_android.png │ │ ├── firefox_brand.png │ │ ├── firefox_ios.png │ │ ├── focus.png │ │ ├── geckoview.png │ │ ├── input.png │ │ ├── localization.png │ │ ├── other.png │ │ ├── seamonkey.png │ │ ├── thunderbird.png │ │ ├── user-research.png │ │ └── webextensions.png │ │ ├── socorro-lens │ │ ├── custom.css │ │ ├── d3.min.js │ │ ├── main.js │ │ ├── metricsgraphics.css │ │ └── metricsgraphics.min.js │ │ └── styles │ │ ├── attention.css │ │ ├── bug_modal.css │ │ ├── choose_product.css │ │ ├── create_account.css │ │ ├── edit_bug.css │ │ ├── reports.css │ │ └── triage_reports.css ├── Bitly │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ └── WebService.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ └── hook │ │ │ ├── admin │ │ │ └── params │ │ │ │ └── editparams-current_panel.html.tmpl │ │ │ ├── global │ │ │ ├── header-start.html.tmpl │ │ │ └── user-error-errors.html.tmpl │ │ │ └── list │ │ │ └── list-links.html.tmpl │ └── web │ │ ├── js │ │ └── bitly.js │ │ └── styles │ │ └── bitly.css ├── BugModal │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ ├── ActivityStream.pm │ │ ├── MonkeyPatches.pm │ │ ├── Util.pm │ │ └── WebService.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── bug │ │ │ ├── create │ │ │ │ └── create-modal.html.tmpl │ │ │ └── show-modal.html.tmpl │ │ │ ├── bug_modal │ │ │ ├── activity_stream.html.tmpl │ │ │ ├── attachments.html.tmpl │ │ │ ├── attachments_overlay.html.tmpl │ │ │ ├── cc_list.html.tmpl │ │ │ ├── comment_reactions.html.tmpl │ │ │ ├── comment_tags.html.tmpl │ │ │ ├── create.html.tmpl │ │ │ ├── edit.html.tmpl │ │ │ ├── field.html.tmpl │ │ │ ├── flags.html.tmpl │ │ │ ├── groups.html.tmpl │ │ │ ├── header.html.tmpl │ │ │ ├── module.html.tmpl │ │ │ ├── navigate.html.tmpl │ │ │ ├── new_comment.html.tmpl │ │ │ ├── new_product_groups.html.tmpl │ │ │ ├── rel_time.html.tmpl │ │ │ ├── tracking_flags.html.tmpl │ │ │ └── user.html.tmpl │ │ │ └── hook │ │ │ ├── admin │ │ │ ├── admin-end_links_left.html.tmpl │ │ │ └── params │ │ │ │ └── editparams-current_panel.html.tmpl │ │ │ └── global │ │ │ └── setting-descs-settings.none.tmpl │ └── web │ │ ├── attachments_overlay.js │ │ ├── autosize.min.js │ │ ├── bug_modal.css │ │ ├── bug_modal.js │ │ ├── calendar.png │ │ ├── comments.js │ │ ├── create.js │ │ ├── error.png │ │ ├── image.png │ │ └── throbber.gif ├── BugmailFilter │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ ├── Constants.pm │ │ ├── FakeField.pm │ │ └── Filter.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── account │ │ │ └── prefs │ │ │ │ └── bugmail_filter.html.tmpl │ │ │ └── hook │ │ │ ├── account │ │ │ └── prefs │ │ │ │ └── prefs-tabs.html.tmpl │ │ │ └── global │ │ │ └── user-error-errors.html.tmpl │ └── web │ │ ├── js │ │ └── bugmail-filter.js │ │ └── style │ │ └── bugmail-filter.css ├── BzAPI │ ├── Config.pm │ ├── Extension.pm │ ├── bin │ │ └── rest.cgi │ ├── lib │ │ ├── Constants.pm │ │ ├── Resources │ │ │ ├── Bug.pm │ │ │ ├── Bugzilla.pm │ │ │ └── User.pm │ │ └── Util.pm │ └── template │ │ └── en │ │ └── default │ │ └── hook │ │ └── global │ │ └── user-error-errors.html.tmpl ├── ComponentWatching │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ └── WebService.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── account │ │ │ └── prefs │ │ │ │ └── component_watch.html.tmpl │ │ │ └── hook │ │ │ ├── account │ │ │ └── prefs │ │ │ │ ├── email-relationships.html.tmpl │ │ │ │ └── prefs-tabs.html.tmpl │ │ │ ├── admin │ │ │ ├── components │ │ │ │ └── edit-common-rows.html.tmpl │ │ │ └── sanitycheck │ │ │ │ └── messages-statuses.html.tmpl │ │ │ ├── global │ │ │ ├── code-error-errors.html.tmpl │ │ │ ├── messages-component_updated_fields.html.tmpl │ │ │ ├── reason-descs-end.none.tmpl │ │ │ └── user-error-errors.html.tmpl │ │ │ └── reports │ │ │ ├── components-component_footer.html.tmpl │ │ │ ├── components-product_header.html.tmpl │ │ │ └── components-start.html.tmpl │ └── web │ │ └── js │ │ └── overlay.js ├── ContributorEngagement │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ └── Constants.pm │ └── template │ │ └── en │ │ └── default │ │ └── contributor │ │ └── email.txt.tmpl ├── EditComments │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ └── WebService.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── hook │ │ │ ├── admin │ │ │ │ └── params │ │ │ │ │ └── editparams-current_panel.html.tmpl │ │ │ ├── bug_modal │ │ │ │ ├── activity_stream-comment_action.html.tmpl │ │ │ │ ├── activity_stream-comment_meta.html.tmpl │ │ │ │ └── header-end.html.tmpl │ │ │ └── global │ │ │ │ ├── header-start.html.tmpl │ │ │ │ ├── user-error-auth_failure_object.html.tmpl │ │ │ │ └── user-error-errors.html.tmpl │ │ │ └── pages │ │ │ └── comment-revisions.html.tmpl │ └── web │ │ ├── js │ │ ├── inline-comment-editor.js │ │ └── revisions.js │ │ └── styles │ │ ├── inline-comment-editor.css │ │ └── revisions.css ├── EditTable │ ├── Config.pm │ ├── Extension.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── hook │ │ │ └── global │ │ │ │ ├── user-error-auth_failure_object.html.tmpl │ │ │ │ └── user-error-errors.html.tmpl │ │ │ └── pages │ │ │ └── edit_table.html.tmpl │ └── web │ │ ├── js │ │ └── edit_table.js │ │ └── styles │ │ └── edit_table.css ├── Example │ ├── Config.pm │ ├── Extension.pm │ ├── disabled │ ├── lib │ │ ├── Auth │ │ │ ├── Login.pm │ │ │ └── Verify.pm │ │ ├── Config.pm │ │ ├── Util.pm │ │ └── WebService.pm │ └── template │ │ └── en │ │ └── default │ │ ├── account │ │ └── prefs │ │ │ └── my_tab.html.tmpl │ │ ├── admin │ │ └── params │ │ │ └── example.html.tmpl │ │ ├── hook │ │ ├── account │ │ │ └── prefs │ │ │ │ └── prefs-tabs.html.tmpl │ │ ├── admin │ │ │ ├── params │ │ │ │ └── editparams-current_panel.html.tmpl │ │ │ └── sanitycheck │ │ │ │ └── messages-statuses.html.tmpl │ │ └── global │ │ │ ├── setting-descs-settings.none.tmpl │ │ │ └── user-error-errors.html.tmpl │ │ ├── pages │ │ └── example.html.tmpl │ │ └── setup │ │ └── strings.txt.pl ├── FlagDefaultRequestee │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ └── Constants.pm │ └── template │ │ └── en │ │ └── default │ │ ├── flag │ │ └── default_requestees.html.tmpl │ │ └── hook │ │ ├── admin │ │ └── flag-type │ │ │ └── edit-rows.html.tmpl │ │ ├── attachment │ │ ├── create-end.html.tmpl │ │ └── edit-end.html.tmpl │ │ ├── bug │ │ ├── create │ │ │ └── create-form.html.tmpl │ │ └── edit-after_custom_fields.html.tmpl │ │ ├── bug_modal │ │ └── create-after_modules.html.tmpl │ │ └── global │ │ ├── messages-flag_type_updated_fields.html.tmpl │ │ └── user-error-errors.html.tmpl ├── FlagTypeComment │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ └── Constants.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── flag │ │ │ └── type_comment.html.tmpl │ │ │ └── hook │ │ │ ├── admin │ │ │ └── flag-type │ │ │ │ └── edit-rows.html.tmpl │ │ │ ├── attachment │ │ │ ├── create-end.html.tmpl │ │ │ └── edit-end.html.tmpl │ │ │ ├── bug │ │ │ └── edit-after_custom_fields.html.tmpl │ │ │ └── bug_modal │ │ │ └── attachments_overlay-end.html.tmpl │ └── web │ │ ├── js │ │ └── ftc.js │ │ └── styles │ │ └── ftc.css ├── GitHubAuth │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ ├── Client.pm │ │ ├── Client │ │ │ └── Error.pm │ │ ├── Config.pm │ │ ├── Login.pm │ │ └── Verify.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── account │ │ │ └── auth │ │ │ │ └── github-verify-account.html.tmpl │ │ │ ├── admin │ │ │ └── params │ │ │ │ └── githubauth.html.tmpl │ │ │ └── hook │ │ │ ├── account │ │ │ └── auth │ │ │ │ ├── login-additional_methods.html.tmpl │ │ │ │ └── login-small-additional_methods.html.tmpl │ │ │ └── global │ │ │ ├── code-error-errors.html.tmpl │ │ │ └── user-error-errors.html.tmpl │ └── web │ │ └── images │ │ ├── github_sign_in.png │ │ └── sign_in.png ├── Gravatar │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ └── Data.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ └── hook │ │ │ ├── bug │ │ │ ├── comments-user-image.html.tmpl │ │ │ └── show-header-end.html.tmpl │ │ │ └── global │ │ │ └── setting-descs-settings.none.tmpl │ └── web │ │ ├── default.jpg │ │ └── multiple.svg ├── GuidedBugEntry │ ├── Config.pm │ ├── Extension.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── bug │ │ │ └── create │ │ │ │ └── comment-guided.txt.tmpl │ │ │ ├── guided │ │ │ ├── guided.html.tmpl │ │ │ └── products.html.tmpl │ │ │ └── pages │ │ │ └── guided_products.js.tmpl │ └── web │ │ ├── images │ │ ├── advanced.png │ │ ├── feedback.png │ │ ├── help.png │ │ ├── input.png │ │ ├── message.png │ │ ├── sumo.png │ │ ├── support.png │ │ ├── throbber.gif │ │ ├── warning.png │ │ └── webbug.png │ │ ├── js │ │ ├── guided.js │ │ └── products.js │ │ └── style │ │ └── guided.css ├── InlineHistory │ ├── Config.pm │ ├── Extension.pm │ ├── README │ ├── template │ │ └── en │ │ │ └── default │ │ │ └── hook │ │ │ ├── bug │ │ │ ├── comments-aftercomments.html.tmpl │ │ │ ├── comments-comment_banner.html.tmpl │ │ │ └── show-header-end.html.tmpl │ │ │ └── global │ │ │ └── setting-descs-settings.none.tmpl │ └── web │ │ ├── inline-history.js │ │ └── style.css ├── JiraWebhookSync │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ ├── Config.pm │ │ └── JiraBugMap.pm │ ├── t │ │ ├── bmo │ │ │ └── jira_webhook_sync.t │ │ └── sanity.t │ └── template │ │ └── en │ │ └── default │ │ ├── admin │ │ └── params │ │ │ └── jirawebhooksync.html.tmpl │ │ └── hook │ │ └── global │ │ └── user-error.html.tmpl ├── LastResolved │ ├── Config.pm │ ├── Extension.pm │ ├── bin │ │ └── bug-1509308.pl │ └── template │ │ └── en │ │ └── default │ │ └── hook │ │ ├── bug │ │ └── edit-custom_field.html.tmpl │ │ ├── global │ │ └── field-descs-end.none.tmpl │ │ └── list │ │ └── edit-multiple-custom_field.html.tmpl ├── MozChangeField │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ ├── Post │ │ │ ├── ClearTrackingPriorityS1.pm │ │ │ ├── CommentOnSeverity.pm │ │ │ ├── RegressedByTypeKeyword.pm │ │ │ ├── SetTrackingSeverityS1.pm │ │ │ ├── SeverityS1PriorityP1.pm │ │ │ └── TypePriSevEditbugs.pm │ │ └── Pre │ │ │ ├── CanConfirm.pm │ │ │ ├── CommentClosedBugs.pm │ │ │ ├── CustomField.pm │ │ │ ├── Graveyard.pm │ │ │ ├── Reopen.pm │ │ │ └── TypePriSevEditbugs.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ └── hook │ │ │ ├── bug_modal │ │ │ └── header-end.html.tmpl │ │ │ └── global │ │ │ └── user-error-errors.html.tmpl │ └── web │ │ └── js │ │ ├── clear-tracking-priority-s1.js │ │ ├── comment-on-severity.js │ │ ├── set-tracking-severity-s1.js │ │ └── severity-s1-priority-p1.js ├── MozProjectReview │ ├── Config.pm │ ├── Extension.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── bug │ │ │ └── create │ │ │ │ ├── comment-moz-project-review-finance.txt.tmpl │ │ │ │ ├── comment-moz-project-review-sec-review.txt.tmpl │ │ │ │ ├── comment-moz-project-review.txt.tmpl │ │ │ │ ├── create-moz-project-review.html.tmpl │ │ │ │ └── initial-questions-comment.txt.tmpl │ │ │ └── hook │ │ │ └── global │ │ │ └── messages-messages.html.tmpl │ └── web │ │ ├── js │ │ └── moz_project_review.js │ │ └── style │ │ └── moz_project_review.css ├── MyDashboard │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ ├── BugInterest.pm │ │ ├── Queries.pm │ │ ├── Util.pm │ │ └── WebService.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── hook │ │ │ ├── account │ │ │ │ └── prefs │ │ │ │ │ ├── saved-searches-saved-header.html.tmpl │ │ │ │ │ └── saved-searches-saved-row.html.tmpl │ │ │ └── global │ │ │ │ └── header-action-links.html.tmpl │ │ │ └── pages │ │ │ └── mydashboard.html.tmpl │ └── web │ │ ├── js │ │ ├── flags.js │ │ └── query.js │ │ └── styles │ │ └── mydashboard.css ├── Needinfo │ ├── Config.pm │ ├── Extension.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── bug │ │ │ └── needinfo.html.tmpl │ │ │ └── hook │ │ │ ├── account │ │ │ └── prefs │ │ │ │ └── account-field.html.tmpl │ │ │ ├── attachment │ │ │ ├── create-form_before_submit.html.tmpl │ │ │ └── edit-after_comment_textarea.html.tmpl │ │ │ ├── bug │ │ │ ├── create │ │ │ │ └── create-after_custom_fields.html.tmpl │ │ │ └── edit-after_comment_commit_button.html.tmpl │ │ │ ├── global │ │ │ ├── header-start.html.tmpl │ │ │ ├── setting-descs-settings.none.tmpl │ │ │ └── user-error-errors.html.tmpl │ │ │ └── request │ │ │ └── email-after_summary.txt.tmpl │ └── web │ │ └── styles │ │ └── needinfo.css ├── OpenGraph │ ├── Config.pm │ ├── Extension.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ └── hook │ │ │ ├── global │ │ │ └── header-start.html.tmpl │ │ │ └── robots-end.txt.tmpl │ └── web │ │ └── moz-social-bw-rgb-1200x1200.png ├── OrangeFactor │ ├── Config.pm │ ├── Extension.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ └── hook │ │ │ ├── bug │ │ │ ├── edit-after_custom_fields.html.tmpl │ │ │ └── show-header-end.html.tmpl │ │ │ ├── bug_modal │ │ │ ├── edit-details_rhs.html.tmpl │ │ │ └── header-end.html.tmpl │ │ │ └── global │ │ │ └── setting-descs-settings.none.tmpl │ └── web │ │ ├── js │ │ ├── AUTHORS.processing.js │ │ ├── LICENSE.processing.js │ │ ├── LICENSE.sparklines.js │ │ ├── orange_factor.js │ │ └── sparklines.min.js │ │ └── style │ │ └── orangefactor.css ├── PhabBugz │ ├── Config.pm │ ├── Extension.pm │ ├── bin │ │ └── phabbugz_feed.pl │ ├── lib │ │ ├── API │ │ │ └── V1 │ │ │ │ └── PhabBugz.pm │ │ ├── Comment.pm │ │ ├── Config.pm │ │ ├── Constants.pm │ │ ├── Daemon.pm │ │ ├── Feed.pm │ │ ├── Policy.pm │ │ ├── Project.pm │ │ ├── Repository.pm │ │ ├── Revision.pm │ │ ├── Types.pm │ │ ├── User.pm │ │ ├── Util.pm │ │ └── WebService.pm │ ├── t │ │ ├── basic.t │ │ └── feed-daemon-guts.t │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── admin │ │ │ ├── email │ │ │ │ └── squatter-alert.txt.tmpl │ │ │ └── params │ │ │ │ └── phabbugz.html.tmpl │ │ │ ├── email │ │ │ └── phab_enabled_status.txt.tmpl │ │ │ ├── hook │ │ │ ├── attachment │ │ │ │ └── edit-view.html.tmpl │ │ │ ├── bug │ │ │ │ ├── edit-after_bug_data.html.tmpl │ │ │ │ └── show-header-end.html.tmpl │ │ │ ├── bug_modal │ │ │ │ ├── edit-module.html.tmpl │ │ │ │ └── header-end.html.tmpl │ │ │ └── global │ │ │ │ ├── code-error-errors.html.tmpl │ │ │ │ └── user-error-errors.html.tmpl │ │ │ ├── phabricator │ │ │ ├── header.html.tmpl │ │ │ └── table.html.tmpl │ │ │ └── revision │ │ │ └── comments.html.tmpl │ └── web │ │ ├── fonts │ │ ├── FontAwesome-DifferentialStatus.woff │ │ └── FontAwesome-DifferentialStatus.woff2 │ │ ├── js │ │ ├── phab_user.js │ │ └── phabricator.js │ │ └── style │ │ └── phabricator.css ├── ProdCompSearch │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ └── WebService.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── pages │ │ │ └── prodcompsearch.html.tmpl │ │ │ └── prodcompsearch │ │ │ └── form.html.tmpl │ └── web │ │ ├── images │ │ └── throbber.gif │ │ ├── js │ │ └── prod_comp_search.js │ │ └── styles │ │ └── prod_comp_search.css ├── Profanivore │ ├── Config.pm │ ├── Extension.pm │ └── README ├── Push │ ├── Config.pm │ ├── Extension.pm │ ├── bin │ │ ├── bugzilla-pushd.pl │ │ └── nagios_push_checker.pl │ ├── lib │ │ ├── Admin.pm │ │ ├── BacklogMessage.pm │ │ ├── BacklogQueue.pm │ │ ├── Backoff.pm │ │ ├── Config.pm │ │ ├── Connector.disabled │ │ │ ├── AMQP.pm │ │ │ └── ServiceNow.pm │ │ ├── Connector │ │ │ ├── Base.pm │ │ │ ├── File.pm │ │ │ ├── Phabricator.pm │ │ │ ├── Spark.pm │ │ │ └── Webhook.pm │ │ ├── Connectors.pm │ │ ├── Constants.pm │ │ ├── Daemon.pm │ │ ├── Log.pm │ │ ├── LogEntry.pm │ │ ├── Logger.pm │ │ ├── Message.pm │ │ ├── Option.pm │ │ ├── Push.pm │ │ ├── Queue.pm │ │ ├── Serialize.pm │ │ └── Util.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── hook │ │ │ ├── admin │ │ │ │ └── admin-end_links_right.html.tmpl │ │ │ └── global │ │ │ │ ├── code-error-errors.html.tmpl │ │ │ │ ├── messages-messages.html.tmpl │ │ │ │ └── user-error-errors.html.tmpl │ │ │ ├── pages │ │ │ ├── push_config.html.tmpl │ │ │ ├── push_log.html.tmpl │ │ │ ├── push_queues.html.tmpl │ │ │ ├── push_queues_view.html.tmpl │ │ │ └── webhooks_config.html.tmpl │ │ │ └── setup │ │ │ └── strings.txt.pl │ └── web │ │ ├── admin.css │ │ └── admin.js ├── RequestNagger │ ├── Config.pm │ ├── Extension.pm │ ├── bin │ │ └── send-request-nags.pl │ ├── lib │ │ ├── Bug.pm │ │ ├── Constants.pm │ │ └── Settings.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── account │ │ │ └── prefs │ │ │ │ └── request_nagging.html.tmpl │ │ │ ├── email │ │ │ ├── request_nagging-user-header.txt.tmpl │ │ │ ├── request_nagging-user.html.tmpl │ │ │ ├── request_nagging-user.txt.tmpl │ │ │ ├── request_nagging-watching-header.txt.tmpl │ │ │ ├── request_nagging-watching.html.tmpl │ │ │ └── request_nagging-watching.txt.tmpl │ │ │ ├── hook │ │ │ ├── account │ │ │ │ └── prefs │ │ │ │ │ └── prefs-tabs.html.tmpl │ │ │ ├── admin │ │ │ │ └── products │ │ │ │ │ ├── edit-common-rows.html.tmpl │ │ │ │ │ └── updated-changes.html.tmpl │ │ │ └── global │ │ │ │ ├── setting-descs-settings.none.tmpl │ │ │ │ └── user-error-errors.html.tmpl │ │ │ └── pages │ │ │ └── request_defer.html.tmpl │ └── web │ │ ├── js │ │ └── requestnagger.js │ │ └── style │ │ └── requestnagger.css ├── RestrictComments │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ └── Config.pm │ └── template │ │ └── en │ │ └── default │ │ ├── admin │ │ └── params │ │ │ └── restrictcomments.html.tmpl │ │ ├── hook │ │ └── bug │ │ │ └── edit-after_comment_commit_button.html.tmpl │ │ └── pages │ │ └── restrict_comments_guidelines.html.tmpl ├── Review │ ├── Config.pm │ ├── Extension.pm │ ├── bin │ │ ├── migrate_mentor_from_whiteboard.pl │ │ └── review_requests_rebuild.pl │ ├── lib │ │ ├── FlagStateActivity.pm │ │ ├── Util.pm │ │ └── WebService.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── hook │ │ │ ├── account │ │ │ │ └── prefs │ │ │ │ │ └── account-field.html.tmpl │ │ │ ├── admin │ │ │ │ ├── components │ │ │ │ │ └── edit-common-rows.html.tmpl │ │ │ │ ├── params │ │ │ │ │ └── editparams-current_panel.html.tmpl │ │ │ │ └── products │ │ │ │ │ ├── edit-common-rows.html.tmpl │ │ │ │ │ └── updated-changes.html.tmpl │ │ │ ├── attachment │ │ │ │ ├── create-end.html.tmpl │ │ │ │ └── edit-end.html.tmpl │ │ │ ├── bug │ │ │ │ ├── create │ │ │ │ │ ├── create-after_custom_fields.html.tmpl │ │ │ │ │ └── create-end.html.tmpl │ │ │ │ ├── edit-after_people.html.tmpl │ │ │ │ └── show-bug_end.xml.tmpl │ │ │ ├── bug_modal │ │ │ │ └── create-after_modules.html.tmpl │ │ │ ├── flag │ │ │ │ └── list-requestee.html.tmpl │ │ │ ├── global │ │ │ │ ├── header-badge.html.tmpl │ │ │ │ ├── header-start.html.tmpl │ │ │ │ ├── messages-component_updated_fields.html.tmpl │ │ │ │ ├── setting-descs-settings.none.tmpl │ │ │ │ ├── user-error-auth_failure_object.html.tmpl │ │ │ │ └── user-error-errors.html.tmpl │ │ │ └── reports │ │ │ │ └── menu-end.html.tmpl │ │ │ └── pages │ │ │ ├── review_history.html.tmpl │ │ │ ├── review_requests_rebuild.html.tmpl │ │ │ └── review_suggestions.html.tmpl │ └── web │ │ ├── js │ │ ├── badge.js │ │ ├── moment.min.js │ │ ├── review.js │ │ └── review_history.js │ │ └── styles │ │ ├── badge.css │ │ ├── reports.css │ │ └── review.css ├── SearchAPI │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ ├── API │ │ │ └── V1 │ │ │ │ └── LastSeen.pm │ │ └── Util.pm │ └── t │ │ └── search_api.t ├── SecureMail │ ├── Config.pm │ ├── Extension.pm │ ├── README │ ├── bin │ │ └── tct │ ├── lib │ │ └── TCT.pm │ └── template │ │ └── en │ │ └── default │ │ ├── account │ │ ├── email │ │ │ ├── encryption-required.txt.tmpl │ │ │ └── securemail-test.txt.tmpl │ │ └── prefs │ │ │ └── securemail.html.tmpl │ │ ├── hook │ │ ├── account │ │ │ └── prefs │ │ │ │ └── prefs-tabs.html.tmpl │ │ ├── admin │ │ │ ├── groups │ │ │ │ ├── create-field.html.tmpl │ │ │ │ └── edit-field.html.tmpl │ │ │ └── users │ │ │ │ └── userdata-end.html.tmpl │ │ └── global │ │ │ └── user-error-errors.html.tmpl │ │ └── pages │ │ └── securemail │ │ └── help.html.tmpl ├── SiteMapIndex │ ├── Config.pm │ ├── Extension.pm │ ├── bin │ │ └── rebuild_index.pl │ ├── lib │ │ ├── Config.pm │ │ ├── Constants.pm │ │ └── Util.pm │ └── template │ │ └── en │ │ └── default │ │ ├── admin │ │ └── params │ │ │ └── sitemapindex.html.tmpl │ │ └── hook │ │ ├── global │ │ ├── header-additional_header.html.tmpl │ │ └── messages-messages.html.tmpl │ │ └── robots-end.txt.tmpl ├── Splinter │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ ├── Config.pm │ │ └── Util.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── admin │ │ │ └── params │ │ │ │ └── splinter.html.tmpl │ │ │ ├── hook │ │ │ ├── attachment │ │ │ │ ├── edit-action.html.tmpl │ │ │ │ └── list-action.html.tmpl │ │ │ ├── global │ │ │ │ └── user-error-errors.html.tmpl │ │ │ └── request │ │ │ │ ├── email-after_summary.txt.tmpl │ │ │ │ └── queue-after_column.html.tmpl │ │ │ └── pages │ │ │ ├── splinter.html.tmpl │ │ │ └── splinter │ │ │ └── help.html.tmpl │ └── web │ │ ├── splinter.css │ │ └── splinter.js ├── TagNewUsers │ ├── Config.pm │ ├── Extension.pm │ └── template │ │ └── en │ │ └── default │ │ └── hook │ │ ├── bug │ │ ├── changes-user.html.tmpl │ │ └── comments-user.html.tmpl │ │ └── global │ │ └── header-start.html.tmpl ├── TrackingFlags │ ├── Config.pm │ ├── Extension.pm │ ├── bin │ │ ├── bug_825946.pl │ │ ├── bulk_flag_clear.pl │ │ └── migrate_tracking_flags.pl │ ├── lib │ │ ├── Admin.pm │ │ ├── Constants.pm │ │ ├── Flag.pm │ │ └── Flag │ │ │ ├── Bug.pm │ │ │ ├── Value.pm │ │ │ └── Visibility.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── bug │ │ │ ├── script.html.tmpl │ │ │ └── tracking_flags.html.tmpl │ │ │ ├── hook │ │ │ ├── admin │ │ │ │ ├── admin-end_links_right.html.tmpl │ │ │ │ └── sanitycheck │ │ │ │ │ └── messages-statuses.html.tmpl │ │ │ ├── bug │ │ │ │ ├── create │ │ │ │ │ ├── create-bug_flags.html.tmpl │ │ │ │ │ ├── create-form.html.tmpl │ │ │ │ │ ├── create-winqual-bug_flags_end.html.tmpl │ │ │ │ │ ├── create-winqual-project_flags_end.html.tmpl │ │ │ │ │ └── create-winqual-tracking_flags_end.html.tmpl │ │ │ │ ├── edit-after_custom_fields.html.tmpl │ │ │ │ ├── field-editable.html.tmpl │ │ │ │ ├── field-non_editable.html.tmpl │ │ │ │ └── show-header-end.html.tmpl │ │ │ ├── bug_modal │ │ │ │ └── create-after_modules.html.tmpl │ │ │ └── global │ │ │ │ ├── code-error-errors.html.tmpl │ │ │ │ ├── header-start.html.tmpl │ │ │ │ ├── messages-messages.html.tmpl │ │ │ │ └── user-error-errors.html.tmpl │ │ │ └── pages │ │ │ ├── tracking_flags_admin_edit.html.tmpl │ │ │ └── tracking_flags_admin_list.html.tmpl │ └── web │ │ ├── js │ │ ├── admin.js │ │ └── flags.js │ │ └── styles │ │ ├── admin.css │ │ └── edit_bug.css ├── TypeSniffer │ ├── Config.pm │ └── Extension.pm ├── UserProfile │ ├── Config.pm │ ├── Extension.pm │ ├── bin │ │ ├── migrate.pl │ │ └── update.pl │ ├── lib │ │ └── Util.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── hook │ │ │ └── account │ │ │ │ └── prefs │ │ │ │ └── account-start.html.tmpl │ │ │ └── pages │ │ │ └── user_profile.html.tmpl │ └── web │ │ └── styles │ │ └── user_profile.css ├── UserStory │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ └── Constants.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ └── hook │ │ │ └── bug │ │ │ ├── comments-comment_banner.html.tmpl │ │ │ ├── create │ │ │ ├── create-after_custom_fields.html.tmpl │ │ │ └── create-custom_field.html.tmpl │ │ │ ├── edit-custom_field.html.tmpl │ │ │ └── show-header-end.html.tmpl │ └── web │ │ └── style │ │ └── user_story.css ├── Voting │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ └── Vote.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── hook │ │ │ ├── account │ │ │ │ └── prefs │ │ │ │ │ └── email-relationships.html.tmpl │ │ │ ├── admin │ │ │ │ ├── products │ │ │ │ │ ├── edit-common-rows.html.tmpl │ │ │ │ │ └── updated-changes.html.tmpl │ │ │ │ ├── sanitycheck │ │ │ │ │ └── messages-statuses.html.tmpl │ │ │ │ └── users │ │ │ │ │ └── confirm-delete-warn_safe.html.tmpl │ │ │ ├── bug │ │ │ │ ├── edit-after_importance.html.tmpl │ │ │ │ ├── format_comment-type.txt.tmpl │ │ │ │ ├── process │ │ │ │ │ ├── header-title.html.tmpl │ │ │ │ │ └── results-title.html.tmpl │ │ │ │ └── show-header-end.html.tmpl │ │ │ ├── global │ │ │ │ ├── code-error-errors.html.tmpl │ │ │ │ ├── field-descs-end.none.tmpl │ │ │ │ ├── reason-descs-end.none.tmpl │ │ │ │ └── user-error-errors.html.tmpl │ │ │ └── search │ │ │ │ ├── form-after_freetext_fields.html.tmpl │ │ │ │ └── search-report-select-rep_fields.html.tmpl │ │ │ ├── pages │ │ │ ├── voting.html.tmpl │ │ │ └── voting │ │ │ │ ├── bug.html.tmpl │ │ │ │ └── user.html.tmpl │ │ │ └── voting │ │ │ ├── delete-all.html.tmpl │ │ │ └── votes-removed.txt.tmpl │ └── web │ │ └── style.css ├── Webhooks │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ ├── API │ │ │ └── V1 │ │ │ │ └── Webhooks.pm │ │ ├── Config.pm │ │ └── Webhook.pm │ └── template │ │ └── en │ │ └── default │ │ ├── account │ │ └── prefs │ │ │ └── webhooks.html.tmpl │ │ ├── admin │ │ └── params │ │ │ └── webhooks.html.tmpl │ │ ├── email │ │ └── webhook_disabled.txt.tmpl │ │ ├── hook │ │ ├── account │ │ │ └── prefs │ │ │ │ └── prefs-tabs.html.tmpl │ │ └── global │ │ │ └── user-error-errors.html.tmpl │ │ └── pages │ │ ├── webhooks.html.tmpl │ │ └── webhooks_queues.html.tmpl └── create.pl ├── external_test_api.pl ├── gen-cpanfile.pl ├── github.cgi ├── heartbeat.cgi ├── images ├── buggie.png ├── dropdown.png ├── duo.png ├── favicon.ico ├── grain.png ├── index │ ├── firefox-beta.svg │ └── firefox-nightly.svg ├── mfa.png ├── noise.png ├── padlock.png └── throbber.gif ├── importxml.pl ├── index.cgi ├── jobqueue-worker.pl ├── jobqueue.pl ├── js ├── TUI.js ├── account.js ├── advanced-search.js ├── attachment.js ├── bug.js ├── buglist.js ├── bugzilla-readable-status-min.js ├── change-columns.js ├── comment-tagging.js ├── comments.js ├── consent-settings.js ├── consent.js ├── cookie-helper.js ├── create_bug.js ├── data-table.js ├── dependency-tree.js ├── duo-min.js ├── field.js ├── flag.js ├── global.js ├── instant-search.js ├── jquery │ ├── jquery-min.js │ ├── plugins │ │ ├── bPopup │ │ │ └── bPopup-min.js │ │ ├── contextMenu │ │ │ ├── contextMenu-min.js │ │ │ └── contextMenu.css │ │ ├── datetimepicker │ │ │ ├── datetimepicker-min.js │ │ │ └── datetimepicker.css │ │ └── devbridgeAutocomplete │ │ │ ├── devbridgeAutocomplete-min.js │ │ │ └── license.txt │ └── ui │ │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_444444_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_555555_256x240.png │ │ ├── ui-icons_777620_256x240.png │ │ ├── ui-icons_777777_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ ├── ui-icons_cc0000_256x240.png │ │ ├── ui-icons_cd0a0a_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery-ui-min.css │ │ ├── jquery-ui-min.js │ │ ├── jquery-ui-structure-min.css │ │ └── jquery-ui-theme-min.css ├── lib │ ├── md5.min.js │ ├── mermaid.min.js │ └── prism.js ├── mfa_totp.js ├── params.js ├── productform.js ├── text-editor.js ├── util.js └── widgets.js ├── jsonrpc.cgi ├── lib └── README ├── long_list.cgi ├── migrate.pl ├── oauth2.cgi ├── page.cgi ├── patches └── mojolicious-1279.patch ├── post_bug.cgi ├── process_bug.cgi ├── public └── favicon.ico ├── qa ├── config │ ├── generate_test_data.pl │ ├── patch.diff │ └── selenium_test.conf ├── extensions │ └── QA │ │ ├── Config.pm │ │ ├── Extension.pm │ │ ├── lib │ │ └── Util.pm │ │ └── template │ │ └── en │ │ └── default │ │ ├── pages │ │ └── qa │ │ │ └── email_in.html.tmpl │ │ └── qa │ │ ├── create_bug.txt.tmpl │ │ ├── create_bug_with_headers.txt.tmpl │ │ ├── results.html.tmpl │ │ ├── update_bug.txt.tmpl │ │ └── update_bug_with_headers.txt.tmpl └── t │ ├── 1_test_attention.t │ ├── 1_test_bmo_autolinkification.t │ ├── 1_test_bmo_enter_new_bug.t │ ├── 1_test_bmo_retire_values.t │ ├── 1_test_bug_edit.t │ ├── 1_test_choose_priority.t │ ├── 1_test_classifications.t │ ├── 1_test_config.t │ ├── 1_test_cookie_consent.t │ ├── 1_test_create_user_accounts.t │ ├── 1_test_custom_fields.t │ ├── 1_test_custom_fields_admin.t │ ├── 1_test_duo_requirement.t │ ├── 2_test_default_groups.t │ ├── 2_test_dependencies.t │ ├── 2_test_edit_products_properties.t │ ├── 2_test_enter_new_bug.t │ ├── 2_test_flags.t │ ├── 2_test_flags2.t │ ├── 2_test_groups.t │ ├── 2_test_keywords.t │ ├── 2_test_lockout.t │ ├── 2_test_login.t │ ├── 2_test_login_duo.t │ ├── 2_test_login_totp.t │ ├── 2_test_milestones.t │ ├── 3_test_component_graveyard.t │ ├── 3_test_net_attachments.t │ ├── 3_test_new_release.t │ ├── 3_test_private_attachments.t │ ├── 3_test_qa_contact.t │ ├── 3_test_rate_limit.t │ ├── 3_test_reminders.t │ ├── 3_test_require_login.t │ ├── 3_test_sanity_check.t │ ├── 3_test_saved_searches.t │ ├── 3_test_search.t │ ├── 3_test_security.t │ ├── 3_test_see_also.t │ ├── 4_test_shared_searches.t │ ├── 4_test_show_all_products.t │ ├── 4_test_status_whiteboard.t │ ├── 4_test_sudo_sessions.t │ ├── 4_test_target_milestones.t │ ├── 4_test_time_summary.t │ ├── 4_test_user_groups.t │ ├── 4_test_user_matching.t │ ├── 4_test_user_preferences.t │ ├── 4_test_user_privs.t │ ├── 4_test_votes.t │ ├── 4_test_webhooks.t │ ├── archived │ └── test_email_preferences.t │ ├── lib │ └── QA │ │ ├── REST.pm │ │ ├── RPC.pm │ │ ├── RPC │ │ ├── JSONRPC.pm │ │ └── XMLRPC.pm │ │ ├── Tests.pm │ │ └── Util.pm │ ├── rest_bug.t │ ├── rest_bugzilla.t │ ├── rest_classification.t │ ├── rest_components.t │ ├── rest_github_pull_request.t │ ├── rest_github_push_comment.t │ ├── rest_group_get.t │ ├── rest_lando_uplift.t │ ├── rest_last_change_time_non_bot.t │ ├── rest_pulsebot.t │ ├── rest_relationship_trees.t │ ├── rest_reminders.t │ ├── rest_search_api.t │ ├── rest_see_also.t │ ├── rest_triage_owners.t │ ├── selenium_server_start.t │ ├── selenium_server_stop.t │ ├── webservice_bug_add_attachment.t │ ├── webservice_bug_add_comment.t │ ├── webservice_bug_attachments.t │ ├── webservice_bug_comments.t │ ├── webservice_bug_create.t │ ├── webservice_bug_fields.t │ ├── webservice_bug_get.t │ ├── webservice_bug_get_bugs.t │ ├── webservice_bug_history.t │ ├── webservice_bug_legal_values.t │ ├── webservice_bug_search.t │ ├── webservice_bug_update.t │ ├── webservice_bug_update_see_also.t │ ├── webservice_bugzilla.t │ ├── webservice_group_create.t │ ├── webservice_jsonp.t │ ├── webservice_product.t │ ├── webservice_product_create.t │ ├── webservice_product_get.t │ ├── webservice_user_create.t │ ├── webservice_user_get.t │ ├── webservice_user_login_logout.t │ └── webservice_user_offer_account_by_email.t ├── query.cgi ├── quips.cgi ├── relogin.cgi ├── report.cgi ├── reports.cgi ├── request.cgi ├── reset_password.cgi ├── rest.cgi ├── robots.cgi ├── runtests.pl ├── sanitycheck.cgi ├── sanitycheck.pl ├── scripts ├── 1298978.pl ├── addcustomfield.pl ├── attachment-data.pl ├── block-ip.pl ├── bloomfilter-populate.pl ├── bug1749479.pl ├── bug1763003.pl ├── bug1764246.pl ├── bug1789259.pl ├── bug1799913.pl ├── bug1829061.pl ├── bug1835092.pl ├── bug1926081.pl ├── bug_1642654.pl ├── bugzilla-queue.rhel ├── build-bmo-push-data.pl ├── build-useragent-blocking-regex.pl ├── c9-build ├── c9-install ├── cereal.pl ├── clear-memcached.pl ├── clear-templates.pl ├── convert_datetime.pl ├── cpanfile_fixed_versions.pl ├── create_app_id.pl ├── delete_comments_csv.pl ├── disable-stale-users.pl ├── eject-users-from-groups.pl ├── entrypoint.pl ├── fix-attachment-sizes.pl ├── fix_all_open_status_queries.pl ├── fixgroupqueries.pl ├── fixperms.pl ├── fixqueries.pl ├── generate_bmo_data.pl ├── generate_conduit_data.pl ├── group-set-members.pl ├── import_email.pl ├── issue-api-key.pl ├── localconfig-as-json ├── merge-users.pl ├── migrate-attachments.pl ├── migrate-cab-review.pl ├── migrate-component-teams.pl ├── migrate-mining-s3.pl ├── migrate_whiteboard_keyword.pl ├── move_os.pl ├── movebugs.pl ├── movecomponent-1565636.pl ├── movecomponent.pl ├── nagios_blocker_checker.pl ├── nagios_push_checker.pl ├── nuke-bugs.pl ├── perl-fmt.pl ├── reassign_open_bugs.pl ├── reminders.pl ├── remove-non-public-data.pl ├── remove_idle_group_members.pl ├── reset_default_user.pl ├── resolve_bugs.pl ├── sanitizeme.pl ├── secbugsreport.pl ├── security_remove.pl ├── sendmail.pl ├── sendunsentbugmail.pl ├── start_morbo.pl ├── syncflags.pl ├── syncmsandversions.pl ├── triage_owners_csv.pl ├── undo.pl ├── update-bug-groups.pl ├── update-crash-signatures.pl ├── update_localconfig.pl ├── update_params.pl └── user-prefs.pl ├── search_plugin.cgi ├── show_activity.cgi ├── show_bug.cgi ├── showattachment.cgi ├── showdependencygraph.cgi ├── showdependencytree.cgi ├── skins ├── lib │ ├── fontawesome-brands.min.css │ ├── fontawesome-solid.min.css │ ├── fontawesome.min.css │ └── prism.css ├── standard │ ├── admin.css │ ├── advanced-search.css │ ├── attachment.css │ ├── buglist.css │ ├── consent.css │ ├── create_bug.css │ ├── dependency-tree.css │ ├── dependency-tree │ │ ├── bug-item.png │ │ ├── tree-closed.png │ │ ├── tree-open.png │ │ └── tree.png │ ├── describecomponents.css │ ├── duplicates.css │ ├── editusers.css │ ├── enter_bug.css │ ├── fonts │ │ ├── FiraGO-Book.woff2 │ │ ├── FiraGO-BookItalic.woff2 │ │ ├── FiraGO-Medium.woff2 │ │ ├── FiraGO-MediumItalic.woff2 │ │ ├── FiraGO-SemiBold.woff2 │ │ ├── FiraGO-SemiBoldItalic.woff2 │ │ ├── FirefoxEmoji.ttf │ │ ├── MaterialSymbolsOutlined.woff2 │ │ └── NotoMono-Regular.woff2 │ ├── global.css │ ├── global │ │ └── calendar.png │ ├── guided.css │ ├── index.css │ ├── login.css │ ├── page.css │ ├── params.css │ ├── search_form.css │ ├── show_bug.css │ ├── show_multiple.css │ ├── summarize-time.css │ └── text-editor.css └── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.woff2 │ ├── fa-solid-900.eot │ └── fa-solid-900.woff2 ├── summarize_time.cgi ├── t ├── .perlcritic-history ├── 001compile.t ├── 002goodperl.t ├── 004template.t ├── 005whitespace.t ├── 006spellcheck.t ├── 007util.t ├── 008filter.t ├── 009bugwords.t ├── 010dependencies.t ├── 011pod.t ├── 012throwables.t ├── 901-secure-mail-loop.t ├── 902-crypt-openpgp-random.t ├── Support │ ├── Files.pm │ ├── Systemexec.pm │ └── Templates.pm ├── bmo │ ├── bounced-emails.t │ ├── comments.t │ ├── net_storage.t │ ├── oauth2-client.t │ └── passwords.t ├── critic.t ├── css.t ├── daemon-control-catch-signal.t ├── db-error-cleanup.pl ├── docker.t ├── duo_client.t ├── extract-nicks.t ├── hash-sig.t ├── markdown.t ├── migrate-params.t ├── mock-db.t ├── mock-params.t ├── mojo-example.t ├── mojo-oauth2-provider.t ├── quicksearch.t ├── report-graph.t ├── security-risk.t ├── sqlite-memory.t └── wants.t ├── template └── en │ └── default │ ├── account │ ├── auth │ │ ├── confirm_scopes.html.tmpl │ │ ├── login-small.html.tmpl │ │ ├── login.html.tmpl │ │ ├── oauth2_login_button.html.tmpl │ │ └── verify_account_creation.html.tmpl │ ├── cancel-token.txt.tmpl │ ├── create.html.tmpl │ ├── created.html.tmpl │ ├── email │ │ ├── bounced-emails.html.tmpl │ │ ├── change-new.txt.tmpl │ │ ├── change-old.txt.tmpl │ │ ├── confirm-new.html.tmpl │ │ ├── confirm.html.tmpl │ │ └── request-new.txt.tmpl │ ├── password │ │ ├── forgotten-password.txt.tmpl │ │ └── set-forgotten-password.html.tmpl │ ├── password_complexity.html.tmpl │ ├── prefs │ │ ├── account.html.tmpl │ │ ├── apikey.html.tmpl │ │ ├── confirm-cancel.html.tmpl │ │ ├── email.html.tmpl │ │ ├── mfa.html.tmpl │ │ ├── permissions.html.tmpl │ │ ├── prefs.html.tmpl │ │ ├── reminders.html.tmpl │ │ ├── saved-searches.html.tmpl │ │ ├── sessions.html.tmpl │ │ ├── settings.html.tmpl │ │ └── tabs.html.tmpl │ ├── profile-activity.html.tmpl │ ├── reset-password.html.tmpl │ └── rules.html.tmpl │ ├── admin │ ├── admin.html.tmpl │ ├── classifications │ │ ├── add.html.tmpl │ │ ├── del.html.tmpl │ │ ├── edit-common.html.tmpl │ │ ├── edit.html.tmpl │ │ ├── footer.html.tmpl │ │ ├── reclassify.html.tmpl │ │ └── select.html.tmpl │ ├── components │ │ ├── confirm-delete.html.tmpl │ │ ├── create.html.tmpl │ │ ├── edit-common.html.tmpl │ │ ├── edit.html.tmpl │ │ ├── footer.html.tmpl │ │ ├── graveyard.html.tmpl │ │ ├── list.html.tmpl │ │ └── select-product.html.tmpl │ ├── confirm-action.html.tmpl │ ├── custom_fields │ │ ├── cf-js.js.tmpl │ │ ├── confirm-delete.html.tmpl │ │ ├── create.html.tmpl │ │ ├── edit.html.tmpl │ │ └── list.html.tmpl │ ├── default_select.html.tmpl │ ├── fieldvalues │ │ ├── confirm-delete.html.tmpl │ │ ├── create.html.tmpl │ │ ├── edit.html.tmpl │ │ ├── footer.html.tmpl │ │ ├── list.html.tmpl │ │ └── select-field.html.tmpl │ ├── flag-type │ │ ├── confirm-delete.html.tmpl │ │ ├── edit.html.tmpl │ │ └── list.html.tmpl │ ├── groups │ │ ├── confirm-remove.html.tmpl │ │ ├── create.html.tmpl │ │ ├── delete.html.tmpl │ │ ├── edit.html.tmpl │ │ ├── email │ │ │ ├── idle-member-removal-header.txt.tmpl │ │ │ ├── idle-member-removal.html.tmpl │ │ │ └── idle-member-removal.txt.tmpl │ │ └── list.html.tmpl │ ├── keywords │ │ ├── confirm-delete.html.tmpl │ │ ├── create.html.tmpl │ │ ├── edit.html.tmpl │ │ └── list.html.tmpl │ ├── milestones │ │ ├── confirm-delete.html.tmpl │ │ ├── create.html.tmpl │ │ ├── edit.html.tmpl │ │ ├── footer.html.tmpl │ │ ├── list.html.tmpl │ │ └── select-product.html.tmpl │ ├── oauth │ │ └── provider │ │ │ ├── confirm-delete.html.tmpl │ │ │ ├── create.html.tmpl │ │ │ ├── edit.html.tmpl │ │ │ └── list.html.tmpl │ ├── params │ │ ├── admin.html.tmpl │ │ ├── advanced.html.tmpl │ │ ├── attachment.html.tmpl │ │ ├── auth.html.tmpl │ │ ├── bugchange.html.tmpl │ │ ├── bugfields.html.tmpl │ │ ├── common.html.tmpl │ │ ├── editparams.html.tmpl │ │ ├── general.html.tmpl │ │ ├── github.html.tmpl │ │ ├── groupsecurity.html.tmpl │ │ ├── index.html.tmpl │ │ ├── ldap.html.tmpl │ │ ├── mta.html.tmpl │ │ ├── newrelease.html.tmpl │ │ ├── oauth2client.html.tmpl │ │ ├── patchviewer.html.tmpl │ │ ├── query.html.tmpl │ │ ├── radius.html.tmpl │ │ ├── reminders.html.tmpl │ │ ├── reports.html.tmpl │ │ ├── shadowdb.html.tmpl │ │ └── usermatch.html.tmpl │ ├── products │ │ ├── confirm-delete.html.tmpl │ │ ├── create.html.tmpl │ │ ├── edit-common.html.tmpl │ │ ├── edit.html.tmpl │ │ ├── footer.html.tmpl │ │ ├── groupcontrol │ │ │ ├── confirm-edit.html.tmpl │ │ │ ├── edit.html.tmpl │ │ │ └── updated.html.tmpl │ │ ├── list-classifications.html.tmpl │ │ ├── list.html.tmpl │ │ └── updated.html.tmpl │ ├── reports │ │ └── job_queue.html.tmpl │ ├── sanitycheck │ │ ├── list.html.tmpl │ │ └── messages.html.tmpl │ ├── settings │ │ └── edit.html.tmpl │ ├── sudo.html.tmpl │ ├── table.html.tmpl │ ├── users │ │ ├── bounce-disabled.txt.tmpl │ │ ├── confirm-delete.html.tmpl │ │ ├── create.html.tmpl │ │ ├── edit.html.tmpl │ │ ├── list.html.tmpl │ │ ├── listselectvars.html.tmpl │ │ ├── responsibilities.html.tmpl │ │ ├── search.html.tmpl │ │ └── userdata.html.tmpl │ ├── versions │ │ ├── confirm-delete.html.tmpl │ │ ├── create.html.tmpl │ │ ├── edit.html.tmpl │ │ ├── footer.html.tmpl │ │ ├── list.html.tmpl │ │ └── select-product.html.tmpl │ └── workflow │ │ ├── comment.html.tmpl │ │ └── edit.html.tmpl │ ├── attachment │ ├── choose.html.tmpl │ ├── confirm-delete.html.tmpl │ ├── content-types.html.tmpl │ ├── create.html.tmpl │ ├── created.html.tmpl │ ├── createformcontents.html.tmpl │ ├── delete_reason.txt.tmpl │ ├── diff-file.html.tmpl │ ├── diff-footer.html.tmpl │ ├── diff-header.html.tmpl │ ├── edit.html.tmpl │ ├── list.html.tmpl │ ├── midair.html.tmpl │ ├── show-multiple.html.tmpl │ └── updated.html.tmpl │ ├── bug │ ├── activity │ │ ├── show.html.tmpl │ │ └── table.html.tmpl │ ├── choose.html.tmpl │ ├── comments.html.tmpl │ ├── create │ │ ├── comment-guided.txt.tmpl │ │ ├── comment.txt.tmpl │ │ ├── create-guided.html.tmpl │ │ ├── create.html.tmpl │ │ ├── created.html.tmpl │ │ ├── make-template.html.tmpl │ │ ├── security.html.tmpl │ │ └── user-message.html.tmpl │ ├── dependency-graph.html.tmpl │ ├── dependency-tree.html.tmpl │ ├── edit.html.tmpl │ ├── field-events.js.tmpl │ ├── field-help.none.tmpl │ ├── field-label.html.tmpl │ ├── field.html.tmpl │ ├── format_comment.txt.tmpl │ ├── knob.html.tmpl │ ├── link.html.tmpl │ ├── navigate.html.tmpl │ ├── process │ │ ├── attachment-results.html.tmpl │ │ ├── bugmail.html.tmpl │ │ ├── confirm-duplicate.html.tmpl │ │ ├── header.html.tmpl │ │ ├── midair.html.tmpl │ │ ├── results.html.tmpl │ │ ├── updates-disabled.html.tmpl │ │ └── verify-new-product.html.tmpl │ ├── show-header.html.tmpl │ ├── show-multiple.html.tmpl │ ├── show.html.tmpl │ ├── show.xml.tmpl │ ├── summarize-time.html.tmpl │ ├── tagging.html.tmpl │ └── time.html.tmpl │ ├── config.js.tmpl │ ├── config.rdf.tmpl │ ├── email │ ├── bugmail-common.txt.tmpl │ ├── bugmail-header.txt.tmpl │ ├── bugmail.html.tmpl │ ├── bugmail.txt.tmpl │ ├── header-common.txt.tmpl │ ├── lockout.txt.tmpl │ ├── new-api-key.txt.tmpl │ ├── reminder-header.txt.tmpl │ ├── reminder.html.tmpl │ ├── reminder.txt.tmpl │ ├── sanitycheck.txt.tmpl │ ├── ses-complaint.txt.tmpl │ ├── sudo.txt.tmpl │ └── whine.txt.tmpl │ ├── extensions │ ├── config.pm.tmpl │ ├── extension.pm.tmpl │ ├── hook-readme.txt.tmpl │ ├── license.txt.tmpl │ ├── name-readme.txt.tmpl │ ├── util.pm.tmpl │ └── web-readme.txt.tmpl │ ├── filterexceptions.pl │ ├── flag │ └── list.html.tmpl │ ├── global │ ├── banner.html.tmpl │ ├── choose-classification.html.tmpl │ ├── choose-product.html.tmpl │ ├── code-error.html.tmpl │ ├── confirm-action.html.tmpl │ ├── confirm-user-match.html.tmpl │ ├── docslinks.html.tmpl │ ├── field-descs.none.tmpl │ ├── footer.html.tmpl │ ├── header-search-dropdown.html.tmpl │ ├── header.html.tmpl │ ├── hidden-fields.html.tmpl │ ├── initialize.none.tmpl │ ├── ip-blocked.html.tmpl │ ├── js-products.html.tmpl │ ├── message.html.tmpl │ ├── message.txt.tmpl │ ├── messages.html.tmpl │ ├── password-features.html.tmpl │ ├── reason-descs.none.tmpl │ ├── select-menu.html.tmpl │ ├── setting-descs.none.tmpl │ ├── site-navigation.html.tmpl │ ├── tabs.html.tmpl │ ├── text-editor-include.html.tmpl │ ├── textarea.html.tmpl │ ├── user-error.html.tmpl │ ├── user.html.tmpl │ ├── userselect.html.tmpl │ ├── value-descs.js.tmpl │ ├── value-descs.none.tmpl │ └── variables.none.tmpl │ ├── index.html.tmpl │ ├── layouts │ └── bugzilla.html.ep │ ├── list │ ├── change-columns.html.tmpl │ ├── edit-multiple.html.tmpl │ ├── list-simple.html.tmpl │ ├── list.atom.tmpl │ ├── list.csv.tmpl │ ├── list.html.tmpl │ ├── list.ics.tmpl │ ├── list.rdf.tmpl │ ├── quips.html.tmpl │ └── table.html.tmpl │ ├── main │ └── root.html.tmpl │ ├── mfa │ ├── dummy │ │ └── verify.html.tmpl │ ├── duo │ │ └── not_enrolled.html.tmpl │ ├── protected.html.tmpl │ ├── recovery.html.tmpl │ └── totp │ │ ├── enroll.html.tmpl │ │ └── verify.html.tmpl │ ├── pages │ ├── antispam.html.tmpl │ ├── bug-writing.html.tmpl │ ├── bugzilla.dtd.tmpl │ ├── cookies.html.tmpl │ ├── linked.html.tmpl │ ├── linkify.html.tmpl │ ├── new_release.html.tmpl │ ├── quicksearch.html.tmpl │ ├── release-notes.html.tmpl │ ├── release-notes3.html.tmpl │ └── sudo.html.tmpl │ ├── reports │ ├── chart.csv.tmpl │ ├── chart.html.tmpl │ ├── chart.png.tmpl │ ├── components.html.tmpl │ ├── create-chart.html.tmpl │ ├── delete-series.html.tmpl │ ├── duplicates-simple.html.tmpl │ ├── duplicates-table.html.tmpl │ ├── duplicates.html.tmpl │ ├── edit-series.html.tmpl │ ├── email │ │ ├── security-risk-moderate-low.html.tmpl │ │ └── security-risk.html.tmpl │ ├── keywords.html.tmpl │ ├── menu.html.tmpl │ ├── old-charts.html.tmpl │ ├── report-bar.png.tmpl │ ├── report-line.png.tmpl │ ├── report-pie.png.tmpl │ ├── report-simple.html.tmpl │ ├── report-table.csv.tmpl │ ├── report-table.html.tmpl │ ├── report.csv.tmpl │ ├── report.html.tmpl │ ├── series-common.html.tmpl │ └── series.html.tmpl │ ├── request │ ├── email.txt.tmpl │ ├── queue.csv.tmpl │ ├── queue.html.tmpl │ └── queue.json.tmpl │ ├── robots.txt.tmpl │ ├── search │ ├── custom-search.html.tmpl │ ├── field.html.tmpl │ ├── form.html.tmpl │ ├── knob.html.tmpl │ ├── search-advanced.html.tmpl │ ├── search-create-series.html.tmpl │ ├── search-google.html.tmpl │ ├── search-instant.html.tmpl │ ├── search-plugin.xml.tmpl │ ├── search-report-graph.html.tmpl │ ├── search-report-select.html.tmpl │ ├── search-report-table.html.tmpl │ ├── search-specific.html.tmpl │ ├── tabs.html.tmpl │ └── type-select.html.tmpl │ ├── setup │ └── strings.txt.pl │ ├── welcome-admin.html.tmpl │ └── whine │ ├── mail.html.tmpl │ ├── mail.txt.tmpl │ ├── multipart-mime.txt.tmpl │ └── schedule.html.tmpl ├── testserver.pl ├── token.cgi ├── userprefs.cgi ├── view_job_queue.cgi ├── votes.cgi ├── whine.pl ├── whineatnews.pl ├── xml.cgi ├── xmlrpc.cgi └── xt ├── README ├── lib └── Bugzilla │ └── Test │ ├── Search.pm │ └── Search │ ├── AndTest.pm │ ├── Constants.pm │ ├── CustomTest.pm │ ├── FieldTest.pm │ ├── FieldTestNormal.pm │ ├── InjectionTest.pm │ ├── NotTest.pm │ ├── OperatorTest.pm │ └── OrTest.pm └── search.t /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/perl-slim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/.github/workflows/perl-slim.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/.mailmap -------------------------------------------------------------------------------- /.perlcriticrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/.perlcriticrc -------------------------------------------------------------------------------- /.perltidyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/.perltidyrc -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.vscode/bmo.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/.vscode/bmo.code-snippets -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Bugzilla.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla.pm -------------------------------------------------------------------------------- /Bugzilla/API/V1/BugGraph.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/API/V1/BugGraph.pm -------------------------------------------------------------------------------- /Bugzilla/API/V1/Component.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/API/V1/Component.pm -------------------------------------------------------------------------------- /Bugzilla/API/V1/Configuration.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/API/V1/Configuration.pm -------------------------------------------------------------------------------- /Bugzilla/API/V1/Github.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/API/V1/Github.pm -------------------------------------------------------------------------------- /Bugzilla/API/V1/Reminders.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/API/V1/Reminders.pm -------------------------------------------------------------------------------- /Bugzilla/API/V1/Teams.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/API/V1/Teams.pm -------------------------------------------------------------------------------- /Bugzilla/API/V1/User.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/API/V1/User.pm -------------------------------------------------------------------------------- /Bugzilla/App.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/App.pm -------------------------------------------------------------------------------- /Bugzilla/App/Command/move_flag_types.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/App/Command/move_flag_types.pm -------------------------------------------------------------------------------- /Bugzilla/App/Command/revoke_api_keys.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/App/Command/revoke_api_keys.pm -------------------------------------------------------------------------------- /Bugzilla/App/Controller/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/App/Controller/API.pm -------------------------------------------------------------------------------- /Bugzilla/App/Controller/BMO/AntiSpam.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/App/Controller/BMO/AntiSpam.pm -------------------------------------------------------------------------------- /Bugzilla/App/Controller/BouncedEmails.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/App/Controller/BouncedEmails.pm -------------------------------------------------------------------------------- /Bugzilla/App/Controller/CGI.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/App/Controller/CGI.pm -------------------------------------------------------------------------------- /Bugzilla/App/Controller/MFA/Duo.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/App/Controller/MFA/Duo.pm -------------------------------------------------------------------------------- /Bugzilla/App/Controller/Main.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/App/Controller/Main.pm -------------------------------------------------------------------------------- /Bugzilla/App/Controller/SES.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/App/Controller/SES.pm -------------------------------------------------------------------------------- /Bugzilla/App/Plugin/BlockIP.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/App/Plugin/BlockIP.pm -------------------------------------------------------------------------------- /Bugzilla/App/Plugin/Error.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/App/Plugin/Error.pm -------------------------------------------------------------------------------- /Bugzilla/App/Plugin/Glue.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/App/Plugin/Glue.pm -------------------------------------------------------------------------------- /Bugzilla/App/Plugin/Helpers.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/App/Plugin/Helpers.pm -------------------------------------------------------------------------------- /Bugzilla/App/Plugin/Hostage.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/App/Plugin/Hostage.pm -------------------------------------------------------------------------------- /Bugzilla/App/Plugin/Login.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/App/Plugin/Login.pm -------------------------------------------------------------------------------- /Bugzilla/App/Plugin/OAuth2/Client.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/App/Plugin/OAuth2/Client.pm -------------------------------------------------------------------------------- /Bugzilla/App/Plugin/OAuth2/Provider.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/App/Plugin/OAuth2/Provider.pm -------------------------------------------------------------------------------- /Bugzilla/App/Plugin/SizeLimit.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/App/Plugin/SizeLimit.pm -------------------------------------------------------------------------------- /Bugzilla/App/Static.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/App/Static.pm -------------------------------------------------------------------------------- /Bugzilla/App/Stdout.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/App/Stdout.pm -------------------------------------------------------------------------------- /Bugzilla/Attachment.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Attachment.pm -------------------------------------------------------------------------------- /Bugzilla/Attachment/Archive.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Attachment/Archive.pm -------------------------------------------------------------------------------- /Bugzilla/Attachment/PatchReader.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Attachment/PatchReader.pm -------------------------------------------------------------------------------- /Bugzilla/Attachment/Storage/Base.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Attachment/Storage/Base.pm -------------------------------------------------------------------------------- /Bugzilla/Attachment/Storage/Database.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Attachment/Storage/Database.pm -------------------------------------------------------------------------------- /Bugzilla/Attachment/Storage/Net.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Attachment/Storage/Net.pm -------------------------------------------------------------------------------- /Bugzilla/Auth.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Auth.pm -------------------------------------------------------------------------------- /Bugzilla/Auth/Login.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Auth/Login.pm -------------------------------------------------------------------------------- /Bugzilla/Auth/Login/APIKey.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Auth/Login/APIKey.pm -------------------------------------------------------------------------------- /Bugzilla/Auth/Login/CGI.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Auth/Login/CGI.pm -------------------------------------------------------------------------------- /Bugzilla/Auth/Login/Cookie.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Auth/Login/Cookie.pm -------------------------------------------------------------------------------- /Bugzilla/Auth/Login/Env.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Auth/Login/Env.pm -------------------------------------------------------------------------------- /Bugzilla/Auth/Login/OAuth2.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Auth/Login/OAuth2.pm -------------------------------------------------------------------------------- /Bugzilla/Auth/Login/Stack.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Auth/Login/Stack.pm -------------------------------------------------------------------------------- /Bugzilla/Auth/Persist/Cookie.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Auth/Persist/Cookie.pm -------------------------------------------------------------------------------- /Bugzilla/Auth/Verify.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Auth/Verify.pm -------------------------------------------------------------------------------- /Bugzilla/Auth/Verify/DB.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Auth/Verify/DB.pm -------------------------------------------------------------------------------- /Bugzilla/Auth/Verify/LDAP.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Auth/Verify/LDAP.pm -------------------------------------------------------------------------------- /Bugzilla/Auth/Verify/RADIUS.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Auth/Verify/RADIUS.pm -------------------------------------------------------------------------------- /Bugzilla/Auth/Verify/Stack.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Auth/Verify/Stack.pm -------------------------------------------------------------------------------- /Bugzilla/Bloomfilter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Bloomfilter.pm -------------------------------------------------------------------------------- /Bugzilla/Bug.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Bug.pm -------------------------------------------------------------------------------- /Bugzilla/BugMail.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/BugMail.pm -------------------------------------------------------------------------------- /Bugzilla/BugUrl.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/BugUrl.pm -------------------------------------------------------------------------------- /Bugzilla/BugUrl/External.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/BugUrl/External.pm -------------------------------------------------------------------------------- /Bugzilla/BugUrl/Local.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/BugUrl/Local.pm -------------------------------------------------------------------------------- /Bugzilla/BugUserLastVisit.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/BugUserLastVisit.pm -------------------------------------------------------------------------------- /Bugzilla/CGI.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/CGI.pm -------------------------------------------------------------------------------- /Bugzilla/CGI/ContentSecurityPolicy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/CGI/ContentSecurityPolicy.pm -------------------------------------------------------------------------------- /Bugzilla/CPAN.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/CPAN.pm -------------------------------------------------------------------------------- /Bugzilla/Chart.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Chart.pm -------------------------------------------------------------------------------- /Bugzilla/Classification.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Classification.pm -------------------------------------------------------------------------------- /Bugzilla/Comment.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Comment.pm -------------------------------------------------------------------------------- /Bugzilla/Comment/TagWeights.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Comment/TagWeights.pm -------------------------------------------------------------------------------- /Bugzilla/Component.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Component.pm -------------------------------------------------------------------------------- /Bugzilla/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config.pm -------------------------------------------------------------------------------- /Bugzilla/Config/Admin.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config/Admin.pm -------------------------------------------------------------------------------- /Bugzilla/Config/Advanced.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config/Advanced.pm -------------------------------------------------------------------------------- /Bugzilla/Config/Attachment.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config/Attachment.pm -------------------------------------------------------------------------------- /Bugzilla/Config/Auth.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config/Auth.pm -------------------------------------------------------------------------------- /Bugzilla/Config/BugChange.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config/BugChange.pm -------------------------------------------------------------------------------- /Bugzilla/Config/BugFields.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config/BugFields.pm -------------------------------------------------------------------------------- /Bugzilla/Config/Common.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config/Common.pm -------------------------------------------------------------------------------- /Bugzilla/Config/General.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config/General.pm -------------------------------------------------------------------------------- /Bugzilla/Config/Github.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config/Github.pm -------------------------------------------------------------------------------- /Bugzilla/Config/GroupSecurity.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config/GroupSecurity.pm -------------------------------------------------------------------------------- /Bugzilla/Config/LDAP.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config/LDAP.pm -------------------------------------------------------------------------------- /Bugzilla/Config/MTA.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config/MTA.pm -------------------------------------------------------------------------------- /Bugzilla/Config/NewRelease.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config/NewRelease.pm -------------------------------------------------------------------------------- /Bugzilla/Config/OAuth2Client.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config/OAuth2Client.pm -------------------------------------------------------------------------------- /Bugzilla/Config/PatchViewer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config/PatchViewer.pm -------------------------------------------------------------------------------- /Bugzilla/Config/Query.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config/Query.pm -------------------------------------------------------------------------------- /Bugzilla/Config/RADIUS.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config/RADIUS.pm -------------------------------------------------------------------------------- /Bugzilla/Config/Reminders.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config/Reminders.pm -------------------------------------------------------------------------------- /Bugzilla/Config/Reports.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config/Reports.pm -------------------------------------------------------------------------------- /Bugzilla/Config/ShadowDB.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config/ShadowDB.pm -------------------------------------------------------------------------------- /Bugzilla/Config/UserMatch.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Config/UserMatch.pm -------------------------------------------------------------------------------- /Bugzilla/Constants.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Constants.pm -------------------------------------------------------------------------------- /Bugzilla/DB.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/DB.pm -------------------------------------------------------------------------------- /Bugzilla/DB/Mysql.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/DB/Mysql.pm -------------------------------------------------------------------------------- /Bugzilla/DB/Oracle.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/DB/Oracle.pm -------------------------------------------------------------------------------- /Bugzilla/DB/Pg.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/DB/Pg.pm -------------------------------------------------------------------------------- /Bugzilla/DB/Schema.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/DB/Schema.pm -------------------------------------------------------------------------------- /Bugzilla/DB/Schema/Mysql.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/DB/Schema/Mysql.pm -------------------------------------------------------------------------------- /Bugzilla/DB/Schema/Oracle.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/DB/Schema/Oracle.pm -------------------------------------------------------------------------------- /Bugzilla/DB/Schema/Pg.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/DB/Schema/Pg.pm -------------------------------------------------------------------------------- /Bugzilla/DB/Schema/Sqlite.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/DB/Schema/Sqlite.pm -------------------------------------------------------------------------------- /Bugzilla/DB/Sqlite.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/DB/Sqlite.pm -------------------------------------------------------------------------------- /Bugzilla/DaemonControl.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/DaemonControl.pm -------------------------------------------------------------------------------- /Bugzilla/DuoClient.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/DuoClient.pm -------------------------------------------------------------------------------- /Bugzilla/Error.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Error.pm -------------------------------------------------------------------------------- /Bugzilla/Error/Base.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Error/Base.pm -------------------------------------------------------------------------------- /Bugzilla/Error/Code.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Error/Code.pm -------------------------------------------------------------------------------- /Bugzilla/Error/Template.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Error/Template.pm -------------------------------------------------------------------------------- /Bugzilla/Error/User.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Error/User.pm -------------------------------------------------------------------------------- /Bugzilla/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Extension.pm -------------------------------------------------------------------------------- /Bugzilla/Field.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Field.pm -------------------------------------------------------------------------------- /Bugzilla/Field/Choice.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Field/Choice.pm -------------------------------------------------------------------------------- /Bugzilla/Field/ChoiceInterface.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Field/ChoiceInterface.pm -------------------------------------------------------------------------------- /Bugzilla/Flag.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Flag.pm -------------------------------------------------------------------------------- /Bugzilla/FlagType.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/FlagType.pm -------------------------------------------------------------------------------- /Bugzilla/Group.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Group.pm -------------------------------------------------------------------------------- /Bugzilla/Hook.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Hook.pm -------------------------------------------------------------------------------- /Bugzilla/Install.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Install.pm -------------------------------------------------------------------------------- /Bugzilla/Install/DB.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Install/DB.pm -------------------------------------------------------------------------------- /Bugzilla/Install/Filesystem.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Install/Filesystem.pm -------------------------------------------------------------------------------- /Bugzilla/Install/Localconfig.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Install/Localconfig.pm -------------------------------------------------------------------------------- /Bugzilla/Install/Requirements.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Install/Requirements.pm -------------------------------------------------------------------------------- /Bugzilla/Install/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Install/Util.pm -------------------------------------------------------------------------------- /Bugzilla/Job/BugMail.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Job/BugMail.pm -------------------------------------------------------------------------------- /Bugzilla/Job/Mailer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Job/Mailer.pm -------------------------------------------------------------------------------- /Bugzilla/Job/RunTask.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Job/RunTask.pm -------------------------------------------------------------------------------- /Bugzilla/JobQueue.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/JobQueue.pm -------------------------------------------------------------------------------- /Bugzilla/JobQueue/Runner.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/JobQueue/Runner.pm -------------------------------------------------------------------------------- /Bugzilla/JobQueue/Worker.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/JobQueue/Worker.pm -------------------------------------------------------------------------------- /Bugzilla/Keyword.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Keyword.pm -------------------------------------------------------------------------------- /Bugzilla/Localconfig.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Localconfig.pm -------------------------------------------------------------------------------- /Bugzilla/Logging.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Logging.pm -------------------------------------------------------------------------------- /Bugzilla/MFA.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/MFA.pm -------------------------------------------------------------------------------- /Bugzilla/MFA/Dummy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/MFA/Dummy.pm -------------------------------------------------------------------------------- /Bugzilla/MFA/Duo.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/MFA/Duo.pm -------------------------------------------------------------------------------- /Bugzilla/MFA/TOTP.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/MFA/TOTP.pm -------------------------------------------------------------------------------- /Bugzilla/Mailer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Mailer.pm -------------------------------------------------------------------------------- /Bugzilla/Markdown.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Markdown.pm -------------------------------------------------------------------------------- /Bugzilla/Markdown/GFM.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Markdown/GFM.pm -------------------------------------------------------------------------------- /Bugzilla/Markdown/GFM/Node.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Markdown/GFM/Node.pm -------------------------------------------------------------------------------- /Bugzilla/Markdown/GFM/Parser.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Markdown/GFM/Parser.pm -------------------------------------------------------------------------------- /Bugzilla/Markdown/GFM/SyntaxExtension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Markdown/GFM/SyntaxExtension.pm -------------------------------------------------------------------------------- /Bugzilla/Memcached.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Memcached.pm -------------------------------------------------------------------------------- /Bugzilla/Migrate.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Migrate.pm -------------------------------------------------------------------------------- /Bugzilla/Migrate/Gnats.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Migrate/Gnats.pm -------------------------------------------------------------------------------- /Bugzilla/Milestone.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Milestone.pm -------------------------------------------------------------------------------- /Bugzilla/Model.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Model.pm -------------------------------------------------------------------------------- /Bugzilla/Net/Google.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Net/Google.pm -------------------------------------------------------------------------------- /Bugzilla/Net/S3.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Net/S3.pm -------------------------------------------------------------------------------- /Bugzilla/Net/Storage.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Net/Storage.pm -------------------------------------------------------------------------------- /Bugzilla/Object.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Object.pm -------------------------------------------------------------------------------- /Bugzilla/PatchReader.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/PatchReader.pm -------------------------------------------------------------------------------- /Bugzilla/PatchReader/AddCVSContext.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/PatchReader/AddCVSContext.pm -------------------------------------------------------------------------------- /Bugzilla/PatchReader/Base.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/PatchReader/Base.pm -------------------------------------------------------------------------------- /Bugzilla/PatchReader/CVSClient.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/PatchReader/CVSClient.pm -------------------------------------------------------------------------------- /Bugzilla/PatchReader/DiffPrinter/raw.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/PatchReader/DiffPrinter/raw.pm -------------------------------------------------------------------------------- /Bugzilla/PatchReader/FilterPatch.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/PatchReader/FilterPatch.pm -------------------------------------------------------------------------------- /Bugzilla/PatchReader/FixPatchRoot.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/PatchReader/FixPatchRoot.pm -------------------------------------------------------------------------------- /Bugzilla/PatchReader/NarrowPatch.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/PatchReader/NarrowPatch.pm -------------------------------------------------------------------------------- /Bugzilla/PatchReader/PatchInfoGrabber.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/PatchReader/PatchInfoGrabber.pm -------------------------------------------------------------------------------- /Bugzilla/PatchReader/Raw.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/PatchReader/Raw.pm -------------------------------------------------------------------------------- /Bugzilla/Product.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Product.pm -------------------------------------------------------------------------------- /Bugzilla/RNG.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/RNG.pm -------------------------------------------------------------------------------- /Bugzilla/Reminder.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Reminder.pm -------------------------------------------------------------------------------- /Bugzilla/Report/Graph.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Report/Graph.pm -------------------------------------------------------------------------------- /Bugzilla/Report/Net.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Report/Net.pm -------------------------------------------------------------------------------- /Bugzilla/Report/SecurityRisk.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Report/SecurityRisk.pm -------------------------------------------------------------------------------- /Bugzilla/Role/FlattenToHash.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Role/FlattenToHash.pm -------------------------------------------------------------------------------- /Bugzilla/Role/Storable.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Role/Storable.pm -------------------------------------------------------------------------------- /Bugzilla/Search.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Search.pm -------------------------------------------------------------------------------- /Bugzilla/Search/Clause.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Search/Clause.pm -------------------------------------------------------------------------------- /Bugzilla/Search/ClauseGroup.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Search/ClauseGroup.pm -------------------------------------------------------------------------------- /Bugzilla/Search/Condition.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Search/Condition.pm -------------------------------------------------------------------------------- /Bugzilla/Search/Quicksearch.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Search/Quicksearch.pm -------------------------------------------------------------------------------- /Bugzilla/Search/Recent.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Search/Recent.pm -------------------------------------------------------------------------------- /Bugzilla/Search/Saved.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Search/Saved.pm -------------------------------------------------------------------------------- /Bugzilla/Series.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Series.pm -------------------------------------------------------------------------------- /Bugzilla/Status.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Status.pm -------------------------------------------------------------------------------- /Bugzilla/Task.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Task.pm -------------------------------------------------------------------------------- /Bugzilla/Teams.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Teams.pm -------------------------------------------------------------------------------- /Bugzilla/Template.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Template.pm -------------------------------------------------------------------------------- /Bugzilla/Template/Context.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Template/Context.pm -------------------------------------------------------------------------------- /Bugzilla/Template/Plugin/Bugzilla.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Template/Plugin/Bugzilla.pm -------------------------------------------------------------------------------- /Bugzilla/Template/Plugin/Hook.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Template/Plugin/Hook.pm -------------------------------------------------------------------------------- /Bugzilla/Template/Plugin/User.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Template/Plugin/User.pm -------------------------------------------------------------------------------- /Bugzilla/Template/PreloadProvider.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Template/PreloadProvider.pm -------------------------------------------------------------------------------- /Bugzilla/Test/MockDB.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Test/MockDB.pm -------------------------------------------------------------------------------- /Bugzilla/Test/MockLocalconfig.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Test/MockLocalconfig.pm -------------------------------------------------------------------------------- /Bugzilla/Test/MockParams.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Test/MockParams.pm -------------------------------------------------------------------------------- /Bugzilla/Test/Selenium.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Test/Selenium.pm -------------------------------------------------------------------------------- /Bugzilla/Test/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Test/Util.pm -------------------------------------------------------------------------------- /Bugzilla/Token.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Token.pm -------------------------------------------------------------------------------- /Bugzilla/Types.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Types.pm -------------------------------------------------------------------------------- /Bugzilla/Update.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Update.pm -------------------------------------------------------------------------------- /Bugzilla/User.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/User.pm -------------------------------------------------------------------------------- /Bugzilla/User/APIKey.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/User/APIKey.pm -------------------------------------------------------------------------------- /Bugzilla/User/Session.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/User/Session.pm -------------------------------------------------------------------------------- /Bugzilla/User/Setting.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/User/Setting.pm -------------------------------------------------------------------------------- /Bugzilla/User/Setting/Lang.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/User/Setting/Lang.pm -------------------------------------------------------------------------------- /Bugzilla/User/Setting/Skin.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/User/Setting/Skin.pm -------------------------------------------------------------------------------- /Bugzilla/User/Setting/Timezone.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/User/Setting/Timezone.pm -------------------------------------------------------------------------------- /Bugzilla/UserAgent.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/UserAgent.pm -------------------------------------------------------------------------------- /Bugzilla/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Util.pm -------------------------------------------------------------------------------- /Bugzilla/Util/DateTime.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Util/DateTime.pm -------------------------------------------------------------------------------- /Bugzilla/Version.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Version.pm -------------------------------------------------------------------------------- /Bugzilla/WebService.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/WebService.pm -------------------------------------------------------------------------------- /Bugzilla/WebService/Bug.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/WebService/Bug.pm -------------------------------------------------------------------------------- /Bugzilla/WebService/BugUserLastVisit.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/WebService/BugUserLastVisit.pm -------------------------------------------------------------------------------- /Bugzilla/WebService/Bugzilla.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/WebService/Bugzilla.pm -------------------------------------------------------------------------------- /Bugzilla/WebService/Classification.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/WebService/Classification.pm -------------------------------------------------------------------------------- /Bugzilla/WebService/Constants.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/WebService/Constants.pm -------------------------------------------------------------------------------- /Bugzilla/WebService/Group.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/WebService/Group.pm -------------------------------------------------------------------------------- /Bugzilla/WebService/Product.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/WebService/Product.pm -------------------------------------------------------------------------------- /Bugzilla/WebService/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/WebService/README -------------------------------------------------------------------------------- /Bugzilla/WebService/Server.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/WebService/Server.pm -------------------------------------------------------------------------------- /Bugzilla/WebService/Server/JSONRPC.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/WebService/Server/JSONRPC.pm -------------------------------------------------------------------------------- /Bugzilla/WebService/Server/REST.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/WebService/Server/REST.pm -------------------------------------------------------------------------------- /Bugzilla/WebService/Server/XMLRPC.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/WebService/Server/XMLRPC.pm -------------------------------------------------------------------------------- /Bugzilla/WebService/User.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/WebService/User.pm -------------------------------------------------------------------------------- /Bugzilla/WebService/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/WebService/Util.pm -------------------------------------------------------------------------------- /Bugzilla/WebService/Wants.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/WebService/Wants.pm -------------------------------------------------------------------------------- /Bugzilla/Whine.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Whine.pm -------------------------------------------------------------------------------- /Bugzilla/Whine/Query.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Whine/Query.pm -------------------------------------------------------------------------------- /Bugzilla/Whine/Schedule.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Bugzilla/Whine/Schedule.pm -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.bmo-slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Dockerfile.bmo-slim -------------------------------------------------------------------------------- /Dockerfile.cpanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Dockerfile.cpanfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/LICENSE -------------------------------------------------------------------------------- /Log/Log4perl/Layout/Mozilla.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Log/Log4perl/Layout/Mozilla.pm -------------------------------------------------------------------------------- /Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/Makefile.PL -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/README.rst -------------------------------------------------------------------------------- /admin.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/admin.cgi -------------------------------------------------------------------------------- /attachment.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/attachment.cgi -------------------------------------------------------------------------------- /buglist.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/buglist.cgi -------------------------------------------------------------------------------- /bugzilla.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/bugzilla.dtd -------------------------------------------------------------------------------- /bugzilla.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/bugzilla.pl -------------------------------------------------------------------------------- /chart.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/chart.cgi -------------------------------------------------------------------------------- /checksetup.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/checksetup.pl -------------------------------------------------------------------------------- /clean-bug-user-last-visit.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/clean-bug-user-last-visit.pl -------------------------------------------------------------------------------- /colchange.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/colchange.cgi -------------------------------------------------------------------------------- /collectstats.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/collectstats.pl -------------------------------------------------------------------------------- /conf/checksetup_answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/conf/checksetup_answers.txt -------------------------------------------------------------------------------- /conf/checksetup_answers_suite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/conf/checksetup_answers_suite.txt -------------------------------------------------------------------------------- /conf/log4perl-docker.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/conf/log4perl-docker.conf -------------------------------------------------------------------------------- /conf/log4perl-json.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/conf/log4perl-json.conf -------------------------------------------------------------------------------- /conf/log4perl-morbo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/conf/log4perl-morbo.conf -------------------------------------------------------------------------------- /conf/log4perl-suite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/conf/log4perl-suite.conf -------------------------------------------------------------------------------- /conf/log4perl-syslog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/conf/log4perl-syslog.conf -------------------------------------------------------------------------------- /conf/log4perl-t.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/conf/log4perl-t.conf -------------------------------------------------------------------------------- /conf/log4perl-test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/conf/log4perl-test.conf -------------------------------------------------------------------------------- /config.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/config.cgi -------------------------------------------------------------------------------- /contrib/clear-memcached.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/contrib/clear-memcached.pl -------------------------------------------------------------------------------- /contrib/clear-templates.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/contrib/clear-templates.pl -------------------------------------------------------------------------------- /contrib/fixperms.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/contrib/fixperms.pl -------------------------------------------------------------------------------- /contribute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/contribute.json -------------------------------------------------------------------------------- /cpanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/cpanfile -------------------------------------------------------------------------------- /cpanfile.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/cpanfile.snapshot -------------------------------------------------------------------------------- /createaccount.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/createaccount.cgi -------------------------------------------------------------------------------- /describecomponents.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/describecomponents.cgi -------------------------------------------------------------------------------- /describekeywords.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/describekeywords.cgi -------------------------------------------------------------------------------- /docker-compose.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docker-compose.test.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/bigquery/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docker/bigquery/Dockerfile -------------------------------------------------------------------------------- /docker/bigquery/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docker/bigquery/data.yaml -------------------------------------------------------------------------------- /docker/mysql/bmo.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docker/mysql/bmo.cnf -------------------------------------------------------------------------------- /docker/proxy/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docker/proxy/haproxy.cfg -------------------------------------------------------------------------------- /docs/en/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/Makefile -------------------------------------------------------------------------------- /docs/en/images/bzLifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/images/bzLifecycle.png -------------------------------------------------------------------------------- /docs/en/images/bzLifecycle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/images/bzLifecycle.xml -------------------------------------------------------------------------------- /docs/en/rst/_static/bugzilla.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/_static/bugzilla.css -------------------------------------------------------------------------------- /docs/en/rst/about/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/about/index.rst -------------------------------------------------------------------------------- /docs/en/rst/administering/extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/administering/extensions.rst -------------------------------------------------------------------------------- /docs/en/rst/administering/flags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/administering/flags.rst -------------------------------------------------------------------------------- /docs/en/rst/administering/groups.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/administering/groups.rst -------------------------------------------------------------------------------- /docs/en/rst/administering/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/administering/index.rst -------------------------------------------------------------------------------- /docs/en/rst/administering/keywords.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/administering/keywords.rst -------------------------------------------------------------------------------- /docs/en/rst/administering/parameters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/administering/parameters.rst -------------------------------------------------------------------------------- /docs/en/rst/administering/quips.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/administering/quips.rst -------------------------------------------------------------------------------- /docs/en/rst/administering/users.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/administering/users.rst -------------------------------------------------------------------------------- /docs/en/rst/administering/whining.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/administering/whining.rst -------------------------------------------------------------------------------- /docs/en/rst/administering/workflow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/administering/workflow.rst -------------------------------------------------------------------------------- /docs/en/rst/api/core/v1/attachment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/api/core/v1/attachment.rst -------------------------------------------------------------------------------- /docs/en/rst/api/core/v1/bug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/api/core/v1/bug.rst -------------------------------------------------------------------------------- /docs/en/rst/api/core/v1/bugzilla.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/api/core/v1/bugzilla.rst -------------------------------------------------------------------------------- /docs/en/rst/api/core/v1/comment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/api/core/v1/comment.rst -------------------------------------------------------------------------------- /docs/en/rst/api/core/v1/component.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/api/core/v1/component.rst -------------------------------------------------------------------------------- /docs/en/rst/api/core/v1/field.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/api/core/v1/field.rst -------------------------------------------------------------------------------- /docs/en/rst/api/core/v1/general.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/api/core/v1/general.rst -------------------------------------------------------------------------------- /docs/en/rst/api/core/v1/github.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/api/core/v1/github.rst -------------------------------------------------------------------------------- /docs/en/rst/api/core/v1/group.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/api/core/v1/group.rst -------------------------------------------------------------------------------- /docs/en/rst/api/core/v1/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/api/core/v1/index.rst -------------------------------------------------------------------------------- /docs/en/rst/api/core/v1/product.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/api/core/v1/product.rst -------------------------------------------------------------------------------- /docs/en/rst/api/core/v1/reminders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/api/core/v1/reminders.rst -------------------------------------------------------------------------------- /docs/en/rst/api/core/v1/user.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/api/core/v1/user.rst -------------------------------------------------------------------------------- /docs/en/rst/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/api/index.rst -------------------------------------------------------------------------------- /docs/en/rst/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/conf.py -------------------------------------------------------------------------------- /docs/en/rst/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/index.rst -------------------------------------------------------------------------------- /docs/en/rst/integrating/apis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/integrating/apis.rst -------------------------------------------------------------------------------- /docs/en/rst/integrating/auth0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/integrating/auth0.rst -------------------------------------------------------------------------------- /docs/en/rst/integrating/extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/integrating/extensions.rst -------------------------------------------------------------------------------- /docs/en/rst/integrating/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/integrating/faq.rst -------------------------------------------------------------------------------- /docs/en/rst/integrating/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/integrating/index.rst -------------------------------------------------------------------------------- /docs/en/rst/integrating/languages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/integrating/languages.rst -------------------------------------------------------------------------------- /docs/en/rst/integrating/skins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/integrating/skins.rst -------------------------------------------------------------------------------- /docs/en/rst/integrating/templates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/integrating/templates.rst -------------------------------------------------------------------------------- /docs/en/rst/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/requirements.txt -------------------------------------------------------------------------------- /docs/en/rst/style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/style.rst -------------------------------------------------------------------------------- /docs/en/rst/using/editing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/using/editing.rst -------------------------------------------------------------------------------- /docs/en/rst/using/extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/using/extensions.rst -------------------------------------------------------------------------------- /docs/en/rst/using/filing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/using/filing.rst -------------------------------------------------------------------------------- /docs/en/rst/using/finding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/using/finding.rst -------------------------------------------------------------------------------- /docs/en/rst/using/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/using/index.rst -------------------------------------------------------------------------------- /docs/en/rst/using/preferences.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/using/preferences.rst -------------------------------------------------------------------------------- /docs/en/rst/using/reports-and-charts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/using/reports-and-charts.rst -------------------------------------------------------------------------------- /docs/en/rst/using/tips.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/using/tips.rst -------------------------------------------------------------------------------- /docs/en/rst/using/understanding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/en/rst/using/understanding.rst -------------------------------------------------------------------------------- /docs/lib/Pod/Simple/HTML/Bugzilla.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/lib/Pod/Simple/HTML/Bugzilla.pm -------------------------------------------------------------------------------- /docs/makedocs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/makedocs.pl -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/docs/style.css -------------------------------------------------------------------------------- /duplicates.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/duplicates.cgi -------------------------------------------------------------------------------- /editclassifications.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/editclassifications.cgi -------------------------------------------------------------------------------- /editcomponents.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/editcomponents.cgi -------------------------------------------------------------------------------- /editfields.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/editfields.cgi -------------------------------------------------------------------------------- /editflagtypes.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/editflagtypes.cgi -------------------------------------------------------------------------------- /editgroups.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/editgroups.cgi -------------------------------------------------------------------------------- /editkeywords.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/editkeywords.cgi -------------------------------------------------------------------------------- /editmilestones.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/editmilestones.cgi -------------------------------------------------------------------------------- /editparams.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/editparams.cgi -------------------------------------------------------------------------------- /editproducts.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/editproducts.cgi -------------------------------------------------------------------------------- /editsettings.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/editsettings.cgi -------------------------------------------------------------------------------- /editusers.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/editusers.cgi -------------------------------------------------------------------------------- /editvalues.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/editvalues.cgi -------------------------------------------------------------------------------- /editversions.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/editversions.cgi -------------------------------------------------------------------------------- /editwhines.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/editwhines.cgi -------------------------------------------------------------------------------- /editworkflow.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/editworkflow.cgi -------------------------------------------------------------------------------- /email_in.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/email_in.pl -------------------------------------------------------------------------------- /enter_bug.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/enter_bug.cgi -------------------------------------------------------------------------------- /errors/401.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/errors/401.html -------------------------------------------------------------------------------- /errors/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/errors/403.html -------------------------------------------------------------------------------- /errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/errors/404.html -------------------------------------------------------------------------------- /errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/errors/500.html -------------------------------------------------------------------------------- /extensions/AntiSpam/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/AntiSpam/Config.pm -------------------------------------------------------------------------------- /extensions/AntiSpam/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/AntiSpam/Extension.pm -------------------------------------------------------------------------------- /extensions/AntiSpam/bin/spam_cleanup.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/AntiSpam/bin/spam_cleanup.pl -------------------------------------------------------------------------------- /extensions/AntiSpam/lib/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/AntiSpam/lib/Config.pm -------------------------------------------------------------------------------- /extensions/BMO/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/Config.pm -------------------------------------------------------------------------------- /extensions/BMO/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/Extension.pm -------------------------------------------------------------------------------- /extensions/BMO/bin/bug_1022707.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/bin/bug_1022707.pl -------------------------------------------------------------------------------- /extensions/BMO/bin/bug_1093952.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/bin/bug_1093952.pl -------------------------------------------------------------------------------- /extensions/BMO/bin/export_bmo_etl.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/bin/export_bmo_etl.pl -------------------------------------------------------------------------------- /extensions/BMO/bin/migrate-bug-type.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/bin/migrate-bug-type.pl -------------------------------------------------------------------------------- /extensions/BMO/lib/API/V1/Triage.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/lib/API/V1/Triage.pm -------------------------------------------------------------------------------- /extensions/BMO/lib/Constants.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/lib/Constants.pm -------------------------------------------------------------------------------- /extensions/BMO/lib/Data.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/lib/Data.pm -------------------------------------------------------------------------------- /extensions/BMO/lib/FakeBug.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/lib/FakeBug.pm -------------------------------------------------------------------------------- /extensions/BMO/lib/Reports/Attention.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/lib/Reports/Attention.pm -------------------------------------------------------------------------------- /extensions/BMO/lib/Reports/Groups.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/lib/Reports/Groups.pm -------------------------------------------------------------------------------- /extensions/BMO/lib/Reports/Internship.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/lib/Reports/Internship.pm -------------------------------------------------------------------------------- /extensions/BMO/lib/Reports/Triage.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/lib/Reports/Triage.pm -------------------------------------------------------------------------------- /extensions/BMO/lib/WebService.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/lib/WebService.pm -------------------------------------------------------------------------------- /extensions/BMO/t/bmo/bmo_etl.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/t/bmo/bmo_etl.t -------------------------------------------------------------------------------- /extensions/BMO/t/bounty_attachment.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/t/bounty_attachment.t -------------------------------------------------------------------------------- /extensions/BMO/web/core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/web/core.png -------------------------------------------------------------------------------- /extensions/BMO/web/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/web/images/favicon.ico -------------------------------------------------------------------------------- /extensions/BMO/web/images/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/web/images/favicon.svg -------------------------------------------------------------------------------- /extensions/BMO/web/images/guided.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/web/images/guided.png -------------------------------------------------------------------------------- /extensions/BMO/web/images/notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/web/images/notice.png -------------------------------------------------------------------------------- /extensions/BMO/web/js/attach-desc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/web/js/attach-desc.js -------------------------------------------------------------------------------- /extensions/BMO/web/js/attention.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/web/js/attention.js -------------------------------------------------------------------------------- /extensions/BMO/web/js/edit_bug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/web/js/edit_bug.js -------------------------------------------------------------------------------- /extensions/BMO/web/js/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/web/js/home.js -------------------------------------------------------------------------------- /extensions/BMO/web/js/sorttable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/web/js/sorttable.js -------------------------------------------------------------------------------- /extensions/BMO/web/js/swag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/web/js/swag.js -------------------------------------------------------------------------------- /extensions/BMO/web/styles/reports.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BMO/web/styles/reports.css -------------------------------------------------------------------------------- /extensions/Bitly/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Bitly/Config.pm -------------------------------------------------------------------------------- /extensions/Bitly/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Bitly/Extension.pm -------------------------------------------------------------------------------- /extensions/Bitly/lib/WebService.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Bitly/lib/WebService.pm -------------------------------------------------------------------------------- /extensions/Bitly/web/js/bitly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Bitly/web/js/bitly.js -------------------------------------------------------------------------------- /extensions/Bitly/web/styles/bitly.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Bitly/web/styles/bitly.css -------------------------------------------------------------------------------- /extensions/BugModal/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BugModal/Config.pm -------------------------------------------------------------------------------- /extensions/BugModal/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BugModal/Extension.pm -------------------------------------------------------------------------------- /extensions/BugModal/lib/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BugModal/lib/Util.pm -------------------------------------------------------------------------------- /extensions/BugModal/lib/WebService.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BugModal/lib/WebService.pm -------------------------------------------------------------------------------- /extensions/BugModal/web/bug_modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BugModal/web/bug_modal.css -------------------------------------------------------------------------------- /extensions/BugModal/web/bug_modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BugModal/web/bug_modal.js -------------------------------------------------------------------------------- /extensions/BugModal/web/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BugModal/web/calendar.png -------------------------------------------------------------------------------- /extensions/BugModal/web/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BugModal/web/comments.js -------------------------------------------------------------------------------- /extensions/BugModal/web/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BugModal/web/create.js -------------------------------------------------------------------------------- /extensions/BugModal/web/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BugModal/web/error.png -------------------------------------------------------------------------------- /extensions/BugModal/web/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BugModal/web/image.png -------------------------------------------------------------------------------- /extensions/BugModal/web/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BugModal/web/throbber.gif -------------------------------------------------------------------------------- /extensions/BugmailFilter/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BugmailFilter/Config.pm -------------------------------------------------------------------------------- /extensions/BugmailFilter/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BugmailFilter/Extension.pm -------------------------------------------------------------------------------- /extensions/BzAPI/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BzAPI/Config.pm -------------------------------------------------------------------------------- /extensions/BzAPI/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BzAPI/Extension.pm -------------------------------------------------------------------------------- /extensions/BzAPI/bin/rest.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BzAPI/bin/rest.cgi -------------------------------------------------------------------------------- /extensions/BzAPI/lib/Constants.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BzAPI/lib/Constants.pm -------------------------------------------------------------------------------- /extensions/BzAPI/lib/Resources/Bug.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BzAPI/lib/Resources/Bug.pm -------------------------------------------------------------------------------- /extensions/BzAPI/lib/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/BzAPI/lib/Util.pm -------------------------------------------------------------------------------- /extensions/EditComments/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/EditComments/Config.pm -------------------------------------------------------------------------------- /extensions/EditComments/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/EditComments/Extension.pm -------------------------------------------------------------------------------- /extensions/EditTable/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/EditTable/Config.pm -------------------------------------------------------------------------------- /extensions/EditTable/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/EditTable/Extension.pm -------------------------------------------------------------------------------- /extensions/Example/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Example/Config.pm -------------------------------------------------------------------------------- /extensions/Example/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Example/Extension.pm -------------------------------------------------------------------------------- /extensions/Example/disabled: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/Example/lib/Auth/Login.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Example/lib/Auth/Login.pm -------------------------------------------------------------------------------- /extensions/Example/lib/Auth/Verify.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Example/lib/Auth/Verify.pm -------------------------------------------------------------------------------- /extensions/Example/lib/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Example/lib/Config.pm -------------------------------------------------------------------------------- /extensions/Example/lib/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Example/lib/Util.pm -------------------------------------------------------------------------------- /extensions/Example/lib/WebService.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Example/lib/WebService.pm -------------------------------------------------------------------------------- /extensions/FlagTypeComment/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/FlagTypeComment/Config.pm -------------------------------------------------------------------------------- /extensions/GitHubAuth/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/GitHubAuth/Config.pm -------------------------------------------------------------------------------- /extensions/GitHubAuth/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/GitHubAuth/Extension.pm -------------------------------------------------------------------------------- /extensions/GitHubAuth/lib/Client.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/GitHubAuth/lib/Client.pm -------------------------------------------------------------------------------- /extensions/GitHubAuth/lib/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/GitHubAuth/lib/Config.pm -------------------------------------------------------------------------------- /extensions/GitHubAuth/lib/Login.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/GitHubAuth/lib/Login.pm -------------------------------------------------------------------------------- /extensions/GitHubAuth/lib/Verify.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/GitHubAuth/lib/Verify.pm -------------------------------------------------------------------------------- /extensions/Gravatar/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Gravatar/Config.pm -------------------------------------------------------------------------------- /extensions/Gravatar/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Gravatar/Extension.pm -------------------------------------------------------------------------------- /extensions/Gravatar/lib/Data.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Gravatar/lib/Data.pm -------------------------------------------------------------------------------- /extensions/Gravatar/web/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Gravatar/web/default.jpg -------------------------------------------------------------------------------- /extensions/Gravatar/web/multiple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Gravatar/web/multiple.svg -------------------------------------------------------------------------------- /extensions/GuidedBugEntry/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/GuidedBugEntry/Config.pm -------------------------------------------------------------------------------- /extensions/InlineHistory/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/InlineHistory/Config.pm -------------------------------------------------------------------------------- /extensions/InlineHistory/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/InlineHistory/Extension.pm -------------------------------------------------------------------------------- /extensions/InlineHistory/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/InlineHistory/README -------------------------------------------------------------------------------- /extensions/JiraWebhookSync/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/JiraWebhookSync/Config.pm -------------------------------------------------------------------------------- /extensions/JiraWebhookSync/t/sanity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/JiraWebhookSync/t/sanity.t -------------------------------------------------------------------------------- /extensions/LastResolved/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/LastResolved/Config.pm -------------------------------------------------------------------------------- /extensions/LastResolved/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/LastResolved/Extension.pm -------------------------------------------------------------------------------- /extensions/MozChangeField/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/MozChangeField/Config.pm -------------------------------------------------------------------------------- /extensions/MozProjectReview/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/MozProjectReview/Config.pm -------------------------------------------------------------------------------- /extensions/MyDashboard/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/MyDashboard/Config.pm -------------------------------------------------------------------------------- /extensions/MyDashboard/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/MyDashboard/Extension.pm -------------------------------------------------------------------------------- /extensions/MyDashboard/lib/Queries.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/MyDashboard/lib/Queries.pm -------------------------------------------------------------------------------- /extensions/MyDashboard/lib/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/MyDashboard/lib/Util.pm -------------------------------------------------------------------------------- /extensions/Needinfo/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Needinfo/Config.pm -------------------------------------------------------------------------------- /extensions/Needinfo/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Needinfo/Extension.pm -------------------------------------------------------------------------------- /extensions/OpenGraph/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/OpenGraph/Config.pm -------------------------------------------------------------------------------- /extensions/OpenGraph/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/OpenGraph/Extension.pm -------------------------------------------------------------------------------- /extensions/OrangeFactor/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/OrangeFactor/Config.pm -------------------------------------------------------------------------------- /extensions/OrangeFactor/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/OrangeFactor/Extension.pm -------------------------------------------------------------------------------- /extensions/PhabBugz/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/PhabBugz/Config.pm -------------------------------------------------------------------------------- /extensions/PhabBugz/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/PhabBugz/Extension.pm -------------------------------------------------------------------------------- /extensions/PhabBugz/lib/Comment.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/PhabBugz/lib/Comment.pm -------------------------------------------------------------------------------- /extensions/PhabBugz/lib/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/PhabBugz/lib/Config.pm -------------------------------------------------------------------------------- /extensions/PhabBugz/lib/Constants.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/PhabBugz/lib/Constants.pm -------------------------------------------------------------------------------- /extensions/PhabBugz/lib/Daemon.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/PhabBugz/lib/Daemon.pm -------------------------------------------------------------------------------- /extensions/PhabBugz/lib/Feed.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/PhabBugz/lib/Feed.pm -------------------------------------------------------------------------------- /extensions/PhabBugz/lib/Policy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/PhabBugz/lib/Policy.pm -------------------------------------------------------------------------------- /extensions/PhabBugz/lib/Project.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/PhabBugz/lib/Project.pm -------------------------------------------------------------------------------- /extensions/PhabBugz/lib/Repository.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/PhabBugz/lib/Repository.pm -------------------------------------------------------------------------------- /extensions/PhabBugz/lib/Revision.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/PhabBugz/lib/Revision.pm -------------------------------------------------------------------------------- /extensions/PhabBugz/lib/Types.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/PhabBugz/lib/Types.pm -------------------------------------------------------------------------------- /extensions/PhabBugz/lib/User.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/PhabBugz/lib/User.pm -------------------------------------------------------------------------------- /extensions/PhabBugz/lib/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/PhabBugz/lib/Util.pm -------------------------------------------------------------------------------- /extensions/PhabBugz/lib/WebService.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/PhabBugz/lib/WebService.pm -------------------------------------------------------------------------------- /extensions/PhabBugz/t/basic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/PhabBugz/t/basic.t -------------------------------------------------------------------------------- /extensions/ProdCompSearch/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/ProdCompSearch/Config.pm -------------------------------------------------------------------------------- /extensions/Profanivore/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Profanivore/Config.pm -------------------------------------------------------------------------------- /extensions/Profanivore/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Profanivore/Extension.pm -------------------------------------------------------------------------------- /extensions/Profanivore/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Profanivore/README -------------------------------------------------------------------------------- /extensions/Push/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/Config.pm -------------------------------------------------------------------------------- /extensions/Push/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/Extension.pm -------------------------------------------------------------------------------- /extensions/Push/bin/bugzilla-pushd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/bin/bugzilla-pushd.pl -------------------------------------------------------------------------------- /extensions/Push/lib/Admin.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/lib/Admin.pm -------------------------------------------------------------------------------- /extensions/Push/lib/BacklogMessage.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/lib/BacklogMessage.pm -------------------------------------------------------------------------------- /extensions/Push/lib/BacklogQueue.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/lib/BacklogQueue.pm -------------------------------------------------------------------------------- /extensions/Push/lib/Backoff.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/lib/Backoff.pm -------------------------------------------------------------------------------- /extensions/Push/lib/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/lib/Config.pm -------------------------------------------------------------------------------- /extensions/Push/lib/Connector/Base.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/lib/Connector/Base.pm -------------------------------------------------------------------------------- /extensions/Push/lib/Connector/File.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/lib/Connector/File.pm -------------------------------------------------------------------------------- /extensions/Push/lib/Connectors.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/lib/Connectors.pm -------------------------------------------------------------------------------- /extensions/Push/lib/Constants.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/lib/Constants.pm -------------------------------------------------------------------------------- /extensions/Push/lib/Daemon.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/lib/Daemon.pm -------------------------------------------------------------------------------- /extensions/Push/lib/Log.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/lib/Log.pm -------------------------------------------------------------------------------- /extensions/Push/lib/LogEntry.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/lib/LogEntry.pm -------------------------------------------------------------------------------- /extensions/Push/lib/Logger.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/lib/Logger.pm -------------------------------------------------------------------------------- /extensions/Push/lib/Message.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/lib/Message.pm -------------------------------------------------------------------------------- /extensions/Push/lib/Option.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/lib/Option.pm -------------------------------------------------------------------------------- /extensions/Push/lib/Push.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/lib/Push.pm -------------------------------------------------------------------------------- /extensions/Push/lib/Queue.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/lib/Queue.pm -------------------------------------------------------------------------------- /extensions/Push/lib/Serialize.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/lib/Serialize.pm -------------------------------------------------------------------------------- /extensions/Push/lib/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/lib/Util.pm -------------------------------------------------------------------------------- /extensions/Push/web/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/web/admin.css -------------------------------------------------------------------------------- /extensions/Push/web/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Push/web/admin.js -------------------------------------------------------------------------------- /extensions/RequestNagger/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/RequestNagger/Config.pm -------------------------------------------------------------------------------- /extensions/RequestNagger/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/RequestNagger/Extension.pm -------------------------------------------------------------------------------- /extensions/RequestNagger/lib/Bug.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/RequestNagger/lib/Bug.pm -------------------------------------------------------------------------------- /extensions/RestrictComments/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/RestrictComments/Config.pm -------------------------------------------------------------------------------- /extensions/Review/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Review/Config.pm -------------------------------------------------------------------------------- /extensions/Review/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Review/Extension.pm -------------------------------------------------------------------------------- /extensions/Review/lib/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Review/lib/Util.pm -------------------------------------------------------------------------------- /extensions/Review/lib/WebService.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Review/lib/WebService.pm -------------------------------------------------------------------------------- /extensions/Review/web/js/badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Review/web/js/badge.js -------------------------------------------------------------------------------- /extensions/Review/web/js/review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Review/web/js/review.js -------------------------------------------------------------------------------- /extensions/SearchAPI/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/SearchAPI/Config.pm -------------------------------------------------------------------------------- /extensions/SearchAPI/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/SearchAPI/Extension.pm -------------------------------------------------------------------------------- /extensions/SearchAPI/lib/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/SearchAPI/lib/Util.pm -------------------------------------------------------------------------------- /extensions/SearchAPI/t/search_api.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/SearchAPI/t/search_api.t -------------------------------------------------------------------------------- /extensions/SecureMail/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/SecureMail/Config.pm -------------------------------------------------------------------------------- /extensions/SecureMail/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/SecureMail/Extension.pm -------------------------------------------------------------------------------- /extensions/SecureMail/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/SecureMail/README -------------------------------------------------------------------------------- /extensions/SecureMail/bin/tct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/SecureMail/bin/tct -------------------------------------------------------------------------------- /extensions/SecureMail/lib/TCT.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/SecureMail/lib/TCT.pm -------------------------------------------------------------------------------- /extensions/SiteMapIndex/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/SiteMapIndex/Config.pm -------------------------------------------------------------------------------- /extensions/SiteMapIndex/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/SiteMapIndex/Extension.pm -------------------------------------------------------------------------------- /extensions/SiteMapIndex/lib/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/SiteMapIndex/lib/Config.pm -------------------------------------------------------------------------------- /extensions/SiteMapIndex/lib/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/SiteMapIndex/lib/Util.pm -------------------------------------------------------------------------------- /extensions/Splinter/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Splinter/Config.pm -------------------------------------------------------------------------------- /extensions/Splinter/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Splinter/Extension.pm -------------------------------------------------------------------------------- /extensions/Splinter/lib/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Splinter/lib/Config.pm -------------------------------------------------------------------------------- /extensions/Splinter/lib/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Splinter/lib/Util.pm -------------------------------------------------------------------------------- /extensions/Splinter/web/splinter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Splinter/web/splinter.css -------------------------------------------------------------------------------- /extensions/Splinter/web/splinter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Splinter/web/splinter.js -------------------------------------------------------------------------------- /extensions/TagNewUsers/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/TagNewUsers/Config.pm -------------------------------------------------------------------------------- /extensions/TagNewUsers/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/TagNewUsers/Extension.pm -------------------------------------------------------------------------------- /extensions/TrackingFlags/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/TrackingFlags/Config.pm -------------------------------------------------------------------------------- /extensions/TrackingFlags/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/TrackingFlags/Extension.pm -------------------------------------------------------------------------------- /extensions/TrackingFlags/lib/Admin.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/TrackingFlags/lib/Admin.pm -------------------------------------------------------------------------------- /extensions/TrackingFlags/lib/Flag.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/TrackingFlags/lib/Flag.pm -------------------------------------------------------------------------------- /extensions/TypeSniffer/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/TypeSniffer/Config.pm -------------------------------------------------------------------------------- /extensions/TypeSniffer/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/TypeSniffer/Extension.pm -------------------------------------------------------------------------------- /extensions/UserProfile/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/UserProfile/Config.pm -------------------------------------------------------------------------------- /extensions/UserProfile/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/UserProfile/Extension.pm -------------------------------------------------------------------------------- /extensions/UserProfile/bin/migrate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/UserProfile/bin/migrate.pl -------------------------------------------------------------------------------- /extensions/UserProfile/bin/update.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/UserProfile/bin/update.pl -------------------------------------------------------------------------------- /extensions/UserProfile/lib/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/UserProfile/lib/Util.pm -------------------------------------------------------------------------------- /extensions/UserStory/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/UserStory/Config.pm -------------------------------------------------------------------------------- /extensions/UserStory/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/UserStory/Extension.pm -------------------------------------------------------------------------------- /extensions/UserStory/lib/Constants.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/UserStory/lib/Constants.pm -------------------------------------------------------------------------------- /extensions/Voting/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Voting/Config.pm -------------------------------------------------------------------------------- /extensions/Voting/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Voting/Extension.pm -------------------------------------------------------------------------------- /extensions/Voting/lib/Vote.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Voting/lib/Vote.pm -------------------------------------------------------------------------------- /extensions/Voting/web/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Voting/web/style.css -------------------------------------------------------------------------------- /extensions/Webhooks/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Webhooks/Config.pm -------------------------------------------------------------------------------- /extensions/Webhooks/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Webhooks/Extension.pm -------------------------------------------------------------------------------- /extensions/Webhooks/lib/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Webhooks/lib/Config.pm -------------------------------------------------------------------------------- /extensions/Webhooks/lib/Webhook.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/Webhooks/lib/Webhook.pm -------------------------------------------------------------------------------- /extensions/create.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/extensions/create.pl -------------------------------------------------------------------------------- /external_test_api.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/external_test_api.pl -------------------------------------------------------------------------------- /gen-cpanfile.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/gen-cpanfile.pl -------------------------------------------------------------------------------- /github.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/github.cgi -------------------------------------------------------------------------------- /heartbeat.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/heartbeat.cgi -------------------------------------------------------------------------------- /images/buggie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/images/buggie.png -------------------------------------------------------------------------------- /images/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/images/dropdown.png -------------------------------------------------------------------------------- /images/duo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/images/duo.png -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/images/favicon.ico -------------------------------------------------------------------------------- /images/grain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/images/grain.png -------------------------------------------------------------------------------- /images/index/firefox-beta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/images/index/firefox-beta.svg -------------------------------------------------------------------------------- /images/index/firefox-nightly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/images/index/firefox-nightly.svg -------------------------------------------------------------------------------- /images/mfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/images/mfa.png -------------------------------------------------------------------------------- /images/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/images/noise.png -------------------------------------------------------------------------------- /images/padlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/images/padlock.png -------------------------------------------------------------------------------- /images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/images/throbber.gif -------------------------------------------------------------------------------- /importxml.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/importxml.pl -------------------------------------------------------------------------------- /index.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/index.cgi -------------------------------------------------------------------------------- /jobqueue-worker.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/jobqueue-worker.pl -------------------------------------------------------------------------------- /jobqueue.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/jobqueue.pl -------------------------------------------------------------------------------- /js/TUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/TUI.js -------------------------------------------------------------------------------- /js/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/account.js -------------------------------------------------------------------------------- /js/advanced-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/advanced-search.js -------------------------------------------------------------------------------- /js/attachment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/attachment.js -------------------------------------------------------------------------------- /js/bug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/bug.js -------------------------------------------------------------------------------- /js/buglist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/buglist.js -------------------------------------------------------------------------------- /js/bugzilla-readable-status-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/bugzilla-readable-status-min.js -------------------------------------------------------------------------------- /js/change-columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/change-columns.js -------------------------------------------------------------------------------- /js/comment-tagging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/comment-tagging.js -------------------------------------------------------------------------------- /js/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/comments.js -------------------------------------------------------------------------------- /js/consent-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/consent-settings.js -------------------------------------------------------------------------------- /js/consent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/consent.js -------------------------------------------------------------------------------- /js/cookie-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/cookie-helper.js -------------------------------------------------------------------------------- /js/create_bug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/create_bug.js -------------------------------------------------------------------------------- /js/data-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/data-table.js -------------------------------------------------------------------------------- /js/dependency-tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/dependency-tree.js -------------------------------------------------------------------------------- /js/duo-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/duo-min.js -------------------------------------------------------------------------------- /js/field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/field.js -------------------------------------------------------------------------------- /js/flag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/flag.js -------------------------------------------------------------------------------- /js/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/global.js -------------------------------------------------------------------------------- /js/instant-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/instant-search.js -------------------------------------------------------------------------------- /js/jquery/jquery-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/jquery/jquery-min.js -------------------------------------------------------------------------------- /js/jquery/ui/jquery-ui-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/jquery/ui/jquery-ui-min.css -------------------------------------------------------------------------------- /js/jquery/ui/jquery-ui-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/jquery/ui/jquery-ui-min.js -------------------------------------------------------------------------------- /js/jquery/ui/jquery-ui-theme-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/jquery/ui/jquery-ui-theme-min.css -------------------------------------------------------------------------------- /js/lib/md5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/lib/md5.min.js -------------------------------------------------------------------------------- /js/lib/mermaid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/lib/mermaid.min.js -------------------------------------------------------------------------------- /js/lib/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/lib/prism.js -------------------------------------------------------------------------------- /js/mfa_totp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/mfa_totp.js -------------------------------------------------------------------------------- /js/params.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/params.js -------------------------------------------------------------------------------- /js/productform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/productform.js -------------------------------------------------------------------------------- /js/text-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/text-editor.js -------------------------------------------------------------------------------- /js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/util.js -------------------------------------------------------------------------------- /js/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/js/widgets.js -------------------------------------------------------------------------------- /jsonrpc.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/jsonrpc.cgi -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/lib/README -------------------------------------------------------------------------------- /long_list.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/long_list.cgi -------------------------------------------------------------------------------- /migrate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/migrate.pl -------------------------------------------------------------------------------- /oauth2.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/oauth2.cgi -------------------------------------------------------------------------------- /page.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/page.cgi -------------------------------------------------------------------------------- /patches/mojolicious-1279.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/patches/mojolicious-1279.patch -------------------------------------------------------------------------------- /post_bug.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/post_bug.cgi -------------------------------------------------------------------------------- /process_bug.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/process_bug.cgi -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /qa/config/generate_test_data.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/config/generate_test_data.pl -------------------------------------------------------------------------------- /qa/config/patch.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/config/patch.diff -------------------------------------------------------------------------------- /qa/config/selenium_test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/config/selenium_test.conf -------------------------------------------------------------------------------- /qa/extensions/QA/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/extensions/QA/Config.pm -------------------------------------------------------------------------------- /qa/extensions/QA/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/extensions/QA/Extension.pm -------------------------------------------------------------------------------- /qa/extensions/QA/lib/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/extensions/QA/lib/Util.pm -------------------------------------------------------------------------------- /qa/t/1_test_attention.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/1_test_attention.t -------------------------------------------------------------------------------- /qa/t/1_test_bmo_autolinkification.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/1_test_bmo_autolinkification.t -------------------------------------------------------------------------------- /qa/t/1_test_bmo_enter_new_bug.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/1_test_bmo_enter_new_bug.t -------------------------------------------------------------------------------- /qa/t/1_test_bmo_retire_values.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/1_test_bmo_retire_values.t -------------------------------------------------------------------------------- /qa/t/1_test_bug_edit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/1_test_bug_edit.t -------------------------------------------------------------------------------- /qa/t/1_test_choose_priority.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/1_test_choose_priority.t -------------------------------------------------------------------------------- /qa/t/1_test_classifications.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/1_test_classifications.t -------------------------------------------------------------------------------- /qa/t/1_test_config.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/1_test_config.t -------------------------------------------------------------------------------- /qa/t/1_test_cookie_consent.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/1_test_cookie_consent.t -------------------------------------------------------------------------------- /qa/t/1_test_create_user_accounts.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/1_test_create_user_accounts.t -------------------------------------------------------------------------------- /qa/t/1_test_custom_fields.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/1_test_custom_fields.t -------------------------------------------------------------------------------- /qa/t/1_test_custom_fields_admin.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/1_test_custom_fields_admin.t -------------------------------------------------------------------------------- /qa/t/1_test_duo_requirement.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/1_test_duo_requirement.t -------------------------------------------------------------------------------- /qa/t/2_test_default_groups.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/2_test_default_groups.t -------------------------------------------------------------------------------- /qa/t/2_test_dependencies.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/2_test_dependencies.t -------------------------------------------------------------------------------- /qa/t/2_test_enter_new_bug.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/2_test_enter_new_bug.t -------------------------------------------------------------------------------- /qa/t/2_test_flags.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/2_test_flags.t -------------------------------------------------------------------------------- /qa/t/2_test_flags2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/2_test_flags2.t -------------------------------------------------------------------------------- /qa/t/2_test_groups.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/2_test_groups.t -------------------------------------------------------------------------------- /qa/t/2_test_keywords.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/2_test_keywords.t -------------------------------------------------------------------------------- /qa/t/2_test_lockout.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/2_test_lockout.t -------------------------------------------------------------------------------- /qa/t/2_test_login.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/2_test_login.t -------------------------------------------------------------------------------- /qa/t/2_test_login_duo.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/2_test_login_duo.t -------------------------------------------------------------------------------- /qa/t/2_test_login_totp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/2_test_login_totp.t -------------------------------------------------------------------------------- /qa/t/2_test_milestones.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/2_test_milestones.t -------------------------------------------------------------------------------- /qa/t/3_test_component_graveyard.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/3_test_component_graveyard.t -------------------------------------------------------------------------------- /qa/t/3_test_net_attachments.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/3_test_net_attachments.t -------------------------------------------------------------------------------- /qa/t/3_test_new_release.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/3_test_new_release.t -------------------------------------------------------------------------------- /qa/t/3_test_private_attachments.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/3_test_private_attachments.t -------------------------------------------------------------------------------- /qa/t/3_test_qa_contact.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/3_test_qa_contact.t -------------------------------------------------------------------------------- /qa/t/3_test_rate_limit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/3_test_rate_limit.t -------------------------------------------------------------------------------- /qa/t/3_test_reminders.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/3_test_reminders.t -------------------------------------------------------------------------------- /qa/t/3_test_require_login.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/3_test_require_login.t -------------------------------------------------------------------------------- /qa/t/3_test_sanity_check.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/3_test_sanity_check.t -------------------------------------------------------------------------------- /qa/t/3_test_saved_searches.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/3_test_saved_searches.t -------------------------------------------------------------------------------- /qa/t/3_test_search.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/3_test_search.t -------------------------------------------------------------------------------- /qa/t/3_test_security.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/3_test_security.t -------------------------------------------------------------------------------- /qa/t/3_test_see_also.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/3_test_see_also.t -------------------------------------------------------------------------------- /qa/t/4_test_shared_searches.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/4_test_shared_searches.t -------------------------------------------------------------------------------- /qa/t/4_test_show_all_products.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/4_test_show_all_products.t -------------------------------------------------------------------------------- /qa/t/4_test_status_whiteboard.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/4_test_status_whiteboard.t -------------------------------------------------------------------------------- /qa/t/4_test_sudo_sessions.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/4_test_sudo_sessions.t -------------------------------------------------------------------------------- /qa/t/4_test_target_milestones.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/4_test_target_milestones.t -------------------------------------------------------------------------------- /qa/t/4_test_time_summary.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/4_test_time_summary.t -------------------------------------------------------------------------------- /qa/t/4_test_user_groups.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/4_test_user_groups.t -------------------------------------------------------------------------------- /qa/t/4_test_user_matching.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/4_test_user_matching.t -------------------------------------------------------------------------------- /qa/t/4_test_user_preferences.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/4_test_user_preferences.t -------------------------------------------------------------------------------- /qa/t/4_test_user_privs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/4_test_user_privs.t -------------------------------------------------------------------------------- /qa/t/4_test_votes.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/4_test_votes.t -------------------------------------------------------------------------------- /qa/t/4_test_webhooks.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/4_test_webhooks.t -------------------------------------------------------------------------------- /qa/t/lib/QA/REST.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/lib/QA/REST.pm -------------------------------------------------------------------------------- /qa/t/lib/QA/RPC.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/lib/QA/RPC.pm -------------------------------------------------------------------------------- /qa/t/lib/QA/RPC/JSONRPC.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/lib/QA/RPC/JSONRPC.pm -------------------------------------------------------------------------------- /qa/t/lib/QA/RPC/XMLRPC.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/lib/QA/RPC/XMLRPC.pm -------------------------------------------------------------------------------- /qa/t/lib/QA/Tests.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/lib/QA/Tests.pm -------------------------------------------------------------------------------- /qa/t/lib/QA/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/lib/QA/Util.pm -------------------------------------------------------------------------------- /qa/t/rest_bug.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/rest_bug.t -------------------------------------------------------------------------------- /qa/t/rest_bugzilla.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/rest_bugzilla.t -------------------------------------------------------------------------------- /qa/t/rest_classification.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/rest_classification.t -------------------------------------------------------------------------------- /qa/t/rest_components.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/rest_components.t -------------------------------------------------------------------------------- /qa/t/rest_github_pull_request.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/rest_github_pull_request.t -------------------------------------------------------------------------------- /qa/t/rest_github_push_comment.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/rest_github_push_comment.t -------------------------------------------------------------------------------- /qa/t/rest_group_get.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/rest_group_get.t -------------------------------------------------------------------------------- /qa/t/rest_lando_uplift.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/rest_lando_uplift.t -------------------------------------------------------------------------------- /qa/t/rest_last_change_time_non_bot.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/rest_last_change_time_non_bot.t -------------------------------------------------------------------------------- /qa/t/rest_pulsebot.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/rest_pulsebot.t -------------------------------------------------------------------------------- /qa/t/rest_relationship_trees.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/rest_relationship_trees.t -------------------------------------------------------------------------------- /qa/t/rest_reminders.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/rest_reminders.t -------------------------------------------------------------------------------- /qa/t/rest_search_api.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/rest_search_api.t -------------------------------------------------------------------------------- /qa/t/rest_see_also.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/rest_see_also.t -------------------------------------------------------------------------------- /qa/t/rest_triage_owners.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/rest_triage_owners.t -------------------------------------------------------------------------------- /qa/t/selenium_server_start.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/selenium_server_start.t -------------------------------------------------------------------------------- /qa/t/selenium_server_stop.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/selenium_server_stop.t -------------------------------------------------------------------------------- /qa/t/webservice_bug_add_attachment.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_bug_add_attachment.t -------------------------------------------------------------------------------- /qa/t/webservice_bug_add_comment.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_bug_add_comment.t -------------------------------------------------------------------------------- /qa/t/webservice_bug_attachments.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_bug_attachments.t -------------------------------------------------------------------------------- /qa/t/webservice_bug_comments.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_bug_comments.t -------------------------------------------------------------------------------- /qa/t/webservice_bug_create.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_bug_create.t -------------------------------------------------------------------------------- /qa/t/webservice_bug_fields.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_bug_fields.t -------------------------------------------------------------------------------- /qa/t/webservice_bug_get.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_bug_get.t -------------------------------------------------------------------------------- /qa/t/webservice_bug_get_bugs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_bug_get_bugs.t -------------------------------------------------------------------------------- /qa/t/webservice_bug_history.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_bug_history.t -------------------------------------------------------------------------------- /qa/t/webservice_bug_legal_values.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_bug_legal_values.t -------------------------------------------------------------------------------- /qa/t/webservice_bug_search.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_bug_search.t -------------------------------------------------------------------------------- /qa/t/webservice_bug_update.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_bug_update.t -------------------------------------------------------------------------------- /qa/t/webservice_bug_update_see_also.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_bug_update_see_also.t -------------------------------------------------------------------------------- /qa/t/webservice_bugzilla.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_bugzilla.t -------------------------------------------------------------------------------- /qa/t/webservice_group_create.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_group_create.t -------------------------------------------------------------------------------- /qa/t/webservice_jsonp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_jsonp.t -------------------------------------------------------------------------------- /qa/t/webservice_product.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_product.t -------------------------------------------------------------------------------- /qa/t/webservice_product_create.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_product_create.t -------------------------------------------------------------------------------- /qa/t/webservice_product_get.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_product_get.t -------------------------------------------------------------------------------- /qa/t/webservice_user_create.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_user_create.t -------------------------------------------------------------------------------- /qa/t/webservice_user_get.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_user_get.t -------------------------------------------------------------------------------- /qa/t/webservice_user_login_logout.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/qa/t/webservice_user_login_logout.t -------------------------------------------------------------------------------- /query.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/query.cgi -------------------------------------------------------------------------------- /quips.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/quips.cgi -------------------------------------------------------------------------------- /relogin.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/relogin.cgi -------------------------------------------------------------------------------- /report.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/report.cgi -------------------------------------------------------------------------------- /reports.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/reports.cgi -------------------------------------------------------------------------------- /request.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/request.cgi -------------------------------------------------------------------------------- /reset_password.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/reset_password.cgi -------------------------------------------------------------------------------- /rest.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/rest.cgi -------------------------------------------------------------------------------- /robots.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/robots.cgi -------------------------------------------------------------------------------- /runtests.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/runtests.pl -------------------------------------------------------------------------------- /sanitycheck.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/sanitycheck.cgi -------------------------------------------------------------------------------- /sanitycheck.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/sanitycheck.pl -------------------------------------------------------------------------------- /scripts/1298978.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/1298978.pl -------------------------------------------------------------------------------- /scripts/addcustomfield.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/addcustomfield.pl -------------------------------------------------------------------------------- /scripts/attachment-data.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/attachment-data.pl -------------------------------------------------------------------------------- /scripts/block-ip.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/block-ip.pl -------------------------------------------------------------------------------- /scripts/bloomfilter-populate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/bloomfilter-populate.pl -------------------------------------------------------------------------------- /scripts/bug1749479.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/bug1749479.pl -------------------------------------------------------------------------------- /scripts/bug1763003.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/bug1763003.pl -------------------------------------------------------------------------------- /scripts/bug1764246.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/bug1764246.pl -------------------------------------------------------------------------------- /scripts/bug1789259.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/bug1789259.pl -------------------------------------------------------------------------------- /scripts/bug1799913.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/bug1799913.pl -------------------------------------------------------------------------------- /scripts/bug1829061.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/bug1829061.pl -------------------------------------------------------------------------------- /scripts/bug1835092.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/bug1835092.pl -------------------------------------------------------------------------------- /scripts/bug1926081.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/bug1926081.pl -------------------------------------------------------------------------------- /scripts/bug_1642654.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/bug_1642654.pl -------------------------------------------------------------------------------- /scripts/bugzilla-queue.rhel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/bugzilla-queue.rhel -------------------------------------------------------------------------------- /scripts/build-bmo-push-data.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/build-bmo-push-data.pl -------------------------------------------------------------------------------- /scripts/c9-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/c9-build -------------------------------------------------------------------------------- /scripts/c9-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/c9-install -------------------------------------------------------------------------------- /scripts/cereal.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/cereal.pl -------------------------------------------------------------------------------- /scripts/clear-memcached.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/clear-memcached.pl -------------------------------------------------------------------------------- /scripts/clear-templates.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/clear-templates.pl -------------------------------------------------------------------------------- /scripts/convert_datetime.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/convert_datetime.pl -------------------------------------------------------------------------------- /scripts/cpanfile_fixed_versions.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/cpanfile_fixed_versions.pl -------------------------------------------------------------------------------- /scripts/create_app_id.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/create_app_id.pl -------------------------------------------------------------------------------- /scripts/delete_comments_csv.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/delete_comments_csv.pl -------------------------------------------------------------------------------- /scripts/disable-stale-users.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/disable-stale-users.pl -------------------------------------------------------------------------------- /scripts/eject-users-from-groups.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/eject-users-from-groups.pl -------------------------------------------------------------------------------- /scripts/entrypoint.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/entrypoint.pl -------------------------------------------------------------------------------- /scripts/fix-attachment-sizes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/fix-attachment-sizes.pl -------------------------------------------------------------------------------- /scripts/fixgroupqueries.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/fixgroupqueries.pl -------------------------------------------------------------------------------- /scripts/fixperms.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/fixperms.pl -------------------------------------------------------------------------------- /scripts/fixqueries.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/fixqueries.pl -------------------------------------------------------------------------------- /scripts/generate_bmo_data.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/generate_bmo_data.pl -------------------------------------------------------------------------------- /scripts/generate_conduit_data.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/generate_conduit_data.pl -------------------------------------------------------------------------------- /scripts/group-set-members.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/group-set-members.pl -------------------------------------------------------------------------------- /scripts/import_email.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/import_email.pl -------------------------------------------------------------------------------- /scripts/issue-api-key.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/issue-api-key.pl -------------------------------------------------------------------------------- /scripts/localconfig-as-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/localconfig-as-json -------------------------------------------------------------------------------- /scripts/merge-users.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/merge-users.pl -------------------------------------------------------------------------------- /scripts/migrate-attachments.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/migrate-attachments.pl -------------------------------------------------------------------------------- /scripts/migrate-cab-review.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/migrate-cab-review.pl -------------------------------------------------------------------------------- /scripts/migrate-component-teams.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/migrate-component-teams.pl -------------------------------------------------------------------------------- /scripts/migrate-mining-s3.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/migrate-mining-s3.pl -------------------------------------------------------------------------------- /scripts/migrate_whiteboard_keyword.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/migrate_whiteboard_keyword.pl -------------------------------------------------------------------------------- /scripts/move_os.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/move_os.pl -------------------------------------------------------------------------------- /scripts/movebugs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/movebugs.pl -------------------------------------------------------------------------------- /scripts/movecomponent-1565636.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/movecomponent-1565636.pl -------------------------------------------------------------------------------- /scripts/movecomponent.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/movecomponent.pl -------------------------------------------------------------------------------- /scripts/nagios_blocker_checker.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/nagios_blocker_checker.pl -------------------------------------------------------------------------------- /scripts/nagios_push_checker.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/nagios_push_checker.pl -------------------------------------------------------------------------------- /scripts/nuke-bugs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/nuke-bugs.pl -------------------------------------------------------------------------------- /scripts/perl-fmt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/perl-fmt.pl -------------------------------------------------------------------------------- /scripts/reassign_open_bugs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/reassign_open_bugs.pl -------------------------------------------------------------------------------- /scripts/reminders.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/reminders.pl -------------------------------------------------------------------------------- /scripts/remove-non-public-data.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/remove-non-public-data.pl -------------------------------------------------------------------------------- /scripts/remove_idle_group_members.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/remove_idle_group_members.pl -------------------------------------------------------------------------------- /scripts/reset_default_user.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/reset_default_user.pl -------------------------------------------------------------------------------- /scripts/resolve_bugs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/resolve_bugs.pl -------------------------------------------------------------------------------- /scripts/sanitizeme.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/sanitizeme.pl -------------------------------------------------------------------------------- /scripts/secbugsreport.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/secbugsreport.pl -------------------------------------------------------------------------------- /scripts/security_remove.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/security_remove.pl -------------------------------------------------------------------------------- /scripts/sendmail.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/sendmail.pl -------------------------------------------------------------------------------- /scripts/sendunsentbugmail.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/sendunsentbugmail.pl -------------------------------------------------------------------------------- /scripts/start_morbo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/start_morbo.pl -------------------------------------------------------------------------------- /scripts/syncflags.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/syncflags.pl -------------------------------------------------------------------------------- /scripts/syncmsandversions.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/syncmsandversions.pl -------------------------------------------------------------------------------- /scripts/triage_owners_csv.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/triage_owners_csv.pl -------------------------------------------------------------------------------- /scripts/undo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/undo.pl -------------------------------------------------------------------------------- /scripts/update-bug-groups.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/update-bug-groups.pl -------------------------------------------------------------------------------- /scripts/update-crash-signatures.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/update-crash-signatures.pl -------------------------------------------------------------------------------- /scripts/update_localconfig.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/update_localconfig.pl -------------------------------------------------------------------------------- /scripts/update_params.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/update_params.pl -------------------------------------------------------------------------------- /scripts/user-prefs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/scripts/user-prefs.pl -------------------------------------------------------------------------------- /search_plugin.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/search_plugin.cgi -------------------------------------------------------------------------------- /show_activity.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/show_activity.cgi -------------------------------------------------------------------------------- /show_bug.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/show_bug.cgi -------------------------------------------------------------------------------- /showattachment.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/showattachment.cgi -------------------------------------------------------------------------------- /showdependencygraph.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/showdependencygraph.cgi -------------------------------------------------------------------------------- /showdependencytree.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/showdependencytree.cgi -------------------------------------------------------------------------------- /skins/lib/fontawesome-brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/lib/fontawesome-brands.min.css -------------------------------------------------------------------------------- /skins/lib/fontawesome-solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/lib/fontawesome-solid.min.css -------------------------------------------------------------------------------- /skins/lib/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/lib/fontawesome.min.css -------------------------------------------------------------------------------- /skins/lib/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/lib/prism.css -------------------------------------------------------------------------------- /skins/standard/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/admin.css -------------------------------------------------------------------------------- /skins/standard/advanced-search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/advanced-search.css -------------------------------------------------------------------------------- /skins/standard/attachment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/attachment.css -------------------------------------------------------------------------------- /skins/standard/buglist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/buglist.css -------------------------------------------------------------------------------- /skins/standard/consent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/consent.css -------------------------------------------------------------------------------- /skins/standard/create_bug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/create_bug.css -------------------------------------------------------------------------------- /skins/standard/dependency-tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/dependency-tree.css -------------------------------------------------------------------------------- /skins/standard/describecomponents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/describecomponents.css -------------------------------------------------------------------------------- /skins/standard/duplicates.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/duplicates.css -------------------------------------------------------------------------------- /skins/standard/editusers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/editusers.css -------------------------------------------------------------------------------- /skins/standard/enter_bug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/enter_bug.css -------------------------------------------------------------------------------- /skins/standard/fonts/FirefoxEmoji.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/fonts/FirefoxEmoji.ttf -------------------------------------------------------------------------------- /skins/standard/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/global.css -------------------------------------------------------------------------------- /skins/standard/global/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/global/calendar.png -------------------------------------------------------------------------------- /skins/standard/guided.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/guided.css -------------------------------------------------------------------------------- /skins/standard/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/index.css -------------------------------------------------------------------------------- /skins/standard/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/login.css -------------------------------------------------------------------------------- /skins/standard/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/page.css -------------------------------------------------------------------------------- /skins/standard/params.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/params.css -------------------------------------------------------------------------------- /skins/standard/search_form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/search_form.css -------------------------------------------------------------------------------- /skins/standard/show_bug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/show_bug.css -------------------------------------------------------------------------------- /skins/standard/show_multiple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/show_multiple.css -------------------------------------------------------------------------------- /skins/standard/summarize-time.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/summarize-time.css -------------------------------------------------------------------------------- /skins/standard/text-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/standard/text-editor.css -------------------------------------------------------------------------------- /skins/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /skins/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /skins/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /skins/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/skins/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /summarize_time.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/summarize_time.cgi -------------------------------------------------------------------------------- /t/.perlcritic-history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/.perlcritic-history -------------------------------------------------------------------------------- /t/001compile.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/001compile.t -------------------------------------------------------------------------------- /t/002goodperl.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/002goodperl.t -------------------------------------------------------------------------------- /t/004template.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/004template.t -------------------------------------------------------------------------------- /t/005whitespace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/005whitespace.t -------------------------------------------------------------------------------- /t/006spellcheck.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/006spellcheck.t -------------------------------------------------------------------------------- /t/007util.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/007util.t -------------------------------------------------------------------------------- /t/008filter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/008filter.t -------------------------------------------------------------------------------- /t/009bugwords.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/009bugwords.t -------------------------------------------------------------------------------- /t/010dependencies.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/010dependencies.t -------------------------------------------------------------------------------- /t/011pod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/011pod.t -------------------------------------------------------------------------------- /t/012throwables.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/012throwables.t -------------------------------------------------------------------------------- /t/901-secure-mail-loop.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/901-secure-mail-loop.t -------------------------------------------------------------------------------- /t/902-crypt-openpgp-random.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/902-crypt-openpgp-random.t -------------------------------------------------------------------------------- /t/Support/Files.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/Support/Files.pm -------------------------------------------------------------------------------- /t/Support/Systemexec.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/Support/Systemexec.pm -------------------------------------------------------------------------------- /t/Support/Templates.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/Support/Templates.pm -------------------------------------------------------------------------------- /t/bmo/bounced-emails.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/bmo/bounced-emails.t -------------------------------------------------------------------------------- /t/bmo/comments.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/bmo/comments.t -------------------------------------------------------------------------------- /t/bmo/net_storage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/bmo/net_storage.t -------------------------------------------------------------------------------- /t/bmo/oauth2-client.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/bmo/oauth2-client.t -------------------------------------------------------------------------------- /t/bmo/passwords.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/bmo/passwords.t -------------------------------------------------------------------------------- /t/critic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/critic.t -------------------------------------------------------------------------------- /t/css.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/css.t -------------------------------------------------------------------------------- /t/daemon-control-catch-signal.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/daemon-control-catch-signal.t -------------------------------------------------------------------------------- /t/db-error-cleanup.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/db-error-cleanup.pl -------------------------------------------------------------------------------- /t/docker.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/docker.t -------------------------------------------------------------------------------- /t/duo_client.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/duo_client.t -------------------------------------------------------------------------------- /t/extract-nicks.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/extract-nicks.t -------------------------------------------------------------------------------- /t/hash-sig.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/hash-sig.t -------------------------------------------------------------------------------- /t/markdown.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/markdown.t -------------------------------------------------------------------------------- /t/migrate-params.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/migrate-params.t -------------------------------------------------------------------------------- /t/mock-db.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/mock-db.t -------------------------------------------------------------------------------- /t/mock-params.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/mock-params.t -------------------------------------------------------------------------------- /t/mojo-example.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/mojo-example.t -------------------------------------------------------------------------------- /t/mojo-oauth2-provider.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/mojo-oauth2-provider.t -------------------------------------------------------------------------------- /t/quicksearch.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/quicksearch.t -------------------------------------------------------------------------------- /t/report-graph.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/report-graph.t -------------------------------------------------------------------------------- /t/security-risk.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/security-risk.t -------------------------------------------------------------------------------- /t/sqlite-memory.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/sqlite-memory.t -------------------------------------------------------------------------------- /t/wants.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/t/wants.t -------------------------------------------------------------------------------- /template/en/default/bug/show.xml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/template/en/default/bug/show.xml.tmpl -------------------------------------------------------------------------------- /template/en/default/config.js.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/template/en/default/config.js.tmpl -------------------------------------------------------------------------------- /template/en/default/config.rdf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/template/en/default/config.rdf.tmpl -------------------------------------------------------------------------------- /template/en/default/index.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/template/en/default/index.html.tmpl -------------------------------------------------------------------------------- /template/en/default/robots.txt.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/template/en/default/robots.txt.tmpl -------------------------------------------------------------------------------- /testserver.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/testserver.pl -------------------------------------------------------------------------------- /token.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/token.cgi -------------------------------------------------------------------------------- /userprefs.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/userprefs.cgi -------------------------------------------------------------------------------- /view_job_queue.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/view_job_queue.cgi -------------------------------------------------------------------------------- /votes.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/votes.cgi -------------------------------------------------------------------------------- /whine.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/whine.pl -------------------------------------------------------------------------------- /whineatnews.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/whineatnews.pl -------------------------------------------------------------------------------- /xml.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/xml.cgi -------------------------------------------------------------------------------- /xmlrpc.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/xmlrpc.cgi -------------------------------------------------------------------------------- /xt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/xt/README -------------------------------------------------------------------------------- /xt/lib/Bugzilla/Test/Search.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/xt/lib/Bugzilla/Test/Search.pm -------------------------------------------------------------------------------- /xt/lib/Bugzilla/Test/Search/OrTest.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/xt/lib/Bugzilla/Test/Search/OrTest.pm -------------------------------------------------------------------------------- /xt/search.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-bteam/bmo/HEAD/xt/search.t --------------------------------------------------------------------------------