├── .github ├── no-response.yml └── workflows │ └── ci.yml ├── .gitignore ├── .pairs ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── keymaps └── archive-view.cson ├── lib ├── archive-editor-view.js ├── archive-editor.js ├── default-file-icons.js ├── directory-view.js ├── file-view.js └── get-icon-services.js ├── package.json ├── spec ├── archive-editor-spec.js ├── archive-editor-view-spec.js ├── async-spec-helpers.js └── fixtures │ ├── file-icons.zip │ ├── invalid.zip │ ├── multiple-entries.zip │ └── nested.tar └── styles └── archive-view.less /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.pairs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/.pairs -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/README.md -------------------------------------------------------------------------------- /keymaps/archive-view.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/keymaps/archive-view.cson -------------------------------------------------------------------------------- /lib/archive-editor-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/lib/archive-editor-view.js -------------------------------------------------------------------------------- /lib/archive-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/lib/archive-editor.js -------------------------------------------------------------------------------- /lib/default-file-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/lib/default-file-icons.js -------------------------------------------------------------------------------- /lib/directory-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/lib/directory-view.js -------------------------------------------------------------------------------- /lib/file-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/lib/file-view.js -------------------------------------------------------------------------------- /lib/get-icon-services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/lib/get-icon-services.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/package.json -------------------------------------------------------------------------------- /spec/archive-editor-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/spec/archive-editor-spec.js -------------------------------------------------------------------------------- /spec/archive-editor-view-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/spec/archive-editor-view-spec.js -------------------------------------------------------------------------------- /spec/async-spec-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/spec/async-spec-helpers.js -------------------------------------------------------------------------------- /spec/fixtures/file-icons.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/spec/fixtures/file-icons.zip -------------------------------------------------------------------------------- /spec/fixtures/invalid.zip: -------------------------------------------------------------------------------- 1 | invalid 2 | -------------------------------------------------------------------------------- /spec/fixtures/multiple-entries.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/spec/fixtures/multiple-entries.zip -------------------------------------------------------------------------------- /spec/fixtures/nested.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/spec/fixtures/nested.tar -------------------------------------------------------------------------------- /styles/archive-view.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/archive-view/HEAD/styles/archive-view.less --------------------------------------------------------------------------------