├── .deployignore ├── .distignore ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ ├── built-release.yml │ ├── deploy-to-wordpress.yml │ ├── node-tests.yml │ ├── phpcs.yml │ └── phpunit.yml ├── .gitignore ├── .nvmrc ├── .phpcs.xml ├── .phpunit-watcher.yml ├── README.md ├── admin ├── apple-actions │ ├── class-action-exception.php │ ├── class-action.php │ ├── class-api-action.php │ └── index │ │ ├── class-channel.php │ │ ├── class-delete.php │ │ ├── class-export.php │ │ ├── class-get.php │ │ ├── class-push.php │ │ └── class-section.php ├── class-admin-apple-async.php ├── class-admin-apple-bulk-export-page.php ├── class-admin-apple-index-page.php ├── class-admin-apple-json.php ├── class-admin-apple-meta-boxes.php ├── class-admin-apple-news-list-table.php ├── class-admin-apple-news.php ├── class-admin-apple-notice.php ├── class-admin-apple-post-sync.php ├── class-admin-apple-preview.php ├── class-admin-apple-sections.php ├── class-admin-apple-settings.php ├── class-admin-apple-themes.php ├── class-automation.php ├── partials │ ├── cover-media.php │ ├── field-meta-component-order.php │ ├── index.php │ ├── metabox-publish.php │ ├── notice.php │ ├── page-bulk-export.php │ ├── page-index.php │ ├── page-json.php │ ├── page-options-section-hidden.php │ ├── page-options-section.php │ ├── page-options.php │ ├── page-theme-edit.php │ └── page-themes.php └── settings │ ├── class-admin-apple-settings-section-advanced.php │ ├── class-admin-apple-settings-section-api.php │ ├── class-admin-apple-settings-section-developer-tools.php │ ├── class-admin-apple-settings-section-post-types.php │ └── class-admin-apple-settings-section.php ├── apple-news.php ├── assets ├── css │ ├── bulk-export.css │ ├── export-table.css │ ├── json.css │ ├── meta-boxes.css │ ├── preview.css │ ├── sections.css │ ├── select2.min.css │ ├── theme-edit.css │ └── themes.css ├── js │ ├── admin-settings │ │ ├── frontend.jsx │ │ ├── index.jsx │ │ └── rule.jsx │ ├── bulk-export.js │ ├── components │ │ ├── icon │ │ │ └── index.jsx │ │ └── term-selector │ │ │ └── index.jsx │ ├── config │ │ └── prop-types.js │ ├── cover-media.js │ ├── export-table.js │ ├── json.js │ ├── meta-boxes.js │ ├── notices.js │ ├── pluginsidebar │ │ ├── index.jsx │ │ ├── panels │ │ │ ├── cover-media.jsx │ │ │ ├── maturity-rating.jsx │ │ │ ├── metadata.jsx │ │ │ ├── publish-controls.jsx │ │ │ ├── publish-info.jsx │ │ │ ├── pull-quote.jsx │ │ │ ├── sections.jsx │ │ │ └── slug.jsx │ │ └── sidebar.jsx │ ├── preview.js │ ├── sections.js │ ├── select2.full.min.js │ ├── services │ │ └── hooks │ │ │ ├── use-site-options │ │ │ ├── README.md │ │ │ └── index.js │ │ │ ├── use-taxonomies │ │ │ ├── README.md │ │ │ └── index.js │ │ │ └── use-term-cache │ │ │ ├── README.md │ │ │ └── index.js │ ├── settings.js │ ├── single-push.js │ ├── theme-edit.js │ ├── themes.js │ └── util │ │ ├── delete-at-index.js │ │ ├── delete-at-index.test.js │ │ ├── safe-json-parse-array.js │ │ ├── safe-json-parse-array.test.js │ │ ├── safe-json-parse-object.js │ │ ├── safe-json-parse-object.test.js │ │ ├── safe-json-parse.js │ │ ├── safe-json-parse.test.js │ │ ├── update-value-at-index.js │ │ └── update-value-at-index.test.js ├── screenshots │ ├── classic.png │ ├── colorful.png │ ├── dark.png │ ├── default.png │ ├── modern.png │ └── pastel.png └── themes │ ├── classic.json │ ├── colorful.json │ ├── dark.json │ ├── default.json │ ├── modern.json │ └── pastel.json ├── babel.config.json ├── composer.json ├── includes ├── REST │ ├── apple-news-delete.php │ ├── apple-news-get-published-state.php │ ├── apple-news-get-settings.php │ ├── apple-news-is-valid-cover-media.php │ ├── apple-news-modify-post.php │ ├── apple-news-publish.php │ ├── apple-news-sections.php │ ├── apple-news-update.php │ └── apple-news-user-can-publish.php ├── apple-exporter │ ├── autoload.php │ ├── builders │ │ ├── class-builder.php │ │ ├── class-component-layouts.php │ │ ├── class-component-styles.php │ │ ├── class-component-text-styles.php │ │ ├── class-components.php │ │ ├── class-layout.php │ │ ├── class-metadata.php │ │ └── class-text-styles.php │ ├── class-component-factory.php │ ├── class-component-spec.php │ ├── class-exporter-content-settings.php │ ├── class-exporter-content.php │ ├── class-exporter.php │ ├── class-html.php │ ├── class-markdown.php │ ├── class-parser.php │ ├── class-settings.php │ ├── class-theme.php │ ├── class-workspace.php │ ├── components │ │ ├── class-aside.php │ │ ├── class-audio.php │ │ ├── class-author.php │ │ ├── class-body.php │ │ ├── class-byline.php │ │ ├── class-component.php │ │ ├── class-cover.php │ │ ├── class-date.php │ │ ├── class-divider.php │ │ ├── class-embed-generic.php │ │ ├── class-embed-web-video.php │ │ ├── class-end-of-article.php │ │ ├── class-facebook.php │ │ ├── class-footnotes.php │ │ ├── class-gallery.php │ │ ├── class-heading.php │ │ ├── class-image.php │ │ ├── class-in-article.php │ │ ├── class-instagram.php │ │ ├── class-intro.php │ │ ├── class-link-button.php │ │ ├── class-podcast.php │ │ ├── class-quote.php │ │ ├── class-recipe.php │ │ ├── class-slug.php │ │ ├── class-table.php │ │ ├── class-tiktok.php │ │ ├── class-title.php │ │ ├── class-tweet.php │ │ └── class-video.php │ └── third-party │ │ └── class-jetpack-tiled-gallery.php ├── apple-push-api │ ├── autoload.php │ ├── class-api.php │ ├── class-credentials.php │ ├── class-mime-builder.php │ └── request │ │ └── class-request.php ├── class-apple-news.php └── meta.php ├── index.php ├── license.txt ├── package.json ├── phpstan.neon ├── phpunit.xml.dist ├── readme.txt ├── tests ├── admin │ ├── apple-actions │ │ └── index │ │ │ ├── test-class-delete.php │ │ │ ├── test-class-export.php │ │ │ ├── test-class-get.php │ │ │ └── test-class-push.php │ ├── test-class-admin-apple-index-page.php │ ├── test-class-admin-apple-meta-boxes.php │ ├── test-class-admin-apple-notice.php │ ├── test-class-admin-apple-themes.php │ └── test-class-automation.php ├── apple-exporter │ ├── builders │ │ ├── test-class-component-layouts.php │ │ ├── test-class-component-styles.php │ │ ├── test-class-component-text-styles.php │ │ ├── test-class-components.php │ │ ├── test-class-layout.php │ │ └── test-class-metadata.php │ ├── components │ │ ├── class-component-testcase.php │ │ ├── test-class-aside.php │ │ ├── test-class-audio.php │ │ ├── test-class-author.php │ │ ├── test-class-body.php │ │ ├── test-class-byline.php │ │ ├── test-class-cover.php │ │ ├── test-class-date.php │ │ ├── test-class-divider.php │ │ ├── test-class-embed-generic.php │ │ ├── test-class-embed-web-video.php │ │ ├── test-class-end-of-article.php │ │ ├── test-class-facebook.php │ │ ├── test-class-footnotes.php │ │ ├── test-class-gallery.php │ │ ├── test-class-heading.php │ │ ├── test-class-image.php │ │ ├── test-class-in-article.php │ │ ├── test-class-instagram.php │ │ ├── test-class-intro.php │ │ ├── test-class-link-button.php │ │ ├── test-class-podcast.php │ │ ├── test-class-quote.php │ │ ├── test-class-recipe.php │ │ ├── test-class-slug.php │ │ ├── test-class-table.php │ │ ├── test-class-tiktok.php │ │ ├── test-class-title.php │ │ ├── test-class-tweet.php │ │ └── test-class-video.php │ ├── test-class-exporter-content.php │ ├── test-class-exporter.php │ ├── test-class-parser.php │ └── test-class-theme.php ├── apple-push-api │ ├── test-class-credentials.php │ └── test-class-mime-builder.php ├── bootstrap.php ├── class-apple-news-testcase.php ├── data │ ├── test-image-2.jpg │ ├── test-image.jpg │ └── test-video.mp4 ├── mocks │ ├── class-bc-accounts.php │ ├── class-bc-cms-api.php │ ├── class-bc-setup.php │ └── function-coauthors.php ├── rest │ ├── test-class-rest-admin.php │ └── test-class-rest-post-published-state.php └── test-class-apple-news.php └── webpack.config.js /.deployignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/.deployignore -------------------------------------------------------------------------------- /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/.distignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/built-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/.github/workflows/built-release.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-to-wordpress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/.github/workflows/deploy-to-wordpress.yml -------------------------------------------------------------------------------- /.github/workflows/node-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/.github/workflows/node-tests.yml -------------------------------------------------------------------------------- /.github/workflows/phpcs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/.github/workflows/phpcs.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/.github/workflows/phpunit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /.phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/.phpcs.xml -------------------------------------------------------------------------------- /.phpunit-watcher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/.phpunit-watcher.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/README.md -------------------------------------------------------------------------------- /admin/apple-actions/class-action-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/apple-actions/class-action-exception.php -------------------------------------------------------------------------------- /admin/apple-actions/class-action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/apple-actions/class-action.php -------------------------------------------------------------------------------- /admin/apple-actions/class-api-action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/apple-actions/class-api-action.php -------------------------------------------------------------------------------- /admin/apple-actions/index/class-channel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/apple-actions/index/class-channel.php -------------------------------------------------------------------------------- /admin/apple-actions/index/class-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/apple-actions/index/class-delete.php -------------------------------------------------------------------------------- /admin/apple-actions/index/class-export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/apple-actions/index/class-export.php -------------------------------------------------------------------------------- /admin/apple-actions/index/class-get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/apple-actions/index/class-get.php -------------------------------------------------------------------------------- /admin/apple-actions/index/class-push.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/apple-actions/index/class-push.php -------------------------------------------------------------------------------- /admin/apple-actions/index/class-section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/apple-actions/index/class-section.php -------------------------------------------------------------------------------- /admin/class-admin-apple-async.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/class-admin-apple-async.php -------------------------------------------------------------------------------- /admin/class-admin-apple-bulk-export-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/class-admin-apple-bulk-export-page.php -------------------------------------------------------------------------------- /admin/class-admin-apple-index-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/class-admin-apple-index-page.php -------------------------------------------------------------------------------- /admin/class-admin-apple-json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/class-admin-apple-json.php -------------------------------------------------------------------------------- /admin/class-admin-apple-meta-boxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/class-admin-apple-meta-boxes.php -------------------------------------------------------------------------------- /admin/class-admin-apple-news-list-table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/class-admin-apple-news-list-table.php -------------------------------------------------------------------------------- /admin/class-admin-apple-news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/class-admin-apple-news.php -------------------------------------------------------------------------------- /admin/class-admin-apple-notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/class-admin-apple-notice.php -------------------------------------------------------------------------------- /admin/class-admin-apple-post-sync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/class-admin-apple-post-sync.php -------------------------------------------------------------------------------- /admin/class-admin-apple-preview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/class-admin-apple-preview.php -------------------------------------------------------------------------------- /admin/class-admin-apple-sections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/class-admin-apple-sections.php -------------------------------------------------------------------------------- /admin/class-admin-apple-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/class-admin-apple-settings.php -------------------------------------------------------------------------------- /admin/class-admin-apple-themes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/class-admin-apple-themes.php -------------------------------------------------------------------------------- /admin/class-automation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/class-automation.php -------------------------------------------------------------------------------- /admin/partials/cover-media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/partials/cover-media.php -------------------------------------------------------------------------------- /admin/partials/field-meta-component-order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/partials/field-meta-component-order.php -------------------------------------------------------------------------------- /admin/partials/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/partials/index.php -------------------------------------------------------------------------------- /admin/partials/metabox-publish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/partials/metabox-publish.php -------------------------------------------------------------------------------- /admin/partials/notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/partials/notice.php -------------------------------------------------------------------------------- /admin/partials/page-bulk-export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/partials/page-bulk-export.php -------------------------------------------------------------------------------- /admin/partials/page-index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/partials/page-index.php -------------------------------------------------------------------------------- /admin/partials/page-json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/partials/page-json.php -------------------------------------------------------------------------------- /admin/partials/page-options-section-hidden.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/partials/page-options-section-hidden.php -------------------------------------------------------------------------------- /admin/partials/page-options-section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/partials/page-options-section.php -------------------------------------------------------------------------------- /admin/partials/page-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/partials/page-options.php -------------------------------------------------------------------------------- /admin/partials/page-theme-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/partials/page-theme-edit.php -------------------------------------------------------------------------------- /admin/partials/page-themes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/partials/page-themes.php -------------------------------------------------------------------------------- /admin/settings/class-admin-apple-settings-section-advanced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/settings/class-admin-apple-settings-section-advanced.php -------------------------------------------------------------------------------- /admin/settings/class-admin-apple-settings-section-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/settings/class-admin-apple-settings-section-api.php -------------------------------------------------------------------------------- /admin/settings/class-admin-apple-settings-section-developer-tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/settings/class-admin-apple-settings-section-developer-tools.php -------------------------------------------------------------------------------- /admin/settings/class-admin-apple-settings-section-post-types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/settings/class-admin-apple-settings-section-post-types.php -------------------------------------------------------------------------------- /admin/settings/class-admin-apple-settings-section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/admin/settings/class-admin-apple-settings-section.php -------------------------------------------------------------------------------- /apple-news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/apple-news.php -------------------------------------------------------------------------------- /assets/css/bulk-export.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/css/bulk-export.css -------------------------------------------------------------------------------- /assets/css/export-table.css: -------------------------------------------------------------------------------- 1 | input.apple-share-url { 2 | width: 50%; 3 | display: none; 4 | } 5 | -------------------------------------------------------------------------------- /assets/css/json.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/css/json.css -------------------------------------------------------------------------------- /assets/css/meta-boxes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/css/meta-boxes.css -------------------------------------------------------------------------------- /assets/css/preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/css/preview.css -------------------------------------------------------------------------------- /assets/css/sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/css/sections.css -------------------------------------------------------------------------------- /assets/css/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/css/select2.min.css -------------------------------------------------------------------------------- /assets/css/theme-edit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/css/theme-edit.css -------------------------------------------------------------------------------- /assets/css/themes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/css/themes.css -------------------------------------------------------------------------------- /assets/js/admin-settings/frontend.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/admin-settings/frontend.jsx -------------------------------------------------------------------------------- /assets/js/admin-settings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/admin-settings/index.jsx -------------------------------------------------------------------------------- /assets/js/admin-settings/rule.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/admin-settings/rule.jsx -------------------------------------------------------------------------------- /assets/js/bulk-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/bulk-export.js -------------------------------------------------------------------------------- /assets/js/components/icon/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/components/icon/index.jsx -------------------------------------------------------------------------------- /assets/js/components/term-selector/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/components/term-selector/index.jsx -------------------------------------------------------------------------------- /assets/js/config/prop-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/config/prop-types.js -------------------------------------------------------------------------------- /assets/js/cover-media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/cover-media.js -------------------------------------------------------------------------------- /assets/js/export-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/export-table.js -------------------------------------------------------------------------------- /assets/js/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/json.js -------------------------------------------------------------------------------- /assets/js/meta-boxes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/meta-boxes.js -------------------------------------------------------------------------------- /assets/js/notices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/notices.js -------------------------------------------------------------------------------- /assets/js/pluginsidebar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/pluginsidebar/index.jsx -------------------------------------------------------------------------------- /assets/js/pluginsidebar/panels/cover-media.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/pluginsidebar/panels/cover-media.jsx -------------------------------------------------------------------------------- /assets/js/pluginsidebar/panels/maturity-rating.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/pluginsidebar/panels/maturity-rating.jsx -------------------------------------------------------------------------------- /assets/js/pluginsidebar/panels/metadata.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/pluginsidebar/panels/metadata.jsx -------------------------------------------------------------------------------- /assets/js/pluginsidebar/panels/publish-controls.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/pluginsidebar/panels/publish-controls.jsx -------------------------------------------------------------------------------- /assets/js/pluginsidebar/panels/publish-info.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/pluginsidebar/panels/publish-info.jsx -------------------------------------------------------------------------------- /assets/js/pluginsidebar/panels/pull-quote.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/pluginsidebar/panels/pull-quote.jsx -------------------------------------------------------------------------------- /assets/js/pluginsidebar/panels/sections.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/pluginsidebar/panels/sections.jsx -------------------------------------------------------------------------------- /assets/js/pluginsidebar/panels/slug.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/pluginsidebar/panels/slug.jsx -------------------------------------------------------------------------------- /assets/js/pluginsidebar/sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/pluginsidebar/sidebar.jsx -------------------------------------------------------------------------------- /assets/js/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/preview.js -------------------------------------------------------------------------------- /assets/js/sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/sections.js -------------------------------------------------------------------------------- /assets/js/select2.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/select2.full.min.js -------------------------------------------------------------------------------- /assets/js/services/hooks/use-site-options/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/services/hooks/use-site-options/README.md -------------------------------------------------------------------------------- /assets/js/services/hooks/use-site-options/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/services/hooks/use-site-options/index.js -------------------------------------------------------------------------------- /assets/js/services/hooks/use-taxonomies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/services/hooks/use-taxonomies/README.md -------------------------------------------------------------------------------- /assets/js/services/hooks/use-taxonomies/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/services/hooks/use-taxonomies/index.js -------------------------------------------------------------------------------- /assets/js/services/hooks/use-term-cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/services/hooks/use-term-cache/README.md -------------------------------------------------------------------------------- /assets/js/services/hooks/use-term-cache/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/services/hooks/use-term-cache/index.js -------------------------------------------------------------------------------- /assets/js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/settings.js -------------------------------------------------------------------------------- /assets/js/single-push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/single-push.js -------------------------------------------------------------------------------- /assets/js/theme-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/theme-edit.js -------------------------------------------------------------------------------- /assets/js/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/themes.js -------------------------------------------------------------------------------- /assets/js/util/delete-at-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/util/delete-at-index.js -------------------------------------------------------------------------------- /assets/js/util/delete-at-index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/util/delete-at-index.test.js -------------------------------------------------------------------------------- /assets/js/util/safe-json-parse-array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/util/safe-json-parse-array.js -------------------------------------------------------------------------------- /assets/js/util/safe-json-parse-array.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/util/safe-json-parse-array.test.js -------------------------------------------------------------------------------- /assets/js/util/safe-json-parse-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/util/safe-json-parse-object.js -------------------------------------------------------------------------------- /assets/js/util/safe-json-parse-object.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/util/safe-json-parse-object.test.js -------------------------------------------------------------------------------- /assets/js/util/safe-json-parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/util/safe-json-parse.js -------------------------------------------------------------------------------- /assets/js/util/safe-json-parse.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/util/safe-json-parse.test.js -------------------------------------------------------------------------------- /assets/js/util/update-value-at-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/util/update-value-at-index.js -------------------------------------------------------------------------------- /assets/js/util/update-value-at-index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/js/util/update-value-at-index.test.js -------------------------------------------------------------------------------- /assets/screenshots/classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/screenshots/classic.png -------------------------------------------------------------------------------- /assets/screenshots/colorful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/screenshots/colorful.png -------------------------------------------------------------------------------- /assets/screenshots/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/screenshots/dark.png -------------------------------------------------------------------------------- /assets/screenshots/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/screenshots/default.png -------------------------------------------------------------------------------- /assets/screenshots/modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/screenshots/modern.png -------------------------------------------------------------------------------- /assets/screenshots/pastel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/screenshots/pastel.png -------------------------------------------------------------------------------- /assets/themes/classic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/themes/classic.json -------------------------------------------------------------------------------- /assets/themes/colorful.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/themes/colorful.json -------------------------------------------------------------------------------- /assets/themes/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/themes/dark.json -------------------------------------------------------------------------------- /assets/themes/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/themes/default.json -------------------------------------------------------------------------------- /assets/themes/modern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/themes/modern.json -------------------------------------------------------------------------------- /assets/themes/pastel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/assets/themes/pastel.json -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/babel.config.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/composer.json -------------------------------------------------------------------------------- /includes/REST/apple-news-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/REST/apple-news-delete.php -------------------------------------------------------------------------------- /includes/REST/apple-news-get-published-state.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/REST/apple-news-get-published-state.php -------------------------------------------------------------------------------- /includes/REST/apple-news-get-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/REST/apple-news-get-settings.php -------------------------------------------------------------------------------- /includes/REST/apple-news-is-valid-cover-media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/REST/apple-news-is-valid-cover-media.php -------------------------------------------------------------------------------- /includes/REST/apple-news-modify-post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/REST/apple-news-modify-post.php -------------------------------------------------------------------------------- /includes/REST/apple-news-publish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/REST/apple-news-publish.php -------------------------------------------------------------------------------- /includes/REST/apple-news-sections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/REST/apple-news-sections.php -------------------------------------------------------------------------------- /includes/REST/apple-news-update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/REST/apple-news-update.php -------------------------------------------------------------------------------- /includes/REST/apple-news-user-can-publish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/REST/apple-news-user-can-publish.php -------------------------------------------------------------------------------- /includes/apple-exporter/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/autoload.php -------------------------------------------------------------------------------- /includes/apple-exporter/builders/class-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/builders/class-builder.php -------------------------------------------------------------------------------- /includes/apple-exporter/builders/class-component-layouts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/builders/class-component-layouts.php -------------------------------------------------------------------------------- /includes/apple-exporter/builders/class-component-styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/builders/class-component-styles.php -------------------------------------------------------------------------------- /includes/apple-exporter/builders/class-component-text-styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/builders/class-component-text-styles.php -------------------------------------------------------------------------------- /includes/apple-exporter/builders/class-components.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/builders/class-components.php -------------------------------------------------------------------------------- /includes/apple-exporter/builders/class-layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/builders/class-layout.php -------------------------------------------------------------------------------- /includes/apple-exporter/builders/class-metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/builders/class-metadata.php -------------------------------------------------------------------------------- /includes/apple-exporter/builders/class-text-styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/builders/class-text-styles.php -------------------------------------------------------------------------------- /includes/apple-exporter/class-component-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/class-component-factory.php -------------------------------------------------------------------------------- /includes/apple-exporter/class-component-spec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/class-component-spec.php -------------------------------------------------------------------------------- /includes/apple-exporter/class-exporter-content-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/class-exporter-content-settings.php -------------------------------------------------------------------------------- /includes/apple-exporter/class-exporter-content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/class-exporter-content.php -------------------------------------------------------------------------------- /includes/apple-exporter/class-exporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/class-exporter.php -------------------------------------------------------------------------------- /includes/apple-exporter/class-html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/class-html.php -------------------------------------------------------------------------------- /includes/apple-exporter/class-markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/class-markdown.php -------------------------------------------------------------------------------- /includes/apple-exporter/class-parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/class-parser.php -------------------------------------------------------------------------------- /includes/apple-exporter/class-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/class-settings.php -------------------------------------------------------------------------------- /includes/apple-exporter/class-theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/class-theme.php -------------------------------------------------------------------------------- /includes/apple-exporter/class-workspace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/class-workspace.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-aside.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-aside.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-audio.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-author.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-body.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-byline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-byline.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-component.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-component.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-cover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-cover.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-date.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-divider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-divider.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-embed-generic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-embed-generic.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-embed-web-video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-embed-web-video.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-end-of-article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-end-of-article.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-facebook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-facebook.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-footnotes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-footnotes.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-gallery.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-heading.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-heading.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-image.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-in-article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-in-article.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-instagram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-instagram.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-intro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-intro.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-link-button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-link-button.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-podcast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-podcast.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-quote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-quote.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-recipe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-recipe.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-slug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-slug.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-table.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-tiktok.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-tiktok.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-title.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-tweet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-tweet.php -------------------------------------------------------------------------------- /includes/apple-exporter/components/class-video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/components/class-video.php -------------------------------------------------------------------------------- /includes/apple-exporter/third-party/class-jetpack-tiled-gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-exporter/third-party/class-jetpack-tiled-gallery.php -------------------------------------------------------------------------------- /includes/apple-push-api/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-push-api/autoload.php -------------------------------------------------------------------------------- /includes/apple-push-api/class-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-push-api/class-api.php -------------------------------------------------------------------------------- /includes/apple-push-api/class-credentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-push-api/class-credentials.php -------------------------------------------------------------------------------- /includes/apple-push-api/class-mime-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-push-api/class-mime-builder.php -------------------------------------------------------------------------------- /includes/apple-push-api/request/class-request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/apple-push-api/request/class-request.php -------------------------------------------------------------------------------- /includes/class-apple-news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/class-apple-news.php -------------------------------------------------------------------------------- /includes/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/includes/meta.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/index.php -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/package.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/readme.txt -------------------------------------------------------------------------------- /tests/admin/apple-actions/index/test-class-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/admin/apple-actions/index/test-class-delete.php -------------------------------------------------------------------------------- /tests/admin/apple-actions/index/test-class-export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/admin/apple-actions/index/test-class-export.php -------------------------------------------------------------------------------- /tests/admin/apple-actions/index/test-class-get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/admin/apple-actions/index/test-class-get.php -------------------------------------------------------------------------------- /tests/admin/apple-actions/index/test-class-push.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/admin/apple-actions/index/test-class-push.php -------------------------------------------------------------------------------- /tests/admin/test-class-admin-apple-index-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/admin/test-class-admin-apple-index-page.php -------------------------------------------------------------------------------- /tests/admin/test-class-admin-apple-meta-boxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/admin/test-class-admin-apple-meta-boxes.php -------------------------------------------------------------------------------- /tests/admin/test-class-admin-apple-notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/admin/test-class-admin-apple-notice.php -------------------------------------------------------------------------------- /tests/admin/test-class-admin-apple-themes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/admin/test-class-admin-apple-themes.php -------------------------------------------------------------------------------- /tests/admin/test-class-automation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/admin/test-class-automation.php -------------------------------------------------------------------------------- /tests/apple-exporter/builders/test-class-component-layouts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/builders/test-class-component-layouts.php -------------------------------------------------------------------------------- /tests/apple-exporter/builders/test-class-component-styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/builders/test-class-component-styles.php -------------------------------------------------------------------------------- /tests/apple-exporter/builders/test-class-component-text-styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/builders/test-class-component-text-styles.php -------------------------------------------------------------------------------- /tests/apple-exporter/builders/test-class-components.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/builders/test-class-components.php -------------------------------------------------------------------------------- /tests/apple-exporter/builders/test-class-layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/builders/test-class-layout.php -------------------------------------------------------------------------------- /tests/apple-exporter/builders/test-class-metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/builders/test-class-metadata.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/class-component-testcase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/class-component-testcase.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-aside.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-aside.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-audio.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-author.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-body.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-byline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-byline.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-cover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-cover.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-date.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-divider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-divider.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-embed-generic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-embed-generic.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-embed-web-video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-embed-web-video.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-end-of-article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-end-of-article.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-facebook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-facebook.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-footnotes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-footnotes.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-gallery.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-heading.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-heading.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-image.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-in-article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-in-article.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-instagram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-instagram.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-intro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-intro.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-link-button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-link-button.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-podcast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-podcast.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-quote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-quote.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-recipe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-recipe.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-slug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-slug.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-table.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-tiktok.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-tiktok.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-title.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-tweet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-tweet.php -------------------------------------------------------------------------------- /tests/apple-exporter/components/test-class-video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/components/test-class-video.php -------------------------------------------------------------------------------- /tests/apple-exporter/test-class-exporter-content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/test-class-exporter-content.php -------------------------------------------------------------------------------- /tests/apple-exporter/test-class-exporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/test-class-exporter.php -------------------------------------------------------------------------------- /tests/apple-exporter/test-class-parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/test-class-parser.php -------------------------------------------------------------------------------- /tests/apple-exporter/test-class-theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-exporter/test-class-theme.php -------------------------------------------------------------------------------- /tests/apple-push-api/test-class-credentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-push-api/test-class-credentials.php -------------------------------------------------------------------------------- /tests/apple-push-api/test-class-mime-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/apple-push-api/test-class-mime-builder.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/class-apple-news-testcase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/class-apple-news-testcase.php -------------------------------------------------------------------------------- /tests/data/test-image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/data/test-image-2.jpg -------------------------------------------------------------------------------- /tests/data/test-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/data/test-image.jpg -------------------------------------------------------------------------------- /tests/data/test-video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/data/test-video.mp4 -------------------------------------------------------------------------------- /tests/mocks/class-bc-accounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/mocks/class-bc-accounts.php -------------------------------------------------------------------------------- /tests/mocks/class-bc-cms-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/mocks/class-bc-cms-api.php -------------------------------------------------------------------------------- /tests/mocks/class-bc-setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/mocks/class-bc-setup.php -------------------------------------------------------------------------------- /tests/mocks/function-coauthors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/mocks/function-coauthors.php -------------------------------------------------------------------------------- /tests/rest/test-class-rest-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/rest/test-class-rest-admin.php -------------------------------------------------------------------------------- /tests/rest/test-class-rest-post-published-state.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/rest/test-class-rest-post-published-state.php -------------------------------------------------------------------------------- /tests/test-class-apple-news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/tests/test-class-apple-news.php -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/apple-news/HEAD/webpack.config.js --------------------------------------------------------------------------------