├── .editorconfig ├── .github └── workflows │ ├── cs-lint.yml │ └── integrations.yml ├── .gitignore ├── .phpcs.xml.dist ├── .wp-env.json ├── LICENSE ├── assets ├── banner-1544x500.png ├── banner-772x250.png ├── icon-128x128.png ├── icon-256x256.png └── icon.svg ├── bin └── install-wp-tests.sh ├── composer.json ├── includes ├── class-syndication-admin-notices.php ├── class-syndication-client-factory.php ├── class-syndication-encryption.php ├── class-syndication-encryptor-mcrypt.php ├── class-syndication-encryptor-openssl.php ├── class-syndication-event-counter.php ├── class-syndication-logger-viewer.php ├── class-syndication-logger.php ├── class-syndication-site-auto-retry.php ├── class-syndication-site-failure-monitor.php ├── class-syndication-wp-rest-client.php ├── class-syndication-wp-rss-client.php ├── class-syndication-wp-xml-client.php ├── class-syndication-wp-xmlrpc-client.php ├── class-walker-category-dropdown-multiple.php ├── class-wp-cli.php ├── class-wp-push-syndication-server.php ├── css │ ├── edit-site.css │ └── sites.css ├── interface-syndication-client.php ├── interface-syndication-encryptor.php └── push-syndicate-encryption.php ├── phpunit.xml.dist ├── push-syndication.php ├── readme.md ├── readme.txt └── tests ├── bootstrap.php ├── class-encryptor-test-case.php ├── test-encryption.php ├── test-encryptor-mcrypt.php └── test-encryptor-openssl.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/cs-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/.github/workflows/cs-lint.yml -------------------------------------------------------------------------------- /.github/workflows/integrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/.github/workflows/integrations.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.phpunit.cache 2 | /composer.lock 3 | /vendor 4 | -------------------------------------------------------------------------------- /.phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/.phpcs.xml.dist -------------------------------------------------------------------------------- /.wp-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/.wp-env.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/LICENSE -------------------------------------------------------------------------------- /assets/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/assets/banner-1544x500.png -------------------------------------------------------------------------------- /assets/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/assets/banner-772x250.png -------------------------------------------------------------------------------- /assets/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/assets/icon-128x128.png -------------------------------------------------------------------------------- /assets/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/assets/icon-256x256.png -------------------------------------------------------------------------------- /assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/assets/icon.svg -------------------------------------------------------------------------------- /bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/composer.json -------------------------------------------------------------------------------- /includes/class-syndication-admin-notices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/class-syndication-admin-notices.php -------------------------------------------------------------------------------- /includes/class-syndication-client-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/class-syndication-client-factory.php -------------------------------------------------------------------------------- /includes/class-syndication-encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/class-syndication-encryption.php -------------------------------------------------------------------------------- /includes/class-syndication-encryptor-mcrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/class-syndication-encryptor-mcrypt.php -------------------------------------------------------------------------------- /includes/class-syndication-encryptor-openssl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/class-syndication-encryptor-openssl.php -------------------------------------------------------------------------------- /includes/class-syndication-event-counter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/class-syndication-event-counter.php -------------------------------------------------------------------------------- /includes/class-syndication-logger-viewer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/class-syndication-logger-viewer.php -------------------------------------------------------------------------------- /includes/class-syndication-logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/class-syndication-logger.php -------------------------------------------------------------------------------- /includes/class-syndication-site-auto-retry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/class-syndication-site-auto-retry.php -------------------------------------------------------------------------------- /includes/class-syndication-site-failure-monitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/class-syndication-site-failure-monitor.php -------------------------------------------------------------------------------- /includes/class-syndication-wp-rest-client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/class-syndication-wp-rest-client.php -------------------------------------------------------------------------------- /includes/class-syndication-wp-rss-client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/class-syndication-wp-rss-client.php -------------------------------------------------------------------------------- /includes/class-syndication-wp-xml-client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/class-syndication-wp-xml-client.php -------------------------------------------------------------------------------- /includes/class-syndication-wp-xmlrpc-client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/class-syndication-wp-xmlrpc-client.php -------------------------------------------------------------------------------- /includes/class-walker-category-dropdown-multiple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/class-walker-category-dropdown-multiple.php -------------------------------------------------------------------------------- /includes/class-wp-cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/class-wp-cli.php -------------------------------------------------------------------------------- /includes/class-wp-push-syndication-server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/class-wp-push-syndication-server.php -------------------------------------------------------------------------------- /includes/css/edit-site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/css/edit-site.css -------------------------------------------------------------------------------- /includes/css/sites.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/css/sites.css -------------------------------------------------------------------------------- /includes/interface-syndication-client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/interface-syndication-client.php -------------------------------------------------------------------------------- /includes/interface-syndication-encryptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/interface-syndication-encryptor.php -------------------------------------------------------------------------------- /includes/push-syndicate-encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/includes/push-syndicate-encryption.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /push-syndication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/push-syndication.php -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/readme.md -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/readme.txt -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/class-encryptor-test-case.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/tests/class-encryptor-test-case.php -------------------------------------------------------------------------------- /tests/test-encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/tests/test-encryption.php -------------------------------------------------------------------------------- /tests/test-encryptor-mcrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/tests/test-encryptor-mcrypt.php -------------------------------------------------------------------------------- /tests/test-encryptor-openssl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/syndication/HEAD/tests/test-encryptor-openssl.php --------------------------------------------------------------------------------