├── .github ├── ISSUE_TEMPLATE │ └── request-for-position.yml └── workflows │ ├── build-and-deploy.yml │ └── validate.yml ├── .gitignore ├── .nojekyll ├── API_ISSUE_TEMPLATE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEVELOP.md ├── LICENSE.txt ├── README.md ├── activities.py ├── activities.yml ├── asset ├── Ecma.png ├── IETF.svg ├── JS.svg ├── LICENSE.txt ├── MDN.svg ├── Mozilla-2024.svg ├── Mozilla.svg ├── Other.svg ├── Proposal.svg ├── Unicode.svg ├── W3C-CG.svg ├── W3C.svg ├── WHATWG.svg ├── bugzilla.png └── mozilla-icon.png ├── gh-data.py ├── index.html ├── merge-data.py ├── package.json ├── pre-commit └── requirements.txt /.github/ISSUE_TEMPLATE/request-for-position.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/.github/ISSUE_TEMPLATE/request-for-position.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/.github/workflows/build-and-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /API_ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/API_ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/DEVELOP.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/README.md -------------------------------------------------------------------------------- /activities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/activities.py -------------------------------------------------------------------------------- /activities.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/activities.yml -------------------------------------------------------------------------------- /asset/Ecma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/asset/Ecma.png -------------------------------------------------------------------------------- /asset/IETF.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/asset/IETF.svg -------------------------------------------------------------------------------- /asset/JS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/asset/JS.svg -------------------------------------------------------------------------------- /asset/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/asset/LICENSE.txt -------------------------------------------------------------------------------- /asset/MDN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/asset/MDN.svg -------------------------------------------------------------------------------- /asset/Mozilla-2024.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/asset/Mozilla-2024.svg -------------------------------------------------------------------------------- /asset/Mozilla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/asset/Mozilla.svg -------------------------------------------------------------------------------- /asset/Other.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/asset/Other.svg -------------------------------------------------------------------------------- /asset/Proposal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/asset/Proposal.svg -------------------------------------------------------------------------------- /asset/Unicode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/asset/Unicode.svg -------------------------------------------------------------------------------- /asset/W3C-CG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/asset/W3C-CG.svg -------------------------------------------------------------------------------- /asset/W3C.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/asset/W3C.svg -------------------------------------------------------------------------------- /asset/WHATWG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/asset/WHATWG.svg -------------------------------------------------------------------------------- /asset/bugzilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/asset/bugzilla.png -------------------------------------------------------------------------------- /asset/mozilla-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/asset/mozilla-icon.png -------------------------------------------------------------------------------- /gh-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/gh-data.py -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/index.html -------------------------------------------------------------------------------- /merge-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/merge-data.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/package.json -------------------------------------------------------------------------------- /pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standards-positions/HEAD/pre-commit -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | ruamel.yaml 3 | --------------------------------------------------------------------------------