├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Makefile ├── README.md ├── assets ├── banner-1544x500.png ├── banner-772x250.png ├── icon-128x128.png ├── icon-256x256.png ├── screenshot-1.png ├── screenshot-2.png └── screenshot-3.png ├── bin └── install-wp-tests.sh ├── composer.json ├── composer.lock ├── karma.conf ├── package.json ├── phpunit.xml.dist ├── sw-tests.js ├── tests ├── bootstrap.php ├── service-worker │ ├── localforage.mock.js │ └── test.js └── test.php ├── version-changelog.js └── wp-offline-shell ├── lang └── offline-shell.pot ├── lib └── service-worker.js ├── readme.txt ├── wp-offline-shell-admin.php ├── wp-offline-shell-db.php ├── wp-offline-shell-main.php ├── wp-offline-shell-recommender.php └── wp-offline-shell.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | tools/ 3 | node_modules/ 4 | wp-offline-shell.zip 5 | build/ 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/assets/banner-1544x500.png -------------------------------------------------------------------------------- /assets/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/assets/banner-772x250.png -------------------------------------------------------------------------------- /assets/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/assets/icon-128x128.png -------------------------------------------------------------------------------- /assets/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/assets/icon-256x256.png -------------------------------------------------------------------------------- /assets/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/assets/screenshot-1.png -------------------------------------------------------------------------------- /assets/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/assets/screenshot-2.png -------------------------------------------------------------------------------- /assets/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/assets/screenshot-3.png -------------------------------------------------------------------------------- /bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/composer.lock -------------------------------------------------------------------------------- /karma.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/karma.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /sw-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/sw-tests.js -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/service-worker/localforage.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/tests/service-worker/localforage.mock.js -------------------------------------------------------------------------------- /tests/service-worker/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/tests/service-worker/test.js -------------------------------------------------------------------------------- /tests/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/tests/test.php -------------------------------------------------------------------------------- /version-changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/version-changelog.js -------------------------------------------------------------------------------- /wp-offline-shell/lang/offline-shell.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/wp-offline-shell/lang/offline-shell.pot -------------------------------------------------------------------------------- /wp-offline-shell/lib/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/wp-offline-shell/lib/service-worker.js -------------------------------------------------------------------------------- /wp-offline-shell/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/wp-offline-shell/readme.txt -------------------------------------------------------------------------------- /wp-offline-shell/wp-offline-shell-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/wp-offline-shell/wp-offline-shell-admin.php -------------------------------------------------------------------------------- /wp-offline-shell/wp-offline-shell-db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/wp-offline-shell/wp-offline-shell-db.php -------------------------------------------------------------------------------- /wp-offline-shell/wp-offline-shell-main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/wp-offline-shell/wp-offline-shell-main.php -------------------------------------------------------------------------------- /wp-offline-shell/wp-offline-shell-recommender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/wp-offline-shell/wp-offline-shell-recommender.php -------------------------------------------------------------------------------- /wp-offline-shell/wp-offline-shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/wp-offline-shell/HEAD/wp-offline-shell/wp-offline-shell.php --------------------------------------------------------------------------------