├── .dockerignore ├── .editorconfig ├── .github ├── FUNDING.yml ├── checksetup_answers.txt ├── cpm │ ├── bin │ │ └── cpm │ └── lib │ │ └── perl5 │ │ ├── App │ │ ├── cpm.pm │ │ └── cpm │ │ │ ├── CLI.pm │ │ │ ├── CircularDependency.pm │ │ │ ├── DistNotation.pm │ │ │ ├── Distribution.pm │ │ │ ├── HTTP.pm │ │ │ ├── Installer │ │ │ └── Unpacker.pm │ │ │ ├── Job.pm │ │ │ ├── Logger.pm │ │ │ ├── Logger │ │ │ └── File.pm │ │ │ ├── Master.pm │ │ │ ├── Requirement.pm │ │ │ ├── Resolver.pm │ │ │ ├── Resolver │ │ │ ├── 02Packages.pm │ │ │ ├── CPANfile.pm │ │ │ ├── Cascade.pm │ │ │ ├── MetaCPAN.pm │ │ │ ├── MetaDB.pm │ │ │ └── Snapshot.pm │ │ │ ├── Tutorial.pm │ │ │ ├── Util.pm │ │ │ ├── Worker.pm │ │ │ ├── Worker │ │ │ ├── Installer.pm │ │ │ ├── Installer │ │ │ │ ├── Menlo.pm │ │ │ │ └── Prebuilt.pm │ │ │ └── Resolver.pm │ │ │ └── version.pm │ │ ├── CPAN │ │ ├── Common │ │ │ ├── Index.pm │ │ │ └── Index │ │ │ │ ├── LocalPackage.pm │ │ │ │ ├── MetaDB.pm │ │ │ │ ├── Mirror.pm │ │ │ │ └── Mux │ │ │ │ └── Ordered.pm │ │ ├── DistnameInfo.pm │ │ └── Meta │ │ │ └── Check.pm │ │ ├── Capture │ │ └── Tiny.pm │ │ ├── Carton.pm │ │ ├── Carton │ │ ├── Builder.pm │ │ ├── CLI.pm │ │ ├── CPANfile.pm │ │ ├── Dependency.pm │ │ ├── Dist.pm │ │ ├── Dist │ │ │ └── Core.pm │ │ ├── Environment.pm │ │ ├── Error.pm │ │ ├── Index.pm │ │ ├── Mirror.pm │ │ ├── Package.pm │ │ ├── Packer.pm │ │ ├── Snapshot.pm │ │ ├── Snapshot │ │ │ ├── Emitter.pm │ │ │ └── Parser.pm │ │ ├── Tree.pm │ │ └── Util.pm │ │ ├── Class │ │ └── Tiny.pm │ │ ├── Command │ │ ├── Runner.pm │ │ └── Runner │ │ │ ├── Format.pm │ │ │ ├── LineBuffer.pm │ │ │ └── Quote.pm │ │ ├── ExtUtils │ │ ├── Config.pm │ │ ├── Helpers.pm │ │ ├── Helpers │ │ │ ├── Unix.pm │ │ │ ├── VMS.pm │ │ │ └── Windows.pm │ │ ├── InstallPaths.pm │ │ └── MakeMaker │ │ │ └── CPANfile.pm │ │ ├── File │ │ ├── Copy │ │ │ └── Recursive.pm │ │ ├── Which.pm │ │ └── pushd.pm │ │ ├── HTTP │ │ ├── Tinyish.pm │ │ └── Tinyish │ │ │ ├── Base.pm │ │ │ ├── Curl.pm │ │ │ ├── HTTPTiny.pm │ │ │ ├── LWP.pm │ │ │ └── Wget.pm │ │ ├── IPC │ │ ├── Run3.pm │ │ └── Run3 │ │ │ ├── ProfArrayBuffer.pm │ │ │ ├── ProfLogReader.pm │ │ │ ├── ProfLogger.pm │ │ │ ├── ProfPP.pm │ │ │ └── ProfReporter.pm │ │ ├── Menlo.pm │ │ ├── Menlo │ │ ├── Builder │ │ │ └── Static.pm │ │ ├── CLI │ │ │ └── Compat.pm │ │ ├── Dependency.pm │ │ ├── Index │ │ │ ├── MetaCPAN.pm │ │ │ ├── MetaDB.pm │ │ │ └── Mirror.pm │ │ ├── Legacy.pm │ │ └── Util.pm │ │ ├── Module │ │ ├── Build │ │ │ └── Tiny.pm │ │ ├── CPANfile.pm │ │ └── CPANfile │ │ │ ├── Environment.pm │ │ │ ├── Prereq.pm │ │ │ ├── Prereqs.pm │ │ │ └── Requirement.pm │ │ ├── Parallel │ │ └── Pipes.pm │ │ ├── Parse │ │ └── PMFile.pm │ │ ├── Path │ │ └── Tiny.pm │ │ ├── String │ │ └── ShellQuote.pm │ │ ├── Tie │ │ └── Handle │ │ │ ├── Offset.pm │ │ │ └── SkipHeader.pm │ │ ├── Try │ │ └── Tiny.pm │ │ ├── URI.pm │ │ ├── URI │ │ ├── Escape.pm │ │ ├── Heuristic.pm │ │ ├── IRI.pm │ │ ├── QueryParam.pm │ │ ├── Split.pm │ │ ├── URL.pm │ │ ├── WithBase.pm │ │ ├── _foreign.pm │ │ ├── _generic.pm │ │ ├── _idna.pm │ │ ├── _ldap.pm │ │ ├── _login.pm │ │ ├── _punycode.pm │ │ ├── _query.pm │ │ ├── _segment.pm │ │ ├── _server.pm │ │ ├── _userpass.pm │ │ ├── data.pm │ │ ├── file.pm │ │ ├── file │ │ │ ├── Base.pm │ │ │ ├── FAT.pm │ │ │ ├── Mac.pm │ │ │ ├── OS2.pm │ │ │ ├── QNX.pm │ │ │ ├── Unix.pm │ │ │ └── Win32.pm │ │ ├── ftp.pm │ │ ├── gopher.pm │ │ ├── http.pm │ │ ├── https.pm │ │ ├── ldap.pm │ │ ├── ldapi.pm │ │ ├── ldaps.pm │ │ ├── mailto.pm │ │ ├── mms.pm │ │ ├── news.pm │ │ ├── nntp.pm │ │ ├── pop.pm │ │ ├── rlogin.pm │ │ ├── rsync.pm │ │ ├── rtsp.pm │ │ ├── rtspu.pm │ │ ├── sftp.pm │ │ ├── sip.pm │ │ ├── sips.pm │ │ ├── snews.pm │ │ ├── ssh.pm │ │ ├── telnet.pm │ │ ├── tn3270.pm │ │ ├── urn.pm │ │ └── urn │ │ │ ├── isbn.pm │ │ │ └── oid.pm │ │ ├── Win32 │ │ └── ShellQuote.pm │ │ ├── lib │ │ └── core │ │ │ └── only.pm │ │ └── local │ │ └── lib.pm ├── pull_request_template.md ├── selenium_test.conf └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .mailmap ├── .perlcriticrc ├── .perltidyrc ├── .readthedocs.yaml ├── .vscode ├── bmo.code-snippets ├── settings.json └── tasks.json ├── Bugzilla.pm ├── Bugzilla ├── App.pm ├── App │ ├── API.pm │ ├── BouncedEmails.pm │ ├── CGI.pm │ ├── Command │ │ ├── move_flag_types.pm │ │ ├── report_ping.pm │ │ └── revoke_api_keys.pm │ ├── Main.pm │ ├── OAuth2 │ │ └── Clients.pm │ ├── Plugin │ │ ├── BlockIP.pm │ │ ├── Glue.pm │ │ ├── Helpers.pm │ │ ├── Hostage.pm │ │ ├── OAuth2.pm │ │ └── SizeLimit.pm │ ├── SES.pm │ ├── Static.pm │ ├── Stdout.pm │ └── Users.pm ├── Attachment.pm ├── Attachment │ ├── Archive.pm │ ├── PatchReader.pm │ └── Storage │ │ ├── Base.pm │ │ ├── Database.pm │ │ ├── FileSystem.pm │ │ └── S3.pm ├── Auth.pm ├── Auth │ ├── Login.pm │ ├── Login │ │ ├── APIKey.pm │ │ ├── CGI.pm │ │ ├── Cookie.pm │ │ ├── Env.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 │ ├── Aha.pm │ ├── Bugzilla.pm │ ├── Bugzilla │ │ └── Local.pm │ ├── Chromium.pm │ ├── Debian.pm │ ├── Edge.pm │ ├── GitHub.pm │ ├── GitLab.pm │ ├── Google.pm │ ├── JIRA.pm │ ├── Launchpad.pm │ ├── MantisBT.pm │ ├── MozSentry.pm │ ├── MozSupport.pm │ ├── Phabricator.pm │ ├── ServiceNow.pm │ ├── SourceForge.pm │ ├── Splat.pm │ ├── Trac.pm │ └── WebCompat.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 │ ├── DependencyGraph.pm │ ├── Elastic.pm │ ├── General.pm │ ├── GroupSecurity.pm │ ├── LDAP.pm │ ├── MTA.pm │ ├── PatchViewer.pm │ ├── Query.pm │ ├── RADIUS.pm │ ├── Reports.pm │ ├── ShadowDB.pm │ └── UserMatch.pm ├── Constants.pm ├── DB.pm ├── DB │ ├── MariaDB.pm │ ├── Mysql.pm │ ├── Oracle.pm │ ├── Pg.pm │ ├── Schema.pm │ ├── Schema │ │ ├── MariaDB.pm │ │ ├── Mysql.pm │ │ ├── Oracle.pm │ │ ├── Pg.pm │ │ └── Sqlite.pm │ └── Sqlite.pm ├── DaemonControl.pm ├── DuoAPI.pm ├── DuoWeb.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 ├── 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 ├── Report │ ├── Ping │ │ └── Simple.pm │ └── SecurityRisk.pm ├── Role │ ├── FlattenToHash.pm │ └── Storable.pm ├── S3.pm ├── S3 │ └── Bucket.pm ├── Search.pm ├── Search │ ├── Clause.pm │ ├── ClauseGroup.pm │ ├── Condition.pm │ ├── Quicksearch.pm │ ├── Recent.pm │ └── Saved.pm ├── Sender │ └── Transport │ │ └── Sendmail.pm ├── Series.pm ├── Status.pm ├── Task.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 │ ├── Elastic.pm │ ├── Group.pm │ ├── Product.pm │ ├── README │ ├── Server.pm │ ├── Server │ │ ├── JSONRPC.pm │ │ ├── REST.pm │ │ ├── REST │ │ │ └── Resources │ │ │ │ ├── Bug.pm │ │ │ │ ├── BugUserLastVisit.pm │ │ │ │ ├── Bugzilla.pm │ │ │ │ ├── Classification.pm │ │ │ │ ├── Elastic.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 ├── LICENSE ├── Log └── Log4perl │ └── Layout │ └── Mozilla.pm ├── Makefile.PL ├── README.md ├── RELEASE_BLOCKERS.md ├── admin.cgi ├── attachment.cgi ├── auth.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 ├── log4perl-docker.conf ├── log4perl-file.conf ├── log4perl-json.conf ├── log4perl-morbo.conf ├── log4perl-syslog.conf ├── log4perl-t.conf └── log4perl-test.conf ├── config.cgi ├── contrib ├── bugzilla-jobqueue.service ├── bugzilla.service ├── clear-memcached.pl ├── clear-templates.pl └── fixperms.pl ├── contribute.json ├── cpanfile ├── createaccount.cgi ├── describecomponents.cgi ├── describekeywords.cgi ├── docker-compose.test-mariadb.yml ├── docker-compose.test-pg.yml ├── docker-compose.test-sqlite.yml ├── docker-compose.test.yml ├── docker-compose.yml ├── docker ├── README.md ├── development.md ├── gen-bugzilla-perl-slim.sh ├── gen-bugzilla-slim-mariadb106.sh ├── gen-bugzilla-slim-mysql8.sh ├── gen-bugzilla-slim-pg9.sh ├── gen-cpanfile-snapshot.sh ├── images │ ├── Dockerfile.bugzilla-mariadb106 │ ├── Dockerfile.bugzilla-mysql8 │ ├── Dockerfile.bugzilla-pg9 │ ├── Dockerfile.bugzilla-slim │ ├── Dockerfile.cpanfile │ └── Dockerfile.mysql8 ├── mysql │ ├── bugzilla-mysql56.cnf │ └── bugzilla-mysql8.cnf ├── run-tests-in-docker.sh └── tinyproxy │ ├── Dockerfile │ └── tinyproxy.conf ├── docs ├── en │ ├── Makefile │ ├── images │ │ ├── bugzilla.png │ │ ├── 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 │ │ │ │ ├── field.rst │ │ │ │ ├── flag-activity.rst │ │ │ │ ├── general.rst │ │ │ │ ├── group.rst │ │ │ │ ├── index.rst │ │ │ │ ├── product.rst │ │ │ │ └── user.rst │ │ └── index.rst │ │ ├── conf.py │ │ ├── index.rst │ │ ├── installing │ │ ├── apache-windows.rst │ │ ├── apache.rst │ │ ├── backups.rst │ │ ├── caddy.rst │ │ ├── db_server.rst │ │ ├── docker.rst │ │ ├── essential-post-install-config.rst │ │ ├── iis.rst │ │ ├── index.rst │ │ ├── installing-end.inc.rst │ │ ├── linux.rst │ │ ├── mac-os-x.rst │ │ ├── merging-accounts.rst │ │ ├── migrating-from-1.inc.rst │ │ ├── migrating-from-2.inc.rst │ │ ├── migrating-from-a-tarball.rst │ │ ├── migrating-from-bzr.rst │ │ ├── migrating-from-cvs.rst │ │ ├── migrating.rst │ │ ├── moving.rst │ │ ├── multiple-bugzillas.rst │ │ ├── mysql.rst │ │ ├── optional-post-install-config.rst │ │ ├── oracle.rst │ │ ├── postgresql.rst │ │ ├── quick-start.rst │ │ ├── sanity-check.rst │ │ ├── sqlite.rst │ │ ├── upgrading-customizations.rst │ │ ├── upgrading-with-1.inc.rst │ │ ├── upgrading-with-2.inc.rst │ │ ├── upgrading-with-a-tarball.rst │ │ ├── upgrading-with-git.rst │ │ ├── upgrading.rst │ │ ├── web_server.rst │ │ └── windows.rst │ │ ├── integrating │ │ ├── apis.rst │ │ ├── auth-delegation.rst │ │ ├── auth0.rst │ │ ├── extensions.rst │ │ ├── faq.rst │ │ ├── index.rst │ │ ├── languages.rst │ │ ├── skins.rst │ │ └── templates.rst │ │ ├── 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 ├── requirements.txt └── 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 │ ├── 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 │ │ ├── migrate-bug-type.pl │ │ └── migrate-github-pull-requests.pl │ ├── lib │ │ ├── Constants.pm │ │ ├── Data.pm │ │ ├── FakeBug.pm │ │ ├── Reports │ │ │ ├── Groups.pm │ │ │ ├── Internship.pm │ │ │ ├── ProductSecurity.pm │ │ │ ├── Recruiting.pm │ │ │ ├── ReleaseTracking.pm │ │ │ ├── Triage.pm │ │ │ └── UserActivity.pm │ │ └── WebService.pm │ ├── t │ │ ├── bounty_attachment.t │ │ └── inject_headers_into_body.t │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── account │ │ │ └── create.html.tmpl │ │ │ ├── bug │ │ │ ├── create │ │ │ │ ├── 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-automative.html.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.none.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 │ │ │ │ ├── createformcontents-patch_notes.html.tmpl │ │ │ │ ├── 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-form.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 │ │ │ │ ├── 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-additional_header.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 │ │ │ ├── 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 │ │ ├── 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 │ │ ├── advanced-search.js │ │ ├── attach-desc.js │ │ ├── attachment_bounty_form.js │ │ ├── dev_engagement.js │ │ ├── edit_bug.js │ │ ├── edituser_menu.js │ │ ├── firefox-crash-table.js │ │ ├── form_validate.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 │ │ ├── geckoview.png │ │ ├── input.png │ │ ├── localization.png │ │ ├── other.png │ │ ├── seamonkey.png │ │ ├── telemetry.png │ │ ├── thunderbird.png │ │ ├── user-research.png │ │ └── webextensions.png │ │ ├── socorro-lens │ │ ├── custom.css │ │ ├── d3.min.js │ │ ├── main.js │ │ ├── metricsgraphics.css │ │ └── metricsgraphics.min.js │ │ ├── styles │ │ ├── bug_modal.css │ │ ├── choose_product.css │ │ ├── create_account.css │ │ ├── edit_bug.css │ │ ├── reports.css │ │ └── triage_reports.css │ │ └── yui-history-iframe.txt ├── 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 │ │ │ └── show-modal.html.tmpl │ │ │ ├── bug_modal │ │ │ ├── activity_stream.html.tmpl │ │ │ ├── attachments.html.tmpl │ │ │ ├── cc_list.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 │ │ │ └── global │ │ │ └── setting-descs-settings.none.tmpl │ └── web │ │ ├── autosize.min.js │ │ ├── bug_modal.css │ │ ├── bug_modal.js │ │ ├── calendar.png │ │ ├── comments.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 │ │ ├── config.json.tmpl │ │ └── 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-editor.js │ │ └── revisions.js │ │ └── styles │ │ ├── inline-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 ├── Ember │ ├── Config.pm │ ├── Extension.pm │ ├── disabled │ ├── lib │ │ ├── FakeBug.pm │ │ └── WebService.pm │ └── template │ │ └── en │ │ └── default │ │ └── hook │ │ └── global │ │ └── user-error-errors.html.tmpl ├── 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 │ │ └── 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 │ └── 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 ├── GoogleAnalytics │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ └── Config.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── admin │ │ │ └── params │ │ │ │ └── googleanalytics.html.tmpl │ │ │ └── hook │ │ │ └── global │ │ │ ├── header-additional_header.html.tmpl │ │ │ └── header-start.html.tmpl │ └── web │ │ └── js │ │ └── analytics.js ├── 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 ├── 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 │ │ ├── help.png │ │ ├── input.png │ │ ├── message.png │ │ ├── sumo.png │ │ ├── support.png │ │ ├── throbber.gif │ │ ├── warning.png │ │ └── webbug.png │ │ ├── js │ │ ├── guided.js │ │ └── products.js │ │ ├── style │ │ └── guided.css │ │ └── yui-history-iframe.txt ├── 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 ├── 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 ├── LimitedEmail │ ├── Config.pm │ ├── Extension.pm │ └── disabled ├── 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 ├── OldBugMove │ ├── Config.pm │ ├── Extension.pm │ ├── disabled │ ├── lib │ │ └── Params.pm │ └── template │ │ └── en │ │ └── default │ │ ├── admin │ │ └── params │ │ │ └── oldbugmove.html.tmpl │ │ └── hook │ │ ├── bug │ │ ├── edit-after_comment_textarea.html.tmpl │ │ └── format_comment-type.txt.tmpl │ │ ├── global │ │ ├── user-error-auth_failure_action.html.tmpl │ │ └── user-error-errors.html.tmpl │ │ └── list │ │ └── edit-multiple-after_groups.html.tmpl ├── OpenGraph │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ └── Config.pm │ └── template │ │ └── en │ │ └── default │ │ ├── admin │ │ └── params │ │ │ └── opengraph.html.tmpl │ │ └── hook │ │ ├── global │ │ └── header-start.html.tmpl │ │ └── robots-end.txt.tmpl ├── 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 │ │ ├── Config.pm │ │ ├── Constants.pm │ │ ├── Daemon.pm │ │ ├── Feed.pm │ │ ├── Policy.pm │ │ ├── Project.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 │ │ │ ├── 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 │ │ └── 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 ├── REMO │ ├── Config.pm │ ├── Extension.pm │ ├── template │ │ └── en │ │ │ └── default │ │ │ ├── bug │ │ │ └── create │ │ │ │ ├── comment-csa-discourse.txt.tmpl │ │ │ │ ├── comment-mozreps.txt.tmpl │ │ │ │ ├── comment-remo-budget.txt.tmpl │ │ │ │ ├── comment-remo-swag.txt.tmpl │ │ │ │ ├── create-csa-discourse.html.tmpl │ │ │ │ ├── create-mozreps.html.tmpl │ │ │ │ ├── create-remo-budget.html.tmpl │ │ │ │ ├── create-remo-swag.html.tmpl │ │ │ │ ├── create-remo-swag.xml.tmpl │ │ │ │ ├── created-mozreps.html.tmpl │ │ │ │ └── created-remo-budget.html.tmpl │ │ │ ├── hook │ │ │ └── global │ │ │ │ └── user-error-errors.html.tmpl │ │ │ └── pages │ │ │ ├── comment-remo-form-payment.txt.tmpl │ │ │ └── remo-form-payment.html.tmpl │ └── web │ │ ├── js │ │ ├── form_validate.js │ │ ├── moz_csa_discourse.js │ │ ├── moz_reps.js │ │ ├── payment.js │ │ └── swag.js │ │ └── styles │ │ └── moz_reps.css ├── 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 │ │ │ ├── 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 │ │ └── review_history.css ├── SecureMail │ ├── Config.pm │ ├── Extension.pm │ ├── README │ ├── bin │ │ └── tct │ ├── disabled │ ├── 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 ├── ShadowBugs │ ├── Config.pm │ ├── Extension.pm │ ├── disabled │ ├── template │ │ └── en │ │ │ └── default │ │ │ └── hook │ │ │ ├── bug │ │ │ ├── comments-aftercomments.html.tmpl │ │ │ ├── edit-after_comment_textarea.html.tmpl │ │ │ ├── edit-after_custom_fields.html.tmpl │ │ │ ├── edit-custom_field.html.tmpl │ │ │ └── show-header-end.html.tmpl │ │ │ └── global │ │ │ └── user-error-errors.html.tmpl │ └── web │ │ ├── shadow-bugs.js │ │ └── style.css ├── SiteMapIndex │ ├── Config.pm │ ├── Extension.pm │ ├── lib │ │ ├── Constants.pm │ │ └── Util.pm │ └── template │ │ └── en │ │ └── default │ │ └── 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 │ │ │ └── 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 │ │ │ └── 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 │ ├── 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 │ │ ├── Config.pm │ │ └── Webhook.pm │ └── template │ │ └── en │ │ └── default │ │ ├── account │ │ └── prefs │ │ │ └── webhooks.html.tmpl │ │ ├── admin │ │ └── params │ │ │ └── webhooks.html.tmpl │ │ ├── hook │ │ ├── account │ │ │ └── prefs │ │ │ │ └── prefs-tabs.html.tmpl │ │ └── global │ │ │ └── user-error-errors.html.tmpl │ │ └── pages │ │ └── webhooks.html.tmpl ├── ZPushNotify │ ├── Config.pm │ ├── Extension.pm │ └── template │ │ └── en │ │ └── default │ │ └── hook │ │ └── admin │ │ └── params │ │ └── editparams-current_panel.html.tmpl └── create.pl ├── gen-cpanfile.pl ├── github.cgi ├── heartbeat.cgi ├── images ├── banner.png ├── buggie.png ├── bzgif.gif ├── dropdown.png ├── duo.png ├── favicon.ico ├── grain.png ├── 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 ├── create_bug.js ├── dependency-tree.js ├── dropdown.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 │ └── prism.js ├── params.js ├── productform.js ├── signup.js ├── util.js ├── yui.js.list ├── yui │ ├── animation │ │ └── animation-min.js │ ├── assets │ │ └── skins │ │ │ └── sam │ │ │ ├── ajax-loader.gif │ │ │ ├── asc.gif │ │ │ ├── autocomplete.css │ │ │ ├── back-h.png │ │ │ ├── back-v.png │ │ │ ├── bar-h.png │ │ │ ├── bar-v.png │ │ │ ├── bg-h.gif │ │ │ ├── bg-v.gif │ │ │ ├── blankimage.png │ │ │ ├── button.css │ │ │ ├── calendar.css │ │ │ ├── carousel.css │ │ │ ├── check0.gif │ │ │ ├── check1.gif │ │ │ ├── check2.gif │ │ │ ├── colorpicker.css │ │ │ ├── container.css │ │ │ ├── datatable.css │ │ │ ├── desc.gif │ │ │ ├── dt-arrow-dn.png │ │ │ ├── dt-arrow-up.png │ │ │ ├── editor-knob.gif │ │ │ ├── editor-sprite-active.gif │ │ │ ├── editor-sprite.gif │ │ │ ├── editor.css │ │ │ ├── header_background.png │ │ │ ├── hue_bg.png │ │ │ ├── imagecropper.css │ │ │ ├── layout.css │ │ │ ├── layout_sprite.png │ │ │ ├── loading.gif │ │ │ ├── logger.css │ │ │ ├── menu-button-arrow-disabled.png │ │ │ ├── menu-button-arrow.png │ │ │ ├── menu.css │ │ │ ├── menubaritem_submenuindicator.png │ │ │ ├── menubaritem_submenuindicator_disabled.png │ │ │ ├── menuitem_checkbox.png │ │ │ ├── menuitem_checkbox_disabled.png │ │ │ ├── menuitem_submenuindicator.png │ │ │ ├── menuitem_submenuindicator_disabled.png │ │ │ ├── paginator.css │ │ │ ├── picker_mask.png │ │ │ ├── profilerviewer.css │ │ │ ├── progressbar.css │ │ │ ├── resize.css │ │ │ ├── simpleeditor.css │ │ │ ├── slider.css │ │ │ ├── split-button-arrow-active.png │ │ │ ├── split-button-arrow-disabled.png │ │ │ ├── split-button-arrow-focus.png │ │ │ ├── split-button-arrow-hover.png │ │ │ ├── split-button-arrow.png │ │ │ ├── sprite.png │ │ │ ├── tabview.css │ │ │ ├── treeview-loading.gif │ │ │ ├── treeview-sprite.gif │ │ │ ├── treeview.css │ │ │ ├── wait.gif │ │ │ └── yuitest.css │ ├── autocomplete │ │ └── autocomplete-min.js │ ├── base │ │ ├── base-min.css │ │ └── base.css │ ├── button │ │ └── button-min.js │ ├── calendar │ │ └── calendar-min.js │ ├── carousel │ │ └── carousel-min.js │ ├── charts │ │ └── charts-min.js │ ├── colorpicker │ │ └── colorpicker-min.js │ ├── connection │ │ ├── connection-min.js │ │ ├── connection.swf │ │ └── connection_core-min.js │ ├── container │ │ ├── container-min.js │ │ └── container_core-min.js │ ├── cookie │ │ └── cookie-min.js │ ├── datasource │ │ └── datasource-min.js │ ├── datatable │ │ └── datatable-min.js │ ├── datemath │ │ └── datemath-min.js │ ├── dom │ │ └── dom-min.js │ ├── dragdrop │ │ └── dragdrop-min.js │ ├── element-delegate │ │ └── element-delegate-min.js │ ├── element │ │ └── element-min.js │ ├── event-delegate │ │ └── event-delegate-min.js │ ├── event-mouseenter │ │ └── event-mouseenter-min.js │ ├── event-simulate │ │ └── event-simulate-min.js │ ├── event │ │ └── event-min.js │ ├── fonts │ │ ├── fonts-min.css │ │ └── fonts.css │ ├── get │ │ └── get-min.js │ ├── grids │ │ ├── grids-min.css │ │ └── grids.css │ ├── history │ │ └── history-min.js │ ├── imagecropper │ │ └── imagecropper-min.js │ ├── imageloader │ │ └── imageloader-min.js │ ├── json │ │ └── json-min.js │ ├── layout │ │ └── layout-min.js │ ├── logger │ │ └── logger-min.js │ ├── menu │ │ └── menu-min.js │ ├── paginator │ │ └── paginator-min.js │ ├── profiler │ │ └── profiler-min.js │ ├── profilerviewer │ │ └── profilerviewer-min.js │ ├── progressbar │ │ └── progressbar-min.js │ ├── reset-fonts-grids │ │ └── reset-fonts-grids.css │ ├── reset-fonts │ │ └── reset-fonts.css │ ├── reset │ │ ├── reset-min.css │ │ └── reset.css │ ├── resize │ │ └── resize-min.js │ ├── selector │ │ └── selector-min.js │ ├── slider │ │ └── slider-min.js │ ├── storage │ │ └── storage-min.js │ ├── stylesheet │ │ └── stylesheet-min.js │ ├── swf │ │ └── swf-min.js │ ├── swfdetect │ │ └── swfdetect-min.js │ ├── swfstore │ │ ├── swfstore-min.js │ │ └── swfstore.swf │ ├── tabview │ │ └── tabview-min.js │ ├── treeview │ │ └── treeview-min.js │ ├── uploader │ │ └── uploader-min.js │ ├── yahoo-dom-event │ │ └── yahoo-dom-event-min.js │ ├── yahoo │ │ └── yahoo-min.js │ ├── yuiloader │ │ └── yuiloader-min.js │ └── yuitest │ │ ├── yuitest-min.js │ │ └── yuitest_core-min.js ├── yui3.js.list └── yui3 │ ├── align-plugin │ └── align-plugin-min.js │ ├── anim-base │ └── anim-base-min.js │ ├── anim-color │ └── anim-color-min.js │ ├── anim-curve │ └── anim-curve-min.js │ ├── anim-easing │ └── anim-easing-min.js │ ├── anim-node-plugin │ └── anim-node-plugin-min.js │ ├── anim-scroll │ └── anim-scroll-min.js │ ├── anim-shape │ └── anim-shape-min.js │ ├── anim-xy │ └── anim-xy-min.js │ ├── app-base │ └── app-base-min.js │ ├── app-content │ └── app-content-min.js │ ├── app-transitions-css │ ├── app-transitions-css-min.css │ └── app-transitions-css.css │ ├── app-transitions-native │ └── app-transitions-native-min.js │ ├── app-transitions │ └── app-transitions-min.js │ ├── array-extras │ └── array-extras-min.js │ ├── array-invoke │ └── array-invoke-min.js │ ├── arraylist-add │ └── arraylist-add-min.js │ ├── arraylist-filter │ └── arraylist-filter-min.js │ ├── arraylist │ └── arraylist-min.js │ ├── arraysort │ └── arraysort-min.js │ ├── assets │ ├── skin │ │ ├── audio-light │ │ │ └── skin.css │ │ ├── audio │ │ │ └── skin.css │ │ ├── capsule-dark │ │ │ └── skin.css │ │ ├── capsule │ │ │ └── skin.css │ │ ├── night │ │ │ └── skin.css │ │ ├── round-dark │ │ │ └── skin.css │ │ ├── round │ │ │ └── skin.css │ │ ├── sam-dark │ │ │ └── skin.css │ │ └── sam │ │ │ └── skin.css │ └── skins │ │ ├── audio-light │ │ ├── rail-x.png │ │ ├── rail-y.png │ │ ├── slider-base.css │ │ ├── thumb-x.png │ │ └── thumb-y.png │ │ ├── audio │ │ ├── rail-x.png │ │ ├── rail-y.png │ │ ├── slider-base.css │ │ ├── thumb-x.png │ │ └── thumb-y.png │ │ ├── capsule-dark │ │ ├── rail-x-dots.png │ │ ├── rail-x-lines.png │ │ ├── rail-x.png │ │ ├── rail-y-dots.png │ │ ├── rail-y-lines.png │ │ ├── rail-y.png │ │ ├── slider-base.css │ │ ├── thumb-x-line.png │ │ ├── thumb-x.png │ │ ├── thumb-y-line.png │ │ └── thumb-y.png │ │ ├── capsule │ │ ├── rail-x-dots.png │ │ ├── rail-x-lines.png │ │ ├── rail-x.png │ │ ├── rail-y-dots.png │ │ ├── rail-y-lines.png │ │ ├── rail-y.png │ │ ├── slider-base.css │ │ ├── thumb-x-line.png │ │ ├── thumb-x.png │ │ ├── thumb-y-line.png │ │ ├── thumb-y-lines.png │ │ └── thumb-y.png │ │ ├── night │ │ ├── arrows.png │ │ ├── autocomplete-list.css │ │ ├── calendar-base.css │ │ ├── calendar.css │ │ ├── calendarnavigator.css │ │ ├── datatable-base.css │ │ ├── datatable-highlight.css │ │ ├── datatable-message.css │ │ ├── datatable-paginator.css │ │ ├── datatable-scroll.css │ │ ├── datatable-sort.css │ │ ├── dial.css │ │ ├── horizontal-menu-submenu-indicator.png │ │ ├── node-menunav.css │ │ ├── overlay.css │ │ ├── panel.css │ │ ├── rail-x-lines.png │ │ ├── rail-x.png │ │ ├── rail-y-lines.png │ │ ├── rail-y.png │ │ ├── resize-base.css │ │ ├── scrollview-base.css │ │ ├── scrollview-list.css │ │ ├── scrollview-scrollbars.css │ │ ├── slider-base.css │ │ ├── sort-arrow-sprite-ie.png │ │ ├── sort-arrow-sprite.png │ │ ├── sprite_icons.png │ │ ├── tabview.css │ │ ├── thumb-x.png │ │ ├── thumb-y.png │ │ ├── vertical-menu-submenu-indicator.png │ │ ├── widget-base.css │ │ ├── widget-modality.css │ │ └── widget-stack.css │ │ ├── round-dark │ │ ├── rail-x.png │ │ ├── rail-y.png │ │ ├── slider-base.css │ │ ├── thumb-x-grip.png │ │ ├── thumb-x.png │ │ ├── thumb-y-grip.png │ │ └── thumb-y.png │ │ ├── round │ │ ├── rail-x.png │ │ ├── rail-y.png │ │ ├── slider-base.css │ │ ├── thumb-x-grip.png │ │ ├── thumb-x.png │ │ ├── thumb-y-grip.png │ │ └── thumb-y.png │ │ ├── sam-dark │ │ ├── rail-x-lines.png │ │ ├── rail-x.png │ │ ├── rail-y-lines.png │ │ ├── rail-y.png │ │ ├── slider-base.css │ │ ├── thumb-x.png │ │ └── thumb-y.png │ │ └── sam │ │ ├── arrows.png │ │ ├── autocomplete-list.css │ │ ├── bg.png │ │ ├── calendar-base.css │ │ ├── calendar.css │ │ ├── calendarnavigator.css │ │ ├── console-filters.css │ │ ├── console.css │ │ ├── datatable-base.css │ │ ├── datatable-highlight.css │ │ ├── datatable-message.css │ │ ├── datatable-paginator.css │ │ ├── datatable-scroll.css │ │ ├── datatable-sort.css │ │ ├── dial.css │ │ ├── dt-arrow-dn.png │ │ ├── dt-arrow-up.png │ │ ├── horizontal-menu-submenu-indicator.png │ │ ├── horizontal-menu-submenu-toggle.png │ │ ├── node-flick.css │ │ ├── node-menunav.css │ │ ├── overlay.css │ │ ├── panel.css │ │ ├── rail-x-lines.png │ │ ├── rail-x.png │ │ ├── rail-y-lines.png │ │ ├── rail-y.png │ │ ├── resize-base.css │ │ ├── scrollview-base.css │ │ ├── scrollview-list.css │ │ ├── scrollview-scrollbars.css │ │ ├── slider-base.css │ │ ├── sort-arrow-sprite-ie.png │ │ ├── sort-arrow-sprite.png │ │ ├── sprite.png │ │ ├── sprite_icons.gif │ │ ├── sprite_icons.png │ │ ├── tabview.css │ │ ├── test-console.css │ │ ├── thumb-x.png │ │ ├── thumb-y.png │ │ ├── vertical-menu-submenu-indicator.png │ │ ├── warn_error.png │ │ ├── widget-base.css │ │ ├── widget-modality.css │ │ └── widget-stack.css │ ├── async-queue │ └── async-queue-min.js │ ├── attribute-base │ └── attribute-base-min.js │ ├── attribute-complex │ └── attribute-complex-min.js │ ├── attribute-core │ └── attribute-core-min.js │ ├── attribute-extras │ └── attribute-extras-min.js │ ├── attribute-observable │ └── attribute-observable-min.js │ ├── autocomplete-base │ └── autocomplete-base-min.js │ ├── autocomplete-filters-accentfold │ └── autocomplete-filters-accentfold-min.js │ ├── autocomplete-filters │ └── autocomplete-filters-min.js │ ├── autocomplete-highlighters-accentfold │ └── autocomplete-highlighters-accentfold-min.js │ ├── autocomplete-highlighters │ └── autocomplete-highlighters-min.js │ ├── autocomplete-list-keys │ └── autocomplete-list-keys-min.js │ ├── autocomplete-list │ ├── assets │ │ ├── autocomplete-list-core.css │ │ └── skins │ │ │ ├── night │ │ │ └── autocomplete-list.css │ │ │ └── sam │ │ │ └── autocomplete-list.css │ ├── autocomplete-list-min.js │ └── lang │ │ ├── autocomplete-list.js │ │ ├── autocomplete-list_en.js │ │ ├── autocomplete-list_es.js │ │ ├── autocomplete-list_hu.js │ │ └── autocomplete-list_it.js │ ├── autocomplete-plugin │ └── autocomplete-plugin-min.js │ ├── autocomplete-sources │ └── autocomplete-sources-min.js │ ├── axis-base │ └── axis-base-min.js │ ├── axis-category-base │ └── axis-category-base-min.js │ ├── axis-category │ └── axis-category-min.js │ ├── axis-numeric-base │ └── axis-numeric-base-min.js │ ├── axis-numeric │ └── axis-numeric-min.js │ ├── axis-stacked-base │ └── axis-stacked-base-min.js │ ├── axis-stacked │ └── axis-stacked-min.js │ ├── axis-time-base │ └── axis-time-base-min.js │ ├── axis-time │ └── axis-time-min.js │ ├── axis │ └── axis-min.js │ ├── base-base │ └── base-base-min.js │ ├── base-build │ └── base-build-min.js │ ├── base-core │ └── base-core-min.js │ ├── base-observable │ └── base-observable-min.js │ ├── base-pluginhost │ └── base-pluginhost-min.js │ ├── button-core │ └── button-core-min.js │ ├── button-group │ └── button-group-min.js │ ├── button-plugin │ └── button-plugin-min.js │ ├── button │ └── button-min.js │ ├── cache-base │ └── cache-base-min.js │ ├── cache-offline │ └── cache-offline-min.js │ ├── cache-plugin │ └── cache-plugin-min.js │ ├── calendar-base │ ├── assets │ │ ├── calendar-base-core.css │ │ └── skins │ │ │ ├── night │ │ │ └── calendar-base.css │ │ │ └── sam │ │ │ └── calendar-base.css │ ├── calendar-base-min.js │ └── lang │ │ ├── calendar-base.js │ │ ├── calendar-base_de.js │ │ ├── calendar-base_en.js │ │ ├── calendar-base_es-AR.js │ │ ├── calendar-base_es.js │ │ ├── calendar-base_fr.js │ │ ├── calendar-base_hu.js │ │ ├── calendar-base_it.js │ │ ├── calendar-base_ja.js │ │ ├── calendar-base_nb-NO.js │ │ ├── calendar-base_nl.js │ │ ├── calendar-base_pt-BR.js │ │ ├── calendar-base_ru.js │ │ ├── calendar-base_zh-HANT-TW.js │ │ ├── calendar-base_zh-Hans-CN.js │ │ ├── calendar-base_zh-Hans.js │ │ ├── calendar-base_zh-Hant-HK.js │ │ └── calendar-base_zh-Hant.js │ ├── calendar │ ├── assets │ │ ├── calendar-core.css │ │ └── skins │ │ │ ├── night │ │ │ └── calendar.css │ │ │ └── sam │ │ │ └── calendar.css │ └── calendar-min.js │ ├── calendarnavigator │ ├── assets │ │ ├── calendarnavigator-core.css │ │ └── skins │ │ │ ├── night │ │ │ └── calendarnavigator.css │ │ │ └── sam │ │ │ └── calendarnavigator.css │ └── calendarnavigator-min.js │ ├── charts-base │ └── charts-base-min.js │ ├── charts-legend │ └── charts-legend-min.js │ ├── classnamemanager │ └── classnamemanager-min.js │ ├── clickable-rail │ ├── assets │ │ ├── thumb-x-oblong-dark.png │ │ ├── thumb-x-oblong.png │ │ ├── thumb-x-oblong2-dark.png │ │ ├── thumb-x-oblong2.png │ │ ├── thumb-y-oblong-dark.png │ │ ├── thumb-y-oblong.png │ │ ├── thumb-y-oblong2-dark.png │ │ └── thumb-y-oblong2.png │ └── clickable-rail-min.js │ ├── color-base │ └── color-base-min.js │ ├── color-harmony │ └── color-harmony-min.js │ ├── color-hsl │ └── color-hsl-min.js │ ├── color-hsv │ └── color-hsv-min.js │ ├── console-filters │ ├── assets │ │ ├── console-filters-core.css │ │ └── skins │ │ │ └── sam │ │ │ └── console-filters.css │ └── console-filters-min.js │ ├── console │ ├── assets │ │ ├── console-core.css │ │ ├── skins │ │ │ └── sam │ │ │ │ ├── bg.png │ │ │ │ ├── console.css │ │ │ │ └── warn_error.png │ │ └── warn_error.png │ ├── console-min.js │ └── lang │ │ ├── console.js │ │ ├── console_en.js │ │ ├── console_es.js │ │ ├── console_hu.js │ │ ├── console_it.js │ │ └── console_ja.js │ ├── content-editable │ └── content-editable-min.js │ ├── cookie │ └── cookie-min.js │ ├── createlink-base │ └── createlink-base-min.js │ ├── cssbase-context │ ├── cssbase-context-min.css │ └── cssbase-context.css │ ├── cssbase │ ├── cssbase-min.css │ └── cssbase.css │ ├── cssbutton │ ├── cssbutton-min.css │ └── cssbutton.css │ ├── cssfonts-context │ ├── cssfonts-context-min.css │ └── cssfonts-context.css │ ├── cssfonts │ ├── cssfonts-min.css │ └── cssfonts.css │ ├── cssgrids-base │ ├── cssgrids-base-min.css │ └── cssgrids-base.css │ ├── cssgrids-responsive │ ├── cssgrids-responsive-min.css │ └── cssgrids-responsive.css │ ├── cssgrids-units │ ├── cssgrids-units-min.css │ └── cssgrids-units.css │ ├── cssgrids │ ├── cssgrids-min.css │ └── cssgrids.css │ ├── cssnormalize-context │ ├── cssnormalize-context-min.css │ └── cssnormalize-context.css │ ├── cssnormalize │ ├── cssnormalize-min.css │ └── cssnormalize.css │ ├── cssreset-context │ ├── cssreset-context-min.css │ └── cssreset-context.css │ ├── cssreset │ ├── cssreset-min.css │ └── cssreset.css │ ├── dataschema-array │ └── dataschema-array-min.js │ ├── dataschema-base │ └── dataschema-base-min.js │ ├── dataschema-json │ └── dataschema-json-min.js │ ├── dataschema-text │ └── dataschema-text-min.js │ ├── dataschema-xml │ └── dataschema-xml-min.js │ ├── datasource-arrayschema │ └── datasource-arrayschema-min.js │ ├── datasource-cache │ └── datasource-cache-min.js │ ├── datasource-function │ └── datasource-function-min.js │ ├── datasource-get │ └── datasource-get-min.js │ ├── datasource-io │ └── datasource-io-min.js │ ├── datasource-jsonschema │ └── datasource-jsonschema-min.js │ ├── datasource-local │ └── datasource-local-min.js │ ├── datasource-polling │ └── datasource-polling-min.js │ ├── datasource-textschema │ └── datasource-textschema-min.js │ ├── datasource-xmlschema │ └── datasource-xmlschema-min.js │ ├── datatable-base-deprecated │ └── assets │ │ └── skins │ │ └── sam │ │ ├── dt-arrow-dn.png │ │ └── dt-arrow-up.png │ ├── datatable-base │ ├── assets │ │ ├── datatable-base-core.css │ │ └── skins │ │ │ ├── night │ │ │ └── datatable-base.css │ │ │ └── sam │ │ │ └── datatable-base.css │ └── datatable-base-min.js │ ├── datatable-body │ └── datatable-body-min.js │ ├── datatable-column-widths │ └── datatable-column-widths-min.js │ ├── datatable-core │ └── datatable-core-min.js │ ├── datatable-datasource │ └── datatable-datasource-min.js │ ├── datatable-foot │ └── datatable-foot-min.js │ ├── datatable-formatters │ └── datatable-formatters-min.js │ ├── datatable-head │ └── datatable-head-min.js │ ├── datatable-highlight │ ├── assets │ │ ├── datatable-highlight-core.css │ │ └── skins │ │ │ ├── night │ │ │ └── datatable-highlight.css │ │ │ └── sam │ │ │ └── datatable-highlight.css │ └── datatable-highlight-min.js │ ├── datatable-keynav │ └── datatable-keynav-min.js │ ├── datatable-message │ ├── assets │ │ ├── datatable-message-core.css │ │ └── skins │ │ │ ├── night │ │ │ └── datatable-message.css │ │ │ └── sam │ │ │ └── datatable-message.css │ ├── datatable-message-min.js │ └── lang │ │ ├── datatable-message.js │ │ ├── datatable-message_en.js │ │ ├── datatable-message_es.js │ │ ├── datatable-message_fr.js │ │ ├── datatable-message_hu.js │ │ └── datatable-message_it.js │ ├── datatable-mutable │ └── datatable-mutable-min.js │ ├── datatable-paginator-templates │ └── datatable-paginator-templates-min.js │ ├── datatable-paginator │ ├── assets │ │ ├── datatable-paginator-core.css │ │ └── skins │ │ │ ├── night │ │ │ └── datatable-paginator.css │ │ │ └── sam │ │ │ └── datatable-paginator.css │ ├── datatable-paginator-min.js │ └── lang │ │ ├── datatable-paginator.js │ │ ├── datatable-paginator_en.js │ │ └── datatable-paginator_fr.js │ ├── datatable-scroll │ ├── assets │ │ ├── datatable-scroll-core.css │ │ └── skins │ │ │ ├── night │ │ │ └── datatable-scroll.css │ │ │ └── sam │ │ │ └── datatable-scroll.css │ └── datatable-scroll-min.js │ ├── datatable-sort │ ├── assets │ │ ├── datatable-sort-core.css │ │ └── skins │ │ │ ├── night │ │ │ ├── datatable-sort.css │ │ │ ├── sort-arrow-sprite-ie.png │ │ │ └── sort-arrow-sprite.png │ │ │ └── sam │ │ │ ├── datatable-sort.css │ │ │ ├── sort-arrow-sprite-ie.png │ │ │ └── sort-arrow-sprite.png │ ├── datatable-sort-min.js │ └── lang │ │ ├── datatable-sort.js │ │ ├── datatable-sort_en.js │ │ ├── datatable-sort_es.js │ │ ├── datatable-sort_fr.js │ │ └── datatable-sort_hu.js │ ├── datatable-table │ └── datatable-table-min.js │ ├── datatype-date-format │ ├── datatype-date-format-min.js │ └── lang │ │ ├── datatype-date-format.js │ │ ├── datatype-date-format_ar-JO.js │ │ ├── datatype-date-format_ar.js │ │ ├── datatype-date-format_ca-ES.js │ │ ├── datatype-date-format_ca.js │ │ ├── datatype-date-format_da-DK.js │ │ ├── datatype-date-format_da.js │ │ ├── datatype-date-format_de-AT.js │ │ ├── datatype-date-format_de-DE.js │ │ ├── datatype-date-format_de.js │ │ ├── datatype-date-format_el-GR.js │ │ ├── datatype-date-format_el.js │ │ ├── datatype-date-format_en-AU.js │ │ ├── datatype-date-format_en-CA.js │ │ ├── datatype-date-format_en-GB.js │ │ ├── datatype-date-format_en-IE.js │ │ ├── datatype-date-format_en-IN.js │ │ ├── datatype-date-format_en-JO.js │ │ ├── datatype-date-format_en-MY.js │ │ ├── datatype-date-format_en-NZ.js │ │ ├── datatype-date-format_en-PH.js │ │ ├── datatype-date-format_en-SG.js │ │ ├── datatype-date-format_en-US.js │ │ ├── datatype-date-format_en.js │ │ ├── datatype-date-format_es-AR.js │ │ ├── datatype-date-format_es-BO.js │ │ ├── datatype-date-format_es-CL.js │ │ ├── datatype-date-format_es-CO.js │ │ ├── datatype-date-format_es-EC.js │ │ ├── datatype-date-format_es-ES.js │ │ ├── datatype-date-format_es-MX.js │ │ ├── datatype-date-format_es-PE.js │ │ ├── datatype-date-format_es-PY.js │ │ ├── datatype-date-format_es-US.js │ │ ├── datatype-date-format_es-UY.js │ │ ├── datatype-date-format_es-VE.js │ │ ├── datatype-date-format_es.js │ │ ├── datatype-date-format_fi-FI.js │ │ ├── datatype-date-format_fi.js │ │ ├── datatype-date-format_fr-BE.js │ │ ├── datatype-date-format_fr-CA.js │ │ ├── datatype-date-format_fr-FR.js │ │ ├── datatype-date-format_fr.js │ │ ├── datatype-date-format_hi-IN.js │ │ ├── datatype-date-format_hi.js │ │ ├── datatype-date-format_hu.js │ │ ├── datatype-date-format_id-ID.js │ │ ├── datatype-date-format_id.js │ │ ├── datatype-date-format_it-IT.js │ │ ├── datatype-date-format_it.js │ │ ├── datatype-date-format_ja-JP.js │ │ ├── datatype-date-format_ja.js │ │ ├── datatype-date-format_ko-KR.js │ │ ├── datatype-date-format_ko.js │ │ ├── datatype-date-format_ms-MY.js │ │ ├── datatype-date-format_ms.js │ │ ├── datatype-date-format_nb-NO.js │ │ ├── datatype-date-format_nb.js │ │ ├── datatype-date-format_nl-BE.js │ │ ├── datatype-date-format_nl-NL.js │ │ ├── datatype-date-format_nl.js │ │ ├── datatype-date-format_pl-PL.js │ │ ├── datatype-date-format_pl.js │ │ ├── datatype-date-format_pt-BR.js │ │ ├── datatype-date-format_pt.js │ │ ├── datatype-date-format_ro-RO.js │ │ ├── datatype-date-format_ro.js │ │ ├── datatype-date-format_ru-RU.js │ │ ├── datatype-date-format_ru.js │ │ ├── datatype-date-format_sv-SE.js │ │ ├── datatype-date-format_sv.js │ │ ├── datatype-date-format_th-TH.js │ │ ├── datatype-date-format_th.js │ │ ├── datatype-date-format_tr-TR.js │ │ ├── datatype-date-format_tr.js │ │ ├── datatype-date-format_vi-VN.js │ │ ├── datatype-date-format_vi.js │ │ ├── datatype-date-format_zh-Hans-CN.js │ │ ├── datatype-date-format_zh-Hans.js │ │ ├── datatype-date-format_zh-Hant-HK.js │ │ ├── datatype-date-format_zh-Hant-TW.js │ │ └── datatype-date-format_zh-Hant.js │ ├── datatype-date-math │ └── datatype-date-math-min.js │ ├── datatype-date-parse │ └── datatype-date-parse-min.js │ ├── datatype-number-format │ └── datatype-number-format-min.js │ ├── datatype-number-parse │ └── datatype-number-parse-min.js │ ├── datatype-xml-format │ └── datatype-xml-format-min.js │ ├── datatype-xml-parse │ └── datatype-xml-parse-min.js │ ├── dd-constrain │ └── dd-constrain-min.js │ ├── dd-ddm-base │ └── dd-ddm-base-min.js │ ├── dd-ddm-drop │ └── dd-ddm-drop-min.js │ ├── dd-ddm │ └── dd-ddm-min.js │ ├── dd-delegate │ └── dd-delegate-min.js │ ├── dd-drag │ └── dd-drag-min.js │ ├── dd-drop-plugin │ └── dd-drop-plugin-min.js │ ├── dd-drop │ └── dd-drop-min.js │ ├── dd-gestures │ └── dd-gestures-min.js │ ├── dd-plugin │ └── dd-plugin-min.js │ ├── dd-proxy │ └── dd-proxy-min.js │ ├── dd-scroll │ └── dd-scroll-min.js │ ├── dial │ ├── assets │ │ ├── dial-core.css │ │ └── skins │ │ │ ├── night │ │ │ └── dial.css │ │ │ └── sam │ │ │ └── dial.css │ ├── dial-min.js │ └── lang │ │ ├── dial.js │ │ ├── dial_en.js │ │ ├── dial_es.js │ │ └── dial_hu.js │ ├── dom-base │ └── dom-base-min.js │ ├── dom-core │ └── dom-core-min.js │ ├── dom-screen │ └── dom-screen-min.js │ ├── dom-style-ie │ └── dom-style-ie-min.js │ ├── dom-style │ └── dom-style-min.js │ ├── dump │ └── dump-min.js │ ├── editor-base │ └── editor-base-min.js │ ├── editor-bidi │ └── editor-bidi-min.js │ ├── editor-br │ └── editor-br-min.js │ ├── editor-inline │ └── editor-inline-min.js │ ├── editor-lists │ └── editor-lists-min.js │ ├── editor-para-base │ └── editor-para-base-min.js │ ├── editor-para-ie │ └── editor-para-ie-min.js │ ├── editor-para │ └── editor-para-min.js │ ├── editor-selection │ └── editor-selection-min.js │ ├── editor-tab │ └── editor-tab-min.js │ ├── escape │ └── escape-min.js │ ├── event-base-ie │ └── event-base-ie-min.js │ ├── event-base │ └── event-base-min.js │ ├── event-contextmenu │ └── event-contextmenu-min.js │ ├── event-custom-base │ └── event-custom-base-min.js │ ├── event-custom-complex │ └── event-custom-complex-min.js │ ├── event-delegate │ └── event-delegate-min.js │ ├── event-flick │ └── event-flick-min.js │ ├── event-focus │ └── event-focus-min.js │ ├── event-hover │ └── event-hover-min.js │ ├── event-key │ └── event-key-min.js │ ├── event-mouseenter │ └── event-mouseenter-min.js │ ├── event-mousewheel │ └── event-mousewheel-min.js │ ├── event-move │ └── event-move-min.js │ ├── event-outside │ └── event-outside-min.js │ ├── event-resize │ └── event-resize-min.js │ ├── event-simulate │ └── event-simulate-min.js │ ├── event-synthetic │ └── event-synthetic-min.js │ ├── event-tap │ └── event-tap-min.js │ ├── event-touch │ └── event-touch-min.js │ ├── event-valuechange │ └── event-valuechange-min.js │ ├── exec-command │ └── exec-command-min.js │ ├── features │ └── features-min.js │ ├── file-flash │ └── file-flash-min.js │ ├── file-html5 │ └── file-html5-min.js │ ├── file │ └── file-min.js │ ├── frame │ └── frame-min.js │ ├── gallery-datatable-paginator │ └── gallery-datatable-paginator-min.js │ ├── gallery-datatable-row-expansion-bmo │ ├── assets │ │ └── skins │ │ │ └── sam │ │ │ ├── closed.png │ │ │ ├── gallery-datatable-row-expansion-bmo.css │ │ │ └── open.png │ └── gallery-datatable-row-expansion-bmo-min.js │ ├── gallery-funcprog │ └── gallery-funcprog-min.js │ ├── gallery-math │ └── gallery-math-min.js │ ├── gallery-node-optimizations │ └── gallery-node-optimizations-min.js │ ├── gallery-object-extras │ └── gallery-object-extras-min.js │ ├── gallery-paginator-view │ └── assets │ │ └── skins │ │ └── sam │ │ └── gallery-paginator-view.css │ ├── gesture-simulate │ └── gesture-simulate-min.js │ ├── get-nodejs │ └── get-nodejs-min.js │ ├── get │ └── get-min.js │ ├── graphics-canvas-default │ └── graphics-canvas-default-min.js │ ├── graphics-canvas │ └── graphics-canvas-min.js │ ├── graphics-group │ └── graphics-group-min.js │ ├── graphics-svg-default │ └── graphics-svg-default-min.js │ ├── graphics-svg │ └── graphics-svg-min.js │ ├── graphics-vml-default │ └── graphics-vml-default-min.js │ ├── graphics-vml │ └── graphics-vml-min.js │ ├── graphics │ └── graphics-min.js │ ├── handlebars-base │ └── handlebars-base-min.js │ ├── handlebars-compiler │ └── handlebars-compiler-min.js │ ├── highlight-accentfold │ └── highlight-accentfold-min.js │ ├── highlight-base │ └── highlight-base-min.js │ ├── history-base │ └── history-base-min.js │ ├── history-hash-ie │ └── history-hash-ie-min.js │ ├── history-hash │ └── history-hash-min.js │ ├── history-html5 │ └── history-html5-min.js │ ├── imageloader │ └── imageloader-min.js │ ├── intl-base │ └── intl-base-min.js │ ├── intl │ └── intl-min.js │ ├── io-base │ └── io-base-min.js │ ├── io-form │ └── io-form-min.js │ ├── io-nodejs │ └── io-nodejs-min.js │ ├── io-queue │ └── io-queue-min.js │ ├── io-upload-iframe │ └── io-upload-iframe-min.js │ ├── io-xdr │ ├── io-xdr-min.js │ └── io.swf │ ├── json-parse-shim │ └── json-parse-shim-min.js │ ├── json-parse │ └── json-parse-min.js │ ├── json-stringify-shim │ └── json-stringify-shim-min.js │ ├── json-stringify │ └── json-stringify-min.js │ ├── jsonp-url │ └── jsonp-url-min.js │ ├── jsonp │ └── jsonp-min.js │ ├── lazy-model-list │ └── lazy-model-list-min.js │ ├── loader-base │ └── loader-base-min.js │ ├── loader-rollup │ └── loader-rollup-min.js │ ├── loader-yui3 │ └── loader-yui3-min.js │ ├── loader │ └── loader-min.js │ ├── matrix │ └── matrix-min.js │ ├── model-list │ └── model-list-min.js │ ├── model-sync-local │ └── model-sync-local-min.js │ ├── model-sync-rest │ └── model-sync-rest-min.js │ ├── model │ └── model-min.js │ ├── node-base │ └── node-base-min.js │ ├── node-core │ └── node-core-min.js │ ├── node-event-delegate │ └── node-event-delegate-min.js │ ├── node-event-html5 │ └── node-event-html5-min.js │ ├── node-event-simulate │ └── node-event-simulate-min.js │ ├── node-flick │ ├── assets │ │ ├── node-flick-core.css │ │ └── skins │ │ │ └── sam │ │ │ └── node-flick.css │ └── node-flick-min.js │ ├── node-focusmanager │ └── node-focusmanager-min.js │ ├── node-load │ └── node-load-min.js │ ├── node-menunav │ ├── assets │ │ ├── node-menunav-core.css │ │ └── skins │ │ │ ├── night │ │ │ ├── horizontal-menu-submenu-indicator.png │ │ │ ├── node-menunav.css │ │ │ └── vertical-menu-submenu-indicator.png │ │ │ └── sam │ │ │ ├── horizontal-menu-submenu-indicator.png │ │ │ ├── horizontal-menu-submenu-toggle.png │ │ │ ├── node-menunav.css │ │ │ └── vertical-menu-submenu-indicator.png │ └── node-menunav-min.js │ ├── node-pluginhost │ └── node-pluginhost-min.js │ ├── node-screen │ └── node-screen-min.js │ ├── node-scroll-info │ └── node-scroll-info-min.js │ ├── node-style │ └── node-style-min.js │ ├── oop │ └── oop-min.js │ ├── overlay │ ├── assets │ │ ├── overlay-core.css │ │ └── skins │ │ │ ├── night │ │ │ └── overlay.css │ │ │ └── sam │ │ │ └── overlay.css │ └── overlay-min.js │ ├── paginator-core │ └── paginator-core-min.js │ ├── paginator-url │ └── paginator-url-min.js │ ├── paginator │ └── paginator-min.js │ ├── panel │ ├── assets │ │ ├── panel-core.css │ │ └── skins │ │ │ ├── night │ │ │ ├── panel.css │ │ │ └── sprite_icons.png │ │ │ └── sam │ │ │ ├── panel.css │ │ │ └── sprite_icons.png │ └── panel-min.js │ ├── parallel │ └── parallel-min.js │ ├── pjax-base │ └── pjax-base-min.js │ ├── pjax-content │ └── pjax-content-min.js │ ├── pjax-plugin │ └── pjax-plugin-min.js │ ├── pjax │ └── pjax-min.js │ ├── plugin │ └── plugin-min.js │ ├── pluginhost-base │ └── pluginhost-base-min.js │ ├── pluginhost-config │ └── pluginhost-config-min.js │ ├── promise │ └── promise-min.js │ ├── querystring-parse-simple │ └── querystring-parse-simple-min.js │ ├── querystring-parse │ └── querystring-parse-min.js │ ├── querystring-stringify-simple │ └── querystring-stringify-simple-min.js │ ├── querystring-stringify │ └── querystring-stringify-min.js │ ├── queue-promote │ └── queue-promote-min.js │ ├── range-slider │ ├── assets │ │ ├── thumb-x-oblong-dark.png │ │ ├── thumb-x-oblong.png │ │ ├── thumb-x-oblong2-dark.png │ │ ├── thumb-x-oblong2.png │ │ ├── thumb-y-oblong-dark.png │ │ ├── thumb-y-oblong.png │ │ ├── thumb-y-oblong2-dark.png │ │ └── thumb-y-oblong2.png │ └── range-slider-min.js │ ├── recordset-base │ └── recordset-base-min.js │ ├── recordset-filter │ └── recordset-filter-min.js │ ├── recordset-indexer │ └── recordset-indexer-min.js │ ├── recordset-sort │ └── recordset-sort-min.js │ ├── resize-base │ ├── assets │ │ ├── resize-base-core.css │ │ └── skins │ │ │ ├── night │ │ │ ├── arrows.png │ │ │ └── resize-base.css │ │ │ └── sam │ │ │ ├── arrows.png │ │ │ └── resize-base.css │ └── resize-base-min.js │ ├── resize-constrain │ ├── assets │ │ └── skins │ │ │ ├── night │ │ │ └── arrows.png │ │ │ └── sam │ │ │ └── arrows.png │ └── resize-constrain-min.js │ ├── resize-plugin │ ├── assets │ │ └── skins │ │ │ ├── night │ │ │ └── arrows.png │ │ │ └── sam │ │ │ └── arrows.png │ └── resize-plugin-min.js │ ├── resize-proxy │ ├── assets │ │ └── skins │ │ │ ├── night │ │ │ └── arrows.png │ │ │ └── sam │ │ │ └── arrows.png │ └── resize-proxy-min.js │ ├── router │ └── router-min.js │ ├── scrollview-base-ie │ └── scrollview-base-ie-min.js │ ├── scrollview-base │ ├── assets │ │ ├── scrollview-base-core.css │ │ └── skins │ │ │ ├── night │ │ │ └── scrollview-base.css │ │ │ └── sam │ │ │ └── scrollview-base.css │ └── scrollview-base-min.js │ ├── scrollview-list │ ├── assets │ │ ├── scrollview-list-core.css │ │ └── skins │ │ │ ├── night │ │ │ └── scrollview-list.css │ │ │ └── sam │ │ │ └── scrollview-list.css │ └── scrollview-list-min.js │ ├── scrollview-paginator │ └── scrollview-paginator-min.js │ ├── scrollview-scrollbars │ ├── assets │ │ ├── scrollview-scrollbars-core.css │ │ └── skins │ │ │ ├── night │ │ │ └── scrollview-scrollbars.css │ │ │ └── sam │ │ │ └── scrollview-scrollbars.css │ └── scrollview-scrollbars-min.js │ ├── scrollview │ └── scrollview-min.js │ ├── selector-css2 │ └── selector-css2-min.js │ ├── selector-css3 │ └── selector-css3-min.js │ ├── selector-native │ └── selector-native-min.js │ ├── selector │ └── selector-min.js │ ├── series-area-stacked │ └── series-area-stacked-min.js │ ├── series-area │ └── series-area-min.js │ ├── series-areaspline-stacked │ └── series-areaspline-stacked-min.js │ ├── series-areaspline │ └── series-areaspline-min.js │ ├── series-bar-stacked │ └── series-bar-stacked-min.js │ ├── series-bar │ └── series-bar-min.js │ ├── series-base │ └── series-base-min.js │ ├── series-candlestick │ └── series-candlestick-min.js │ ├── series-cartesian │ └── series-cartesian-min.js │ ├── series-column-stacked │ └── series-column-stacked-min.js │ ├── series-column │ └── series-column-min.js │ ├── series-combo-stacked │ └── series-combo-stacked-min.js │ ├── series-combo │ └── series-combo-min.js │ ├── series-combospline-stacked │ └── series-combospline-stacked-min.js │ ├── series-combospline │ └── series-combospline-min.js │ ├── series-curve-util │ └── series-curve-util-min.js │ ├── series-fill-util │ └── series-fill-util-min.js │ ├── series-histogram-base │ └── series-histogram-base-min.js │ ├── series-line-stacked │ └── series-line-stacked-min.js │ ├── series-line-util │ └── series-line-util-min.js │ ├── series-line │ └── series-line-min.js │ ├── series-marker-stacked │ └── series-marker-stacked-min.js │ ├── series-marker │ └── series-marker-min.js │ ├── series-ohlc │ └── series-ohlc-min.js │ ├── series-pie │ └── series-pie-min.js │ ├── series-plot-util │ └── series-plot-util-min.js │ ├── series-range │ └── series-range-min.js │ ├── series-spline-stacked │ └── series-spline-stacked-min.js │ ├── series-spline │ └── series-spline-min.js │ ├── series-stacked │ └── series-stacked-min.js │ ├── shim-plugin │ └── shim-plugin-min.js │ ├── slider-base │ ├── assets │ │ ├── skins │ │ │ ├── audio-light │ │ │ │ ├── rail-x.png │ │ │ │ ├── rail-y.png │ │ │ │ ├── slider-base.css │ │ │ │ ├── slider-skin.css │ │ │ │ ├── thumb-x.png │ │ │ │ └── thumb-y.png │ │ │ ├── audio │ │ │ │ ├── rail-x.png │ │ │ │ ├── rail-y.png │ │ │ │ ├── slider-base.css │ │ │ │ ├── slider-skin.css │ │ │ │ ├── thumb-x.png │ │ │ │ └── thumb-y.png │ │ │ ├── capsule-dark │ │ │ │ ├── rail-x-dots.png │ │ │ │ ├── rail-x-lines.png │ │ │ │ ├── rail-x.png │ │ │ │ ├── rail-y-dots.png │ │ │ │ ├── rail-y-lines.png │ │ │ │ ├── rail-y.png │ │ │ │ ├── slider-base.css │ │ │ │ ├── slider-skin.css │ │ │ │ ├── thumb-x-line.png │ │ │ │ ├── thumb-x.png │ │ │ │ ├── thumb-y-line.png │ │ │ │ └── thumb-y.png │ │ │ ├── capsule │ │ │ │ ├── rail-x-dots.png │ │ │ │ ├── rail-x-lines.png │ │ │ │ ├── rail-x.png │ │ │ │ ├── rail-y-dots.png │ │ │ │ ├── rail-y-lines.png │ │ │ │ ├── rail-y.png │ │ │ │ ├── slider-base.css │ │ │ │ ├── slider-skin.css │ │ │ │ ├── thumb-x-line.png │ │ │ │ ├── thumb-x.png │ │ │ │ ├── thumb-y-line.png │ │ │ │ ├── thumb-y-lines.png │ │ │ │ └── thumb-y.png │ │ │ ├── night │ │ │ │ ├── rail-x-lines.png │ │ │ │ ├── rail-x.png │ │ │ │ ├── rail-y-lines.png │ │ │ │ ├── rail-y.png │ │ │ │ ├── slider-base.css │ │ │ │ ├── slider-skin.css │ │ │ │ ├── thumb-x.png │ │ │ │ └── thumb-y.png │ │ │ ├── round-dark │ │ │ │ ├── rail-x.png │ │ │ │ ├── rail-y.png │ │ │ │ ├── slider-base.css │ │ │ │ ├── slider-skin.css │ │ │ │ ├── thumb-x-grip.png │ │ │ │ ├── thumb-x.png │ │ │ │ ├── thumb-y-grip.png │ │ │ │ └── thumb-y.png │ │ │ ├── round │ │ │ │ ├── rail-x.png │ │ │ │ ├── rail-y.png │ │ │ │ ├── slider-base.css │ │ │ │ ├── slider-skin.css │ │ │ │ ├── thumb-x-grip.png │ │ │ │ ├── thumb-x.png │ │ │ │ ├── thumb-y-grip.png │ │ │ │ └── thumb-y.png │ │ │ ├── sam-dark │ │ │ │ ├── rail-x-lines.png │ │ │ │ ├── rail-x.png │ │ │ │ ├── rail-y-lines.png │ │ │ │ ├── rail-y.png │ │ │ │ ├── slider-base.css │ │ │ │ ├── slider-skin.css │ │ │ │ ├── thumb-x.png │ │ │ │ └── thumb-y.png │ │ │ └── sam │ │ │ │ ├── rail-x-lines.png │ │ │ │ ├── rail-x.png │ │ │ │ ├── rail-y-lines.png │ │ │ │ ├── rail-y.png │ │ │ │ ├── slider-base.css │ │ │ │ ├── slider-skin.css │ │ │ │ ├── thumb-x.png │ │ │ │ └── thumb-y.png │ │ ├── slider-base-core.css │ │ ├── slider-core.css │ │ ├── thumb-x-oblong-dark.png │ │ ├── thumb-x-oblong.png │ │ ├── thumb-x-oblong2-dark.png │ │ ├── thumb-x-oblong2.png │ │ ├── thumb-y-oblong-dark.png │ │ ├── thumb-y-oblong.png │ │ ├── thumb-y-oblong2-dark.png │ │ └── thumb-y-oblong2.png │ └── slider-base-min.js │ ├── slider-value-range │ ├── assets │ │ ├── thumb-x-oblong-dark.png │ │ ├── thumb-x-oblong.png │ │ ├── thumb-x-oblong2-dark.png │ │ ├── thumb-x-oblong2.png │ │ ├── thumb-y-oblong-dark.png │ │ ├── thumb-y-oblong.png │ │ ├── thumb-y-oblong2-dark.png │ │ └── thumb-y-oblong2.png │ └── slider-value-range-min.js │ ├── sortable-scroll │ └── sortable-scroll-min.js │ ├── sortable │ └── sortable-min.js │ ├── stylesheet │ └── stylesheet-min.js │ ├── substitute │ └── substitute-min.js │ ├── swf │ └── swf-min.js │ ├── swfdetect │ └── swfdetect-min.js │ ├── tabview-base │ └── tabview-base-min.js │ ├── tabview-plugin │ └── tabview-plugin-min.js │ ├── tabview │ ├── assets │ │ ├── skins │ │ │ ├── night │ │ │ │ └── tabview.css │ │ │ └── sam │ │ │ │ └── tabview.css │ │ └── tabview-core.css │ └── tabview-min.js │ ├── template-base │ └── template-base-min.js │ ├── template-micro │ └── template-micro-min.js │ ├── test-console │ ├── assets │ │ ├── skins │ │ │ └── sam │ │ │ │ └── test-console.css │ │ └── test-console-core.css │ └── test-console-min.js │ ├── test │ └── test-min.js │ ├── text-accentfold │ └── text-accentfold-min.js │ ├── text-data-accentfold │ └── text-data-accentfold-min.js │ ├── text-data-wordbreak │ └── text-data-wordbreak-min.js │ ├── text-wordbreak │ └── text-wordbreak-min.js │ ├── timers │ └── timers-min.js │ ├── transition-timer │ └── transition-timer-min.js │ ├── transition │ └── transition-min.js │ ├── tree-labelable │ └── tree-labelable-min.js │ ├── tree-lazy │ └── tree-lazy-min.js │ ├── tree-node │ └── tree-node-min.js │ ├── tree-openable │ └── tree-openable-min.js │ ├── tree-selectable │ └── tree-selectable-min.js │ ├── tree-sortable │ └── tree-sortable-min.js │ ├── tree │ └── tree-min.js │ ├── uploader-deprecated │ └── assets │ │ └── uploader.swf │ ├── uploader-flash │ ├── assets │ │ └── uploader-flash-core.css │ └── uploader-flash-min.js │ ├── uploader-html5 │ ├── assets │ │ └── uploader-flash-core.css │ └── uploader-html5-min.js │ ├── uploader-queue │ ├── assets │ │ └── uploader-flash-core.css │ └── uploader-queue-min.js │ ├── uploader │ ├── assets │ │ ├── flashuploader.swf │ │ └── uploader-flash-core.css │ └── uploader-min.js │ ├── view-node-map │ └── view-node-map-min.js │ ├── view │ └── view-min.js │ ├── widget-anim │ └── widget-anim-min.js │ ├── widget-autohide │ └── widget-autohide-min.js │ ├── widget-base-ie │ └── widget-base-ie-min.js │ ├── widget-base │ ├── assets │ │ ├── skins │ │ │ ├── night │ │ │ │ └── widget-base.css │ │ │ └── sam │ │ │ │ └── widget-base.css │ │ └── widget-base-core.css │ └── widget-base-min.js │ ├── widget-buttons │ ├── assets │ │ └── skins │ │ │ ├── night │ │ │ └── sprite_icons.gif │ │ │ └── sam │ │ │ └── sprite_icons.gif │ └── widget-buttons-min.js │ ├── widget-child │ └── widget-child-min.js │ ├── widget-htmlparser │ └── widget-htmlparser-min.js │ ├── widget-modality │ ├── assets │ │ ├── skins │ │ │ ├── night │ │ │ │ └── widget-modality.css │ │ │ └── sam │ │ │ │ └── widget-modality.css │ │ └── widget-modality-core.css │ └── widget-modality-min.js │ ├── widget-parent │ └── widget-parent-min.js │ ├── widget-position-align │ └── widget-position-align-min.js │ ├── widget-position-constrain │ └── widget-position-constrain-min.js │ ├── widget-position │ └── widget-position-min.js │ ├── widget-skin │ └── widget-skin-min.js │ ├── widget-stack │ ├── assets │ │ ├── skins │ │ │ ├── night │ │ │ │ └── widget-stack.css │ │ │ └── sam │ │ │ │ └── widget-stack.css │ │ └── widget-stack-core.css │ └── widget-stack-min.js │ ├── widget-stdmod │ └── widget-stdmod-min.js │ ├── widget-uievents │ └── widget-uievents-min.js │ ├── yql-jsonp │ └── yql-jsonp-min.js │ ├── yql-nodejs │ └── yql-nodejs-min.js │ ├── yql-winjs │ └── yql-winjs-min.js │ ├── yql │ └── yql-min.js │ ├── yui-base │ └── yui-base-min.js │ ├── yui-core │ └── yui-core-min.js │ ├── yui-later │ └── yui-later-min.js │ ├── yui-log-nodejs │ └── yui-log-nodejs-min.js │ ├── yui-log │ └── yui-log-min.js │ ├── yui-nodejs │ └── yui-nodejs-min.js │ ├── yui-throttle │ └── yui-throttle-min.js │ └── yui │ └── yui-min.js ├── jsonrpc.cgi ├── lib └── README ├── long_list.cgi ├── migrate.pl ├── page.cgi ├── patches └── mojolicious-1279.patch ├── post_bug.cgi ├── process_bug.cgi ├── public └── favicon.ico ├── qa ├── config │ ├── checksetup_answers.txt │ ├── 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 │ ├── archived │ └── test_email_preferences.t │ ├── lib │ └── QA │ │ ├── REST.pm │ │ ├── RPC.pm │ │ ├── RPC │ │ ├── JSONRPC.pm │ │ └── XMLRPC.pm │ │ ├── Tests.pm │ │ └── Util.pm │ ├── rest_bugzilla.t │ ├── rest_classification.t │ ├── selenium_server_start.t │ ├── selenium_server_stop.t │ ├── test_bmo_autolinkification.t │ ├── test_bmo_enter_new_bug.t │ ├── test_bmo_retire_values.t │ ├── test_bug_edit.t │ ├── test_choose_priority.t │ ├── test_classifications.t │ ├── test_config.t │ ├── test_create_user_accounts.t │ ├── test_custom_fields.t │ ├── test_custom_fields_admin.t │ ├── test_default_groups.t │ ├── test_dependencies.t │ ├── test_edit_products_properties.t │ ├── test_enter_new_bug.t │ ├── test_flags.t │ ├── test_flags2.t │ ├── test_groups.t │ ├── test_keywords.t │ ├── test_login.t │ ├── test_milestones.t │ ├── test_private_attachments.t │ ├── test_qa_contact.t │ ├── test_require_login.t │ ├── test_sanity_check.t │ ├── test_saved_searches.t │ ├── test_search.t │ ├── test_security.t │ ├── test_shared_searches.t │ ├── test_show_all_products.t │ ├── test_status_whiteboard.t │ ├── test_sudo_sessions.t │ ├── test_target_milestones.t │ ├── test_time_summary.t │ ├── test_user_groups.t │ ├── test_user_matching.t │ ├── test_user_preferences.t │ ├── test_user_privs.t │ ├── test_votes.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 ├── auth-test-app ├── block-ip.pl ├── bloomfilter-populate.pl ├── bug_1642654.pl ├── bugzilla-queue.rhel ├── build-bmo-push-data.pl ├── build-useragent-blocking-regex.pl ├── bulk_index.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_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 ├── reassign_open_bugs.pl ├── remove-non-public-data.pl ├── remove_idle_group_members.pl ├── reset_default_user.pl ├── resolve_bugs.pl ├── sanitizeme.pl ├── search.pl ├── secbugsreport.pl ├── security_remove.pl ├── sendmail.pl ├── sendunsentbugmail.pl ├── start_morbo ├── suggest-user.pl ├── syncflags.pl ├── syncmsandversions.pl ├── triage_owners_csv.pl ├── undo.pl ├── update-bug-groups.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 │ └── prism.css ├── standard │ ├── admin.css │ ├── advanced-search.css │ ├── attachment.css │ ├── buglist.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 │ │ ├── MaterialIcons-Regular.woff2 │ │ └── NotoMono-Regular.woff2 │ ├── global.css │ ├── global │ │ └── calendar.png │ ├── guided.css │ ├── index.css │ ├── mobile.css │ ├── page.css │ ├── params.css │ ├── search_form.css │ ├── show_bug.css │ ├── show_multiple.css │ ├── signup.css │ └── summarize-time.css ├── yui.css.list └── yui3.css.list ├── summarize_time.cgi ├── t ├── .perlcritic-history ├── 002goodperl.t ├── 004template.t ├── 005whitespace.t ├── 006spellcheck.t ├── 007util.t ├── 008filter.t ├── 009bugwords.t ├── 010dependencies.t ├── 011pod.t ├── 012throwables.t ├── 903-passwdqc-conf.t ├── Support │ ├── Files.pm │ ├── Systemexec.pm │ └── Templates.pm ├── bmo │ ├── bounced-emails.t │ ├── comments.t │ └── passwords.t ├── critic.t ├── css.t ├── daemon-control-catch-signal.t ├── db-error-cleanup.pl ├── extract-nicks.t ├── hash-sig.t ├── markdown.t ├── mock-db.t ├── mock-params.t ├── mojo-example.t ├── mojo-oauth2.t ├── quicksearch.t ├── sqlite-memory.t └── wants.t ├── template └── en │ └── default │ ├── account │ ├── auth │ │ ├── confirm_scopes.html.tmpl │ │ ├── delegation.html.tmpl │ │ ├── login-small.html.tmpl │ │ ├── login.html.tmpl │ │ ├── signup-form.html.tmpl │ │ └── signup-small.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 │ ├── prefs │ │ ├── account.html.tmpl │ │ ├── apikey.html.tmpl │ │ ├── email.html.tmpl │ │ ├── mfa.html.tmpl │ │ ├── permissions.html.tmpl │ │ ├── prefs.html.tmpl │ │ ├── saved-searches.html.tmpl │ │ ├── sessions.html.tmpl │ │ ├── settings.html.tmpl │ │ └── tabs.html.tmpl │ ├── profile-activity.html.tmpl │ └── reset-password.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── dependencygraph.html.tmpl │ │ ├── editparams.html.tmpl │ │ ├── elastic.html.tmpl │ │ ├── general.html.tmpl │ │ ├── groupsecurity.html.tmpl │ │ ├── index.html.tmpl │ │ ├── ldap.html.tmpl │ │ ├── mta.html.tmpl │ │ ├── patchviewer.html.tmpl │ │ ├── query.html.tmpl │ │ ├── radius.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 │ ├── 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 │ ├── comment.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 │ │ └── 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 │ ├── 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 │ ├── 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 │ │ └── verify.html.tmpl │ ├── protected.html.tmpl │ ├── recovery.html.tmpl │ └── totp │ │ ├── enroll.html.tmpl │ │ └── verify.html.tmpl │ ├── pages │ ├── bug-writing.html.tmpl │ ├── bugzilla.dtd.tmpl │ ├── linked.html.tmpl │ ├── linkify.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 │ ├── users │ ├── signup_email.html.tmpl │ ├── signup_email.txt+email.tmpl │ ├── signup_email_finish.html.tmpl │ └── signup_email_verify.html.tmpl │ ├── 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: -------------------------------------------------------------------------------- 1 | .git 2 | MYMETA.* 3 | *.tar 4 | Makefile 5 | blib 6 | local 7 | data 8 | localconfig 9 | pm_to_blib 10 | template_cache 11 | \#*\# 12 | */\#*\# 13 | */*/\#*\# 14 | */*/*/\#*\# 15 | */*/*/*/\#*\# 16 | .DS_Store 17 | */.DS_Store 18 | */*/.DS_Store 19 | */*/*/.DS_Store 20 | */*/*/*/.DS_Store 21 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # top-most EditorConfig file 2 | root = true 3 | 4 | [*] 5 | end_of_line = lf 6 | insert_final_newline = true 7 | 8 | # 2 space indentation for Perl files 9 | [*.{pl,PL,pm,cgi,t}] 10 | indent_style = space 11 | indent_size = 2 12 | 13 | # 2 space indentation for HTML, CSS, JavaScript and YAML files 14 | [.{html,tmpl,css,js,yml}] 15 | indent_style = space 16 | indent_size = 2 17 | 18 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: bugzilla 4 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/App/cpm/Resolver.pm: -------------------------------------------------------------------------------- 1 | package App::cpm::Resolver; 2 | use strict; 3 | use warnings; 4 | 5 | 1; 6 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/App/cpm/Worker/Installer/Prebuilt.pm: -------------------------------------------------------------------------------- 1 | package App::cpm::Worker::Installer::Prebuilt; 2 | use strict; 3 | use warnings; 4 | 5 | my @SKIP = ( 6 | qr{/XML-SAX-v?[0-9\.]+\.tar\.gz$}, 7 | ); 8 | 9 | sub new { 10 | my $class = shift; 11 | bless {}, $class; 12 | } 13 | 14 | sub skip { 15 | my ($self, $uri) = @_; 16 | !!grep { $uri =~ $_ } @SKIP; 17 | } 18 | 19 | 1; 20 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/Carton/Dependency.pm: -------------------------------------------------------------------------------- 1 | package Carton::Dependency; 2 | use strict; 3 | use Class::Tiny { 4 | module => undef, 5 | requirement => undef, 6 | dist => undef, 7 | }; 8 | 9 | sub requirements { shift->dist->requirements(@_) } 10 | 11 | sub distname { 12 | my $self = shift; 13 | $self->dist->name; 14 | } 15 | 16 | sub version { 17 | my $self = shift; 18 | $self->dist->version_for($self->module); 19 | } 20 | 21 | 1; 22 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/Carton/Dist/Core.pm: -------------------------------------------------------------------------------- 1 | package Carton::Dist::Core; 2 | use strict; 3 | use parent 'Carton::Dist'; 4 | 5 | use Class::Tiny qw( module_version ); 6 | 7 | sub BUILDARGS { 8 | my($class, %args) = @_; 9 | 10 | # TODO represent dual-life 11 | $args{name} =~ s/::/-/g; 12 | 13 | \%args; 14 | } 15 | 16 | sub is_core { 1 } 17 | 18 | sub version_for { 19 | my($self, $module) = @_; 20 | $self->module_version; 21 | } 22 | 23 | 1; 24 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/Carton/Mirror.pm: -------------------------------------------------------------------------------- 1 | package Carton::Mirror; 2 | use strict; 3 | use Class::Tiny qw( url ); 4 | 5 | our $DefaultMirror = 'http://cpan.metacpan.org/'; 6 | 7 | sub BUILDARGS { 8 | my($class, $url) = @_; 9 | return { url => $url }; 10 | } 11 | 12 | sub default { 13 | my $class = shift; 14 | $class->new($DefaultMirror); 15 | } 16 | 17 | sub is_default { 18 | my $self = shift; 19 | $self->url eq $DefaultMirror; 20 | } 21 | 22 | 1; 23 | 24 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/Carton/Package.pm: -------------------------------------------------------------------------------- 1 | package Carton::Package; 2 | use strict; 3 | use Class::Tiny qw( name version pathname ); 4 | 5 | sub BUILDARGS { 6 | my($class, @args) = @_; 7 | return { name => $args[0], version => $args[1], pathname => $args[2] }; 8 | } 9 | 10 | sub version_format { 11 | my $self = shift; 12 | defined $self->version ? $self->version : 'undef'; 13 | } 14 | 15 | 1; 16 | 17 | 18 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/Menlo/Util.pm: -------------------------------------------------------------------------------- 1 | package Menlo::Util; 2 | use strict; 3 | 4 | use Exporter; 5 | our @ISA = qw(Exporter); 6 | our @EXPORT_OK = qw(WIN32); 7 | 8 | use constant WIN32 => $^O eq 'MSWin32'; 9 | 10 | if (WIN32) { 11 | require Win32::ShellQuote; 12 | *shell_quote = \&Win32::ShellQuote::quote_native; 13 | } else { 14 | require String::ShellQuote; 15 | *shell_quote = \&String::ShellQuote::shell_quote_best_effort; 16 | } 17 | 18 | 1; 19 | 20 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/Module/CPANfile/Prereq.pm: -------------------------------------------------------------------------------- 1 | package Module::CPANfile::Prereq; 2 | use strict; 3 | 4 | sub new { 5 | my($class, %options) = @_; 6 | bless \%options, $class; 7 | } 8 | 9 | sub feature { $_[0]->{feature} } 10 | sub phase { $_[0]->{phase} } 11 | sub type { $_[0]->{type} } 12 | sub module { $_[0]->{module} } 13 | sub requirement { $_[0]->{requirement} } 14 | 15 | 1; 16 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/URI/_foreign.pm: -------------------------------------------------------------------------------- 1 | package URI::_foreign; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use parent 'URI::_generic'; 7 | 8 | our $VERSION = '1.76'; 9 | 10 | 1; 11 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/URI/_login.pm: -------------------------------------------------------------------------------- 1 | package URI::_login; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use parent qw(URI::_server URI::_userpass); 7 | 8 | our $VERSION = '1.76'; 9 | 10 | # Generic terminal logins. This is used as a base class for 'telnet', 11 | # 'tn3270', and 'rlogin' URL schemes. 12 | 13 | 1; 14 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/URI/file/QNX.pm: -------------------------------------------------------------------------------- 1 | package URI::file::QNX; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use parent 'URI::file::Unix'; 7 | 8 | our $VERSION = '1.76'; 9 | 10 | sub _file_extract_path 11 | { 12 | my($class, $path) = @_; 13 | # tidy path 14 | $path =~ s,(.)//+,$1/,g; # ^// is correct 15 | $path =~ s,(/\.)+/,/,g; 16 | $path = "./$path" if $path =~ m,^[^:/]+:,,; # look like "scheme:" 17 | $path; 18 | } 19 | 20 | 1; 21 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/URI/https.pm: -------------------------------------------------------------------------------- 1 | package URI::https; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | our $VERSION = '1.76'; 7 | 8 | use parent 'URI::http'; 9 | 10 | sub default_port { 443 } 11 | 12 | sub secure { 1 } 13 | 14 | 1; 15 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/URI/ldaps.pm: -------------------------------------------------------------------------------- 1 | package URI::ldaps; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | our $VERSION = '1.76'; 7 | 8 | use parent 'URI::ldap'; 9 | 10 | sub default_port { 636 } 11 | 12 | sub secure { 1 } 13 | 14 | 1; 15 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/URI/mms.pm: -------------------------------------------------------------------------------- 1 | package URI::mms; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | our $VERSION = '1.76'; 7 | 8 | use parent 'URI::http'; 9 | 10 | sub default_port { 1755 } 11 | 12 | 1; 13 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/URI/nntp.pm: -------------------------------------------------------------------------------- 1 | package URI::nntp; # draft-gilman-news-url-01 2 | 3 | use strict; 4 | use warnings; 5 | 6 | our $VERSION = '1.76'; 7 | 8 | use parent 'URI::news'; 9 | 10 | 1; 11 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/URI/rlogin.pm: -------------------------------------------------------------------------------- 1 | package URI::rlogin; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | our $VERSION = '1.76'; 7 | 8 | use parent 'URI::_login'; 9 | 10 | sub default_port { 513 } 11 | 12 | 1; 13 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/URI/rsync.pm: -------------------------------------------------------------------------------- 1 | package URI::rsync; # http://rsync.samba.org/ 2 | 3 | # rsync://[USER@]HOST[:PORT]/SRC 4 | 5 | use strict; 6 | use warnings; 7 | 8 | our $VERSION = '1.76'; 9 | 10 | use parent qw(URI::_server URI::_userpass); 11 | 12 | sub default_port { 873 } 13 | 14 | 1; 15 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/URI/rtsp.pm: -------------------------------------------------------------------------------- 1 | package URI::rtsp; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | our $VERSION = '1.76'; 7 | 8 | use parent 'URI::http'; 9 | 10 | sub default_port { 554 } 11 | 12 | 1; 13 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/URI/rtspu.pm: -------------------------------------------------------------------------------- 1 | package URI::rtspu; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | our $VERSION = '1.76'; 7 | 8 | use parent 'URI::rtsp'; 9 | 10 | sub default_port { 554 } 11 | 12 | 1; 13 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/URI/sftp.pm: -------------------------------------------------------------------------------- 1 | package URI::sftp; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use parent 'URI::ssh'; 7 | 8 | our $VERSION = '1.76'; 9 | 10 | 1; 11 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/URI/sips.pm: -------------------------------------------------------------------------------- 1 | package URI::sips; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | our $VERSION = '1.76'; 7 | 8 | use parent 'URI::sip'; 9 | 10 | sub default_port { 5061 } 11 | 12 | sub secure { 1 } 13 | 14 | 1; 15 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/URI/snews.pm: -------------------------------------------------------------------------------- 1 | package URI::snews; # draft-gilman-news-url-01 2 | 3 | use strict; 4 | use warnings; 5 | 6 | our $VERSION = '1.76'; 7 | 8 | use parent 'URI::news'; 9 | 10 | sub default_port { 563 } 11 | 12 | sub secure { 1 } 13 | 14 | 1; 15 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/URI/ssh.pm: -------------------------------------------------------------------------------- 1 | package URI::ssh; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | our $VERSION = '1.76'; 7 | 8 | use parent 'URI::_login'; 9 | 10 | # ssh://[USER@]HOST[:PORT]/SRC 11 | 12 | sub default_port { 22 } 13 | 14 | sub secure { 1 } 15 | 16 | 1; 17 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/URI/telnet.pm: -------------------------------------------------------------------------------- 1 | package URI::telnet; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | our $VERSION = '1.76'; 7 | 8 | use parent 'URI::_login'; 9 | 10 | sub default_port { 23 } 11 | 12 | 1; 13 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/URI/tn3270.pm: -------------------------------------------------------------------------------- 1 | package URI::tn3270; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | our $VERSION = '1.76'; 7 | 8 | use parent 'URI::_login'; 9 | 10 | sub default_port { 23 } 11 | 12 | 1; 13 | -------------------------------------------------------------------------------- /.github/cpm/lib/perl5/URI/urn/oid.pm: -------------------------------------------------------------------------------- 1 | package URI::urn::oid; # RFC 2061 2 | 3 | use strict; 4 | use warnings; 5 | 6 | our $VERSION = '1.76'; 7 | 8 | use parent 'URI::urn'; 9 | 10 | sub oid { 11 | my $self = shift; 12 | my $old = $self->nss; 13 | if (@_) { 14 | $self->nss(join(".", @_)); 15 | } 16 | return split(/\./, $old) if wantarray; 17 | return $old; 18 | } 19 | 20 | 1; 21 | -------------------------------------------------------------------------------- /Bugzilla/Error/Code.pm: -------------------------------------------------------------------------------- 1 | # This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | 8 | package Bugzilla::Error::Code; 9 | 10 | use 5.10.1; 11 | use Mojo::Base 'Bugzilla::Error::Base'; 12 | 13 | 14 | 1; 15 | -------------------------------------------------------------------------------- /Bugzilla/Error/User.pm: -------------------------------------------------------------------------------- 1 | # This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | 8 | package Bugzilla::Error::User; 9 | 10 | use 5.10.1; 11 | use Mojo::Base 'Bugzilla::Error::Base'; 12 | 13 | 1; 14 | -------------------------------------------------------------------------------- /Bugzilla/Markdown/GFM/SyntaxExtensionList.pm: -------------------------------------------------------------------------------- 1 | package Bugzilla::Markdown::GFM::SyntaxExtensionList; 2 | 3 | use 5.10.1; 4 | use strict; 5 | use warnings; 6 | 7 | sub SETUP { 8 | my ($class, $FFI) = @_; 9 | 10 | $FFI->custom_type( 11 | markdown_syntax_extension_list_t => { 12 | native_type => 'opaque', 13 | native_to_perl => sub { 14 | bless \$_[0], $class if $_[0]; 15 | }, 16 | perl_to_native => sub { $_[0] ? ${$_[0]} : 0 }, 17 | } 18 | ); 19 | } 20 | 21 | 1; 22 | 23 | __END__ 24 | -------------------------------------------------------------------------------- /Bugzilla/PatchReader/Base.pm: -------------------------------------------------------------------------------- 1 | package Bugzilla::PatchReader::Base; 2 | 3 | use 5.10.1; 4 | use strict; 5 | use warnings; 6 | 7 | sub new { 8 | my $class = shift; 9 | $class = ref($class) || $class; 10 | my $this = {}; 11 | bless $this, $class; 12 | 13 | return $this; 14 | } 15 | 16 | sub sends_data_to { 17 | my $this = shift; 18 | if (defined($_[0])) { 19 | $this->{TARGET} = $_[0]; 20 | } 21 | else { 22 | return $this->{TARGET}; 23 | } 24 | } 25 | 26 | 1 27 | -------------------------------------------------------------------------------- /conf/log4perl-syslog.conf: -------------------------------------------------------------------------------- 1 | log4perl.rootLogger = INFO, Syslog 2 | log4perl.appender.Syslog = Log::Dispatch::Syslog 3 | log4perl.appender.Syslog.min_level = notice 4 | log4perl.appender.Syslog.ident = bugzilla 5 | log4perl.appender.Syslog.facility = daemon 6 | log4perl.appender.Syslog.logopt = cons,pid 7 | log4perl.appender.Syslog.layout = Log::Log4perl::Layout::PatternLayout 8 | log4perl.appender.Syslog.layout.ConversionPattern = [%c] %m{chomp}%n 9 | -------------------------------------------------------------------------------- /conf/log4perl-t.conf: -------------------------------------------------------------------------------- 1 | log4perl.rootLogger = DEBUG, Screen 2 | log4perl.appender.Screen = Log::Log4perl::Appender::Screen 3 | log4perl.appender.Screen.layout = Log::Log4perl::Layout::PatternLayout 4 | log4perl.appender.Screen.layout.ConversionPattern = # [%6p] {%c} %m{chomp}%n 5 | -------------------------------------------------------------------------------- /contrib/bugzilla-jobqueue.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Bugzilla Daemon 3 | After=network.target 4 | 5 | [Service] 6 | Type=simple 7 | WorkingDirectory=/home/bugzilla/harmony/ 8 | ExecStart=/usr/bin/perl jobqueue.pl start -d -f 9 | Environment="PERL5LIB=/home/bugzilla/harmony/local/lib/perl5" 10 | User=bugzilla 11 | 12 | [Install] 13 | WantedBy=multi-user.target 14 | -------------------------------------------------------------------------------- /contrib/bugzilla.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Bugzilla Daemon 3 | After=network.target 4 | 5 | [Service] 6 | Type=simple 7 | WorkingDirectory=/home/bugzilla/harmony/ 8 | ExecStart=/usr/bin/perl local/bin/hypnotoad -f bugzilla.pl prefork 9 | Environment="PERL5LIB=/home/bugzilla/harmony/local/lib/perl5" 10 | Environment="MOJO_REVERSE_PROXY=2" 11 | Environment="LOG4PERL_CONFIG_FILE=log4perl-default.conf" 12 | User=bugzilla 13 | 14 | [Install] 15 | WantedBy=multi-user.target 16 | -------------------------------------------------------------------------------- /docker/images/Dockerfile.mysql8: -------------------------------------------------------------------------------- 1 | FROM mysql:8 2 | # We do this because we don't want everything in the docker/mysql folder, just the one 3 | COPY docker/mysql/bugzilla-mysql8.cnf /etc/mysql/conf.d/ 4 | -------------------------------------------------------------------------------- /docker/mysql/bugzilla-mysql56.cnf: -------------------------------------------------------------------------------- 1 | [mysqld] 2 | max_allowed_packet = 64M 3 | innodb_file_format = Barracuda 4 | innodb_file_per_table = ON 5 | innodb_large_prefix = ON 6 | 7 | [mysql] 8 | max_allowed_packet = 64M 9 | -------------------------------------------------------------------------------- /docker/mysql/bugzilla-mysql8.cnf: -------------------------------------------------------------------------------- 1 | [mysqld] 2 | max_allowed_packet = 64M 3 | 4 | [mysql] 5 | max_allowed_packet = 64M 6 | -------------------------------------------------------------------------------- /docker/tinyproxy/Dockerfile: -------------------------------------------------------------------------------- 1 | # This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | 5 | FROM alpine:3.3 6 | 7 | RUN apk --no-cache add tinyproxy 8 | 9 | COPY tinyproxy.conf /tinyproxy.conf 10 | 11 | EXPOSE 1080 12 | ENTRYPOINT ["tinyproxy"] 13 | CMD ["-d", "-c", "/tinyproxy.conf"] 14 | -------------------------------------------------------------------------------- /docs/en/images/bugzilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/docs/en/images/bugzilla.png -------------------------------------------------------------------------------- /docs/en/images/bzLifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/docs/en/images/bzLifecycle.png -------------------------------------------------------------------------------- /docs/en/rst/administering/preferences.rst: -------------------------------------------------------------------------------- 1 | .. _default-preferences: 2 | 3 | Default Preferences 4 | ################### 5 | 6 | Each user of Bugzilla can set certain preferences about how they want 7 | Bugzilla to behave. Here, you can say whether or not each of the possible 8 | preferences is available to the user and, if it is, what the default value 9 | is. 10 | 11 | -------------------------------------------------------------------------------- /docs/en/rst/api/core/v1/index.rst: -------------------------------------------------------------------------------- 1 | Core API v1 2 | =========== 3 | 4 | .. toctree:: 5 | 6 | general 7 | attachment 8 | bug 9 | bug-user-last-visit 10 | flag-activity 11 | bugzilla 12 | classification 13 | comment 14 | field 15 | group 16 | product 17 | user 18 | -------------------------------------------------------------------------------- /docs/en/rst/api/index.rst: -------------------------------------------------------------------------------- 1 | .. _apis: 2 | 3 | WebService API Reference 4 | ======================== 5 | 6 | This Bugzilla installation has the following WebService APIs available 7 | (as of the last time you compiled the documentation): 8 | 9 | .. toctree:: 10 | :glob: 11 | 12 | core/v*/index 13 | ../extensions/*/api/v*/index 14 | -------------------------------------------------------------------------------- /docs/en/rst/index.rst: -------------------------------------------------------------------------------- 1 | ======================================== 2 | Bugzilla Documentation (bugzilla.org) 3 | ======================================== 4 | 5 | .. toctree:: 6 | :maxdepth: 1 7 | :numbered: 4 8 | 9 | about/index 10 | using/index 11 | installing/index 12 | administering/index 13 | integrating/index 14 | api/index 15 | -------------------------------------------------------------------------------- /docs/en/rst/installing/apache-windows.rst: -------------------------------------------------------------------------------- 1 | .. _apache-windows: 2 | 3 | Apache on Windows 4 | ################# 5 | 6 | .. note:: If deploying Bugzilla on Windows, using WSL is recommened. 7 | -------------------------------------------------------------------------------- /docs/en/rst/installing/apache.rst: -------------------------------------------------------------------------------- 1 | .. This document is shared among all non-Windows OSes. 2 | 3 | .. _apache: 4 | 5 | Apache 6 | ###### 7 | 8 | .. note:: 9 | Previous versions of Bugzilla ran using Apache's ModPerl or as CGI. 10 | 11 | .. todo:: 12 | Instructions for using Apache as a reverse proxy. 13 | 14 | -------------------------------------------------------------------------------- /docs/en/rst/installing/docker.rst: -------------------------------------------------------------------------------- 1 | .. _docker: 2 | 3 | Evaluating with Docker 4 | ###################### 5 | 6 | .. Placeholder for running under docker. 7 | 8 | .. note:: At this time the Bugzilla team has not produced a production 9 | Docker container for running the server in production. These instructions 10 | cover running Bugzilla in a docker container for evaluation. 11 | 12 | See the `Docker instructions `_. 13 | -------------------------------------------------------------------------------- /docs/en/rst/installing/iis.rst: -------------------------------------------------------------------------------- 1 | .. _iis: 2 | 3 | Microsoft IIS 4 | ############# 5 | 6 | .. todo:: is this obsolete? -------------------------------------------------------------------------------- /docs/en/rst/installing/migrating-from-1.inc.rst: -------------------------------------------------------------------------------- 1 | .. This file is included in multiple places, so can't have labels as they 2 | appear as duplicates. 3 | 4 | The procedure to migrate to Git is as follows. The idea is to switch version 5 | control systems without changing the version of Bugzilla you are using, 6 | to minimise the risk of conflict or problems. Any upgrade can then 7 | happen as a separate step. 8 | -------------------------------------------------------------------------------- /docs/en/rst/installing/migrating-from-cvs.rst: -------------------------------------------------------------------------------- 1 | .. _migrating-from-cvs: 2 | 3 | Migrating from CVS 4 | ################## 5 | 6 | .. |updatecommand| replace:: :command:`cvs update -rBUGZILLA-$VERSION-STABLE -dP` 7 | .. |diffcommand| replace:: :command:`cvs diff -puN > patch.diff` 8 | .. |extstatusinfo| replace:: The command :command:`cvs status extensions/` should help you work out what you added, if anything. 9 | 10 | .. include:: migrating-from-1.inc.rst 11 | .. include:: migrating-from-2.inc.rst 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/en/rst/installing/sqlite.rst: -------------------------------------------------------------------------------- 1 | .. _sqlite: 2 | 3 | SQLite 4 | ###### 5 | 6 | .. warning:: Due to SQLite's `concurrency 7 | limitations `_ we recommend SQLite only for 8 | small and development Bugzilla installations. 9 | 10 | Once you have SQLite installed, no additional configuration is required to 11 | run Bugzilla. 12 | 13 | The database will be stored in :file:`$BUGZILLA_HOME/data/db/$db_name`, where 14 | ``$db_name`` is the database name defined in :file:`localconfig`. 15 | -------------------------------------------------------------------------------- /docs/en/rst/installing/web_server.rst: -------------------------------------------------------------------------------- 1 | .. _web_server: 2 | 3 | Web Server 4 | ########## 5 | 6 | Bugzilla runs as a web app, but for production use, you will want 7 | to proxy it through a web server. 8 | 9 | .. toctree:: 10 | :maxdepth: 1 11 | 12 | apache 13 | apache-windows 14 | caddy 15 | iis 16 | nginx 17 | 18 | -------------------------------------------------------------------------------- /docs/en/rst/using/index.rst: -------------------------------------------------------------------------------- 1 | .. _using: 2 | 3 | ========== 4 | User Guide 5 | ========== 6 | 7 | .. toctree:: 8 | :maxdepth: 2 9 | 10 | creating-an-account 11 | filing 12 | understanding 13 | editing 14 | finding 15 | reports-and-charts 16 | tips 17 | preferences 18 | extensions 19 | 20 | -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx==5.3.0 2 | sphinx_rtd_theme==1.3.0 3 | readthedocs-sphinx-search==0.3.2 4 | -------------------------------------------------------------------------------- /extensions/BMO/template/en/default/hook/attachment/createformcontents-patch_notes.html.tmpl: -------------------------------------------------------------------------------- 1 | You can read about the patch submission and approval process.
2 | -------------------------------------------------------------------------------- /extensions/BMO/template/en/default/hook/bug/process/header-title.html.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | 9 | [% title = title.replace('^' _ terms.Bug _ ' ', '') %] 10 | -------------------------------------------------------------------------------- /extensions/BMO/template/en/default/hook/global/variables-end.none.tmpl: -------------------------------------------------------------------------------- 1 | [% 2 | terms.BugzillaTitle = "Bugzilla@Mozilla" 3 | %] 4 | -------------------------------------------------------------------------------- /extensions/BMO/template/en/default/hook/list/table-before_table.html.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | [% abbrev.product.maxlength = 20 %] 9 | [% abbrev.component.maxlength = 20 %] 10 | -------------------------------------------------------------------------------- /extensions/BMO/template/en/default/hook/reports/components-start.html.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | 9 | [%# Don't show the default assignees and QA contacts %] 10 | [% show_default_people = 0 %] 11 | -------------------------------------------------------------------------------- /extensions/BMO/template/en/default/pages/group_members.json.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | 9 | [% types_json FILTER none %] 10 | -------------------------------------------------------------------------------- /extensions/BMO/web/core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/core.png -------------------------------------------------------------------------------- /extensions/BMO/web/images/advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/images/advanced.png -------------------------------------------------------------------------------- /extensions/BMO/web/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/images/background.png -------------------------------------------------------------------------------- /extensions/BMO/web/images/bugzilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/images/bugzilla.png -------------------------------------------------------------------------------- /extensions/BMO/web/images/creative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/images/creative.png -------------------------------------------------------------------------------- /extensions/BMO/web/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/images/favicon.ico -------------------------------------------------------------------------------- /extensions/BMO/web/images/groups/bugzilla-approvers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/images/groups/bugzilla-approvers.png -------------------------------------------------------------------------------- /extensions/BMO/web/images/groups/calendar-drivers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/images/groups/calendar-drivers.png -------------------------------------------------------------------------------- /extensions/BMO/web/images/guided.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/images/guided.png -------------------------------------------------------------------------------- /extensions/BMO/web/images/notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/images/notice.png -------------------------------------------------------------------------------- /extensions/BMO/web/images/presshat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/images/presshat.png -------------------------------------------------------------------------------- /extensions/BMO/web/images/sign_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/images/sign_warning.png -------------------------------------------------------------------------------- /extensions/BMO/web/images/stop-sign.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/images/stop-sign.gif -------------------------------------------------------------------------------- /extensions/BMO/web/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/images/throbber.gif -------------------------------------------------------------------------------- /extensions/BMO/web/images/user-engagement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/images/user-engagement.png -------------------------------------------------------------------------------- /extensions/BMO/web/js/attach-desc.js: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this file, 3 | * You can obtain one at http://mozilla.org/MPL/2.0/. 4 | * 5 | * This Source Code Form is "Incompatible With Secondary Licenses", as 6 | * defined by the Mozilla Public License, v. 2.0. */ 7 | $(function() { 8 | $("#data").on('change', function (event) { 9 | $("#description").val(event.target.files[0].name); 10 | }) 11 | }); -------------------------------------------------------------------------------- /extensions/BMO/web/producticons/component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/producticons/component.png -------------------------------------------------------------------------------- /extensions/BMO/web/producticons/data-science.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/producticons/data-science.png -------------------------------------------------------------------------------- /extensions/BMO/web/producticons/devedition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/producticons/devedition.png -------------------------------------------------------------------------------- /extensions/BMO/web/producticons/dino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/producticons/dino.png -------------------------------------------------------------------------------- /extensions/BMO/web/producticons/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/producticons/firefox.png -------------------------------------------------------------------------------- /extensions/BMO/web/producticons/firefox_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/producticons/firefox_android.png -------------------------------------------------------------------------------- /extensions/BMO/web/producticons/firefox_brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/producticons/firefox_brand.png -------------------------------------------------------------------------------- /extensions/BMO/web/producticons/firefox_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/producticons/firefox_ios.png -------------------------------------------------------------------------------- /extensions/BMO/web/producticons/geckoview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/producticons/geckoview.png -------------------------------------------------------------------------------- /extensions/BMO/web/producticons/input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/producticons/input.png -------------------------------------------------------------------------------- /extensions/BMO/web/producticons/localization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/producticons/localization.png -------------------------------------------------------------------------------- /extensions/BMO/web/producticons/other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/producticons/other.png -------------------------------------------------------------------------------- /extensions/BMO/web/producticons/seamonkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/producticons/seamonkey.png -------------------------------------------------------------------------------- /extensions/BMO/web/producticons/telemetry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/producticons/telemetry.png -------------------------------------------------------------------------------- /extensions/BMO/web/producticons/thunderbird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/producticons/thunderbird.png -------------------------------------------------------------------------------- /extensions/BMO/web/producticons/user-research.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/producticons/user-research.png -------------------------------------------------------------------------------- /extensions/BMO/web/producticons/webextensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/producticons/webextensions.png -------------------------------------------------------------------------------- /extensions/BMO/web/yui-history-iframe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BMO/web/yui-history-iframe.txt -------------------------------------------------------------------------------- /extensions/BugModal/web/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BugModal/web/calendar.png -------------------------------------------------------------------------------- /extensions/BugModal/web/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BugModal/web/error.png -------------------------------------------------------------------------------- /extensions/BugModal/web/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BugModal/web/image.png -------------------------------------------------------------------------------- /extensions/BugModal/web/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/BugModal/web/throbber.gif -------------------------------------------------------------------------------- /extensions/BzAPI/template/en/default/hook/global/user-error-errors.html.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | 9 | [% IF error == "bzapi_midair_collision" %] 10 | Mid-air collision 11 | [% END %] 12 | -------------------------------------------------------------------------------- /extensions/EditComments/template/en/default/hook/global/user-error-auth_failure_object.html.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | 9 | [% IF object == 'editcomments' %] 10 | edit comments 11 | [% END %] 12 | -------------------------------------------------------------------------------- /extensions/EditTable/template/en/default/hook/global/user-error-auth_failure_object.html.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | 9 | [% IF object == 'tables' %] 10 | tables 11 | [% END %] 12 | -------------------------------------------------------------------------------- /extensions/Ember/disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/Ember/disabled -------------------------------------------------------------------------------- /extensions/Ember/template/en/default/hook/global/user-error-errors.html.tmpl: -------------------------------------------------------------------------------- 1 | [% IF error == "invalid_token" %] 2 | [% title = "Invalid Token Provided" %] 3 | The token provided is either invalid or expired. You must log in again. 4 | [% END %] 5 | -------------------------------------------------------------------------------- /extensions/Example/disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/Example/disabled -------------------------------------------------------------------------------- /extensions/Example/template/en/default/hook/global/setting-descs-settings.none.tmpl: -------------------------------------------------------------------------------- 1 | [% 2 | setting_descs.product_chooser = "Product chooser to use when entering $terms.bugs", 3 | setting_descs.pretty = "Pretty chooser with common products and icons", 4 | setting_descs.full = "Full chooser with all products", 5 | setting_descs.small = "Product chooser for mobile devices", 6 | %] 7 | -------------------------------------------------------------------------------- /extensions/FlagDefaultRequestee/template/en/default/hook/attachment/create-end.html.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | 9 | [% INCLUDE flag/default_requestees.html.tmpl %] 10 | -------------------------------------------------------------------------------- /extensions/FlagDefaultRequestee/template/en/default/hook/attachment/edit-end.html.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | 9 | [% INCLUDE flag/default_requestees.html.tmpl %] 10 | -------------------------------------------------------------------------------- /extensions/FlagDefaultRequestee/template/en/default/hook/bug/create/create-form.html.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | 9 | [% INCLUDE flag/default_requestees.html.tmpl %] 10 | -------------------------------------------------------------------------------- /extensions/FlagDefaultRequestee/template/en/default/hook/bug/edit-after_custom_fields.html.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | 9 | [% INCLUDE flag/default_requestees.html.tmpl %] 10 | -------------------------------------------------------------------------------- /extensions/GitHubAuth/web/images/github_sign_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/GitHubAuth/web/images/github_sign_in.png -------------------------------------------------------------------------------- /extensions/GitHubAuth/web/images/sign_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/GitHubAuth/web/images/sign_in.png -------------------------------------------------------------------------------- /extensions/Gravatar/web/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/Gravatar/web/default.jpg -------------------------------------------------------------------------------- /extensions/GuidedBugEntry/web/images/advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/GuidedBugEntry/web/images/advanced.png -------------------------------------------------------------------------------- /extensions/GuidedBugEntry/web/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/GuidedBugEntry/web/images/help.png -------------------------------------------------------------------------------- /extensions/GuidedBugEntry/web/images/input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/GuidedBugEntry/web/images/input.png -------------------------------------------------------------------------------- /extensions/GuidedBugEntry/web/images/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/GuidedBugEntry/web/images/message.png -------------------------------------------------------------------------------- /extensions/GuidedBugEntry/web/images/sumo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/GuidedBugEntry/web/images/sumo.png -------------------------------------------------------------------------------- /extensions/GuidedBugEntry/web/images/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/GuidedBugEntry/web/images/support.png -------------------------------------------------------------------------------- /extensions/GuidedBugEntry/web/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/GuidedBugEntry/web/images/throbber.gif -------------------------------------------------------------------------------- /extensions/GuidedBugEntry/web/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/GuidedBugEntry/web/images/warning.png -------------------------------------------------------------------------------- /extensions/GuidedBugEntry/web/images/webbug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/GuidedBugEntry/web/images/webbug.png -------------------------------------------------------------------------------- /extensions/GuidedBugEntry/web/yui-history-iframe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/GuidedBugEntry/web/yui-history-iframe.txt -------------------------------------------------------------------------------- /extensions/InlineHistory/README: -------------------------------------------------------------------------------- 1 | InlineHistory inserts bug activity inline with the comments when viewing a bug. 2 | It was derived from the Bugzilla Tweaks Addon by Ehasn Akhgari. 3 | 4 | For technical and performance reasons it is only available to logged in users, 5 | and is enabled by a User Preference. 6 | 7 | It works with an unmodified install of Bugzilla 4.0 and 4.2. 8 | 9 | If you have modified your show_bug template, the JavaScript in 10 | web/inline-history.js may need to be updated to suit your installation. 11 | -------------------------------------------------------------------------------- /extensions/LimitedEmail/disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/LimitedEmail/disabled -------------------------------------------------------------------------------- /extensions/MyDashboard/template/en/default/hook/account/prefs/saved-searches-saved-header.html.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | 9 | 10 | My Dashboard 11 | 12 | -------------------------------------------------------------------------------- /extensions/Needinfo/template/en/default/hook/bug/edit-after_comment_commit_button.html.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | 9 | [% PROCESS bug/needinfo.html.tmpl 10 | bug = bug 11 | %] 12 | -------------------------------------------------------------------------------- /extensions/Needinfo/template/en/default/hook/global/setting-descs-settings.none.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | 9 | [% 10 | setting_descs.block_needinfo = "Block needinfo requests" 11 | %] 12 | -------------------------------------------------------------------------------- /extensions/OldBugMove/disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/OldBugMove/disabled -------------------------------------------------------------------------------- /extensions/OpenGraph/template/en/default/hook/robots-end.txt.tmpl: -------------------------------------------------------------------------------- 1 | [%# comment lines are required to produce line breaks %] 2 | # 3 | Allow: /extensions/OpenGraph/web/ 4 | # 5 | -------------------------------------------------------------------------------- /extensions/PhabBugz/web/fonts/FontAwesome-DifferentialStatus.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/PhabBugz/web/fonts/FontAwesome-DifferentialStatus.woff -------------------------------------------------------------------------------- /extensions/PhabBugz/web/fonts/FontAwesome-DifferentialStatus.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/PhabBugz/web/fonts/FontAwesome-DifferentialStatus.woff2 -------------------------------------------------------------------------------- /extensions/ProdCompSearch/web/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/ProdCompSearch/web/images/throbber.gif -------------------------------------------------------------------------------- /extensions/Review/template/en/default/hook/global/setting-descs-settings.none.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | 9 | [% 10 | setting_descs.block_reviews = "Block review and feedback requests" 11 | %] 12 | -------------------------------------------------------------------------------- /extensions/Review/web/styles/review.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this file, 3 | * You can obtain one at http://mozilla.org/MPL/2.0/. 4 | * 5 | * This Source Code Form is "Incompatible With Secondary Licenses", as 6 | * defined by the Mozilla Public License, v. 2.0. */ 7 | 8 | .mentor { 9 | font-weight: bold; 10 | } 11 | 12 | .reviewer-suggestions { 13 | display: block; 14 | margin: 4px 0; 15 | } 16 | -------------------------------------------------------------------------------- /extensions/Review/web/styles/review_history.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this file, 3 | * You can obtain one at http://mozilla.org/MPL/2.0/. 4 | * 5 | * This Source Code Form is "Incompatible With Secondary Licenses", as 6 | * defined by the Mozilla Public License, v. 2.0. */ 7 | 8 | .yui3-skin-sam .yui3-datatable-table > table { 9 | width: 100%; 10 | } 11 | -------------------------------------------------------------------------------- /extensions/SecureMail/README: -------------------------------------------------------------------------------- 1 | This extension should be placed in a directory called "SecureMail" in the 2 | Bugzilla extensions/ directory. After installing it, remove the file 3 | "disabled" (if present) and then run checksetup.pl. 4 | 5 | Instructions for user key formats: 6 | 7 | S/MIME Keys must be in PEM format - i.e. Base64-encoded text, with BEGIN CERTIFICATE 8 | PGP keys must be ASCII-armoured - i.e. text, with BEGIN PGP PUBLIC KEY. 9 | -------------------------------------------------------------------------------- /extensions/SecureMail/bin/tct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/SecureMail/bin/tct -------------------------------------------------------------------------------- /extensions/SecureMail/disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/SecureMail/disabled -------------------------------------------------------------------------------- /extensions/ShadowBugs/disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/extensions/ShadowBugs/disabled -------------------------------------------------------------------------------- /extensions/ShadowBugs/template/en/default/hook/bug/edit-custom_field.html.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | 9 | [% field.hidden = field.name == 'cf_shadow_bug' %] 10 | -------------------------------------------------------------------------------- /extensions/ShadowBugs/web/style.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this file, 3 | * You can obtain one at http://mozilla.org/MPL/2.0/. 4 | * 5 | * This Source Code Form is "Incompatible With Secondary Licenses", as 6 | * defined by the Mozilla Public License, v. 2.0. */ 7 | 8 | .shadow_bug_comment { 9 | background: transparent !important; 10 | } 11 | -------------------------------------------------------------------------------- /extensions/SiteMapIndex/template/en/default/hook/robots-end.txt.tmpl: -------------------------------------------------------------------------------- 1 | [%# comment lines are required to produce line breaks %] 2 | # 3 | Allow: /data/SiteMapIndex/sitemap*.xml.gz 4 | Sitemap: [% SITEMAP_URL %] 5 | # 6 | -------------------------------------------------------------------------------- /extensions/Splinter/Config.pm: -------------------------------------------------------------------------------- 1 | package Bugzilla::Extension::Splinter; 2 | 3 | use 5.10.1; 4 | use strict; 5 | use warnings; 6 | 7 | use constant NAME => 'Splinter'; 8 | 9 | __PACKAGE__->NAME; 10 | -------------------------------------------------------------------------------- /extensions/Splinter/template/en/default/hook/global/user-error-errors.html.tmpl: -------------------------------------------------------------------------------- 1 | [% IF error == "bug_attach_id_mismatch" %] 2 | [% title = "Bug ID and Attachment ID Mismatch" %] 3 | The [% terms.bug %] id and attachment id you provided 4 | are not connected to each other. 5 | [% END %] 6 | -------------------------------------------------------------------------------- /extensions/Splinter/template/en/default/hook/request/email-after_summary.txt.tmpl: -------------------------------------------------------------------------------- 1 | [% USE Bugzilla %] 2 | [% IF flag && flag.status == '?' 3 | && (flag.type.name == 'review' || flag.type.name == 'feedback') 4 | && attachment && attachment.ispatch %] 5 | 6 | Review 7 | [%+ Bugzilla.splinter_review_url(bug.bug_id, attachment.id, 1) FILTER none %] 8 | [%- END %] 9 | 10 | -------------------------------------------------------------------------------- /extensions/Splinter/template/en/default/hook/request/queue-after_column.html.tmpl: -------------------------------------------------------------------------------- 1 | [% IF column == 'attachment' && request.attach_ispatch %] 2 |   3 | [review] 4 | [% END %] 5 | -------------------------------------------------------------------------------- /extensions/TagNewUsers/template/en/default/hook/global/header-start.html.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | 9 | [% js_BUGZILLA.user.is_new = Bugzilla.user.is_new %] 10 | -------------------------------------------------------------------------------- /extensions/TrackingFlags/template/en/default/hook/bug/field-non_editable.html.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | 9 | [% display_value(field.name, value) FILTER html %] 10 | -------------------------------------------------------------------------------- /extensions/UserStory/template/en/default/hook/bug/edit-custom_field.html.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | 9 | [% IF field.name == 'cf_user_story' %] 10 | [% field.hidden = 1 %] 11 | [% END %] 12 | -------------------------------------------------------------------------------- /extensions/UserStory/template/en/default/hook/bug/show-header-end.html.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | 9 | [% style_urls.push("extensions/UserStory/web/style/user_story.css") %] 10 | -------------------------------------------------------------------------------- /images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/images/banner.png -------------------------------------------------------------------------------- /images/buggie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/images/buggie.png -------------------------------------------------------------------------------- /images/bzgif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/images/bzgif.gif -------------------------------------------------------------------------------- /images/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/images/dropdown.png -------------------------------------------------------------------------------- /images/duo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/images/duo.png -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/images/favicon.ico -------------------------------------------------------------------------------- /images/grain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/images/grain.png -------------------------------------------------------------------------------- /images/mfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/images/mfa.png -------------------------------------------------------------------------------- /images/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/images/noise.png -------------------------------------------------------------------------------- /images/padlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/images/padlock.png -------------------------------------------------------------------------------- /images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/images/throbber.gif -------------------------------------------------------------------------------- /js/jquery/ui/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/jquery/ui/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /js/jquery/ui/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/jquery/ui/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /js/jquery/ui/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/jquery/ui/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /js/jquery/ui/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/jquery/ui/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /js/jquery/ui/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/jquery/ui/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /js/jquery/ui/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/jquery/ui/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /js/jquery/ui/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/jquery/ui/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /js/jquery/ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/jquery/ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /js/jquery/ui/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/jquery/ui/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /js/jquery/ui/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/jquery/ui/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /js/jquery/ui/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/jquery/ui/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /js/jquery/ui/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/jquery/ui/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /js/jquery/ui/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/jquery/ui/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /js/jquery/ui/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/jquery/ui/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /js/jquery/ui/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/jquery/ui/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /js/jquery/ui/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/jquery/ui/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /js/jquery/ui/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/jquery/ui/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /js/jquery/ui/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/jquery/ui/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /js/jquery/ui/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/jquery/ui/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /js/yui.js.list: -------------------------------------------------------------------------------- 1 | js/yui/yahoo-dom-event/yahoo-dom-event-min.js 2 | js/yui/cookie/cookie-min.js 3 | js/yui/connection/connection-min.js 4 | js/yui/json/json-min.js 5 | js/yui/selector/selector-min.js 6 | js/yui/element/element-min.js 7 | js/yui/container/container-min.js 8 | js/yui/calendar/calendar-min.js 9 | js/yui/history/history-min.js 10 | js/yui/button/button-min.js 11 | js/yui/datasource/datasource-min.js 12 | js/yui/datatable/datatable-min.js 13 | -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/ajax-loader.gif -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/asc.gif -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/back-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/back-h.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/back-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/back-v.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/bar-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/bar-h.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/bar-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/bar-v.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/bg-h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/bg-h.gif -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/bg-v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/bg-v.gif -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/blankimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/blankimage.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/check0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/check0.gif -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/check1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/check1.gif -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/check2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/check2.gif -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/desc.gif -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/dt-arrow-dn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/dt-arrow-dn.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/dt-arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/dt-arrow-up.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/editor-knob.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/editor-knob.gif -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/editor-sprite-active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/editor-sprite-active.gif -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/editor-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/editor-sprite.gif -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/header_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/header_background.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/hue_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/hue_bg.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/layout_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/layout_sprite.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/loading.gif -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/menu-button-arrow-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/menu-button-arrow-disabled.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/menu-button-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/menu-button-arrow.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/menubaritem_submenuindicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/menubaritem_submenuindicator.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/menubaritem_submenuindicator_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/menubaritem_submenuindicator_disabled.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/menuitem_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/menuitem_checkbox.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/menuitem_checkbox_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/menuitem_checkbox_disabled.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/menuitem_submenuindicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/menuitem_submenuindicator.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/menuitem_submenuindicator_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/menuitem_submenuindicator_disabled.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/picker_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/picker_mask.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/split-button-arrow-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/split-button-arrow-active.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/split-button-arrow-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/split-button-arrow-disabled.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/split-button-arrow-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/split-button-arrow-focus.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/split-button-arrow-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/split-button-arrow-hover.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/split-button-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/split-button-arrow.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/sprite.png -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/treeview-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/treeview-loading.gif -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/treeview-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/treeview-sprite.gif -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/assets/skins/sam/wait.gif -------------------------------------------------------------------------------- /js/yui/assets/skins/sam/yuitest.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2011, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.com/yui/license.html 5 | version: 2.9.0 6 | */ 7 | 8 | -------------------------------------------------------------------------------- /js/yui/connection/connection.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/connection/connection.swf -------------------------------------------------------------------------------- /js/yui/fonts/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2011, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.com/yui/license.html 5 | version: 2.9.0 6 | */ 7 | body{font:13px/1.231 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small}select,input,textarea,button{font:99% arial,helvetica,clean,sans-serif}table{font-size:inherit;font:100%}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%} -------------------------------------------------------------------------------- /js/yui/swfstore/swfstore.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui/swfstore/swfstore.swf -------------------------------------------------------------------------------- /js/yui3/anim-node-plugin/anim-node-plugin-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("anim-node-plugin",function(e,t){var n=function(t){t=t?e.merge(t):{},t.node=t.host,n.superclass.constructor.apply(this,arguments)};n.NAME="nodefx",n.NS="fx",e.extend(n,e.Anim),e.namespace("Plugin"),e.Plugin.NodeFX=n},"3.17.2",{requires:["node-pluginhost","anim-base"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/anim-xy/anim-xy-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("anim-xy",function(e,t){var n=Number;e.Anim.behaviors.xy={set:function(e,t,r,i,s,o,u){e._node.setXY([u(s,n(r[0]),n(i[0])-n(r[0]),o),u(s,n(r[1]),n(i[1])-n(r[1]),o)])},get:function(e){return e._node.getXY()}}},"3.17.2",{requires:["anim-base","node-screen"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/array-invoke/array-invoke-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("array-invoke",function(e,t){e.Array.invoke=function(t,n){var r=e.Array(arguments,2,!0),i=e.Lang.isFunction,s=[];return e.Array.each(e.Array(t),function(e,t){e&&i(e[n])&&(s[t]=e[n].apply(e,r))}),s}},"3.17.2",{requires:["yui-base"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/arraylist-filter/arraylist-filter-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("arraylist-filter",function(e,t){e.mix(e.ArrayList.prototype,{filter:function(t){var n=[];return e.Array.each(this._items,function(e,r){e=this.item(r),t(e)&&n.push(e)},this),new this.constructor(n)}})},"3.17.2",{requires:["arraylist"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/assets/skins/audio-light/rail-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/audio-light/rail-x.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/audio-light/rail-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/audio-light/rail-y.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/audio-light/thumb-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/audio-light/thumb-x.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/audio-light/thumb-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/audio-light/thumb-y.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/audio/rail-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/audio/rail-x.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/audio/rail-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/audio/rail-y.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/audio/thumb-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/audio/thumb-x.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/audio/thumb-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/audio/thumb-y.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/capsule-dark/rail-x-dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/capsule-dark/rail-x-dots.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/capsule-dark/rail-x-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/capsule-dark/rail-x-lines.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/capsule-dark/rail-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/capsule-dark/rail-x.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/capsule-dark/rail-y-dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/capsule-dark/rail-y-dots.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/capsule-dark/rail-y-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/capsule-dark/rail-y-lines.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/capsule-dark/rail-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/capsule-dark/rail-y.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/capsule-dark/thumb-x-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/capsule-dark/thumb-x-line.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/capsule-dark/thumb-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/capsule-dark/thumb-x.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/capsule-dark/thumb-y-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/capsule-dark/thumb-y-line.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/capsule-dark/thumb-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/capsule-dark/thumb-y.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/capsule/rail-x-dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/capsule/rail-x-dots.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/capsule/rail-x-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/capsule/rail-x-lines.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/capsule/rail-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/capsule/rail-x.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/capsule/rail-y-dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/capsule/rail-y-dots.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/capsule/rail-y-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/capsule/rail-y-lines.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/capsule/rail-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/capsule/rail-y.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/capsule/thumb-x-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/capsule/thumb-x-line.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/capsule/thumb-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/capsule/thumb-x.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/capsule/thumb-y-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/capsule/thumb-y-line.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/capsule/thumb-y-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/capsule/thumb-y-lines.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/capsule/thumb-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/capsule/thumb-y.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/night/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/night/arrows.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/night/horizontal-menu-submenu-indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/night/horizontal-menu-submenu-indicator.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/night/rail-x-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/night/rail-x-lines.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/night/rail-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/night/rail-x.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/night/rail-y-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/night/rail-y-lines.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/night/rail-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/night/rail-y.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/night/scrollview-base.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-scrollview{position:relative;overflow:hidden;-webkit-user-select:none;-moz-user-select:none}.yui3-scrollview-hidden{display:none}.yui3-scrollview-content{position:relative}#yui3-css-stamp.skin-night-scrollview-base{display:none} 9 | -------------------------------------------------------------------------------- /js/yui3/assets/skins/night/sort-arrow-sprite-ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/night/sort-arrow-sprite-ie.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/night/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/night/sort-arrow-sprite.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/night/sprite_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/night/sprite_icons.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/night/thumb-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/night/thumb-x.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/night/thumb-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/night/thumb-y.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/night/vertical-menu-submenu-indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/night/vertical-menu-submenu-indicator.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/night/widget-base.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-widget-hidden{display:none}.yui3-widget-content{overflow:hidden}.yui3-widget-content-expanded{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;height:100%}.yui3-widget-tmp-forcesize{overflow:hidden!important}#yui3-css-stamp.skin-night-widget-base{display:none} 9 | -------------------------------------------------------------------------------- /js/yui3/assets/skins/night/widget-modality.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-skin-night .yui3-widget-mask{background-color:black;zoom:1;-ms-filter:"alpha(opacity=40)";filter:alpha(opacity=40);opacity:.4}#yui3-css-stamp.skin-night-widget-modality{display:none} 9 | -------------------------------------------------------------------------------- /js/yui3/assets/skins/night/widget-stack.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-widget-stacked .yui3-widget-shim{opacity:0;filter:alpha(opacity=0);position:absolute;border:0;top:0;left:0;padding:0;margin:0;z-index:-1;width:100%;height:100%;_width:0;_height:0}#yui3-css-stamp.skin-night-widget-stack{display:none} 9 | -------------------------------------------------------------------------------- /js/yui3/assets/skins/round-dark/rail-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/round-dark/rail-x.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/round-dark/rail-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/round-dark/rail-y.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/round-dark/thumb-x-grip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/round-dark/thumb-x-grip.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/round-dark/thumb-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/round-dark/thumb-x.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/round-dark/thumb-y-grip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/round-dark/thumb-y-grip.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/round-dark/thumb-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/round-dark/thumb-y.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/round/rail-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/round/rail-x.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/round/rail-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/round/rail-y.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/round/thumb-x-grip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/round/thumb-x-grip.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/round/thumb-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/round/thumb-x.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/round/thumb-y-grip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/round/thumb-y-grip.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/round/thumb-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/round/thumb-y.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam-dark/rail-x-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam-dark/rail-x-lines.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam-dark/rail-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam-dark/rail-x.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam-dark/rail-y-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam-dark/rail-y-lines.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam-dark/rail-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam-dark/rail-y.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam-dark/thumb-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam-dark/thumb-x.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam-dark/thumb-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam-dark/thumb-y.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam/arrows.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam/bg.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/datatable-message.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-datatable-message{display:none}.yui3-datatable-message-visible .yui3-datatable-message{display:block;display:table-row-group}.yui3-skin-sam .yui3-datatable-message-content{border:0 none;border-bottom:1px solid #cbcbcb;padding:4px 10px}#yui3-css-stamp.skin-sam-datatable-message{display:none} 9 | -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/dt-arrow-dn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam/dt-arrow-dn.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/dt-arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam/dt-arrow-up.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/horizontal-menu-submenu-indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam/horizontal-menu-submenu-indicator.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/horizontal-menu-submenu-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam/horizontal-menu-submenu-toggle.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/node-flick.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-flick{position:relative;overflow:hidden}.yui3-flick-content{position:relative}#yui3-css-stamp.skin-sam-node-flick{display:none} 9 | -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/overlay.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-overlay{position:absolute}.yui3-overlay-hidden{visibility:hidden}.yui3-widget-tmp-forcesize .yui3-overlay-content{overflow:hidden!important}#yui3-css-stamp.skin-sam-overlay{display:none} 9 | -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/rail-x-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam/rail-x-lines.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/rail-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam/rail-x.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/rail-y-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam/rail-y-lines.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/rail-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam/rail-y.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/scrollview-base.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-scrollview{position:relative;overflow:hidden;-webkit-user-select:none;-moz-user-select:none}.yui3-scrollview-hidden{display:none}.yui3-scrollview-content{position:relative}.yui3-skin-sam .yui3-scrollview{-webkit-tap-highlight-color:rgba(255,255,255,0)}#yui3-css-stamp.skin-sam-scrollview-base{display:none} 9 | -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/sort-arrow-sprite-ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam/sort-arrow-sprite-ie.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam/sort-arrow-sprite.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam/sprite.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/sprite_icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam/sprite_icons.gif -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/sprite_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam/sprite_icons.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/thumb-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam/thumb-x.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/thumb-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam/thumb-y.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/vertical-menu-submenu-indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam/vertical-menu-submenu-indicator.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/warn_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/assets/skins/sam/warn_error.png -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/widget-base.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-widget-hidden{display:none}.yui3-widget-content{overflow:hidden}.yui3-widget-content-expanded{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;height:100%}.yui3-widget-tmp-forcesize{overflow:hidden!important}#yui3-css-stamp.skin-sam-widget-base{display:none} 9 | -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/widget-modality.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-skin-sam .yui3-widget-mask{background-color:black;zoom:1;-ms-filter:"alpha(opacity=40)";filter:alpha(opacity=40);opacity:.4}#yui3-css-stamp.skin-sam-widget-modality{display:none} 9 | -------------------------------------------------------------------------------- /js/yui3/assets/skins/sam/widget-stack.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-widget-stacked .yui3-widget-shim{opacity:0;filter:alpha(opacity=0);position:absolute;border:0;top:0;left:0;padding:0;margin:0;z-index:-1;width:100%;height:100%;_width:0;_height:0}#yui3-css-stamp.skin-sam-widget-stack{display:none} 9 | -------------------------------------------------------------------------------- /js/yui3/attribute-complex/attribute-complex-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("attribute-complex",function(e,t){var n=e.Attribute;n.Complex=function(){},n.Complex.prototype={_normAttrVals:n.prototype._normAttrVals,_getAttrInitVal:n.prototype._getAttrInitVal},e.AttributeComplex=n.Complex},"3.17.2",{requires:["attribute-base"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/autocomplete-list/lang/autocomplete-list.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/autocomplete-list",function(e){e.Intl.add("autocomplete-list","",{item_selected:"{item} selected.",items_available:"Suggestions are available. Use the up and down arrow keys to select suggestions."})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/autocomplete-list/lang/autocomplete-list_en.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/autocomplete-list_en",function(e){e.Intl.add("autocomplete-list","en",{item_selected:"{item} selected.",items_available:"Suggestions are available. Use up and down arrows to select."})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/autocomplete-list/lang/autocomplete-list_es.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/autocomplete-list_es",function(e){e.Intl.add("autocomplete-list","es",{item_selected:"{item} seleccionado.",items_available:"Hay sugerencias disponibles. Use flecha arriba y abajo para seleccionar."})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/autocomplete-list/lang/autocomplete-list_hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/autocomplete-list_hu",function(e){e.Intl.add("autocomplete-list","hu",{item_selected:"{item} kiv\u00e1lasztva.",items_available:"Javaslatok \u00e1llnak rendelkez\u00e9sre. Haszn\u00e1lja a fel \u00e9s le nyilakat a v\u00e1laszt\u00e1shoz."})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/autocomplete-list/lang/autocomplete-list_it.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/autocomplete-list_it",function(e){e.Intl.add("autocomplete-list","it",{item_selected:"{item} selezionato.",items_available:"Sono disponibili suggerimenti. Usa la freccia su e gi\u00f9 per selezionare."})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/axis-stacked/axis-stacked-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("axis-stacked",function(e,t){e.StackedAxis=e.Base.create("stackedAxis",e.NumericAxis,[e.StackedImpl])},"3.17.2",{requires:["axis-numeric","axis-stacked-base"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/base-pluginhost/base-pluginhost-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("base-pluginhost",function(e,t){var n=e.Base,r=e.Plugin.Host;e.mix(n,r,!1,null,1),n.plug=r.plug,n.unplug=r.unplug},"3.17.2",{requires:["base-base","pluginhost"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/cache-plugin/cache-plugin-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("cache-plugin",function(e,t){function n(t){var n=t&&t.cache?t.cache:e.Cache,r=e.Base.create("dataSourceCache",n,[e.Plugin.Base]),i=new r(t);return r.NS="tmpClass",i}e.mix(n,{NS:"cache",NAME:"cachePlugin"}),e.namespace("Plugin").Cache=n},"3.17.2",{requires:["plugin","cache-base"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/calendar-base/lang/calendar-base.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/calendar-base",function(e){e.Intl.add("calendar-base","",{very_short_weekdays:["Su","Mo","Tu","We","Th","Fr","Sa"],first_weekday:0,weekends:[0,6]})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/calendar-base/lang/calendar-base_de.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/calendar-base_de",function(e){e.Intl.add("calendar-base","de",{very_short_weekdays:["So","Mo","Di","Mi","Do","Fr","Sa"],first_weekday:1,weekends:[0,6]})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/calendar-base/lang/calendar-base_en.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/calendar-base_en",function(e){e.Intl.add("calendar-base","en",{very_short_weekdays:["Su","Mo","Tu","We","Th","Fr","Sa"],first_weekday:0,weekends:[0,6]})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/calendar-base/lang/calendar-base_es-AR.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/calendar-base_es-AR",function(e){e.Intl.add("calendar-base","es-AR",{very_short_weekdays:["Do","Lu","Ma","Mi","Ju","Vi","Sa"],first_weekday:0,weekends:[0,6]})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/calendar-base/lang/calendar-base_es.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/calendar-base_es",function(e){e.Intl.add("calendar-base","es",{very_short_weekdays:["Do","Lu","Ma","Mi","Ju","Vi","Sa"],first_weekday:1,weekends:[0,6]})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/calendar-base/lang/calendar-base_fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/calendar-base_fr",function(e){e.Intl.add("calendar-base","fr",{very_short_weekdays:["Di","Lu","Ma","Me","Je","Ve","Sa"],first_weekday:1,weekends:[0,6]})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/calendar-base/lang/calendar-base_hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/calendar-base_hu",function(e){e.Intl.add("calendar-base","hu",{very_short_weekdays:["V","H","K","Sze","Cs","P","Szo"],first_weekday:1,weekends:[0,6]})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/calendar-base/lang/calendar-base_it.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/calendar-base_it",function(e){e.Intl.add("calendar-base","it",{very_short_weekdays:["Do","Lu","Ma","Me","Gi","Ve","Sa"],first_weekday:1,weekends:[0,6]})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/calendar-base/lang/calendar-base_ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/calendar-base_ja",function(e){e.Intl.add("calendar-base","ja",{very_short_weekdays:["\u65e5","\u6708","\u706b","\u6c34","\u6728","\u91d1","\u571f"],first_weekday:0,weekends:[0,6]})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/calendar-base/lang/calendar-base_nb-NO.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/calendar-base_nb-NO",function(e){e.Intl.add("calendar-base","nb-NO",{very_short_weekdays:["S\u00f8","Ma","Ti","On","To","Fr","L\u00f8"],first_weekday:1,weekends:[0,6]})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/calendar-base/lang/calendar-base_nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/calendar-base_nl",function(e){e.Intl.add("calendar-base","nl",{very_short_weekdays:["zo","ma","di","woe","do","vr","za"],first_weekday:1,weekends:[0,6]})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/calendar-base/lang/calendar-base_pt-BR.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/calendar-base_pt-BR",function(e){e.Intl.add("calendar-base","pt-BR",{very_short_weekdays:["Dom","Seg","Ter","Qua","Qui","Sex","Sab"],first_weekday:0,weekends:[0,6]})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/calendar-base/lang/calendar-base_ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/calendar-base_ru",function(e){e.Intl.add("calendar-base","ru",{very_short_weekdays:["\u0412\u0441","\u041f\u043d","\u0412\u0442","\u0421\u0440","\u0427\u0442","\u041f\u0442","\u0421\u0431"],first_weekday:1,weekends:[0,6]})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/calendar-base/lang/calendar-base_zh-HANT-TW.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/calendar-base_zh-HANT-TW",function(e){e.Intl.add("calendar-base","zh-HANT-TW",{very_short_weekdays:["\u65e5","\u4e00","\u4e8c","\u4e09","\u56db","\u4e94","\u516d"],first_weekday:0,weekends:[0,6]})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/calendar-base/lang/calendar-base_zh-Hans-CN.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/calendar-base_zh-Hans-CN",function(e){e.Intl.add("calendar-base","zh-Hans-CN",{very_short_weekdays:["\u65e5","\u4e00","\u4e8c","\u4e09","\u56db","\u4e94","\u516d"],first_weekday:0,weekends:[0,6]})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/calendar-base/lang/calendar-base_zh-Hans.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/calendar-base_zh-Hans",function(e){e.Intl.add("calendar-base","zh-Hans",{very_short_weekdays:["\u65e5","\u4e00","\u4e8c","\u4e09","\u56db","\u4e94","\u516d"],first_weekday:0,weekends:[0,6]})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/calendar-base/lang/calendar-base_zh-Hant-HK.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/calendar-base_zh-Hant-HK",function(e){e.Intl.add("calendar-base","zh-Hant-HK",{very_short_weekdays:["\u65e5","\u4e00","\u4e8c","\u4e09","\u56db","\u4e94","\u516d"],first_weekday:0,weekends:[0,6]})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/calendar-base/lang/calendar-base_zh-Hant.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/calendar-base_zh-Hant",function(e){e.Intl.add("calendar-base","zh-Hant",{very_short_weekdays:["\u65e5","\u4e00","\u4e8c","\u4e09","\u56db","\u4e94","\u516d"],first_weekday:0,weekends:[0,6]})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/clickable-rail/assets/thumb-x-oblong-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/clickable-rail/assets/thumb-x-oblong-dark.png -------------------------------------------------------------------------------- /js/yui3/clickable-rail/assets/thumb-x-oblong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/clickable-rail/assets/thumb-x-oblong.png -------------------------------------------------------------------------------- /js/yui3/clickable-rail/assets/thumb-x-oblong2-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/clickable-rail/assets/thumb-x-oblong2-dark.png -------------------------------------------------------------------------------- /js/yui3/clickable-rail/assets/thumb-x-oblong2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/clickable-rail/assets/thumb-x-oblong2.png -------------------------------------------------------------------------------- /js/yui3/clickable-rail/assets/thumb-y-oblong-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/clickable-rail/assets/thumb-y-oblong-dark.png -------------------------------------------------------------------------------- /js/yui3/clickable-rail/assets/thumb-y-oblong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/clickable-rail/assets/thumb-y-oblong.png -------------------------------------------------------------------------------- /js/yui3/clickable-rail/assets/thumb-y-oblong2-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/clickable-rail/assets/thumb-y-oblong2-dark.png -------------------------------------------------------------------------------- /js/yui3/clickable-rail/assets/thumb-y-oblong2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/clickable-rail/assets/thumb-y-oblong2.png -------------------------------------------------------------------------------- /js/yui3/console-filters/assets/console-filters-core.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | -------------------------------------------------------------------------------- /js/yui3/console/assets/console-core.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | -------------------------------------------------------------------------------- /js/yui3/console/assets/skins/sam/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/console/assets/skins/sam/bg.png -------------------------------------------------------------------------------- /js/yui3/console/assets/skins/sam/warn_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/console/assets/skins/sam/warn_error.png -------------------------------------------------------------------------------- /js/yui3/console/assets/warn_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/console/assets/warn_error.png -------------------------------------------------------------------------------- /js/yui3/console/lang/console.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/console",function(e){e.Intl.add("console","",{title:"Log Console",pause:"Pause",clear:"Clear",collapse:"Collapse",expand:"Expand"})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/console/lang/console_en.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/console_en",function(e){e.Intl.add("console","en",{title:"Log Console",pause:"Pause",clear:"Clear",collapse:"Collapse",expand:"Expand"})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/console/lang/console_es.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/console_es",function(e){e.Intl.add("console","es",{title:"Consola de informaci\u00f3n",pause:"Pausa",clear:"Borrar",collapse:"Colapsar",expand:"Expandir"})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/console/lang/console_hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/console_hu",function(e){e.Intl.add("console","hu",{title:"Log Konzol",pause:"Sz\u00fcnet",clear:"T\u00f6r\u00f6l",collapse:"\u00d6sszecsuk",expand:"Kinyit"})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/console/lang/console_it.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/console_it",function(e){e.Intl.add("console","it",{title:"Console dei messaggi",pause:"Pausa",clear:"Cancella",collapse:"Collassa",expand:"Espandi"})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/console/lang/console_ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/console_ja",function(e){e.Intl.add("console","ja",{title:"\u30ed\u30b0\u30b3\u30f3\u30bd\u30fc\u30eb",pause:"\u4e00\u6642\u505c\u6b62",clear:"\u30af\u30ea\u30a2",collapse:"\u9589\u3058\u308b",expand:"\u958b\u304f"})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/cssfonts/cssfonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | body{font:13px/1.231 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small}select,input,button,textarea{font:99% arial,helvetica,clean,sans-serif}table{font-size:inherit;font:100%}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%}#yui3-css-stamp.cssfonts{display:none} 9 | -------------------------------------------------------------------------------- /js/yui3/dataschema-base/dataschema-base-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("dataschema-base",function(e,t){var n=e.Lang,r={apply:function(e,t){return t},parse:function(t,r){if(r.parser){var i=n.isFunction(r.parser)?r.parser:e.Parsers[r.parser+""];i&&(t=i.call(this,t))}return t}};e.namespace("DataSchema").Base=r,e.namespace("Parsers")},"3.17.2",{requires:["base"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/datatable-base-deprecated/assets/skins/sam/dt-arrow-dn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/datatable-base-deprecated/assets/skins/sam/dt-arrow-dn.png -------------------------------------------------------------------------------- /js/yui3/datatable-base-deprecated/assets/skins/sam/dt-arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/datatable-base-deprecated/assets/skins/sam/dt-arrow-up.png -------------------------------------------------------------------------------- /js/yui3/datatable-base/assets/datatable-base-core.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | /* foundational CSS */ 9 | .yui3-datatable-table { 10 | empty-cells: show; 11 | } 12 | -------------------------------------------------------------------------------- /js/yui3/datatable-message/assets/datatable-message-core.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-datatable-message { 9 | display: none; 10 | } 11 | 12 | .yui3-datatable-message-visible .yui3-datatable-message { 13 | display: block; 14 | display: table-row-group; 15 | } 16 | -------------------------------------------------------------------------------- /js/yui3/datatable-message/assets/skins/sam/datatable-message.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-datatable-message{display:none}.yui3-datatable-message-visible .yui3-datatable-message{display:block;display:table-row-group}.yui3-skin-sam .yui3-datatable-message-content{border:0 none;border-bottom:1px solid #cbcbcb;padding:4px 10px}#yui3-css-stamp.skin-sam-datatable-message{display:none} 9 | -------------------------------------------------------------------------------- /js/yui3/datatable-message/lang/datatable-message.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/datatable-message",function(e){e.Intl.add("datatable-message","",{emptyMessage:"No data to display",loadingMessage:"Loading..."})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/datatable-message/lang/datatable-message_en.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/datatable-message_en",function(e){e.Intl.add("datatable-message","en",{emptyMessage:"No data to display",loadingMessage:"Loading..."})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/datatable-message/lang/datatable-message_es.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/datatable-message_es",function(e){e.Intl.add("datatable-message","es",{emptyMessage:"No hay datos que mostrar",loadingMessage:"Cargando..."})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/datatable-message/lang/datatable-message_fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/datatable-message_fr",function(e){e.Intl.add("datatable-message","fr",{emptyMessage:"Aucune donn\u00e9e \u00e0 afficher",loadingMessage:"Chargement..."})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/datatable-message/lang/datatable-message_hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/datatable-message_hu",function(e){e.Intl.add("datatable-message","hu",{emptyMessage:"Nincs megjelen\u00edthet\u0151 adat",loadingMessage:"Bet\u00f6lt\u00e9s..."})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/datatable-message/lang/datatable-message_it.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/datatable-message_it",function(e){e.Intl.add("datatable-message","it",{emptyMessage:"Non ci sono dati da mostrare",loadingMessage:"Caricando..."})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/datatable-paginator/lang/datatable-paginator.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/datatable-paginator",function(e){e.Intl.add("datatable-paginator","",{first:"First",prev:"Previous",next:"Next",last:"Last",goToLabel:"Page:",goToAction:"Go",perPage:"Rows:",showAll:"Show All"})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/datatable-paginator/lang/datatable-paginator_en.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/datatable-paginator_en",function(e){e.Intl.add("datatable-paginator","en",{first:"First",prev:"Previous",next:"Next",last:"Last",goToLabel:"Page:",goToAction:"Go",perPage:"Rows:",showAll:"Show All"})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/datatable-paginator/lang/datatable-paginator_fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/datatable-paginator_fr",function(e){e.Intl.add("datatable-paginator","fr",{first:"Premi\u00e8re",prev:"Pr\u00e9c\u00e9dente",next:"Suivante",last:"Derni\u00e8re",goToLabel:"Page :",goToAction:"Aller",perPage:"Lignes :",showAll:"Afficher tout"})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/datatable-sort/assets/skins/night/sort-arrow-sprite-ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/datatable-sort/assets/skins/night/sort-arrow-sprite-ie.png -------------------------------------------------------------------------------- /js/yui3/datatable-sort/assets/skins/night/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/datatable-sort/assets/skins/night/sort-arrow-sprite.png -------------------------------------------------------------------------------- /js/yui3/datatable-sort/assets/skins/sam/sort-arrow-sprite-ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/datatable-sort/assets/skins/sam/sort-arrow-sprite-ie.png -------------------------------------------------------------------------------- /js/yui3/datatable-sort/assets/skins/sam/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/datatable-sort/assets/skins/sam/sort-arrow-sprite.png -------------------------------------------------------------------------------- /js/yui3/datatable-sort/lang/datatable-sort.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/datatable-sort",function(e){e.Intl.add("datatable-sort","",{asc:"Ascending",desc:"Descending",sortBy:"Sort by {column}",reverseSortBy:"Reverse sort by {column}"})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/datatable-sort/lang/datatable-sort_en.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/datatable-sort_en",function(e){e.Intl.add("datatable-sort","en",{asc:"Ascending",desc:"Descending",sortBy:"Sort by {column}",reverseSortBy:"Reverse sort by {column}"})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/datatable-sort/lang/datatable-sort_es.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/datatable-sort_es",function(e){e.Intl.add("datatable-sort","es",{asc:"Ascendente",desc:"Descendente",sortBy:"Ordenar por {column}",reverseSortBy:"Ordenar descendente por {column}"})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/datatable-sort/lang/datatable-sort_fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/datatable-sort_fr",function(e){e.Intl.add("datatable-sort","fr",{asc:"Croissant",desc:"D\u00e9croissant",sortBy:"Trier par {column}",reverseSortBy:"Trier par {column} dans l'ordre d\u00e9croissant"})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/datatable-sort/lang/datatable-sort_hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/datatable-sort_hu",function(e){e.Intl.add("datatable-sort","hu",{asc:"N\u00f6vekv\u0151",desc:"Cs\u00f6kken\u0151",sortBy:"Sorrend: {column}",reverseSortBy:"Ford\u00edtott sorrend: {column}"})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/datatype-date-parse/datatype-date-parse-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("datatype-date-parse",function(e,t){e.mix(e.namespace("Date"),{parse:function(t){var n=new Date(+t||t);return e.Lang.isDate(n)?n:null}}),e.namespace("Parsers").date=e.Date.parse,e.namespace("DataType"),e.DataType.Date=e.Date},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/dd-drop-plugin/dd-drop-plugin-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("dd-drop-plugin",function(e,t){var n=function(e){e.node=e.host,n.superclass.constructor.apply(this,arguments)};n.NAME="dd-drop-plugin",n.NS="drop",e.extend(n,e.DD.Drop),e.namespace("Plugin"),e.Plugin.Drop=n},"3.17.2",{requires:["dd-drop"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/dial/lang/dial.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/dial",function(e){e.Intl.add("dial","",{label:"My label",resetStr:"Reset",tooltipHandle:"Drag to set value"})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/dial/lang/dial_en.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/dial_en",function(e){e.Intl.add("dial","en",{label:"My label",resetStr:"Reset",tooltipHandle:"Drag to set value"})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/dial/lang/dial_es.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/dial_es",function(e){e.Intl.add("dial","es",{label:"Mi etiqueta",resetStr:"Resetear",tooltipHandle:"Arrastre para ajustar el valor"})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/dial/lang/dial_hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("lang/dial_hu",function(e){e.Intl.add("dial","hu",{label:"Saj\u00e1t c\u00edmke",resetStr:"\u00dajrakezd",tooltipHandle:"H\u00e1zza az \u00e9rt\u00e9k be\u00e1ll\u00edt\u00e1s\u00e1hoz"})},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/editor-inline/editor-inline-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("editor-inline",function(e,t){var n=function(){n.superclass.constructor.apply(this,arguments)};e.extend(n,e.EditorBase,{initializer:function(){this.plug(e.Plugin.ContentEditable)}}),e.InlineEditor=n},"3.17.2",{requires:["editor-base","content-editable"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/file/file-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("file",function(e,t){var n=e.config.win;n&&n.File&&n.FormData&&n.XMLHttpRequest?e.File=e.FileHTML5:e.File=e.FileFlash},"3.17.2",{requires:["file-flash","file-html5"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/gallery-datatable-row-expansion-bmo/assets/skins/sam/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/gallery-datatable-row-expansion-bmo/assets/skins/sam/closed.png -------------------------------------------------------------------------------- /js/yui3/gallery-datatable-row-expansion-bmo/assets/skins/sam/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/gallery-datatable-row-expansion-bmo/assets/skins/sam/open.png -------------------------------------------------------------------------------- /js/yui3/graphics-canvas-default/graphics-canvas-default-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("graphics-canvas-default",function(e,t){e.Graphic=e.CanvasGraphic,e.Shape=e.CanvasShape,e.Circle=e.CanvasCircle,e.Rect=e.CanvasRect,e.Ellipse=e.CanvasEllipse,e.Path=e.CanvasPath,e.Drawing=e.CanvasDrawing},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/graphics-svg-default/graphics-svg-default-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("graphics-svg-default",function(e,t){e.Graphic=e.SVGGraphic,e.Shape=e.SVGShape,e.Circle=e.SVGCircle,e.Rect=e.SVGRect,e.Ellipse=e.SVGEllipse,e.Path=e.SVGPath,e.Drawing=e.SVGDrawing},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/graphics-vml-default/graphics-vml-default-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("graphics-vml-default",function(e,t){e.Graphic=e.VMLGraphic,e.Shape=e.VMLShape,e.Circle=e.VMLCircle,e.Rect=e.VMLRect,e.Ellipse=e.VMLEllipse,e.Path=e.VMLPath,e.Drawing=e.VMLDrawing},"3.17.2"); 9 | -------------------------------------------------------------------------------- /js/yui3/io-xdr/io.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/io-xdr/io.swf -------------------------------------------------------------------------------- /js/yui3/json-parse/json-parse-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("json-parse",function(e,t){var n=e.config.global.JSON;e.namespace("JSON").parse=function(e,t,r){return n.parse(typeof e=="string"?e:e+"",t,r)}},"3.17.2",{requires:["yui-base"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/node-event-delegate/node-event-delegate-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("node-event-delegate",function(e,t){e.Node.prototype.delegate=function(t){var n=e.Array(arguments,0,!0),r=e.Lang.isObject(t)&&!e.Lang.isArray(t)?1:2;return n.splice(r,0,this._node),e.delegate.apply(e,n)}},"3.17.2",{requires:["node-base","event-delegate"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/node-event-simulate/node-event-simulate-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("node-event-simulate",function(e,t){e.Node.prototype.simulate=function(t,n){e.Event.simulate(e.Node.getDOMNode(this),t,n)},e.Node.prototype.simulateGesture=function(t,n,r){e.Event.simulateGesture(this,t,n,r)}},"3.17.2",{requires:["node-base","event-simulate","gesture-simulate"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/node-flick/assets/node-flick-core.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-flick { 9 | position:relative; 10 | overflow:hidden; 11 | } 12 | 13 | .yui3-flick-content { 14 | position:relative; 15 | } 16 | -------------------------------------------------------------------------------- /js/yui3/node-flick/assets/skins/sam/node-flick.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-flick{position:relative;overflow:hidden}.yui3-flick-content{position:relative}#yui3-css-stamp.skin-sam-node-flick{display:none} 9 | -------------------------------------------------------------------------------- /js/yui3/node-menunav/assets/skins/night/horizontal-menu-submenu-indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/node-menunav/assets/skins/night/horizontal-menu-submenu-indicator.png -------------------------------------------------------------------------------- /js/yui3/node-menunav/assets/skins/night/vertical-menu-submenu-indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/node-menunav/assets/skins/night/vertical-menu-submenu-indicator.png -------------------------------------------------------------------------------- /js/yui3/node-menunav/assets/skins/sam/horizontal-menu-submenu-indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/node-menunav/assets/skins/sam/horizontal-menu-submenu-indicator.png -------------------------------------------------------------------------------- /js/yui3/node-menunav/assets/skins/sam/horizontal-menu-submenu-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/node-menunav/assets/skins/sam/horizontal-menu-submenu-toggle.png -------------------------------------------------------------------------------- /js/yui3/node-menunav/assets/skins/sam/vertical-menu-submenu-indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/node-menunav/assets/skins/sam/vertical-menu-submenu-indicator.png -------------------------------------------------------------------------------- /js/yui3/overlay/assets/overlay-core.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-overlay { 9 | position:absolute; 10 | } 11 | 12 | .yui3-overlay-hidden { 13 | visibility:hidden 14 | } 15 | 16 | .yui3-widget-tmp-forcesize .yui3-overlay-content { 17 | overflow:hidden !important; 18 | } -------------------------------------------------------------------------------- /js/yui3/overlay/assets/skins/sam/overlay.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-overlay{position:absolute}.yui3-overlay-hidden{visibility:hidden}.yui3-widget-tmp-forcesize .yui3-overlay-content{overflow:hidden!important}#yui3-css-stamp.skin-sam-overlay{display:none} 9 | -------------------------------------------------------------------------------- /js/yui3/overlay/overlay-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("overlay",function(e,t){e.Overlay=e.Base.create("overlay",e.Widget,[e.WidgetStdMod,e.WidgetPosition,e.WidgetStack,e.WidgetPositionAlign,e.WidgetPositionConstrain])},"3.17.2",{requires:["widget","widget-stdmod","widget-position","widget-position-align","widget-stack","widget-position-constrain"],skinnable:!0}); 9 | -------------------------------------------------------------------------------- /js/yui3/paginator/paginator-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("paginator",function(e,t){e.Paginator=e.mix(e.Base.create("paginator",e.Base,[e.Paginator.Core]),e.Paginator)},"3.17.2",{requires:["paginator-core"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/panel/assets/skins/night/sprite_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/panel/assets/skins/night/sprite_icons.png -------------------------------------------------------------------------------- /js/yui3/panel/assets/skins/sam/sprite_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/panel/assets/skins/sam/sprite_icons.png -------------------------------------------------------------------------------- /js/yui3/pjax-plugin/pjax-plugin-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("pjax-plugin",function(e,t){e.Plugin.Pjax=e.Base.create("pjaxPlugin",e.Pjax,[e.Plugin.Base],{initializer:function(e){this.set("container",e.host)}},{NS:"pjax"})},"3.17.2",{requires:["node-pluginhost","pjax","plugin"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/queue-promote/queue-promote-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("queue-promote",function(e,t){e.mix(e.Queue.prototype,{indexOf:function(t){return e.Array.indexOf(this._q,t)},promote:function(e){var t=this.indexOf(e);t>-1&&this._q.unshift(this._q.splice(t,1)[0])},remove:function(e){var t=this.indexOf(e);t>-1&&this._q.splice(t,1)}})},"3.17.2",{requires:["yui-base"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/range-slider/assets/thumb-x-oblong-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/range-slider/assets/thumb-x-oblong-dark.png -------------------------------------------------------------------------------- /js/yui3/range-slider/assets/thumb-x-oblong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/range-slider/assets/thumb-x-oblong.png -------------------------------------------------------------------------------- /js/yui3/range-slider/assets/thumb-x-oblong2-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/range-slider/assets/thumb-x-oblong2-dark.png -------------------------------------------------------------------------------- /js/yui3/range-slider/assets/thumb-x-oblong2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/range-slider/assets/thumb-x-oblong2.png -------------------------------------------------------------------------------- /js/yui3/range-slider/assets/thumb-y-oblong-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/range-slider/assets/thumb-y-oblong-dark.png -------------------------------------------------------------------------------- /js/yui3/range-slider/assets/thumb-y-oblong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/range-slider/assets/thumb-y-oblong.png -------------------------------------------------------------------------------- /js/yui3/range-slider/assets/thumb-y-oblong2-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/range-slider/assets/thumb-y-oblong2-dark.png -------------------------------------------------------------------------------- /js/yui3/range-slider/assets/thumb-y-oblong2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/range-slider/assets/thumb-y-oblong2.png -------------------------------------------------------------------------------- /js/yui3/range-slider/range-slider-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("range-slider",function(e,t){e.Slider=e.Base.build("slider",e.SliderBase,[e.SliderValueRange,e.ClickableRail])},"3.17.2",{requires:["slider-base","slider-value-range","clickable-rail"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/resize-base/assets/skins/night/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/resize-base/assets/skins/night/arrows.png -------------------------------------------------------------------------------- /js/yui3/resize-base/assets/skins/sam/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/resize-base/assets/skins/sam/arrows.png -------------------------------------------------------------------------------- /js/yui3/resize-constrain/assets/skins/night/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/resize-constrain/assets/skins/night/arrows.png -------------------------------------------------------------------------------- /js/yui3/resize-constrain/assets/skins/sam/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/resize-constrain/assets/skins/sam/arrows.png -------------------------------------------------------------------------------- /js/yui3/resize-plugin/assets/skins/night/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/resize-plugin/assets/skins/night/arrows.png -------------------------------------------------------------------------------- /js/yui3/resize-plugin/assets/skins/sam/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/resize-plugin/assets/skins/sam/arrows.png -------------------------------------------------------------------------------- /js/yui3/resize-proxy/assets/skins/night/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/resize-proxy/assets/skins/night/arrows.png -------------------------------------------------------------------------------- /js/yui3/resize-proxy/assets/skins/sam/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/resize-proxy/assets/skins/sam/arrows.png -------------------------------------------------------------------------------- /js/yui3/scrollview-base/assets/scrollview-base-core.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-scrollview { 9 | position: relative; 10 | overflow: hidden; 11 | -webkit-user-select: none; 12 | -moz-user-select: none; 13 | } 14 | 15 | .yui3-scrollview-hidden { 16 | display:none; 17 | } 18 | 19 | .yui3-scrollview-content { 20 | position:relative; 21 | } -------------------------------------------------------------------------------- /js/yui3/scrollview-base/assets/skins/night/scrollview-base.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-scrollview{position:relative;overflow:hidden;-webkit-user-select:none;-moz-user-select:none}.yui3-scrollview-hidden{display:none}.yui3-scrollview-content{position:relative}#yui3-css-stamp.skin-night-scrollview-base{display:none} 9 | -------------------------------------------------------------------------------- /js/yui3/scrollview-list/assets/scrollview-list-core.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | -------------------------------------------------------------------------------- /js/yui3/scrollview/scrollview-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("scrollview",function(e,t){e.Base.plug(e.ScrollView,e.Plugin.ScrollViewScrollbars)},"3.17.2",{requires:["scrollview-base","scrollview-scrollbars"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/selector/selector-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("selector",function(e,t){},"3.17.2",{requires:["selector-native"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/series-areaspline/series-areaspline-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("series-areaspline",function(e,t){e.AreaSplineSeries=e.Base.create("areaSplineSeries",e.AreaSeries,[e.CurveUtil],{drawSeries:function(){this.drawAreaSpline()}},{ATTRS:{type:{value:"areaSpline"}}})},"3.17.2",{requires:["series-area","series-curve-util"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/series-spline/series-spline-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("series-spline",function(e,t){e.SplineSeries=e.Base.create("splineSeries",e.LineSeries,[e.CurveUtil,e.Lines],{drawSeries:function(){this.drawSpline()}},{ATTRS:{type:{value:"spline"}}})},"3.17.2",{requires:["series-line","series-curve-util"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/audio-light/rail-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/audio-light/rail-x.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/audio-light/rail-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/audio-light/rail-y.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/audio-light/thumb-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/audio-light/thumb-x.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/audio-light/thumb-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/audio-light/thumb-y.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/audio/rail-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/audio/rail-x.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/audio/rail-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/audio/rail-y.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/audio/thumb-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/audio/thumb-x.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/audio/thumb-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/audio/thumb-y.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/capsule-dark/rail-x-dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/capsule-dark/rail-x-dots.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/capsule-dark/rail-x-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/capsule-dark/rail-x-lines.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/capsule-dark/rail-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/capsule-dark/rail-x.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/capsule-dark/rail-y-dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/capsule-dark/rail-y-dots.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/capsule-dark/rail-y-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/capsule-dark/rail-y-lines.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/capsule-dark/rail-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/capsule-dark/rail-y.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/capsule-dark/thumb-x-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/capsule-dark/thumb-x-line.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/capsule-dark/thumb-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/capsule-dark/thumb-x.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/capsule-dark/thumb-y-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/capsule-dark/thumb-y-line.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/capsule-dark/thumb-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/capsule-dark/thumb-y.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/capsule/rail-x-dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/capsule/rail-x-dots.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/capsule/rail-x-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/capsule/rail-x-lines.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/capsule/rail-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/capsule/rail-x.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/capsule/rail-y-dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/capsule/rail-y-dots.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/capsule/rail-y-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/capsule/rail-y-lines.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/capsule/rail-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/capsule/rail-y.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/capsule/thumb-x-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/capsule/thumb-x-line.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/capsule/thumb-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/capsule/thumb-x.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/capsule/thumb-y-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/capsule/thumb-y-line.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/capsule/thumb-y-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/capsule/thumb-y-lines.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/capsule/thumb-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/capsule/thumb-y.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/night/rail-x-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/night/rail-x-lines.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/night/rail-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/night/rail-x.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/night/rail-y-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/night/rail-y-lines.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/night/rail-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/night/rail-y.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/night/thumb-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/night/thumb-x.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/night/thumb-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/night/thumb-y.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/round-dark/rail-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/round-dark/rail-x.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/round-dark/rail-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/round-dark/rail-y.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/round-dark/thumb-x-grip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/round-dark/thumb-x-grip.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/round-dark/thumb-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/round-dark/thumb-x.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/round-dark/thumb-y-grip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/round-dark/thumb-y-grip.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/round-dark/thumb-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/round-dark/thumb-y.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/round/rail-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/round/rail-x.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/round/rail-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/round/rail-y.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/round/thumb-x-grip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/round/thumb-x-grip.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/round/thumb-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/round/thumb-x.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/round/thumb-y-grip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/round/thumb-y-grip.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/round/thumb-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/round/thumb-y.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/sam-dark/rail-x-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/sam-dark/rail-x-lines.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/sam-dark/rail-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/sam-dark/rail-x.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/sam-dark/rail-y-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/sam-dark/rail-y-lines.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/sam-dark/rail-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/sam-dark/rail-y.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/sam-dark/thumb-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/sam-dark/thumb-x.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/sam-dark/thumb-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/sam-dark/thumb-y.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/sam/rail-x-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/sam/rail-x-lines.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/sam/rail-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/sam/rail-x.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/sam/rail-y-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/sam/rail-y-lines.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/sam/rail-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/sam/rail-y.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/sam/thumb-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/sam/thumb-x.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/skins/sam/thumb-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/skins/sam/thumb-y.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/thumb-x-oblong-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/thumb-x-oblong-dark.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/thumb-x-oblong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/thumb-x-oblong.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/thumb-x-oblong2-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/thumb-x-oblong2-dark.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/thumb-x-oblong2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/thumb-x-oblong2.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/thumb-y-oblong-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/thumb-y-oblong-dark.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/thumb-y-oblong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/thumb-y-oblong.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/thumb-y-oblong2-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/thumb-y-oblong2-dark.png -------------------------------------------------------------------------------- /js/yui3/slider-base/assets/thumb-y-oblong2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-base/assets/thumb-y-oblong2.png -------------------------------------------------------------------------------- /js/yui3/slider-value-range/assets/thumb-x-oblong-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-value-range/assets/thumb-x-oblong-dark.png -------------------------------------------------------------------------------- /js/yui3/slider-value-range/assets/thumb-x-oblong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-value-range/assets/thumb-x-oblong.png -------------------------------------------------------------------------------- /js/yui3/slider-value-range/assets/thumb-x-oblong2-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-value-range/assets/thumb-x-oblong2-dark.png -------------------------------------------------------------------------------- /js/yui3/slider-value-range/assets/thumb-x-oblong2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-value-range/assets/thumb-x-oblong2.png -------------------------------------------------------------------------------- /js/yui3/slider-value-range/assets/thumb-y-oblong-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-value-range/assets/thumb-y-oblong-dark.png -------------------------------------------------------------------------------- /js/yui3/slider-value-range/assets/thumb-y-oblong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-value-range/assets/thumb-y-oblong.png -------------------------------------------------------------------------------- /js/yui3/slider-value-range/assets/thumb-y-oblong2-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-value-range/assets/thumb-y-oblong2-dark.png -------------------------------------------------------------------------------- /js/yui3/slider-value-range/assets/thumb-y-oblong2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/slider-value-range/assets/thumb-y-oblong2.png -------------------------------------------------------------------------------- /js/yui3/tabview-plugin/tabview-plugin-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("tabview-plugin",function(e,t){function n(){n.superclass.constructor.apply(this,arguments)}n.NAME="tabviewPlugin",n.NS="tabs",e.extend(n,e.TabviewBase),e.namespace("Plugin"),e.Plugin.Tabview=n},"3.17.2",{requires:["tabview-base"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/test-console/assets/test-console-core.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-testconsole .yui3-console-entry { 9 | min-height: inherit; 10 | padding: 5px; 11 | } 12 | 13 | .yui3-testconsole .yui3-console-controls { 14 | display: none; 15 | } 16 | -------------------------------------------------------------------------------- /js/yui3/uploader-deprecated/assets/uploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/uploader-deprecated/assets/uploader.swf -------------------------------------------------------------------------------- /js/yui3/uploader-flash/assets/uploader-flash-core.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-uploader-selectfiles-button { 9 | width: 100%; 10 | height: 100%; 11 | } -------------------------------------------------------------------------------- /js/yui3/uploader-html5/assets/uploader-flash-core.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-uploader-selectfiles-button { 9 | width: 100%; 10 | height: 100%; 11 | } -------------------------------------------------------------------------------- /js/yui3/uploader-queue/assets/uploader-flash-core.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-uploader-selectfiles-button { 9 | width: 100%; 10 | height: 100%; 11 | } -------------------------------------------------------------------------------- /js/yui3/uploader/assets/flashuploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/uploader/assets/flashuploader.swf -------------------------------------------------------------------------------- /js/yui3/uploader/assets/uploader-flash-core.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-uploader-selectfiles-button { 9 | width: 100%; 10 | height: 100%; 11 | } -------------------------------------------------------------------------------- /js/yui3/uploader/uploader-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("uploader",function(e,t){var n=e.config.win;n&&n.File&&n.FormData&&n.XMLHttpRequest?e.Uploader=e.UploaderHTML5:e.SWFDetect.isFlashVersionAtLeast(10,0,45)?e.Uploader=e.UploaderFlash:(e.namespace("Uploader"),e.Uploader.TYPE="none")},"3.17.2",{requires:["uploader-html5","uploader-flash"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/widget-buttons/assets/skins/night/sprite_icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/widget-buttons/assets/skins/night/sprite_icons.gif -------------------------------------------------------------------------------- /js/yui3/widget-buttons/assets/skins/sam/sprite_icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/js/yui3/widget-buttons/assets/skins/sam/sprite_icons.gif -------------------------------------------------------------------------------- /js/yui3/widget-modality/assets/skins/night/widget-modality.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-skin-night .yui3-widget-mask{background-color:black;zoom:1;-ms-filter:"alpha(opacity=40)";filter:alpha(opacity=40);opacity:.4}#yui3-css-stamp.skin-night-widget-modality{display:none} 9 | -------------------------------------------------------------------------------- /js/yui3/widget-modality/assets/skins/sam/widget-modality.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-skin-sam .yui3-widget-mask{background-color:black;zoom:1;-ms-filter:"alpha(opacity=40)";filter:alpha(opacity=40);opacity:.4}#yui3-css-stamp.skin-sam-widget-modality{display:none} 9 | -------------------------------------------------------------------------------- /js/yui3/widget-modality/assets/widget-modality-core.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | /* WidgetModality core styles */ 9 | -------------------------------------------------------------------------------- /js/yui3/widget-stack/assets/skins/night/widget-stack.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-widget-stacked .yui3-widget-shim{opacity:0;filter:alpha(opacity=0);position:absolute;border:0;top:0;left:0;padding:0;margin:0;z-index:-1;width:100%;height:100%;_width:0;_height:0}#yui3-css-stamp.skin-night-widget-stack{display:none} 9 | -------------------------------------------------------------------------------- /js/yui3/widget-stack/assets/skins/sam/widget-stack.css: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | .yui3-widget-stacked .yui3-widget-shim{opacity:0;filter:alpha(opacity=0);position:absolute;border:0;top:0;left:0;padding:0;margin:0;z-index:-1;width:100%;height:100%;_width:0;_height:0}#yui3-css-stamp.skin-sam-widget-stack{display:none} 9 | -------------------------------------------------------------------------------- /js/yui3/yql-jsonp/yql-jsonp-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("yql-jsonp",function(e,t){e.YQLRequest.prototype._send=function(t,n){n.allowCache!==!1&&(n.allowCache=!0),this._jsonp?(this._jsonp.url=t,n.on&&n.on.success&&(this._jsonp._config.on.success=n.on.success),this._jsonp.send()):this._jsonp=e.jsonp(t,n)}},"3.17.2",{requires:["yql","jsonp","jsonp-url"]}); 9 | -------------------------------------------------------------------------------- /js/yui3/yql-nodejs/yql-nodejs-min.js: -------------------------------------------------------------------------------- 1 | /* 2 | YUI 3.17.2 (build 9c3c78e) 3 | Copyright 2014 Yahoo! Inc. All rights reserved. 4 | Licensed under the BSD License. 5 | http://yuilibrary.com/license/ 6 | */ 7 | 8 | YUI.add("yql-nodejs",function(e,t){var n=require("request");e.YQLRequest.prototype._send=function(e,t){n(e,{method:"GET",timeout:t.timeout||3e4},function(e,n){e?t.on.success({error:e}):t.on.success(JSON.parse(n.body))})}},"3.17.2",{requires:["yql"]}); 9 | -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- 1 | This directory contains the Perl modules that Bugzilla requires to run. 2 | 3 | If you would rather have Bugzilla use the Perl modules installed on your 4 | system, you can delete everything in this directory. 5 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/public/favicon.ico -------------------------------------------------------------------------------- /qa/extensions/QA/template/en/default/pages/qa/email_in.html.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | -------------------------------------------------------------------------------- /scripts/c9-build: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd ~/workspace 4 | if ! ps aux | grep '[m]ysql' &>/dev/null; then 5 | mysql-ctl restart 6 | fi 7 | sudo apachectl stop 8 | perl scripts/clear-templates.pl 9 | perl checksetup.pl 10 | sudo apachectl start -------------------------------------------------------------------------------- /scripts/search.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | use strict; 3 | use warnings; 4 | use Bugzilla; 5 | use JSON '-convert_blessed_universally'; 6 | 7 | print JSON->new->pretty->encode( 8 | Bugzilla::Elastic::Search->new( 9 | quicksearch => "@ARGV", 10 | fields => ['bug_id', 'short_desc'], 11 | order => ['bug_id'], 12 | )->es_query 13 | ); 14 | -------------------------------------------------------------------------------- /skins/standard/dependency-tree/bug-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/skins/standard/dependency-tree/bug-item.png -------------------------------------------------------------------------------- /skins/standard/dependency-tree/tree-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/skins/standard/dependency-tree/tree-closed.png -------------------------------------------------------------------------------- /skins/standard/dependency-tree/tree-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/skins/standard/dependency-tree/tree-open.png -------------------------------------------------------------------------------- /skins/standard/dependency-tree/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/skins/standard/dependency-tree/tree.png -------------------------------------------------------------------------------- /skins/standard/fonts/FiraGO-Book.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/skins/standard/fonts/FiraGO-Book.woff2 -------------------------------------------------------------------------------- /skins/standard/fonts/FiraGO-BookItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/skins/standard/fonts/FiraGO-BookItalic.woff2 -------------------------------------------------------------------------------- /skins/standard/fonts/FiraGO-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/skins/standard/fonts/FiraGO-Medium.woff2 -------------------------------------------------------------------------------- /skins/standard/fonts/FiraGO-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/skins/standard/fonts/FiraGO-MediumItalic.woff2 -------------------------------------------------------------------------------- /skins/standard/fonts/FiraGO-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/skins/standard/fonts/FiraGO-SemiBold.woff2 -------------------------------------------------------------------------------- /skins/standard/fonts/FiraGO-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/skins/standard/fonts/FiraGO-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /skins/standard/fonts/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/skins/standard/fonts/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /skins/standard/fonts/NotoMono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/skins/standard/fonts/NotoMono-Regular.woff2 -------------------------------------------------------------------------------- /skins/standard/global/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugzilla/harmony/54206016b2363c540e9c340f39dfb43ea814a752/skins/standard/global/calendar.png -------------------------------------------------------------------------------- /skins/standard/guided.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this file, 3 | * You can obtain one at http://mozilla.org/MPL/2.0/. 4 | * 5 | * This Source Code Form is "Incompatible With Secondary Licenses", as 6 | * defined by the Mozilla Public License, v. 2.0. */ 7 | 8 | #somebugs { 9 | width: 100%; 10 | height: 500px; 11 | } 12 | -------------------------------------------------------------------------------- /skins/yui.css.list: -------------------------------------------------------------------------------- 1 | js/yui/assets/skins/sam/calendar.css 2 | js/yui/assets/skins/sam/container.css 3 | js/yui/assets/skins/sam/datatable.css 4 | js/yui/assets/skins/sam/button.css 5 | js/yui/assets/skins/sam/paginator.css 6 | -------------------------------------------------------------------------------- /skins/yui3.css.list: -------------------------------------------------------------------------------- 1 | js/yui3/widget-base/assets/skins/sam/widget-base.css 2 | js/yui3/datatable-base/assets/skins/sam/datatable-base.css 3 | js/yui3/datatable-message/assets/skins/sam/datatable-message.css 4 | js/yui3/datatable-sort/assets/skins/sam/datatable-sort.css 5 | js/yui3/gallery-datatable-row-expansion-bmo/assets/skins/sam/gallery-datatable-row-expansion-bmo.css 6 | -------------------------------------------------------------------------------- /template/en/default/global/ip-blocked.html.tmpl: -------------------------------------------------------------------------------- 1 | [% PROCESS global/variables.none.tmpl %] 2 | 3 | [% title = "Too Many Requests" %] 4 | 5 | [% PROCESS global/header.html.tmpl 6 | use_login_page = 1 7 | robots = 'noindex' %] 8 | 9 |

[% title FILTER html %]

10 | 11 |

12 | We’re sorry, but you have sent too many requests to us recently. 13 | You will be unblocked in [% block_timeout / 60 FILTER none %] minutes. 14 |

15 | 16 | [% PROCESS global/footer.html.tmpl %] 17 | -------------------------------------------------------------------------------- /template/en/default/global/password-features.html.tmpl: -------------------------------------------------------------------------------- 1 | [%# This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as 6 | # defined by the Mozilla Public License, v. 2.0. 7 | #%] 8 | 9 | 11 | 12 | -------------------------------------------------------------------------------- /template/en/default/layouts/bugzilla.html.ep: -------------------------------------------------------------------------------- 1 | %= bz_include 'global/header.html.tmpl', title => $title; 2 | %= content 3 | %= bz_include 'global/footer.html.tmpl'; 4 | -------------------------------------------------------------------------------- /template/en/default/main/root.html.tmpl: -------------------------------------------------------------------------------- 1 | [% SET home_url = c.url_for('/home').to_abs %] 2 | [% PROCESS index.html.tmpl meta_refresh="0;URL='$home_url'" %] 3 | -------------------------------------------------------------------------------- /template/en/default/users/signup_email.html.tmpl: -------------------------------------------------------------------------------- 1 | [% title = BLOCK %]New user account for '[% email FILTER html %]'[% END %] 2 | [% PROCESS "global/header.html.tmpl" 3 | title = title 4 | style_urls = ['skins/standard/admin.css'] 5 | javascript_urls = ['js/account.js'] 6 | %] 7 | 8 |

9 | We've sent a confirmation message to [% email FILTER html %]. When you recieve 10 | it, you'll be able to finish creating your account. 11 |

12 | 13 | 14 | [% PROCESS global/footer.html.tmpl %] 15 | -------------------------------------------------------------------------------- /template/en/default/users/signup_email_finish.html.tmpl: -------------------------------------------------------------------------------- 1 | [% PROCESS "global/header.html.tmpl" 2 | title = "Backend validation problems" 3 | style_urls = ['skins/standard/signup.css'] 4 | %] 5 | [% v = c.stash.v %] 6 | 7 | [% PROCESS global/footer.html.tmpl %] 8 | --------------------------------------------------------------------------------