├── .github ├── ISSUE_TEMPLATE │ └── use-case.yaml └── workflows │ └── publish.yml ├── .gitignore ├── CNAME ├── README.md ├── assets ├── images │ ├── diagrams │ │ ├── ipfs-chunking-dag.svg │ │ ├── ipfs-composite-zip.svg │ │ ├── response-record.svg │ │ ├── wacz-file-dag.svg │ │ ├── warc-compressed-vs-uncompressed.svg │ │ ├── warc-record-deduplication.svg │ │ └── warc-records.svg │ ├── wacz.png │ ├── wacz.svg │ └── webrecorder-icon-color.svg └── js │ ├── respec-webrecorder.js │ └── respec-webrecorder.js.map ├── cdxj ├── 0.1.0 │ └── index.html └── latest │ └── index.html ├── index.html ├── use-cases ├── 0.1.0 │ └── index.html └── latest │ └── index.html ├── wacz-auth ├── 0.1.0 │ └── index.html └── latest │ └── index.html ├── wacz-ipfs └── latest │ ├── index.json │ └── index.md └── wacz ├── 1.1.1 ├── index.json ├── index.md └── wacz-2021.pdf ├── 1.2.0 ├── index.json └── index.md └── latest └── index.html /.github/ISSUE_TEMPLATE/use-case.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/.github/ISSUE_TEMPLATE/use-case.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | specs.webrecorder.net -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/diagrams/ipfs-chunking-dag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/assets/images/diagrams/ipfs-chunking-dag.svg -------------------------------------------------------------------------------- /assets/images/diagrams/ipfs-composite-zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/assets/images/diagrams/ipfs-composite-zip.svg -------------------------------------------------------------------------------- /assets/images/diagrams/response-record.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/assets/images/diagrams/response-record.svg -------------------------------------------------------------------------------- /assets/images/diagrams/wacz-file-dag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/assets/images/diagrams/wacz-file-dag.svg -------------------------------------------------------------------------------- /assets/images/diagrams/warc-compressed-vs-uncompressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/assets/images/diagrams/warc-compressed-vs-uncompressed.svg -------------------------------------------------------------------------------- /assets/images/diagrams/warc-record-deduplication.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/assets/images/diagrams/warc-record-deduplication.svg -------------------------------------------------------------------------------- /assets/images/diagrams/warc-records.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/assets/images/diagrams/warc-records.svg -------------------------------------------------------------------------------- /assets/images/wacz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/assets/images/wacz.png -------------------------------------------------------------------------------- /assets/images/wacz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/assets/images/wacz.svg -------------------------------------------------------------------------------- /assets/images/webrecorder-icon-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/assets/images/webrecorder-icon-color.svg -------------------------------------------------------------------------------- /assets/js/respec-webrecorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/assets/js/respec-webrecorder.js -------------------------------------------------------------------------------- /assets/js/respec-webrecorder.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/assets/js/respec-webrecorder.js.map -------------------------------------------------------------------------------- /cdxj/0.1.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/cdxj/0.1.0/index.html -------------------------------------------------------------------------------- /cdxj/latest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/cdxj/latest/index.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/index.html -------------------------------------------------------------------------------- /use-cases/0.1.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/use-cases/0.1.0/index.html -------------------------------------------------------------------------------- /use-cases/latest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/use-cases/latest/index.html -------------------------------------------------------------------------------- /wacz-auth/0.1.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/wacz-auth/0.1.0/index.html -------------------------------------------------------------------------------- /wacz-auth/latest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/wacz-auth/latest/index.html -------------------------------------------------------------------------------- /wacz-ipfs/latest/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/wacz-ipfs/latest/index.json -------------------------------------------------------------------------------- /wacz-ipfs/latest/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/wacz-ipfs/latest/index.md -------------------------------------------------------------------------------- /wacz/1.1.1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/wacz/1.1.1/index.json -------------------------------------------------------------------------------- /wacz/1.1.1/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/wacz/1.1.1/index.md -------------------------------------------------------------------------------- /wacz/1.1.1/wacz-2021.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/wacz/1.1.1/wacz-2021.pdf -------------------------------------------------------------------------------- /wacz/1.2.0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/wacz/1.2.0/index.json -------------------------------------------------------------------------------- /wacz/1.2.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/wacz/1.2.0/index.md -------------------------------------------------------------------------------- /wacz/latest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/specs/HEAD/wacz/latest/index.html --------------------------------------------------------------------------------