├── .github └── ISSUE_TEMPLATE │ ├── agenda.md │ └── proposal-template.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── charters └── 2025-04.html ├── meetings ├── 2025 │ ├── 2025-06-25-notes.md │ ├── 2025-09-26-notes.md │ ├── 2025-11-14-TPAC-agenda.md │ ├── 2025-11-14-TPAC-notes.md │ └── W3C TPAC 2025.pdf └── README.md └── w3c.json /.github/ISSUE_TEMPLATE/agenda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/exploration-ig/HEAD/.github/ISSUE_TEMPLATE/agenda.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/proposal-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/exploration-ig/HEAD/.github/ISSUE_TEMPLATE/proposal-template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/exploration-ig/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/exploration-ig/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/exploration-ig/HEAD/README.md -------------------------------------------------------------------------------- /charters/2025-04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/exploration-ig/HEAD/charters/2025-04.html -------------------------------------------------------------------------------- /meetings/2025/2025-06-25-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/exploration-ig/HEAD/meetings/2025/2025-06-25-notes.md -------------------------------------------------------------------------------- /meetings/2025/2025-09-26-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/exploration-ig/HEAD/meetings/2025/2025-09-26-notes.md -------------------------------------------------------------------------------- /meetings/2025/2025-11-14-TPAC-agenda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/exploration-ig/HEAD/meetings/2025/2025-11-14-TPAC-agenda.md -------------------------------------------------------------------------------- /meetings/2025/2025-11-14-TPAC-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/exploration-ig/HEAD/meetings/2025/2025-11-14-TPAC-notes.md -------------------------------------------------------------------------------- /meetings/2025/W3C TPAC 2025.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/exploration-ig/HEAD/meetings/2025/W3C TPAC 2025.pdf -------------------------------------------------------------------------------- /meetings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/exploration-ig/HEAD/meetings/README.md -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/exploration-ig/HEAD/w3c.json --------------------------------------------------------------------------------