├── WP-API-2.0-beta13 ├── .gitignore ├── .gitmodules ├── .scrutinizer.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gruntfile.js ├── README.md ├── WP-API.php ├── assets │ ├── banner-1544x500.png │ ├── banner-772x250.png │ ├── icon-128x128.png │ └── icon-256x256.png ├── bin │ ├── install-wp-tests.sh │ ├── readme.txt │ └── release.sh ├── codecoverage.xml ├── composer.json ├── core-integration.php ├── extras.php ├── lib │ └── endpoints │ │ ├── class-wp-rest-attachments-controller.php │ │ ├── class-wp-rest-comments-controller.php │ │ ├── class-wp-rest-controller.php │ │ ├── class-wp-rest-post-statuses-controller.php │ │ ├── class-wp-rest-post-types-controller.php │ │ ├── class-wp-rest-posts-controller.php │ │ ├── class-wp-rest-revisions-controller.php │ │ ├── class-wp-rest-taxonomies-controller.php │ │ ├── class-wp-rest-terms-controller.php │ │ └── class-wp-rest-users-controller.php ├── license.txt ├── multisite.xml ├── package.json ├── phpcs.ruleset.xml ├── phpunit.xml.dist ├── plugin.php ├── tests │ ├── bootstrap.php │ ├── class-wp-rest-test-controller.php │ ├── class-wp-test-rest-controller-testcase.php │ ├── class-wp-test-rest-post-type-controller-testcase.php │ ├── class-wp-test-rest-testcase.php │ ├── class-wp-test-spy-rest-server.php │ ├── data │ │ ├── canola.jpg │ │ └── codeispoetry.png │ ├── test-rest-attachments-controller.php │ ├── test-rest-categories-controller.php │ ├── test-rest-comments-controller.php │ ├── test-rest-controller.php │ ├── test-rest-pages-controller.php │ ├── test-rest-plugin.php │ ├── test-rest-post-statuses-controller.php │ ├── test-rest-post-types-controller.php │ ├── test-rest-posts-controller.php │ ├── test-rest-request-validation.php │ ├── test-rest-revisions-controller.php │ ├── test-rest-tags-controller.php │ ├── test-rest-taxonomies-controller.php │ └── test-rest-users-controller.php ├── wp-api.js ├── wp-api.min.js └── wp-api.min.map ├── ad-code-manager ├── ad-code-manager.php ├── common │ ├── css │ │ └── acm.css │ ├── js │ │ └── acm.js │ ├── lib │ │ ├── acm-provider.php │ │ ├── acm-widget.php │ │ ├── acm-wp-list-table.php │ │ └── markdown.php │ └── views │ │ └── ad-code-manager.tpl.php ├── languages │ ├── ad-code-manager-it_IT.mo │ ├── ad-code-manager-it_IT.po │ └── ad-code-manager.pot ├── providers │ ├── doubleclick-for-publishers-async.php │ ├── doubleclick-for-publishers.php │ ├── google-adsense-async.php │ └── google-adsense.php ├── readme.txt ├── screenshot-1.jpg ├── screenshot-2.jpg ├── screenshot-3.jpg ├── screenshot-4.jpg └── screenshot-5.jpg ├── adbusters ├── adbusters.php ├── index.php ├── license.txt ├── readme.md ├── readme.txt └── templates │ ├── _uac │ ├── adpage.html │ └── index.php │ ├── adcom │ ├── aceFIF.html │ └── index.php │ ├── adinterax │ ├── adx-iframe-v2.html │ └── index.php │ ├── atlas │ ├── atlas_rm.htm │ └── index.php │ ├── blogads │ ├── iframebuster-4.html │ └── index.php │ ├── checkm8 │ ├── CM8IframeBuster.html │ └── index.php │ ├── comscore │ ├── cs-arIframe.htm │ └── index.php │ ├── doubleclick │ ├── DARTIframe.html │ ├── TLIframe.html │ ├── adx_iframe.html │ ├── fif.html │ └── index.php │ ├── flite │ ├── fif.html │ └── index.php │ ├── gumgum │ ├── iframe_buster.html │ └── index.php │ ├── index.php │ ├── jpd │ ├── index.php │ └── jpxdm.html │ ├── knorex │ └── knorex_psf.html │ ├── linkstorm │ └── linkstorm_certified.html │ ├── oggifinogi │ ├── index.php │ └── oggiPlayerLoader.htm │ ├── pictela │ ├── Pictela_iframeproxy.html │ └── index.php │ ├── pointroll │ ├── PointRollAds.htm │ └── index.php │ ├── rubicon │ ├── rp-smartfile.html │ └── rubicon.js │ ├── saymedia │ ├── iframebuster.html │ └── index.php │ └── xaxis │ ├── InfinityIframe.html │ └── index.php ├── add-meta-tags-mod ├── LICENSE ├── NOTICE ├── README ├── THANKS ├── TRANSLATIONS ├── add-meta-tags-mod.php ├── add-meta-tags.php └── js │ └── add-meta-tags.js ├── advanced-excerpt ├── advanced-excerpt.js └── advanced-excerpt.php ├── ajax-comment-loading ├── ajax-comment-loading.php ├── js │ ├── google-acl.dev.js │ └── google-acl.js ├── readme.txt └── templates │ └── comments.php ├── ajax-comment-preview ├── ajax-comment-preview.js ├── ajax-comment-preview.php └── readme.txt ├── angellist ├── angellist.php ├── api.php ├── content.php ├── edit.php ├── license.txt ├── plugin.php ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── search │ └── class-angellist-search.php ├── static │ ├── css │ │ ├── angellist-companies.css │ │ ├── angellist-companies.less │ │ ├── angellist-company-selector.css │ │ ├── angellist-company-selector.less │ │ ├── angellist-jobs.less │ │ ├── angellist-people.less │ │ └── mixins.less │ └── js │ │ ├── angellist-company-selector.dev.js │ │ ├── angellist-company-selector.js │ │ ├── angellist-company-selector.min.js │ │ ├── angellist.dev.js │ │ ├── angellist.js │ │ └── angellist.min.js └── templates │ ├── company.php │ ├── job.php │ └── person.php ├── anvato ├── .project ├── LICENSE ├── README.md ├── anvato.php ├── exports │ ├── class-amp-anvplayer-embed.php │ └── fia-anvplayer-embed.php ├── img │ ├── channel_icon.png │ ├── logo.png │ ├── logo_small.png │ └── play.png ├── lib │ ├── class-anvato-library.php │ ├── class-anvato-settings.php │ ├── common.js │ └── shortcode.php ├── mexp │ ├── js.js │ ├── load.php │ ├── service.php │ ├── style.css │ └── template.php └── readme.txt ├── apester-interactive-content-2.0 ├── .gitignore ├── apester-interactive-content.php ├── inc │ ├── events.php │ ├── qmerce-admin-box.class.php │ ├── qmerce-automation.php │ ├── qmerce-options.php │ ├── qmerce-settings.class.php │ ├── qmerce-shortcodes.php │ ├── qmerce-tag-composer.php │ ├── qmerce-widget.php │ └── tinymce.php ├── public │ ├── css │ │ ├── apester-tiny-mce.css │ │ ├── apester-tiny-mce.vendor.dist.css │ │ ├── apester_settings.css │ │ ├── metabox.css │ │ ├── modal.css │ │ └── tinymce-shortcode-replacement.css │ ├── fonts │ │ ├── almoni │ │ │ ├── almoni-400.eot │ │ │ ├── almoni-400.ttf │ │ │ ├── almoni-400.woff │ │ │ ├── almoni-700.eot │ │ │ ├── almoni-700.ttf │ │ │ ├── almoni-700.woff │ │ │ ├── almoni-900.eot │ │ │ ├── almoni-900.ttf │ │ │ └── almoni-900.woff │ │ └── lato │ │ │ ├── LatoLatin-Italic.eot │ │ │ ├── LatoLatin-Italic.ttf │ │ │ ├── LatoLatin-Italic.woff │ │ │ ├── LatoLatin-Italic.woff2 │ │ │ ├── LatoLatin-Light.eot │ │ │ ├── LatoLatin-Light.ttf │ │ │ ├── LatoLatin-Light.woff │ │ │ ├── LatoLatin-Light.woff2 │ │ │ ├── LatoLatin-LightItalic.eot │ │ │ ├── LatoLatin-LightItalic.ttf │ │ │ ├── LatoLatin-LightItalic.woff │ │ │ ├── LatoLatin-LightItalic.woff2 │ │ │ ├── LatoLatin-Regular.eot │ │ │ ├── LatoLatin-Regular.ttf │ │ │ ├── LatoLatin-Regular.woff │ │ │ └── LatoLatin-Regular.woff2 │ ├── img │ │ ├── ape-icon.svg │ │ ├── banana@2x.png │ │ ├── channels.jpg │ │ ├── create2.svg │ │ ├── embedding@2x.png │ │ ├── playlist_position │ │ │ ├── bottom@2x.png │ │ │ ├── middle@2x.png │ │ │ └── top@2x.png │ │ ├── playlist_wp.gif │ │ └── usersettings@2x.png │ └── js │ │ ├── apester_events.dist.js │ │ ├── apester_tinymce.dist.js │ │ ├── apester_tinymce.vendor.dist.js │ │ ├── apester_tinymce_shorcode.dist.js │ │ ├── metabox.js │ │ ├── modal.js │ │ └── templates.js ├── readme.txt └── views │ └── settings.tpl.php ├── apester-interactive-content-2.1 ├── apestar-interactive-content.php ├── apester-interactive-content.php ├── inc │ ├── events.php │ ├── qmerce-admin-box.class.php │ ├── qmerce-automation.php │ ├── qmerce-options.php │ ├── qmerce-settings.class.php │ ├── qmerce-shortcodes.php │ ├── qmerce-tag-composer.php │ ├── qmerce-widget.php │ └── tinymce.php ├── public │ ├── css │ │ ├── apester-tiny-mce.css │ │ ├── apester-tiny-mce.vendor.dist.css │ │ ├── apester_settings.css │ │ ├── metabox.css │ │ ├── modal.css │ │ └── tinymce-shortcode-replacement.css │ ├── fonts │ │ ├── almoni │ │ │ ├── almoni-400.eot │ │ │ ├── almoni-400.ttf │ │ │ ├── almoni-400.woff │ │ │ ├── almoni-700.eot │ │ │ ├── almoni-700.ttf │ │ │ ├── almoni-700.woff │ │ │ ├── almoni-900.eot │ │ │ ├── almoni-900.ttf │ │ │ └── almoni-900.woff │ │ └── lato │ │ │ ├── LatoLatin-Italic.eot │ │ │ ├── LatoLatin-Italic.ttf │ │ │ ├── LatoLatin-Italic.woff │ │ │ ├── LatoLatin-Italic.woff2 │ │ │ ├── LatoLatin-Light.eot │ │ │ ├── LatoLatin-Light.ttf │ │ │ ├── LatoLatin-Light.woff │ │ │ ├── LatoLatin-Light.woff2 │ │ │ ├── LatoLatin-LightItalic.eot │ │ │ ├── LatoLatin-LightItalic.ttf │ │ │ ├── LatoLatin-LightItalic.woff │ │ │ ├── LatoLatin-LightItalic.woff2 │ │ │ ├── LatoLatin-Regular.eot │ │ │ ├── LatoLatin-Regular.ttf │ │ │ ├── LatoLatin-Regular.woff │ │ │ └── LatoLatin-Regular.woff2 │ ├── img │ │ ├── ape-icon.svg │ │ └── create2.svg │ └── js │ │ ├── apester_events.dist.js │ │ ├── apester_tinymce.dist.js │ │ ├── apester_tinymce.vendor.dist.js │ │ ├── apester_tinymce_shorcode.dist.js │ │ ├── metabox.js │ │ ├── modal.js │ │ └── templates.js ├── readme.txt └── views │ └── settings.tpl.php ├── apester-interactive-content ├── .gitignore ├── README.md ├── inc │ ├── qmerce-admin-box.class.php │ ├── qmerce-automation.php │ ├── qmerce-settings.class.php │ ├── qmerce-shortcodes.php │ ├── qmerce-tag-composer.php │ └── qmerce-widget.php ├── public │ ├── css │ │ ├── metabox.css │ │ └── modal.css │ └── js │ │ ├── metabox.js │ │ └── modal.js ├── qmerce.php ├── readme.txt └── views │ └── settings.tpl.php ├── apple-news-1.2.6 ├── README.md ├── admin │ ├── apple-actions │ │ ├── class-action-exception.php │ │ ├── class-action.php │ │ ├── class-api-action.php │ │ └── index │ │ │ ├── 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 │ ├── partials │ │ ├── cover_art.php │ │ ├── index.php │ │ ├── metabox_publish.php │ │ ├── page_bulk_export.php │ │ ├── page_index.php │ │ ├── page_json.php │ │ ├── page_options.php │ │ ├── page_options_section.php │ │ ├── page_options_section_hidden.php │ │ ├── page_sections.php │ │ ├── page_single_push.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-formatting.php │ │ ├── class-admin-apple-settings-section-post-types.php │ │ └── class-admin-apple-settings-section.php ├── apple-news.php ├── assets │ ├── css │ │ ├── bulk-export.css │ │ ├── cover-art.css │ │ ├── export-table.css │ │ ├── json.css │ │ ├── meta-boxes.css │ │ ├── preview.css │ │ ├── sections.css │ │ ├── theme-edit.css │ │ └── themes.css │ ├── images │ │ ├── apple-news-list-reset.png │ │ ├── apple-news-list.png │ │ ├── apple-news-menu-articles.png │ │ ├── apple-news-menu-json.png │ │ ├── apple-news-menu-sections.png │ │ ├── apple-news-menu-settings.png │ │ ├── apple-news-menu-themes.png │ │ ├── apple-news-menu.png │ │ ├── bulk-export-pending.png │ │ ├── bulk-export-success.png │ │ ├── edit-post-metabox.png │ │ ├── error-notice.png │ │ ├── icloud-api-key.png │ │ ├── icloud-sections.png │ │ ├── json-edit-component.png │ │ ├── json-select-component.png │ │ ├── news-preview-menu.png │ │ ├── news-preview-settings.png │ │ ├── news-preview-tool.png │ │ ├── news-url.png │ │ ├── plugin-activate.png │ │ ├── plugin-install.png │ │ ├── plugin-manual-activation.png │ │ ├── plugins-add-new.png │ │ ├── plugins-menu.png │ │ ├── plugins-search.png │ │ ├── publish-from-list.png │ │ ├── publish-information.png │ │ ├── section-select-theme.png │ │ ├── sections-list.png │ │ ├── sections-search.png │ │ ├── settings-advanced-settings.png │ │ ├── settings-api-settings.png │ │ ├── settings-developer-tools.png │ │ ├── settings-formatting.png │ │ ├── settings-menu.png │ │ ├── settings-post-type-options.png │ │ ├── success-notice.png │ │ ├── table-row-actions-published.png │ │ ├── table-row-actions-unpublished.png │ │ ├── themes-edit.png │ │ ├── themes-list.png │ │ └── themes-upload.png │ └── js │ │ ├── bulk-export.js │ │ ├── cover-art.js │ │ ├── export-table.js │ │ ├── json.js │ │ ├── meta-boxes.js │ │ ├── preview.js │ │ ├── sections.js │ │ ├── settings.js │ │ ├── single-push.js │ │ ├── theme-edit.js │ │ └── themes.js ├── includes │ ├── apple-exporter │ │ ├── autoload.php │ │ ├── builders │ │ │ ├── class-advertising-settings.php │ │ │ ├── class-builder.php │ │ │ ├── class-component-layouts.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-workspace.php │ │ └── components │ │ │ ├── class-advertisement.php │ │ │ ├── class-audio.php │ │ │ ├── class-body.php │ │ │ ├── class-byline.php │ │ │ ├── class-component.php │ │ │ ├── class-cover.php │ │ │ ├── class-divider.php │ │ │ ├── class-embed-web-video.php │ │ │ ├── class-facebook.php │ │ │ ├── class-gallery.php │ │ │ ├── class-heading.php │ │ │ ├── class-image.php │ │ │ ├── class-instagram.php │ │ │ ├── class-intro.php │ │ │ ├── class-quote.php │ │ │ ├── class-title.php │ │ │ ├── class-tweet.php │ │ │ └── class-video.php │ ├── apple-push-api │ │ ├── autoload.php │ │ ├── class-api.php │ │ ├── class-credentials.php │ │ ├── class-mime-builder.php │ │ └── request │ │ │ └── class-request.php │ └── class-apple-news.php ├── index.php ├── lang │ └── apple-export.pot ├── license.txt ├── readme.txt └── vendor │ └── select2 │ ├── select2.full.min.js │ └── select2.min.css ├── apple-news-1.2 ├── README.md ├── admin │ ├── apple-actions │ │ ├── class-action-exception.php │ │ ├── class-action.php │ │ ├── class-api-action.php │ │ └── index │ │ │ ├── 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-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-settings.php │ ├── partials │ │ ├── index.php │ │ ├── page_bulk_export.php │ │ ├── page_index.php │ │ ├── page_options.php │ │ └── page_single_push.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-formatting.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 │ │ ├── meta-boxes.css │ │ └── settings.css │ └── js │ │ ├── bulk-export.js │ │ ├── export-table.js │ │ ├── meta-boxes.js │ │ └── settings.js ├── doc │ └── README.md ├── includes │ ├── apple-exporter │ │ ├── autoload.php │ │ ├── builders │ │ │ ├── class-advertising-settings.php │ │ │ ├── class-builder.php │ │ │ ├── class-component-layouts.php │ │ │ ├── class-component-text-styles.php │ │ │ ├── class-components.php │ │ │ ├── class-layout.php │ │ │ ├── class-metadata.php │ │ │ └── class-text-styles.php │ │ ├── class-component-factory.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-workspace.php │ │ └── components │ │ │ ├── class-advertisement.php │ │ │ ├── class-audio.php │ │ │ ├── class-body.php │ │ │ ├── class-byline.php │ │ │ ├── class-component.php │ │ │ ├── class-cover.php │ │ │ ├── class-divider.php │ │ │ ├── class-embed-web-video.php │ │ │ ├── class-gallery.php │ │ │ ├── class-heading.php │ │ │ ├── class-image.php │ │ │ ├── class-instagram.php │ │ │ ├── class-intro.php │ │ │ ├── class-quote.php │ │ │ ├── class-title.php │ │ │ ├── class-tweet.php │ │ │ └── class-video.php │ ├── apple-push-api │ │ ├── autoload.php │ │ ├── class-api.php │ │ ├── class-credentials.php │ │ ├── class-mime-builder.php │ │ └── request │ │ │ └── class-request.php │ └── class-apple-news.php ├── index.php ├── lang │ └── apple-export.pot ├── license.txt └── vendor │ └── select2 │ ├── select2.full.min.js │ └── select2.min.css ├── apple-news-1.3 ├── README.md ├── admin │ ├── apple-actions │ │ ├── class-action-exception.php │ │ ├── class-action.php │ │ ├── class-api-action.php │ │ └── index │ │ │ ├── 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 │ ├── partials │ │ ├── cover_art.php │ │ ├── field_meta_component_order.php │ │ ├── index.php │ │ ├── metabox_publish.php │ │ ├── page_bulk_export.php │ │ ├── page_index.php │ │ ├── page_json.php │ │ ├── page_options.php │ │ ├── page_options_section.php │ │ ├── page_options_section_hidden.php │ │ ├── page_sections.php │ │ ├── page_single_push.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 │ │ ├── cover-art.css │ │ ├── export-table.css │ │ ├── json.css │ │ ├── meta-boxes.css │ │ ├── preview.css │ │ ├── sections.css │ │ ├── select2.min.css │ │ ├── theme-edit.css │ │ └── themes.css │ ├── images │ │ ├── apple-news-list-reset.png │ │ ├── apple-news-list.png │ │ ├── apple-news-menu-articles.png │ │ ├── apple-news-menu-json.png │ │ ├── apple-news-menu-sections.png │ │ ├── apple-news-menu-settings.png │ │ ├── apple-news-menu-themes.png │ │ ├── apple-news-menu.png │ │ ├── bulk-export-pending.png │ │ ├── bulk-export-success.png │ │ ├── edit-post-metabox.png │ │ ├── error-notice.png │ │ ├── icloud-api-key.png │ │ ├── icloud-sections.png │ │ ├── json-edit-component.png │ │ ├── json-select-component.png │ │ ├── news-preview-menu.png │ │ ├── news-preview-settings.png │ │ ├── news-preview-tool.png │ │ ├── news-url.png │ │ ├── plugin-activate.png │ │ ├── plugin-install.png │ │ ├── plugin-manual-activation.png │ │ ├── plugins-add-new.png │ │ ├── plugins-menu.png │ │ ├── plugins-search.png │ │ ├── publish-from-list.png │ │ ├── publish-information.png │ │ ├── section-select-theme.png │ │ ├── sections-list.png │ │ ├── sections-search.png │ │ ├── settings-advanced-settings.png │ │ ├── settings-api-settings.png │ │ ├── settings-developer-tools.png │ │ ├── settings-formatting.png │ │ ├── settings-menu.png │ │ ├── settings-post-type-options.png │ │ ├── success-notice.png │ │ ├── table-row-actions-published.png │ │ ├── table-row-actions-unpublished.png │ │ ├── themes-edit.png │ │ ├── themes-list.png │ │ └── themes-upload.png │ ├── js │ │ ├── bulk-export.js │ │ ├── cover-art.js │ │ ├── export-table.js │ │ ├── json.js │ │ ├── meta-boxes.js │ │ ├── preview.js │ │ ├── sections.js │ │ ├── select2.full.min.js │ │ ├── settings.js │ │ ├── single-push.js │ │ ├── theme-edit.js │ │ └── themes.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 ├── bin │ └── install-wp-tests.sh ├── includes │ ├── apple-exporter │ │ ├── autoload.php │ │ ├── builders │ │ │ ├── class-advertising-settings.php │ │ │ ├── class-builder.php │ │ │ ├── class-component-layouts.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-advertisement.php │ │ │ ├── class-audio.php │ │ │ ├── class-body.php │ │ │ ├── class-byline.php │ │ │ ├── class-component.php │ │ │ ├── class-cover.php │ │ │ ├── class-divider.php │ │ │ ├── class-embed-web-video.php │ │ │ ├── class-facebook.php │ │ │ ├── class-gallery.php │ │ │ ├── class-heading.php │ │ │ ├── class-image.php │ │ │ ├── class-instagram.php │ │ │ ├── class-intro.php │ │ │ ├── class-quote.php │ │ │ ├── class-title.php │ │ │ ├── class-tweet.php │ │ │ └── class-video.php │ ├── apple-push-api │ │ ├── autoload.php │ │ ├── class-api.php │ │ ├── class-credentials.php │ │ ├── class-mime-builder.php │ │ └── request │ │ │ └── class-request.php │ └── class-apple-news.php ├── index.php ├── lang │ └── apple-export.pot ├── license.txt └── readme.txt ├── apple-news-1.4 ├── README.md ├── admin │ ├── apple-actions │ │ ├── class-action-exception.php │ │ ├── class-action.php │ │ ├── class-api-action.php │ │ └── index │ │ │ ├── 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 │ ├── partials │ │ ├── cover-art.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-sections.php │ │ ├── page-single-push.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 │ │ ├── cover-art.css │ │ ├── export-table.css │ │ ├── json.css │ │ ├── meta-boxes.css │ │ ├── preview.css │ │ ├── sections.css │ │ ├── select2.min.css │ │ ├── theme-edit.css │ │ └── themes.css │ ├── js │ │ ├── bulk-export.js │ │ ├── cover-art.js │ │ ├── export-table.js │ │ ├── json.js │ │ ├── meta-boxes.js │ │ ├── notices.js │ │ ├── preview.js │ │ ├── sections.js │ │ ├── select2.full.min.js │ │ ├── settings.js │ │ ├── single-push.js │ │ ├── theme-edit.js │ │ └── themes.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 ├── includes │ ├── apple-exporter │ │ ├── autoload.php │ │ ├── builders │ │ │ ├── class-advertising-settings.php │ │ │ ├── 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-advertisement.php │ │ │ ├── class-audio.php │ │ │ ├── class-body.php │ │ │ ├── class-byline.php │ │ │ ├── class-component.php │ │ │ ├── class-cover.php │ │ │ ├── class-divider.php │ │ │ ├── class-embed-web-video.php │ │ │ ├── class-facebook.php │ │ │ ├── class-gallery.php │ │ │ ├── class-heading.php │ │ │ ├── class-image.php │ │ │ ├── class-instagram.php │ │ │ ├── class-intro.php │ │ │ ├── class-quote.php │ │ │ ├── class-table.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 ├── index.php ├── lang │ └── apple-export.pot ├── license.txt └── readme.txt ├── apple-news ├── README.md ├── admin │ ├── apple-actions │ │ ├── class-action.php │ │ ├── class-api-action.php │ │ └── index │ │ │ ├── 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-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-settings.php │ ├── partials │ │ ├── index.php │ │ ├── page_bulk_export.php │ │ ├── page_index.php │ │ ├── page_options.php │ │ └── page_single_push.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-formatting.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 │ │ ├── meta-boxes.css │ │ └── settings.css │ └── js │ │ ├── bulk-export.js │ │ ├── export-table.js │ │ ├── meta-boxes.js │ │ └── settings.js ├── doc │ └── README.md ├── includes │ ├── apple-exporter │ │ ├── autoload.php │ │ ├── builders │ │ │ ├── class-advertising-settings.php │ │ │ ├── class-builder.php │ │ │ ├── class-component-layouts.php │ │ │ ├── class-component-text-styles.php │ │ │ ├── class-components.php │ │ │ ├── class-layout.php │ │ │ └── class-metadata.php │ │ ├── class-component-factory.php │ │ ├── class-exporter-content-settings.php │ │ ├── class-exporter-content.php │ │ ├── class-exporter.php │ │ ├── class-markdown.php │ │ ├── class-settings.php │ │ ├── class-workspace.php │ │ └── components │ │ │ ├── class-advertisement.php │ │ │ ├── class-audio.php │ │ │ ├── class-body.php │ │ │ ├── class-byline.php │ │ │ ├── class-component.php │ │ │ ├── class-cover.php │ │ │ ├── class-divider.php │ │ │ ├── class-embed-web-video.php │ │ │ ├── class-gallery.php │ │ │ ├── class-heading.php │ │ │ ├── class-image.php │ │ │ ├── class-instagram.php │ │ │ ├── class-intro.php │ │ │ ├── class-quote.php │ │ │ ├── class-title.php │ │ │ ├── class-tweet.php │ │ │ └── class-video.php │ ├── apple-push-api │ │ ├── autoload.php │ │ ├── class-api.php │ │ ├── class-credentials.php │ │ ├── class-mime-builder.php │ │ └── request │ │ │ └── class-request.php │ └── class-apple-news.php ├── index.php ├── lang │ └── apple-export.pot ├── license.txt └── vendor │ └── select2 │ ├── select2.full.min.js │ └── select2.min.css ├── art-direction-redux └── art-direction-redux.php ├── ays-publish └── ays-publish.php ├── bitly ├── bitly.php ├── class-wp-cli.php └── wpcom-helper.php ├── blimply ├── blimply.php ├── composer.json ├── composer.lock ├── lib │ ├── blimply-settings.php │ ├── class.wpairship.php │ ├── css │ │ └── blimply.css │ ├── js │ │ ├── blimply.js │ │ └── jquery.timePicker.min.js │ ├── languages │ │ └── blimply.pot │ ├── settings-api-class │ │ ├── class.settings-api.php │ │ ├── procedural-example.php │ │ ├── readme.md │ │ ├── readme.txt │ │ ├── screenshot-1.png │ │ └── settings-api.php │ └── wp-urban-airship │ │ └── urbanairship.php ├── phpunit.xml ├── readme.md ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── tests │ ├── bootstrap.php │ └── test-blimply.php └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ └── installed.json │ ├── monolog │ └── monolog │ │ ├── CHANGELOG.mdown │ │ ├── LICENSE │ │ ├── README.mdown │ │ ├── composer.json │ │ ├── doc │ │ ├── extending.md │ │ ├── sockets.md │ │ └── usage.md │ │ ├── phpunit.xml.dist │ │ └── src │ │ └── Monolog │ │ ├── Formatter │ │ ├── FormatterInterface.php │ │ ├── LineFormatter.php │ │ └── NormalizerFormatter.php │ │ ├── Handler │ │ ├── AbstractHandler.php │ │ ├── AbstractProcessingHandler.php │ │ ├── FingersCrossed │ │ │ ├── ActivationStrategyInterface.php │ │ │ └── ErrorLevelActivationStrategy.php │ │ ├── HandlerInterface.php │ │ ├── NullHandler.php │ │ └── StreamHandler.php │ │ └── Logger.php │ ├── psr │ └── log │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Psr │ │ └── Log │ │ │ ├── AbstractLogger.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogLevel.php │ │ │ ├── LoggerAwareInterface.php │ │ │ ├── LoggerAwareTrait.php │ │ │ ├── LoggerInterface.php │ │ │ ├── LoggerTrait.php │ │ │ ├── NullLogger.php │ │ │ └── Test │ │ │ └── LoggerInterfaceTest.php │ │ ├── README.md │ │ └── composer.json │ ├── rinatkhaziev │ └── wordpress-settings-api-class │ │ ├── .gitignore │ │ ├── class.settings-api.php │ │ ├── composer.json │ │ ├── procedural-example.php │ │ ├── readme.md │ │ ├── readme.txt │ │ ├── screenshot-1.png │ │ └── settings-api.php │ └── urbanairship │ └── urbanairship │ ├── .gitignore │ ├── .gitmodules │ ├── COPYING │ ├── README.md │ ├── VERSION.txt │ ├── composer.json │ ├── docs │ ├── Makefile │ ├── _extensions │ │ ├── phpdomain.py │ │ └── sphinx-php │ │ │ ├── __init__.py │ │ │ ├── configurationblock.py │ │ │ ├── php.py │ │ │ ├── phpcode.py │ │ │ └── refinclude.py │ ├── conf.py │ ├── index.rst │ └── push.rst │ ├── example │ ├── README.rst │ ├── composer.json │ └── pusher.php │ ├── phpdoc.dist.xml │ ├── phpunit.xml │ └── src │ ├── UrbanAirship │ ├── Airship.php │ ├── AirshipException.php │ ├── Devices │ │ ├── APIDList.php │ │ ├── DeviceList.php │ │ └── DeviceTokenList.php │ ├── Push │ │ ├── Audience.php │ │ ├── Notification.php │ │ ├── PushRequest.php │ │ ├── PushResponse.php │ │ ├── Schedule.php │ │ └── ScheduledPushRequest.php │ └── UALog.php │ └── tests │ ├── AirshipTest.php │ ├── AudienceTest.php │ ├── DeviceTokenListTest.php │ ├── NotificationTest.php │ ├── PushTest.php │ ├── ScheduledPushTest.php │ └── bootstrap.php ├── breadcrumb-navxt-39 ├── breadcrumb-navxt-39.php ├── breadcrumb_navxt_admin.php ├── breadcrumb_navxt_class.php ├── breadcrumb_navxt_uninstaller.php ├── breadcrumb_navxt_widget.php ├── languages │ ├── breadcrumb-navxt.pot │ ├── breadcrumb_navxt-by_BY.mo │ ├── breadcrumb_navxt-by_BY.po │ ├── breadcrumb_navxt-de_DE.mo │ ├── breadcrumb_navxt-de_DE.po │ ├── breadcrumb_navxt-es_ES.mo │ ├── breadcrumb_navxt-es_ES.po │ ├── breadcrumb_navxt-fr_FR.mo │ ├── breadcrumb_navxt-fr_FR.po │ ├── breadcrumb_navxt-id_ID.mo │ ├── breadcrumb_navxt-id_ID.po │ ├── breadcrumb_navxt-it_IT.mo │ ├── breadcrumb_navxt-it_IT.po │ ├── breadcrumb_navxt-ja.mo │ ├── breadcrumb_navxt-ja.po │ ├── breadcrumb_navxt-nl_NL.mo │ ├── breadcrumb_navxt-nl_NL.po │ ├── breadcrumb_navxt-ru_RU.mo │ ├── breadcrumb_navxt-ru_RU.po │ ├── breadcrumb_navxt-sv_SE.mo │ ├── breadcrumb_navxt-sv_SE.po │ ├── breadcrumb_navxt.mo │ └── breadcrumb_navxt.po ├── mtekk_admin_class.php ├── readme.txt └── uninstall.php ├── brightcove-video-connect-1.2.3 ├── assets │ ├── css │ │ ├── brightcove_playlist.css │ │ ├── brightcove_playlist.min.css │ │ ├── brightcove_video_connect.css │ │ └── brightcove_video_connect.min.css │ ├── js │ │ ├── bc-status.min.js │ │ ├── brightcove-admin.js │ │ ├── brightcove-admin.min.js │ │ ├── src │ │ │ ├── app.js │ │ │ ├── bc-status.js │ │ │ ├── models │ │ │ │ ├── brightcove-media-manager.js │ │ │ │ ├── brightcove-modal.js │ │ │ │ ├── media-collection.js │ │ │ │ ├── media.js │ │ │ │ ├── upload-collection.js │ │ │ │ └── upload.js │ │ │ ├── tinymce.js │ │ │ └── views │ │ │ │ ├── brightcove-media-manager.js │ │ │ │ ├── brightcove-modal.js │ │ │ │ ├── brightcove.js │ │ │ │ ├── media-collection.js │ │ │ │ ├── media-details.js │ │ │ │ ├── media.js │ │ │ │ ├── playlist-edit.js │ │ │ │ ├── toolbar.js │ │ │ │ ├── upload-details.js │ │ │ │ ├── upload-video-manager.js │ │ │ │ ├── upload-window.js │ │ │ │ ├── upload.js │ │ │ │ ├── video-edit.js │ │ │ │ └── video-preview.js │ │ └── vendor │ │ │ ├── q.js │ │ │ └── q.min.js │ └── scss │ │ ├── brightcove_playlist.scss │ │ ├── brightcove_video_connect.scss │ │ └── components │ │ ├── _colors.scss │ │ ├── _modals.scss │ │ ├── _playlists.scss │ │ ├── _profile.scss │ │ ├── _uploads.scss │ │ ├── _video-grid.scss │ │ └── _video-page.scss ├── brightcove-video-connect.php ├── cli │ └── class-brightcove-cli.php ├── images │ └── menu-icon.svg ├── includes │ ├── admin │ │ ├── api │ │ │ └── class-bc-admin-media-api.php │ │ ├── class-bc-admin-menu.php │ │ ├── class-bc-admin-playlists-page.php │ │ ├── class-bc-admin-settings-page.php │ │ ├── class-bc-admin-sources.php │ │ ├── class-bc-admin-user-profile.php │ │ ├── class-bc-admin-videos-page.php │ │ ├── class-bc-status-warning.php │ │ └── class-bc-templates.php │ ├── api │ │ ├── class-bc-api.php │ │ ├── class-bc-cms-api.php │ │ ├── class-bc-oauth.php │ │ ├── class-bc-player-management-api.php │ │ └── class-bc-text-track.php │ ├── class-bc-accounts.php │ ├── class-bc-errors.php │ ├── class-bc-logging.php │ ├── class-bc-notification-api.php │ ├── class-bc-permissions.php │ ├── class-bc-playlist-shortcode.php │ ├── class-bc-setup.php │ ├── class-bc-tags.php │ ├── class-bc-utility.php │ ├── class-bc-video-shortcode.php │ ├── class-bc-video-upload.php │ └── sync │ │ ├── class-bc-playlists.php │ │ └── class-bc-videos.php ├── languages │ └── brightcove.pot ├── readme.txt └── uninstall.php ├── brightcove-video-connect-1.3 ├── assets │ ├── css │ │ ├── brightcove_playlist.css │ │ ├── brightcove_playlist.min.css │ │ ├── brightcove_video_connect.css │ │ └── brightcove_video_connect.min.css │ ├── js │ │ ├── bc-status.min.js │ │ ├── brightcove-admin.js │ │ ├── brightcove-admin.js.map │ │ ├── brightcove-admin.min.js │ │ ├── src │ │ │ ├── app.js │ │ │ ├── bc-status.js │ │ │ ├── models │ │ │ │ ├── brightcove-media-manager.js │ │ │ │ ├── brightcove-modal.js │ │ │ │ ├── media-collection.js │ │ │ │ ├── media.js │ │ │ │ ├── upload-collection.js │ │ │ │ └── upload.js │ │ │ ├── tinymce.js │ │ │ └── views │ │ │ │ ├── brightcove-media-manager.js │ │ │ │ ├── brightcove-modal.js │ │ │ │ ├── brightcove.js │ │ │ │ ├── media-collection.js │ │ │ │ ├── media-details.js │ │ │ │ ├── media.js │ │ │ │ ├── playlist-edit.js │ │ │ │ ├── toolbar.js │ │ │ │ ├── upload-details.js │ │ │ │ ├── upload-video-manager.js │ │ │ │ ├── upload-window.js │ │ │ │ ├── upload.js │ │ │ │ ├── video-edit.js │ │ │ │ └── video-preview.js │ │ └── vendor │ │ │ ├── q.js │ │ │ └── q.min.js │ └── scss │ │ ├── brightcove_playlist.scss │ │ ├── brightcove_video_connect.scss │ │ └── components │ │ ├── _colors.scss │ │ ├── _mixins.scss │ │ ├── _modals.scss │ │ ├── _playlists.scss │ │ ├── _profile.scss │ │ ├── _uploads.scss │ │ ├── _video-edit.scss │ │ ├── _video-grid.scss │ │ └── _video-page.scss ├── brightcove-video-connect.php ├── cli │ └── class-brightcove-cli.php ├── developers.md ├── images │ ├── menu-icon.svg │ ├── video-background-large.png │ ├── video-background-small.png │ ├── video-playlist-large.png │ └── video-processing-large.png ├── includes │ ├── admin │ │ ├── api │ │ │ └── class-bc-admin-media-api.php │ │ ├── class-bc-admin-menu.php │ │ ├── class-bc-admin-playlists-page.php │ │ ├── class-bc-admin-settings-page.php │ │ ├── class-bc-admin-sources.php │ │ ├── class-bc-admin-user-profile.php │ │ ├── class-bc-admin-videos-page.php │ │ ├── class-bc-status-warning.php │ │ └── class-bc-templates.php │ ├── api │ │ ├── class-bc-api.php │ │ ├── class-bc-cms-api.php │ │ ├── class-bc-oauth.php │ │ ├── class-bc-player-management-api.php │ │ └── class-bc-text-track.php │ ├── class-bc-accounts.php │ ├── class-bc-errors.php │ ├── class-bc-logging.php │ ├── class-bc-notification-api.php │ ├── class-bc-permissions.php │ ├── class-bc-playlist-shortcode.php │ ├── class-bc-setup.php │ ├── class-bc-tags.php │ ├── class-bc-utility.php │ ├── class-bc-video-shortcode.php │ ├── class-bc-video-upload.php │ └── sync │ │ ├── class-bc-playlists.php │ │ └── class-bc-videos.php ├── languages │ └── brightcove.pot ├── readme.txt ├── uninstall.php └── wpcom-helper.php ├── brightcove-video-connect-1.4.1 ├── assets │ ├── css │ │ ├── brightcove_playlist.css │ │ ├── brightcove_playlist.min.css │ │ ├── brightcove_video_connect.css │ │ └── brightcove_video_connect.min.css │ ├── js │ │ ├── bc-status.min.js │ │ ├── brightcove-admin.js │ │ ├── brightcove-admin.js.map │ │ ├── brightcove-admin.min.js │ │ ├── src │ │ │ ├── app.js │ │ │ ├── bc-status.js │ │ │ ├── models │ │ │ │ ├── brightcove-media-manager.js │ │ │ │ ├── brightcove-modal.js │ │ │ │ ├── media-collection.js │ │ │ │ ├── media.js │ │ │ │ ├── upload-collection.js │ │ │ │ └── upload.js │ │ │ ├── tinymce.js │ │ │ └── views │ │ │ │ ├── brightcove-media-manager.js │ │ │ │ ├── brightcove-modal.js │ │ │ │ ├── brightcove.js │ │ │ │ ├── media-collection.js │ │ │ │ ├── media-details.js │ │ │ │ ├── media.js │ │ │ │ ├── playlist-edit.js │ │ │ │ ├── toolbar.js │ │ │ │ ├── upload-details.js │ │ │ │ ├── upload-video-manager.js │ │ │ │ ├── upload-window.js │ │ │ │ ├── upload.js │ │ │ │ ├── video-edit.js │ │ │ │ └── video-preview.js │ │ └── vendor │ │ │ ├── q.js │ │ │ └── q.min.js │ └── scss │ │ ├── brightcove_playlist.scss │ │ ├── brightcove_video_connect.scss │ │ └── components │ │ ├── _colors.scss │ │ ├── _mixins.scss │ │ ├── _modals.scss │ │ ├── _playlists.scss │ │ ├── _profile.scss │ │ ├── _uploads.scss │ │ ├── _video-edit.scss │ │ ├── _video-grid.scss │ │ └── _video-page.scss ├── brightcove-video-connect.php ├── cli │ └── class-brightcove-cli.php ├── composer.json ├── developers.md ├── images │ ├── menu-icon.svg │ ├── video-background-large.png │ ├── video-background-small.png │ ├── video-playlist-large.png │ └── video-processing-large.png ├── includes │ ├── admin │ │ ├── api │ │ │ └── class-bc-admin-media-api.php │ │ ├── class-bc-admin-menu.php │ │ ├── class-bc-admin-playlists-page.php │ │ ├── class-bc-admin-settings-page.php │ │ ├── class-bc-admin-sources.php │ │ ├── class-bc-admin-user-profile.php │ │ ├── class-bc-admin-videos-page.php │ │ └── class-bc-templates.php │ ├── api │ │ ├── class-bc-api.php │ │ ├── class-bc-cms-api.php │ │ ├── class-bc-oauth.php │ │ ├── class-bc-player-management-api.php │ │ ├── class-bc-player-management-api2.php │ │ └── class-bc-text-track.php │ ├── class-bc-accounts.php │ ├── class-bc-errors.php │ ├── class-bc-logging.php │ ├── class-bc-notification-api.php │ ├── class-bc-permissions.php │ ├── class-bc-playlist-shortcode.php │ ├── class-bc-setup.php │ ├── class-bc-tags.php │ ├── class-bc-utility.php │ ├── class-bc-video-shortcode.php │ ├── class-bc-video-upload.php │ └── sync │ │ ├── class-bc-playlists.php │ │ └── class-bc-videos.php ├── languages │ └── brightcove.pot ├── package.json ├── readme.txt ├── uninstall.php └── wpcom-helper.php ├── brightcove-video-connect-1.5.0 ├── Gruntfile.js ├── README.md ├── assets │ ├── css │ │ ├── brightcove_playlist.css │ │ ├── brightcove_playlist.min.css │ │ ├── brightcove_video_connect.css │ │ └── brightcove_video_connect.min.css │ ├── js │ │ ├── bc-status.min.js │ │ ├── brightcove-admin.js │ │ ├── brightcove-admin.js.map │ │ ├── brightcove-admin.min.js │ │ ├── src │ │ │ ├── app.js │ │ │ ├── bc-status.js │ │ │ ├── models │ │ │ │ ├── brightcove-media-manager.js │ │ │ │ ├── brightcove-modal.js │ │ │ │ ├── media-collection.js │ │ │ │ ├── media.js │ │ │ │ ├── upload-collection.js │ │ │ │ └── upload.js │ │ │ ├── tinymce.js │ │ │ └── views │ │ │ │ ├── brightcove-media-manager.js │ │ │ │ ├── brightcove-modal.js │ │ │ │ ├── brightcove.js │ │ │ │ ├── media-collection.js │ │ │ │ ├── media-details.js │ │ │ │ ├── media.js │ │ │ │ ├── playlist-edit.js │ │ │ │ ├── toolbar.js │ │ │ │ ├── upload-details.js │ │ │ │ ├── upload-video-manager.js │ │ │ │ ├── upload-window.js │ │ │ │ ├── upload.js │ │ │ │ ├── video-edit.js │ │ │ │ └── video-preview.js │ │ └── vendor │ │ │ ├── q.js │ │ │ └── q.min.js │ └── scss │ │ ├── brightcove_playlist.scss │ │ ├── brightcove_video_connect.scss │ │ └── components │ │ ├── _colors.scss │ │ ├── _mixins.scss │ │ ├── _modals.scss │ │ ├── _playlists.scss │ │ ├── _profile.scss │ │ ├── _uploads.scss │ │ ├── _video-edit.scss │ │ ├── _video-grid.scss │ │ └── _video-page.scss ├── brightcove-video-connect.php ├── cli │ └── class-brightcove-cli.php ├── composer.json ├── developers.md ├── images │ ├── menu-icon.svg │ ├── video-background-large.png │ ├── video-background-small.png │ ├── video-playlist-large.png │ └── video-processing-large.png ├── includes │ ├── admin │ │ ├── api │ │ │ └── class-bc-admin-media-api.php │ │ ├── class-bc-admin-menu.php │ │ ├── class-bc-admin-playlists-page.php │ │ ├── class-bc-admin-settings-page.php │ │ ├── class-bc-admin-sources.php │ │ ├── class-bc-admin-user-profile.php │ │ ├── class-bc-admin-videos-page.php │ │ └── class-bc-templates.php │ ├── api │ │ ├── class-bc-api.php │ │ ├── class-bc-cms-api.php │ │ ├── class-bc-experiences-api.php │ │ ├── class-bc-oauth.php │ │ ├── class-bc-player-management-api.php │ │ ├── class-bc-player-management-api2.php │ │ └── class-bc-text-track.php │ ├── class-bc-accounts.php │ ├── class-bc-errors.php │ ├── class-bc-experiences-shortcode.php │ ├── class-bc-logging.php │ ├── class-bc-notification-api.php │ ├── class-bc-permissions.php │ ├── class-bc-playlist-shortcode.php │ ├── class-bc-setup.php │ ├── class-bc-tags.php │ ├── class-bc-utility.php │ ├── class-bc-video-shortcode.php │ ├── class-bc-video-upload.php │ └── sync │ │ ├── class-bc-playlists.php │ │ └── class-bc-videos.php ├── languages │ └── brightcove.pot ├── package.json ├── readme.txt └── uninstall.php ├── brightcove-video-connect ├── assets │ ├── css │ │ ├── brightcove_playlist.css │ │ ├── brightcove_playlist.min.css │ │ ├── brightcove_video_connect.css │ │ └── brightcove_video_connect.min.css │ ├── js │ │ ├── bc-status.min.js │ │ ├── brightcove-admin.js │ │ ├── brightcove-admin.min.js │ │ ├── src │ │ │ ├── app.js │ │ │ ├── bc-status.js │ │ │ ├── models │ │ │ │ ├── brightcove-media-manager.js │ │ │ │ ├── brightcove-modal.js │ │ │ │ ├── media-collection.js │ │ │ │ ├── media.js │ │ │ │ ├── upload-collection.js │ │ │ │ └── upload.js │ │ │ ├── tinymce.js │ │ │ └── views │ │ │ │ ├── brightcove-media-manager.js │ │ │ │ ├── brightcove-modal.js │ │ │ │ ├── brightcove.js │ │ │ │ ├── media-collection.js │ │ │ │ ├── media-details.js │ │ │ │ ├── media.js │ │ │ │ ├── playlist-edit.js │ │ │ │ ├── toolbar.js │ │ │ │ ├── upload-details.js │ │ │ │ ├── upload-video-manager.js │ │ │ │ ├── upload-window.js │ │ │ │ ├── upload.js │ │ │ │ ├── video-edit.js │ │ │ │ └── video-preview.js │ │ └── vendor │ │ │ ├── q.js │ │ │ └── q.min.js │ └── scss │ │ ├── brightcove_playlist.scss │ │ ├── brightcove_video_connect.scss │ │ └── components │ │ ├── _colors.scss │ │ ├── _modals.scss │ │ ├── _playlists.scss │ │ ├── _profile.scss │ │ ├── _uploads.scss │ │ ├── _video-grid.scss │ │ └── _video-page.scss ├── brightcove-video-connect.php ├── cli │ └── class-brightcove-cli.php ├── images │ ├── menu-icon.svg │ ├── video-background-large.png │ ├── video-background-small.png │ ├── video-playlist-large.png │ └── video-processing-large.png ├── includes │ ├── admin │ │ ├── api │ │ │ └── class-bc-admin-media-api.php │ │ ├── class-bc-admin-menu.php │ │ ├── class-bc-admin-playlists-page.php │ │ ├── class-bc-admin-settings-page.php │ │ ├── class-bc-admin-sources.php │ │ ├── class-bc-admin-user-profile.php │ │ ├── class-bc-admin-videos-page.php │ │ ├── class-bc-status-warning.php │ │ └── class-bc-templates.php │ ├── api │ │ ├── class-bc-api.php │ │ ├── class-bc-cms-api.php │ │ ├── class-bc-oauth.php │ │ └── class-bc-player-management-api.php │ ├── class-bc-accounts.php │ ├── class-bc-errors.php │ ├── class-bc-logging.php │ ├── class-bc-permissions.php │ ├── class-bc-playlist-shortcode.php │ ├── class-bc-setup.php │ ├── class-bc-tags.php │ ├── class-bc-utility.php │ ├── class-bc-video-shortcode.php │ ├── class-bc-video-upload.php │ └── sync │ │ ├── class-bc-playlists.php │ │ └── class-bc-videos.php ├── languages │ └── brightcove.pot ├── readme.txt └── uninstall.php ├── brightcove ├── README.md ├── admin │ ├── bc_icon.png │ ├── brightcove_admin.css │ ├── brightcove_admin.js │ ├── brightcove_admin.php │ └── playerKey.png ├── assets │ └── banner-772x250.jpg ├── bc-mapi.js ├── brightcove.css ├── brightcove.php ├── brightcove_shortcode.php ├── dynamic_brightcove.js ├── jQueryPlaceholder │ └── jQueryPlaceholder.js ├── jQueryValidation │ ├── README.md │ ├── additional-methods.min.js │ └── jquery.validate.min.js ├── readme.txt └── uninstall.php ├── byline ├── byline.php └── wpcom-helper.php ├── cache-nav-menu └── cache-nav-menu.php ├── category-posts-widget ├── cat-posts.php └── category-posts-widget.php ├── chartbeat-2.0 ├── assets │ ├── banner-772x250.jpg │ ├── screenshot-1.png │ ├── screenshot-2.png │ ├── screenshot-3.png │ ├── screenshot-4.png │ └── screenshot-5.png ├── chartbeat.php ├── media │ ├── cb_plugin.css │ ├── cbdashboard.compiled.js │ ├── chartbeat.png │ └── topwidget.compiled.js └── readme.txt ├── chartbeat ├── chartbeat.php ├── media │ ├── cb_plugin.css │ ├── cbdashboard.compiled.js │ ├── chartbeat.png │ └── topwidget.compiled.js └── readme.txt ├── cheezcap ├── README.txt ├── cheezcap.php ├── config-sample.php └── library.php ├── cheeztest ├── LICENSE.txt ├── cheeztest-examples.php ├── cheeztest.php └── readme.txt ├── civil-comments ├── .distignore ├── .editorconfig ├── .gitignore ├── .travis.yml ├── Gruntfile.js ├── README.md ├── assets │ ├── img │ │ └── logo.png │ └── js │ │ ├── civil-comments.js │ │ └── vendor │ │ └── jquery.timepicker.js ├── civil-comments.php ├── composer.json ├── includes │ ├── admin.php │ ├── functions.php │ ├── requirements.php │ ├── template-tags.php │ └── vendor │ │ └── JWT.php ├── languages │ └── civil-comments.pot ├── package.json ├── phpcs.xml.dist ├── phpunit.xml.dist ├── readme.txt ├── templates │ ├── civil-comments.php │ └── settings.php └── tests │ ├── bootstrap.php │ └── test-civil-comments.php ├── co-authors-plus-3.2 ├── co-authors-plus.php ├── css │ ├── co-authors-plus.css │ └── guest-authors.css ├── deprecated.php ├── js │ ├── co-authors-plus.js │ └── guest-authors.js ├── languages │ ├── co-authors-plus-de_DE.mo │ ├── co-authors-plus-de_DE.po │ ├── co-authors-plus-es_ES.mo │ ├── co-authors-plus-es_ES.po │ ├── co-authors-plus-fr_FR.mo │ ├── co-authors-plus-fr_FR.po │ ├── co-authors-plus-nl_NL.mo │ ├── co-authors-plus-nl_NL.po │ ├── co-authors-plus-ru_RU.mo │ ├── co-authors-plus-ru_RU.po │ ├── co-authors-plus-sv_SE.mo │ ├── co-authors-plus-sv_SE.po │ ├── co-authors-plus-uk.mo │ ├── co-authors-plus-uk.po │ └── co-authors-plus.pot ├── lib │ └── select2 │ │ ├── select2.css │ │ ├── select2.min.js │ │ ├── select2.png │ │ ├── select2x2.png │ │ └── spinner.gif ├── php │ ├── class-coauthors-guest-authors.php │ ├── class-coauthors-template-filters.php │ ├── class-coauthors-wp-list-table.php │ ├── class-wp-cli.php │ └── integrations │ │ ├── amp.php │ │ └── amp │ │ └── meta-author.php ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── template-tags.php ├── upgrade.php └── wpcom-helper.php ├── co-authors-plus-3.3 ├── co-authors-plus.php ├── css │ ├── co-authors-plus.css │ └── guest-authors.css ├── deprecated.php ├── js │ ├── co-authors-plus.js │ └── guest-authors.js ├── languages │ ├── co-authors-plus-de_DE.mo │ ├── co-authors-plus-de_DE.po │ ├── co-authors-plus-es_ES.mo │ ├── co-authors-plus-es_ES.po │ ├── co-authors-plus-fr_FR.mo │ ├── co-authors-plus-fr_FR.po │ ├── co-authors-plus-nl_NL.mo │ ├── co-authors-plus-nl_NL.po │ ├── co-authors-plus-ru_RU.mo │ ├── co-authors-plus-ru_RU.po │ ├── co-authors-plus-sv_SE.mo │ ├── co-authors-plus-sv_SE.po │ ├── co-authors-plus-uk.mo │ ├── co-authors-plus-uk.po │ └── co-authors-plus.pot ├── lib │ └── select2 │ │ ├── select2.css │ │ └── select2.min.js ├── php │ ├── class-coauthors-guest-authors.php │ ├── class-coauthors-template-filters.php │ ├── class-coauthors-wp-list-table.php │ ├── class-wp-cli.php │ └── integrations │ │ ├── amp.php │ │ └── amp │ │ └── meta-author.php ├── readme.txt ├── template-tags.php ├── upgrade.php └── wpcom-helper.php ├── co-authors-plus-social-pack └── co-authors-plus-social-pack.php ├── co-authors-plus ├── co-authors-plus.php ├── css │ ├── co-authors-plus.css │ └── guest-authors.css ├── deprecated.php ├── js │ ├── co-authors-plus.js │ └── guest-authors.js ├── languages │ ├── co-authors-plus-de_DE.mo │ ├── co-authors-plus-de_DE.po │ ├── co-authors-plus-es_ES.mo │ ├── co-authors-plus-es_ES.po │ ├── co-authors-plus-fr_FR.mo │ ├── co-authors-plus-fr_FR.po │ ├── co-authors-plus-nl_NL.mo │ ├── co-authors-plus-nl_NL.po │ ├── co-authors-plus-ru_RU.mo │ ├── co-authors-plus-ru_RU.po │ ├── co-authors-plus-sv_SE.mo │ ├── co-authors-plus-sv_SE.po │ ├── co-authors-plus-uk.mo │ ├── co-authors-plus-uk.po │ └── co-authors-plus.pot ├── lib │ └── select2 │ │ ├── select2.css │ │ ├── select2.min.js │ │ ├── select2.png │ │ ├── select2x2.png │ │ └── spinner.gif ├── php │ ├── class-coauthors-guest-authors.php │ ├── class-coauthors-template-filters.php │ ├── class-coauthors-wp-list-table.php │ └── class-wp-cli.php ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── template-tags.php ├── upgrade.php └── wpcom-helper.php ├── co-schedule-3.2 ├── _access-denied.php ├── _missing-token.php ├── co-schedule.php ├── frame.php ├── plugin_setup.php └── readme.txt ├── co-schedule ├── _access-denied.php ├── _missing-token.php ├── activity.php ├── calendar.php ├── co-schedule.php ├── help.php ├── plugin_setup.php ├── readme.txt ├── settings.php ├── team.php └── top_posts.php ├── column-shortcodes ├── assets │ ├── css │ │ ├── admin-rtl.css │ │ ├── admin.css │ │ ├── shortcodes-rtl.css │ │ └── shortcodes.css │ ├── images │ │ ├── columns-rtl.png │ │ ├── columns.png │ │ └── shortcode.png │ └── js │ │ └── admin.js ├── column-shortcodes.php ├── languages │ ├── column-shortcodes-es_ES.mo │ ├── column-shortcodes-es_ES.po │ ├── column-shortcodes-fr_FR.mo │ ├── column-shortcodes-fr_FR.po │ ├── column-shortcodes-he_IL.mo │ ├── column-shortcodes-he_IL.po │ ├── column-shortcodes-nl_NL.mo │ ├── column-shortcodes-nl_NL.po │ ├── column-shortcodes.po │ ├── column-shortcodes_sk_SK.mo │ └── column-shortcodes_sk_SK.po ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png └── screenshot-4.png ├── comment-probation ├── comment-probation.php ├── readme.txt └── screenshot-1.png ├── custom-metadata ├── README.md ├── css │ ├── custom-metadata-manager.css │ ├── images │ │ ├── calendar.png │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ ├── jquery-ui-smoothness.css │ ├── select2.css │ ├── select2.png │ ├── select2x2.png │ └── spinner.gif ├── custom-metadata.php ├── custom_metadata.php ├── custom_metadata_examples.php ├── js │ ├── custom-metadata-manager.js │ ├── images │ │ └── calendar.png │ ├── jquery-ui-timepicker.min.js │ └── select2.min.js ├── screenshot-1.jpg ├── screenshot-2.jpg ├── screenshot-3.jpg └── wpcom-helper.php ├── daylife ├── daylife.php ├── images │ └── daylife32.png └── inc │ ├── class-wp-daylife-api.php │ ├── daylife.css │ ├── daylife.js │ ├── meta-box.php │ └── options.php ├── disable-comments-query └── disable-comments-query.php ├── disqus ├── comments.php ├── disqus.php ├── export.php ├── images │ └── logo.png ├── lib │ ├── api │ │ └── disqus │ │ │ ├── disqus.php │ │ │ ├── json.php │ │ │ └── url.php │ └── wpapi.php ├── manage.php ├── readme.txt ├── scripts │ └── manage.js ├── styles │ ├── manage-pre25.css │ └── manage.css ├── wpcom-helper.php └── xd_receiver.htm ├── document-feedback ├── css │ └── document-feedback-admin.css ├── document-feedback.php ├── js │ └── jquery.sparkline.min.js ├── languages │ ├── document-feedback-bg_BG.mo │ ├── document-feedback-bg_BG.po │ ├── document-feedback-it_IT.mo │ ├── document-feedback-it_IT.po │ ├── document-feedback-tr_TR.mo │ ├── document-feedback-tr_TR.po │ ├── document-feedback-zh_CN.mo │ ├── document-feedback-zh_CN.po │ └── document-feedback.pot ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png └── wpcom-helper.php ├── dynamic-content-gallery ├── README.txt ├── css │ ├── img │ │ ├── carrow1.gif │ │ ├── carrow2.gif │ │ ├── fleche1.gif │ │ ├── fleche1.png │ │ ├── fleche2.gif │ │ ├── fleche2.png │ │ ├── loading-bar-black.gif │ │ ├── open.gif │ │ └── open.png │ └── jd.gallery.css ├── dfcg-user-styles.php ├── dfcg-wpmu-ui.php ├── dynamic-content-gallery.php ├── dynamic-gallery-plugin.php ├── dynamic-gallery.php ├── scripts │ ├── HistoryManager.js │ ├── jd.gallery.js │ ├── jd.gallery.set.js │ ├── jd.gallery.transitions.js │ ├── mootools.v1.11.ext.js │ ├── mootools.v1.11.js │ └── mootools.v1.11.uncompressed.js └── uninstall.php ├── easy-custom-fields ├── easy-custom-fields.php ├── examples.php └── readme.txt ├── ecwid ├── class-ecwid-dashboard-to-shortcode-converter.php ├── class-ecwid-settings-page.php ├── class-ecwid-shopping-cart.php ├── css │ ├── frontend.css │ └── settings.css ├── ecwid-wordpress-shortcode.php ├── ecwid.php ├── images │ ├── store_inprogress.png │ ├── store_ready.png │ └── warning.png ├── readme.txt └── templates │ ├── settings-complete.php │ ├── settings-initial.php │ └── settings.php ├── edit-flow-0.9 ├── .babelrc ├── BLOCKS.md ├── CONTRIBUTING.md ├── README.md ├── bin │ └── install-wp-tests.sh ├── blocks │ ├── dist │ │ ├── calendar.build.js │ │ ├── calendar.editor.build.css │ │ ├── calendar.style.build.css │ │ ├── custom-status.build.js │ │ ├── custom-status.editor.build.css │ │ └── custom-status.style.build.css │ └── src │ │ ├── blocks.js │ │ ├── calendar │ │ ├── block.js │ │ ├── editor.scss │ │ └── style.scss │ │ └── custom-status │ │ ├── block.js │ │ ├── editor.scss │ │ └── style.scss ├── common │ ├── css │ │ ├── edit-flow-admin.css │ │ ├── jquery.listfilterizer.css │ │ ├── jquery.ui.datepicker.css │ │ └── jquery.ui.theme.css │ ├── js │ │ ├── ef_date.js │ │ ├── jquery-ui-timepicker-addon.js │ │ ├── jquery.listfilterizer.js │ │ ├── jquery.quicksearch.js │ │ ├── jquery.ui.datepicker.min.js │ │ └── screen-options.js │ └── php │ │ ├── class-module.php │ │ ├── screen-options.php │ │ ├── trait-block-editor-compatible.php │ │ └── util.php ├── composer.json ├── documentation │ └── ru_RU │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ └── readme.txt ├── edit-flow.php ├── edit_flow.php ├── languages │ ├── edit-flow-de_DE.mo │ ├── edit-flow-de_DE.po │ ├── edit-flow-es_ES.mo │ ├── edit-flow-es_ES.po │ ├── edit-flow-fr_FR.mo │ ├── edit-flow-fr_FR.po │ ├── edit-flow-it_IT.mo │ ├── edit-flow-it_IT.po │ ├── edit-flow-ja.mo │ ├── edit-flow-ja.po │ ├── edit-flow-nl_NL.mo │ ├── edit-flow-nl_NL.po │ ├── edit-flow-pt_BR.mo │ ├── edit-flow-pt_BR.po │ ├── edit-flow-ru_RU.mo │ ├── edit-flow-ru_RU.po │ ├── edit-flow-sv_SE.mo │ ├── edit-flow-sv_SE.po │ └── edit-flow.pot ├── modules │ ├── calendar │ │ ├── calendar.php │ │ └── lib │ │ │ ├── calendar.css │ │ │ └── calendar.js │ ├── custom-status │ │ ├── compat │ │ │ └── block-editor.php │ │ ├── custom-status.php │ │ └── lib │ │ │ ├── custom-status-configure.js │ │ │ ├── custom-status.css │ │ │ └── custom-status.js │ ├── dashboard │ │ ├── dashboard.php │ │ ├── lib │ │ │ └── dashboard.css │ │ └── widgets │ │ │ └── dashboard-notepad.php │ ├── editorial-comments │ │ ├── editorial-comments.php │ │ └── lib │ │ │ ├── editorial-comments.css │ │ │ └── editorial-comments.js │ ├── editorial-metadata │ │ ├── editorial-metadata.php │ │ └── lib │ │ │ ├── editorial-metadata-configure.js │ │ │ └── editorial-metadata.css │ ├── notifications │ │ ├── lib │ │ │ ├── notifications.css │ │ │ └── notifications.js │ │ └── notifications.php │ ├── settings │ │ ├── lib │ │ │ ├── settings.css │ │ │ └── settings.js │ │ └── settings.php │ ├── story-budget │ │ ├── lib │ │ │ ├── story-budget-print.css │ │ │ ├── story-budget.css │ │ │ └── story-budget.js │ │ └── story-budget.php │ └── user-groups │ │ ├── lib │ │ ├── user-groups-configure.js │ │ ├── user-groups.css │ │ └── user-groups.js │ │ └── user-groups.php ├── package-lock.json ├── package.json ├── phpunit.xml ├── readme.txt ├── tests │ ├── bootstrap.php │ ├── phpunit │ │ └── multisite.xml │ ├── test-edit-flow-class-module.php │ ├── test-edit-flow-custom-status-ajax.php │ ├── test-edit-flow-custom-status.php │ ├── test-edit-flow-dashboard-notepad.php │ ├── test-edit-flow-starter.php │ └── testcase-edit-flow-ajax.php ├── tools │ └── deploy-to-svn.sh ├── vipgo-helper.php ├── webpack.config.js └── wpcom-helper.php ├── edit-flow ├── common │ ├── css │ │ ├── edit-flow-admin.css │ │ ├── jquery.listfilterizer.css │ │ ├── jquery.ui.datepicker.css │ │ └── jquery.ui.theme.css │ ├── img │ │ ├── date-button.gif │ │ ├── datepicker │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ └── ui-icons_454545_256x240.png │ │ ├── drag_handle.jpg │ │ ├── ef-settings-budget.png │ │ ├── ef-settings-calendar.png │ │ ├── ef-settings-notifications.png │ │ ├── ef-settings-status.png │ │ ├── ef-settings-widget.png │ │ ├── globe-V3.png │ │ ├── menu-bits.gif │ │ ├── saving.gif │ │ └── wpspin_light.gif │ ├── js │ │ ├── ef_date.js │ │ ├── jquery-ui-timepicker-addon.js │ │ ├── jquery.listfilterizer.js │ │ ├── jquery.quicksearch.js │ │ ├── jquery.ui.datepicker.min.js │ │ └── screen-options.js │ └── php │ │ ├── class-module.php │ │ ├── screen-options.php │ │ └── util.php ├── edit-flow.php ├── edit_flow.php ├── languages │ ├── edit-flow-de_DE.mo │ ├── edit-flow-de_DE.po │ ├── edit-flow-es_ES.mo │ ├── edit-flow-es_ES.po │ ├── edit-flow-fr_FR.mo │ ├── edit-flow-fr_FR.po │ ├── edit-flow-it_IT.mo │ ├── edit-flow-it_IT.po │ ├── edit-flow-ja.mo │ ├── edit-flow-ja.po │ ├── edit-flow-nl_NL.mo │ ├── edit-flow-nl_NL.po │ ├── edit-flow-pt_BR.mo │ ├── edit-flow-pt_BR.po │ ├── edit-flow-ru_RU.mo │ ├── edit-flow-ru_RU.po │ ├── edit-flow-sv_SE.mo │ ├── edit-flow-sv_SE.po │ └── edit-flow.pot ├── modules │ ├── calendar │ │ ├── calendar.php │ │ └── lib │ │ │ ├── calendar.css │ │ │ ├── calendar.js │ │ │ ├── calendar_s128.png │ │ │ ├── menu-bits.gif │ │ │ └── wpspin_light.gif │ ├── custom-status │ │ ├── custom-status.php │ │ └── lib │ │ │ ├── custom-status-configure.js │ │ │ ├── custom-status.css │ │ │ ├── custom-status.js │ │ │ └── custom_status_s128.png │ ├── dashboard │ │ ├── dashboard.php │ │ ├── lib │ │ │ ├── dashboard.css │ │ │ └── dashboard_s128.png │ │ └── widgets │ │ │ └── dashboard-notepad.php │ ├── editorial-comments │ │ ├── editorial-comments.php │ │ └── lib │ │ │ ├── editorial-comments.css │ │ │ ├── editorial-comments.js │ │ │ ├── editorial_comments_s128.png │ │ │ └── editorial_comments_s16.png │ ├── editorial-metadata │ │ ├── editorial-metadata.php │ │ └── lib │ │ │ ├── date-button.gif │ │ │ ├── editorial-metadata-configure.js │ │ │ ├── editorial-metadata.css │ │ │ ├── editorial_metadata_s128.png │ │ │ ├── editorial_metadata_s16.png │ │ │ └── globe-V3.png │ ├── notifications │ │ ├── lib │ │ │ ├── notifications.css │ │ │ ├── notifications.js │ │ │ ├── notifications_s128.png │ │ │ └── notifications_s16.png │ │ └── notifications.php │ ├── settings │ │ ├── lib │ │ │ ├── eflogo_s128.png │ │ │ ├── eflogo_s16.png │ │ │ ├── eflogo_s32.png │ │ │ ├── eflogo_s32b.png │ │ │ ├── settings.css │ │ │ └── settings.js │ │ └── settings.php │ ├── story-budget │ │ ├── lib │ │ │ ├── story-budget-print.css │ │ │ ├── story-budget.css │ │ │ ├── story-budget.js │ │ │ └── story_budget_s128.png │ │ └── story-budget.php │ └── user-groups │ │ ├── lib │ │ ├── user-groups-configure.js │ │ ├── user-groups.css │ │ ├── user-groups.js │ │ └── usergroups_s128.png │ │ └── user-groups.php ├── readme.txt ├── screenshot-1.jpg ├── screenshot-2.jpg ├── screenshot-3.jpg ├── screenshot-4.jpg ├── screenshot-5.jpg └── wpcom-helper.php ├── editorial-calendar ├── LICENSE.txt ├── closure.sh ├── edcal.css ├── edcal.js ├── edcal.php ├── edcal_test.js ├── editorial-calendar.php ├── images │ ├── month-present_bk.gif │ ├── tip_close.png │ └── today_bk.gif ├── languages │ ├── editorial-calendar-cs_CZ.mo │ ├── editorial-calendar-cs_CZ.po │ ├── editorial-calendar-el.mo │ ├── editorial-calendar-el.po │ ├── editorial-calendar-fr_FR.mo │ ├── editorial-calendar-fr_FR.po │ ├── editorial-calendar-hr.mo │ ├── editorial-calendar-hr.po │ ├── editorial-calendar-nl_NL.mo │ ├── editorial-calendar-nl_NL.po │ ├── editorial-calendar-pl_PL.mo │ ├── editorial-calendar-pl_PL.po │ ├── editorial-calendar-pt_BR.mo │ └── editorial-calendar-pt_BR.po ├── lib │ ├── date.extras.js │ ├── edcallib.min.js │ ├── humanmsg.css │ ├── humanmsg.js │ ├── jquery.bgiframe.js │ ├── jquery.cookie.js │ ├── jquery.delegate.js │ ├── jquery.timepicker.js │ ├── jquery.tools.min.js │ ├── json2.js │ ├── languages │ │ ├── date-cs-CZ.js │ │ ├── date-el-GR.js │ │ ├── date-en-US.js │ │ ├── date-fr_FR.js │ │ ├── date-hr-HR.js │ │ ├── date-nl-NL.js │ │ ├── date-pl-PL.js │ │ └── date-pt-BR.js │ ├── lib.txt │ ├── qunit.css │ ├── qunit.js │ ├── sprintf-0.7-beta1.js │ ├── timePicker.css │ ├── tools.scrollable-1.1.2.js │ └── tools.scrollable.mousewheel-1.0.1.js ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png ├── screenshot-5.png └── screenshot-6.png ├── editorize └── editorize.php ├── es-wp-query-0.1.2 ├── README.md ├── adapters │ ├── searchpress.php │ ├── travis.php │ └── wpcom-vip.php ├── class-es-wp-date-query.php ├── class-es-wp-meta-query.php ├── class-es-wp-query-shoehorn.php ├── class-es-wp-query-wrapper.php ├── class-es-wp-tax-query.php ├── es-wp-query.php ├── functions.php └── wpcom-helper.php ├── es-wp-query-0.1.3 ├── adapters │ ├── searchpress.php │ ├── travis.php │ └── wpcom-vip.php ├── class-es-wp-date-query.php ├── class-es-wp-meta-query.php ├── class-es-wp-query-shoehorn.php ├── class-es-wp-query-wrapper.php ├── class-es-wp-tax-query.php ├── es-wp-query.php ├── functions.php └── wpcom-helper.php ├── es-wp-query-0.1.4-beta ├── adapters │ ├── searchpress.php │ ├── travis.php │ └── wpcom-vip.php ├── class-es-wp-date-query.php ├── class-es-wp-meta-query.php ├── class-es-wp-query-shoehorn.php ├── class-es-wp-query-wrapper.php ├── class-es-wp-tax-query.php ├── es-wp-query.php ├── functions.php └── wpcom-helper.php ├── es-wp-query-0.2.0 ├── adapters │ ├── searchpress.php │ ├── travis.php │ └── wpcom-vip.php ├── class-es-wp-date-query.php ├── class-es-wp-meta-query.php ├── class-es-wp-query-shoehorn.php ├── class-es-wp-query-wrapper.php ├── class-es-wp-tax-query.php ├── es-wp-query.php ├── functions.php └── wpcom-helper.php ├── es-wp-query ├── adapters │ ├── searchpress.php │ ├── travis.php │ └── wpcom-vip.php ├── class-es-wp-date-query.php ├── class-es-wp-meta-query.php ├── class-es-wp-query-shoehorn.php ├── class-es-wp-query-wrapper.php ├── class-es-wp-tax-query.php ├── es-wp-query.php ├── functions.php └── wpcom-helper.php ├── expiring-posts ├── expiring-posts.php └── inc │ ├── css │ └── expiring-posts.css │ └── js │ └── expiring-posts.js ├── external-links-new-window └── external-links-new-window.php ├── external-permalinks-redux ├── external-permalinks-redux.php ├── readme.txt └── wpcom-helper.php ├── facebook-instant-articles-2.11 ├── LICENSE ├── README.md ├── class-instant-articles-post.php ├── class-instant-articles-publisher.php ├── compat.php ├── compat │ ├── class-instant-articles-co-authors-plus.php │ ├── class-instant-articles-google-analytics-for-wordpress.php │ ├── class-instant-articles-jetpack.php │ └── class-instant-articles-yoast-seo.php ├── css │ ├── instant-articles-meta-box.css │ ├── instant-articles-settings-wizard.css │ └── instant-articles-settings.css ├── embeds.php ├── facebook-instant-articles.php ├── feed-template.php ├── js │ ├── instant-articles-meta-box.js │ ├── instant-articles-option-ads.js │ ├── instant-articles-option-analytics.js │ ├── instant-articles-option-publishing.js │ └── instant-articles-settings.js ├── languages │ └── instant-articles.pot ├── meta-box │ ├── class-instant-articles-meta-box.php │ ├── meta-box-loader-template.php │ └── meta-box-template.php ├── readme.txt ├── rules-configuration.json ├── settings │ ├── class-instant-articles-option-ads.php │ ├── class-instant-articles-option-analytics.php │ ├── class-instant-articles-option-fb-app.php │ ├── class-instant-articles-option-fb-page.php │ ├── class-instant-articles-option-publishing.php │ ├── class-instant-articles-option-styles.php │ ├── class-instant-articles-option.php │ ├── class-instant-articles-settings-fb-page.php │ ├── class-instant-articles-settings-wizard.php │ ├── class-instant-articles-settings.php │ ├── template-settings-advanced.php │ ├── template-settings-info.php │ ├── template-settings-wizard.php │ └── template-settings.php ├── vendor │ ├── apache │ │ └── log4php │ │ │ ├── CHANGELOG │ │ │ ├── INSTALL │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README │ │ │ ├── apigen.neon │ │ │ ├── build.xml │ │ │ ├── composer.json │ │ │ ├── doap_log4php.rdf │ │ │ ├── package-config.php │ │ │ ├── package.php │ │ │ ├── phpdoc.xml │ │ │ ├── phpunit.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ ├── assembly │ │ │ └── src.xml │ │ │ ├── changes │ │ │ └── changes.xml │ │ │ ├── examples │ │ │ ├── php │ │ │ │ ├── appender_console.php │ │ │ │ ├── appender_dailyfile.php │ │ │ │ ├── appender_echo.php │ │ │ │ ├── appender_file.php │ │ │ │ ├── appender_firephp.php │ │ │ │ ├── appender_mail.php │ │ │ │ ├── appender_mailevent.php │ │ │ │ ├── appender_mongodb.php │ │ │ │ ├── appender_null.php │ │ │ │ ├── appender_pdo.php │ │ │ │ ├── appender_php.php │ │ │ │ ├── appender_rollingfile.php │ │ │ │ ├── appender_socket.php │ │ │ │ ├── appender_socket_server.php │ │ │ │ ├── appender_syslog.php │ │ │ │ ├── cache.php │ │ │ │ ├── configurator_basic.php │ │ │ │ ├── configurator_php.php │ │ │ │ ├── configurator_xml.php │ │ │ │ ├── filter_denyall.php │ │ │ │ ├── filter_levelmatch.php │ │ │ │ ├── filter_levelrange.php │ │ │ │ ├── filter_stringmatch.php │ │ │ │ ├── layout_html.php │ │ │ │ ├── layout_pattern.php │ │ │ │ ├── layout_simple.php │ │ │ │ ├── layout_ttcc.php │ │ │ │ ├── layout_xml.php │ │ │ │ ├── mdc.php │ │ │ │ ├── ndc.php │ │ │ │ ├── renderer_default.php │ │ │ │ ├── renderer_map.php │ │ │ │ └── simple.php │ │ │ └── resources │ │ │ │ ├── appender_console.properties │ │ │ │ ├── appender_dailyfile.properties │ │ │ │ ├── appender_echo.properties │ │ │ │ ├── appender_file.properties │ │ │ │ ├── appender_firephp.xml │ │ │ │ ├── appender_mail.properties │ │ │ │ ├── appender_mailevent.properties │ │ │ │ ├── appender_mongodb.xml │ │ │ │ ├── appender_null.properties │ │ │ │ ├── appender_pdo.properties │ │ │ │ ├── appender_php.properties │ │ │ │ ├── appender_rollingfile.properties │ │ │ │ ├── appender_socket.properties │ │ │ │ ├── appender_socket_server.properties │ │ │ │ ├── appender_syslog.properties │ │ │ │ ├── cache.properties │ │ │ │ ├── configurator_php.php │ │ │ │ ├── configurator_xml.xml │ │ │ │ ├── filter_denyall.xml │ │ │ │ ├── filter_levelmatch.xml │ │ │ │ ├── filter_levelrange.xml │ │ │ │ ├── filter_stringmatch.xml │ │ │ │ ├── layout_html.properties │ │ │ │ ├── layout_pattern.properties │ │ │ │ ├── layout_simple.properties │ │ │ │ ├── layout_ttcc.properties │ │ │ │ ├── layout_xml.properties │ │ │ │ ├── mdc.properties │ │ │ │ ├── ndc.properties │ │ │ │ ├── renderer_default.properties │ │ │ │ └── renderer_map.properties │ │ │ ├── main │ │ │ └── php │ │ │ │ ├── Logger.php │ │ │ │ ├── LoggerAppender.php │ │ │ │ ├── LoggerAppenderPool.php │ │ │ │ ├── LoggerAutoloader.php │ │ │ │ ├── LoggerConfigurable.php │ │ │ │ ├── LoggerConfigurator.php │ │ │ │ ├── LoggerException.php │ │ │ │ ├── LoggerFilter.php │ │ │ │ ├── LoggerHierarchy.php │ │ │ │ ├── LoggerLayout.php │ │ │ │ ├── LoggerLevel.php │ │ │ │ ├── LoggerLocationInfo.php │ │ │ │ ├── LoggerLoggingEvent.php │ │ │ │ ├── LoggerMDC.php │ │ │ │ ├── LoggerNDC.php │ │ │ │ ├── LoggerReflectionUtils.php │ │ │ │ ├── LoggerRoot.php │ │ │ │ ├── LoggerThrowableInformation.php │ │ │ │ ├── appenders │ │ │ │ ├── LoggerAppenderConsole.php │ │ │ │ ├── LoggerAppenderDailyFile.php │ │ │ │ ├── LoggerAppenderEcho.php │ │ │ │ ├── LoggerAppenderFile.php │ │ │ │ ├── LoggerAppenderFirePHP.php │ │ │ │ ├── LoggerAppenderMail.php │ │ │ │ ├── LoggerAppenderMailEvent.php │ │ │ │ ├── LoggerAppenderMongoDB.php │ │ │ │ ├── LoggerAppenderNull.php │ │ │ │ ├── LoggerAppenderPDO.php │ │ │ │ ├── LoggerAppenderPhp.php │ │ │ │ ├── LoggerAppenderRollingFile.php │ │ │ │ ├── LoggerAppenderSocket.php │ │ │ │ └── LoggerAppenderSyslog.php │ │ │ │ ├── configurators │ │ │ │ ├── LoggerConfigurationAdapter.php │ │ │ │ ├── LoggerConfigurationAdapterINI.php │ │ │ │ ├── LoggerConfigurationAdapterPHP.php │ │ │ │ ├── LoggerConfigurationAdapterXML.php │ │ │ │ └── LoggerConfiguratorDefault.php │ │ │ │ ├── filters │ │ │ │ ├── LoggerFilterDenyAll.php │ │ │ │ ├── LoggerFilterLevelMatch.php │ │ │ │ ├── LoggerFilterLevelRange.php │ │ │ │ └── LoggerFilterStringMatch.php │ │ │ │ ├── helpers │ │ │ │ ├── LoggerFormattingInfo.php │ │ │ │ ├── LoggerOptionConverter.php │ │ │ │ ├── LoggerPatternParser.php │ │ │ │ └── LoggerUtils.php │ │ │ │ ├── layouts │ │ │ │ ├── LoggerLayoutHtml.php │ │ │ │ ├── LoggerLayoutPattern.php │ │ │ │ ├── LoggerLayoutSerialized.php │ │ │ │ ├── LoggerLayoutSimple.php │ │ │ │ ├── LoggerLayoutTTCC.php │ │ │ │ └── LoggerLayoutXml.php │ │ │ │ ├── pattern │ │ │ │ ├── LoggerPatternConverter.php │ │ │ │ ├── LoggerPatternConverterClass.php │ │ │ │ ├── LoggerPatternConverterCookie.php │ │ │ │ ├── LoggerPatternConverterDate.php │ │ │ │ ├── LoggerPatternConverterEnvironment.php │ │ │ │ ├── LoggerPatternConverterFile.php │ │ │ │ ├── LoggerPatternConverterLevel.php │ │ │ │ ├── LoggerPatternConverterLine.php │ │ │ │ ├── LoggerPatternConverterLiteral.php │ │ │ │ ├── LoggerPatternConverterLocation.php │ │ │ │ ├── LoggerPatternConverterLogger.php │ │ │ │ ├── LoggerPatternConverterMDC.php │ │ │ │ ├── LoggerPatternConverterMessage.php │ │ │ │ ├── LoggerPatternConverterMethod.php │ │ │ │ ├── LoggerPatternConverterNDC.php │ │ │ │ ├── LoggerPatternConverterNewLine.php │ │ │ │ ├── LoggerPatternConverterProcess.php │ │ │ │ ├── LoggerPatternConverterRelative.php │ │ │ │ ├── LoggerPatternConverterRequest.php │ │ │ │ ├── LoggerPatternConverterServer.php │ │ │ │ ├── LoggerPatternConverterSession.php │ │ │ │ ├── LoggerPatternConverterSessionID.php │ │ │ │ ├── LoggerPatternConverterSuperglobal.php │ │ │ │ └── LoggerPatternConverterThrowable.php │ │ │ │ ├── renderers │ │ │ │ ├── LoggerRenderer.php │ │ │ │ ├── LoggerRendererDefault.php │ │ │ │ ├── LoggerRendererException.php │ │ │ │ └── LoggerRendererMap.php │ │ │ │ └── xml │ │ │ │ └── log4php.dtd │ │ │ ├── site │ │ │ ├── apt │ │ │ │ ├── contributingpatches.apt │ │ │ │ ├── download.apt │ │ │ │ ├── index.apt │ │ │ │ ├── privacy-policy.apt │ │ │ │ └── volunteering.apt │ │ │ ├── cse.xml │ │ │ ├── resources │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── site.css │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── prettify.js │ │ │ │ │ ├── prettify.min.js │ │ │ │ │ └── site.js │ │ │ ├── site.vm │ │ │ ├── site.xml │ │ │ └── xdoc │ │ │ │ ├── changelog.xml │ │ │ │ ├── docs │ │ │ │ ├── appenders.xml │ │ │ │ ├── appenders │ │ │ │ │ ├── console.xml │ │ │ │ │ ├── daily-file.xml │ │ │ │ │ ├── echo.xml │ │ │ │ │ ├── file.xml │ │ │ │ │ ├── firephp.xml │ │ │ │ │ ├── mail-event.xml │ │ │ │ │ ├── mail.xml │ │ │ │ │ ├── mongodb.xml │ │ │ │ │ ├── null.xml │ │ │ │ │ ├── pdo.xml │ │ │ │ │ ├── php.xml │ │ │ │ │ ├── rolling-file.xml │ │ │ │ │ ├── socket.xml │ │ │ │ │ └── syslog.xml │ │ │ │ ├── configuration.xml │ │ │ │ ├── filters.xml │ │ │ │ ├── introduction.xml │ │ │ │ ├── layouts.xml │ │ │ │ ├── layouts │ │ │ │ │ ├── html.xml │ │ │ │ │ ├── pattern.xml │ │ │ │ │ ├── serialized.xml │ │ │ │ │ ├── simple.xml │ │ │ │ │ ├── ttcc.xml │ │ │ │ │ └── xml.xml │ │ │ │ ├── loggers.xml │ │ │ │ └── renderers.xml │ │ │ │ ├── install.xml │ │ │ │ ├── privacy.xml │ │ │ │ └── quickstart.xml │ │ │ └── test │ │ │ ├── config │ │ │ └── phpunit_to_surefire.xslt │ │ │ ├── php │ │ │ ├── LoggerAppenderPoolTest.php │ │ │ ├── LoggerAppenderTest.php │ │ │ ├── LoggerConfiguratorTest.php │ │ │ ├── LoggerExceptionTest.php │ │ │ ├── LoggerFilterTest.php │ │ │ ├── LoggerHierarchyTest.php │ │ │ ├── LoggerLevelTest.php │ │ │ ├── LoggerLoggingEventTest.php │ │ │ ├── LoggerMDCTest.php │ │ │ ├── LoggerNDCTest.php │ │ │ ├── LoggerReflectionUtilsTest.php │ │ │ ├── LoggerRootTest.php │ │ │ ├── LoggerTest.php │ │ │ ├── LoggerTestHelper.php │ │ │ ├── LoggerThrowableInformationTest.php │ │ │ ├── README │ │ │ ├── appenders │ │ │ │ ├── LoggerAppenderConsoleTest.php │ │ │ │ ├── LoggerAppenderDailyFileTest.php │ │ │ │ ├── LoggerAppenderEchoTest.php │ │ │ │ ├── LoggerAppenderFileTest.php │ │ │ │ ├── LoggerAppenderFirephpTest.php │ │ │ │ ├── LoggerAppenderMailEventTest.php │ │ │ │ ├── LoggerAppenderMailTest.php │ │ │ │ ├── LoggerAppenderMongoDBTest.php │ │ │ │ ├── LoggerAppenderNullTest.php │ │ │ │ ├── LoggerAppenderPDOTest.php │ │ │ │ ├── LoggerAppenderPhpTest.php │ │ │ │ ├── LoggerAppenderRollingFileTest.php │ │ │ │ ├── LoggerAppenderSocketTest.php │ │ │ │ ├── LoggerAppenderSyslogTest.php │ │ │ │ └── socketServer.php │ │ │ ├── bootstrap.php │ │ │ ├── configurators │ │ │ │ ├── LoggerConfigurationAdapterINITest.php │ │ │ │ ├── LoggerConfigurationAdapterPHPTest.php │ │ │ │ └── LoggerConfigurationAdapterXMLTest.php │ │ │ ├── filters │ │ │ │ ├── LoggerFilterDenyAllTest.php │ │ │ │ ├── LoggerFilterLevelMatchTest.php │ │ │ │ ├── LoggerFilterLevelRangeTest.php │ │ │ │ └── LoggerFilterStringMatchTest.php │ │ │ ├── helpers │ │ │ │ ├── LoggerOptionConverterTest.php │ │ │ │ ├── LoggerPatternParserTest.php │ │ │ │ └── LoggerUtilsTest.php │ │ │ ├── layouts │ │ │ │ ├── LoggerLayoutHtmlTest.php │ │ │ │ ├── LoggerLayoutPatternTest.php │ │ │ │ ├── LoggerLayoutSerializedTest.php │ │ │ │ ├── LoggerLayoutSimpleTest.php │ │ │ │ ├── LoggerLayoutTTCCTest.php │ │ │ │ └── LoggerLayoutXmlTest.php │ │ │ ├── pattern │ │ │ │ └── LoggerPatternConverterTest.php │ │ │ └── renderers │ │ │ │ └── LoggerRendererMapTest.php │ │ │ └── resources │ │ │ └── configs │ │ │ ├── adapters │ │ │ ├── ini │ │ │ │ ├── config_invalid_appender_declaration_1.ini │ │ │ │ ├── config_invalid_appender_declaration_2.ini │ │ │ │ ├── config_invalid_syntax.ini │ │ │ │ ├── config_valid.ini │ │ │ │ └── values.ini │ │ │ ├── php │ │ │ │ ├── config_empty.php │ │ │ │ ├── config_not_an_array.php │ │ │ │ └── config_valid.php │ │ │ └── xml │ │ │ │ ├── config_duplicate_logger.xml │ │ │ │ ├── config_duplicate_renderer.xml │ │ │ │ ├── config_invalid_syntax.xml │ │ │ │ ├── config_valid.xml │ │ │ │ └── config_valid_underscore.xml │ │ │ ├── appenders │ │ │ ├── config_invalid_appender_class.xml │ │ │ ├── config_invalid_filter_class.xml │ │ │ ├── config_invalid_filter_parameters.xml │ │ │ ├── config_invalid_layout_class.xml │ │ │ ├── config_no_class.xml │ │ │ ├── config_no_layout_class.xml │ │ │ ├── config_not_existing_class.xml │ │ │ ├── config_not_existing_filter_class.xml │ │ │ └── config_not_existing_layout_class.xml │ │ │ ├── config.yml │ │ │ ├── config1.xml │ │ │ ├── loggers │ │ │ ├── config_invalid_additivity.xml │ │ │ └── config_not_existing_appenders.xml │ │ │ └── renderers │ │ │ ├── config_default_renderer.xml │ │ │ ├── config_invalid_rendering_class.xml │ │ │ ├── config_no_rendered_class.xml │ │ │ ├── config_no_rendering_class.xml │ │ │ └── config_not_existing_rendering_class.xml │ ├── autoload.php │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ ├── facebook │ │ ├── facebook-instant-articles-sdk-php │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── docs │ │ │ │ └── QuickStart.md │ │ │ ├── phpcs.xml │ │ │ ├── phpunit.xml │ │ │ ├── src │ │ │ │ └── Facebook │ │ │ │ │ └── InstantArticles │ │ │ │ │ ├── Client │ │ │ │ │ ├── Client.php │ │ │ │ │ ├── ClientException.php │ │ │ │ │ ├── Helper.php │ │ │ │ │ ├── InstantArticleStatus.php │ │ │ │ │ └── ServerMessage.php │ │ │ │ │ ├── Elements │ │ │ │ │ ├── Ad.php │ │ │ │ │ ├── Analytics.php │ │ │ │ │ ├── Anchor.php │ │ │ │ │ ├── AnimatedGIF.php │ │ │ │ │ ├── Audible.php │ │ │ │ │ ├── Audio.php │ │ │ │ │ ├── Author.php │ │ │ │ │ ├── Blockquote.php │ │ │ │ │ ├── Bold.php │ │ │ │ │ ├── Caption.php │ │ │ │ │ ├── Cite.php │ │ │ │ │ ├── Container.php │ │ │ │ │ ├── Div.php │ │ │ │ │ ├── Element.php │ │ │ │ │ ├── Footer.php │ │ │ │ │ ├── FormattedText.php │ │ │ │ │ ├── GeoTag.php │ │ │ │ │ ├── H1.php │ │ │ │ │ ├── H2.php │ │ │ │ │ ├── H3.php │ │ │ │ │ ├── Header.php │ │ │ │ │ ├── Image.php │ │ │ │ │ ├── InstantArticle.php │ │ │ │ │ ├── Interactive.php │ │ │ │ │ ├── Italic.php │ │ │ │ │ ├── LineBreak.php │ │ │ │ │ ├── ListElement.php │ │ │ │ │ ├── ListItem.php │ │ │ │ │ ├── Map.php │ │ │ │ │ ├── Paragraph.php │ │ │ │ │ ├── Pullquote.php │ │ │ │ │ ├── RelatedArticles.php │ │ │ │ │ ├── RelatedItem.php │ │ │ │ │ ├── Slideshow.php │ │ │ │ │ ├── SocialEmbed.php │ │ │ │ │ ├── Span.php │ │ │ │ │ ├── TextContainer.php │ │ │ │ │ ├── Time.php │ │ │ │ │ └── Video.php │ │ │ │ │ ├── Transformer │ │ │ │ │ ├── Getters │ │ │ │ │ │ ├── AbstractGetter.php │ │ │ │ │ │ ├── ChildrenGetter.php │ │ │ │ │ │ ├── ElementGetter.php │ │ │ │ │ │ ├── ExistsGetter.php │ │ │ │ │ │ ├── GetterFactory.php │ │ │ │ │ │ ├── IntegerGetter.php │ │ │ │ │ │ ├── NextSiblingGetter.php │ │ │ │ │ │ ├── StringGetter.php │ │ │ │ │ │ └── XpathGetter.php │ │ │ │ │ ├── Rules │ │ │ │ │ │ ├── AdRule.php │ │ │ │ │ │ ├── AnalyticsRule.php │ │ │ │ │ │ ├── AnchorRule.php │ │ │ │ │ │ ├── AudioRule.php │ │ │ │ │ │ ├── AuthorRule.php │ │ │ │ │ │ ├── BlockquoteRule.php │ │ │ │ │ │ ├── BoldRule.php │ │ │ │ │ │ ├── CaptionCreditRule.php │ │ │ │ │ │ ├── CaptionRule.php │ │ │ │ │ │ ├── ConfigurationSelectorRule.php │ │ │ │ │ │ ├── FooterRelatedArticlesRule.php │ │ │ │ │ │ ├── FooterRule.php │ │ │ │ │ │ ├── GeoTagRule.php │ │ │ │ │ │ ├── H1Rule.php │ │ │ │ │ │ ├── H2Rule.php │ │ │ │ │ │ ├── HeaderAdRule.php │ │ │ │ │ │ ├── HeaderImageRule.php │ │ │ │ │ │ ├── HeaderKickerRule.php │ │ │ │ │ │ ├── HeaderRule.php │ │ │ │ │ │ ├── HeaderSubTitleRule.php │ │ │ │ │ │ ├── HeaderTitleRule.php │ │ │ │ │ │ ├── IgnoreRule.php │ │ │ │ │ │ ├── ImageRule.php │ │ │ │ │ │ ├── InstantArticleRule.php │ │ │ │ │ │ ├── InteractiveRule.php │ │ │ │ │ │ ├── ItalicRule.php │ │ │ │ │ │ ├── LineBreakRule.php │ │ │ │ │ │ ├── ListElementRule.php │ │ │ │ │ │ ├── ListItemRule.php │ │ │ │ │ │ ├── MapRule.php │ │ │ │ │ │ ├── ParagraphFooterRule.php │ │ │ │ │ │ ├── ParagraphRule.php │ │ │ │ │ │ ├── PassThroughRule.php │ │ │ │ │ │ ├── PullquoteCiteRule.php │ │ │ │ │ │ ├── PullquoteRule.php │ │ │ │ │ │ ├── RelatedArticlesRule.php │ │ │ │ │ │ ├── RelatedItemRule.php │ │ │ │ │ │ ├── Rule.php │ │ │ │ │ │ ├── SlideshowImageRule.php │ │ │ │ │ │ ├── SlideshowRule.php │ │ │ │ │ │ ├── SocialEmbedRule.php │ │ │ │ │ │ ├── TextNodeRule.php │ │ │ │ │ │ ├── TimeRule.php │ │ │ │ │ │ └── VideoRule.php │ │ │ │ │ ├── Transformer.php │ │ │ │ │ └── Warnings │ │ │ │ │ │ ├── InvalidSelector.php │ │ │ │ │ │ ├── UnrecognizedElement.php │ │ │ │ │ │ ├── ValidatorWarning.php │ │ │ │ │ │ └── validator_warning_messages.ini │ │ │ │ │ └── Validators │ │ │ │ │ ├── InstantArticleValidator.php │ │ │ │ │ └── Type.php │ │ │ └── tests │ │ │ │ └── Facebook │ │ │ │ └── InstantArticles │ │ │ │ ├── Client │ │ │ │ ├── ClientExceptionTest.php │ │ │ │ ├── ClientTest.php │ │ │ │ └── HelperTest.php │ │ │ │ ├── Elements │ │ │ │ ├── AdTest.php │ │ │ │ ├── AnalyticsTest.php │ │ │ │ ├── AudioTest.php │ │ │ │ ├── AuthorTest.php │ │ │ │ ├── BlockquoteTest.php │ │ │ │ ├── CaptionTest.php │ │ │ │ ├── CiteTest.php │ │ │ │ ├── FooterTest.php │ │ │ │ ├── GeoTagTest.php │ │ │ │ ├── H1Test.php │ │ │ │ ├── H2Test.php │ │ │ │ ├── H3Test.php │ │ │ │ ├── HeaderTest.php │ │ │ │ ├── ImageTest.php │ │ │ │ ├── InstantArticleTest.php │ │ │ │ ├── InteractiveTest.php │ │ │ │ ├── ListElementTest.php │ │ │ │ ├── MapTest.php │ │ │ │ ├── ParagraphTest.php │ │ │ │ ├── PullquoteTest.php │ │ │ │ ├── RelatedArticlesTest.php │ │ │ │ ├── SlideshowTest.php │ │ │ │ ├── SocialEmbedTest.php │ │ │ │ ├── TimeTest.php │ │ │ │ ├── Validators │ │ │ │ │ ├── InstantArticleValidatorTest.php │ │ │ │ │ └── TypeTest.php │ │ │ │ └── VideoTest.php │ │ │ │ └── Transformer │ │ │ │ ├── CMS │ │ │ │ ├── WPTransformerTest.php │ │ │ │ ├── wp-ia.xml │ │ │ │ ├── wp-rules.json │ │ │ │ └── wp.html │ │ │ │ ├── Example │ │ │ │ ├── SimpleTransformerTest.php │ │ │ │ ├── simple-ia.xml │ │ │ │ ├── simple-rules.json │ │ │ │ └── simple.html │ │ │ │ ├── GeneratorTrait.php │ │ │ │ ├── Rules │ │ │ │ ├── AuthorRuleTest.php │ │ │ │ ├── PullquoteRuleTest.php │ │ │ │ └── RuleTest.php │ │ │ │ ├── TransformerTest.php │ │ │ │ ├── Warnings │ │ │ │ └── InvalidSelectorTest.php │ │ │ │ ├── instant-article-example-rules.json │ │ │ │ └── instant-article-example.html │ │ └── php-sdk-v4 │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── Facebook │ │ │ ├── Authentication │ │ │ ├── AccessToken.php │ │ │ ├── AccessTokenMetadata.php │ │ │ └── OAuth2Client.php │ │ │ ├── Exceptions │ │ │ ├── FacebookAuthenticationException.php │ │ │ ├── FacebookAuthorizationException.php │ │ │ ├── FacebookClientException.php │ │ │ ├── FacebookOtherException.php │ │ │ ├── FacebookResponseException.php │ │ │ ├── FacebookResumableUploadException.php │ │ │ ├── FacebookSDKException.php │ │ │ ├── FacebookServerException.php │ │ │ └── FacebookThrottleException.php │ │ │ ├── Facebook.php │ │ │ ├── FacebookApp.php │ │ │ ├── FacebookBatchRequest.php │ │ │ ├── FacebookBatchResponse.php │ │ │ ├── FacebookClient.php │ │ │ ├── FacebookRequest.php │ │ │ ├── FacebookResponse.php │ │ │ ├── FileUpload │ │ │ ├── FacebookFile.php │ │ │ ├── FacebookResumableUploader.php │ │ │ ├── FacebookTransferChunk.php │ │ │ ├── FacebookVideo.php │ │ │ └── Mimetypes.php │ │ │ ├── GraphNodes │ │ │ ├── Birthday.php │ │ │ ├── Collection.php │ │ │ ├── GraphAchievement.php │ │ │ ├── GraphAlbum.php │ │ │ ├── GraphApplication.php │ │ │ ├── GraphCoverPhoto.php │ │ │ ├── GraphEdge.php │ │ │ ├── GraphEvent.php │ │ │ ├── GraphGroup.php │ │ │ ├── GraphList.php │ │ │ ├── GraphLocation.php │ │ │ ├── GraphNode.php │ │ │ ├── GraphNodeFactory.php │ │ │ ├── GraphObject.php │ │ │ ├── GraphObjectFactory.php │ │ │ ├── GraphPage.php │ │ │ ├── GraphPicture.php │ │ │ ├── GraphSessionInfo.php │ │ │ └── GraphUser.php │ │ │ ├── Helpers │ │ │ ├── FacebookCanvasHelper.php │ │ │ ├── FacebookJavaScriptHelper.php │ │ │ ├── FacebookPageTabHelper.php │ │ │ ├── FacebookRedirectLoginHelper.php │ │ │ └── FacebookSignedRequestFromInputHelper.php │ │ │ ├── Http │ │ │ ├── GraphRawResponse.php │ │ │ ├── RequestBodyInterface.php │ │ │ ├── RequestBodyMultipart.php │ │ │ └── RequestBodyUrlEncoded.php │ │ │ ├── HttpClients │ │ │ ├── FacebookCurl.php │ │ │ ├── FacebookCurlHttpClient.php │ │ │ ├── FacebookGuzzleHttpClient.php │ │ │ ├── FacebookHttpClientInterface.php │ │ │ ├── FacebookStream.php │ │ │ ├── FacebookStreamHttpClient.php │ │ │ ├── HttpClientsFactory.php │ │ │ └── certs │ │ │ │ └── DigiCertHighAssuranceEVRootCA.pem │ │ │ ├── PersistentData │ │ │ ├── FacebookMemoryPersistentDataHandler.php │ │ │ ├── FacebookSessionPersistentDataHandler.php │ │ │ ├── PersistentDataFactory.php │ │ │ └── PersistentDataInterface.php │ │ │ ├── PseudoRandomString │ │ │ ├── McryptPseudoRandomStringGenerator.php │ │ │ ├── OpenSslPseudoRandomStringGenerator.php │ │ │ ├── PseudoRandomStringGeneratorFactory.php │ │ │ ├── PseudoRandomStringGeneratorInterface.php │ │ │ ├── PseudoRandomStringGeneratorTrait.php │ │ │ └── UrandomPseudoRandomStringGenerator.php │ │ │ ├── SignedRequest.php │ │ │ ├── Url │ │ │ ├── FacebookUrlDetectionHandler.php │ │ │ ├── FacebookUrlManipulator.php │ │ │ └── UrlDetectionInterface.php │ │ │ ├── autoload.php │ │ │ └── polyfills.php │ └── symfony │ │ └── css-selector │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CssSelector.php │ │ ├── CssSelectorConverter.php │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── ExpressionErrorException.php │ │ ├── InternalErrorException.php │ │ ├── ParseException.php │ │ └── SyntaxErrorException.php │ │ ├── LICENSE │ │ ├── Node │ │ ├── AbstractNode.php │ │ ├── AttributeNode.php │ │ ├── ClassNode.php │ │ ├── CombinedSelectorNode.php │ │ ├── ElementNode.php │ │ ├── FunctionNode.php │ │ ├── HashNode.php │ │ ├── NegationNode.php │ │ ├── NodeInterface.php │ │ ├── PseudoNode.php │ │ ├── SelectorNode.php │ │ └── Specificity.php │ │ ├── Parser │ │ ├── Handler │ │ │ ├── CommentHandler.php │ │ │ ├── HandlerInterface.php │ │ │ ├── HashHandler.php │ │ │ ├── IdentifierHandler.php │ │ │ ├── NumberHandler.php │ │ │ ├── StringHandler.php │ │ │ └── WhitespaceHandler.php │ │ ├── Parser.php │ │ ├── ParserInterface.php │ │ ├── Reader.php │ │ ├── Shortcut │ │ │ ├── ClassParser.php │ │ │ ├── ElementParser.php │ │ │ ├── EmptyStringParser.php │ │ │ └── HashParser.php │ │ ├── Token.php │ │ ├── TokenStream.php │ │ └── Tokenizer │ │ │ ├── Tokenizer.php │ │ │ ├── TokenizerEscaping.php │ │ │ └── TokenizerPatterns.php │ │ ├── README.md │ │ ├── Tests │ │ ├── CssSelectorConverterTest.php │ │ ├── CssSelectorTest.php │ │ ├── Node │ │ │ ├── AbstractNodeTest.php │ │ │ ├── AttributeNodeTest.php │ │ │ ├── ClassNodeTest.php │ │ │ ├── CombinedSelectorNodeTest.php │ │ │ ├── ElementNodeTest.php │ │ │ ├── FunctionNodeTest.php │ │ │ ├── HashNodeTest.php │ │ │ ├── NegationNodeTest.php │ │ │ ├── PseudoNodeTest.php │ │ │ ├── SelectorNodeTest.php │ │ │ └── SpecificityTest.php │ │ ├── Parser │ │ │ ├── Handler │ │ │ │ ├── AbstractHandlerTest.php │ │ │ │ ├── CommentHandlerTest.php │ │ │ │ ├── HashHandlerTest.php │ │ │ │ ├── IdentifierHandlerTest.php │ │ │ │ ├── NumberHandlerTest.php │ │ │ │ ├── StringHandlerTest.php │ │ │ │ └── WhitespaceHandlerTest.php │ │ │ ├── ParserTest.php │ │ │ ├── ReaderTest.php │ │ │ ├── Shortcut │ │ │ │ ├── ClassParserTest.php │ │ │ │ ├── ElementParserTest.php │ │ │ │ ├── EmptyStringParserTest.php │ │ │ │ └── HashParserTest.php │ │ │ └── TokenStreamTest.php │ │ └── XPath │ │ │ ├── Fixtures │ │ │ ├── ids.html │ │ │ ├── lang.xml │ │ │ └── shakespear.html │ │ │ └── TranslatorTest.php │ │ ├── XPath │ │ ├── Extension │ │ │ ├── AbstractExtension.php │ │ │ ├── AttributeMatchingExtension.php │ │ │ ├── CombinationExtension.php │ │ │ ├── ExtensionInterface.php │ │ │ ├── FunctionExtension.php │ │ │ ├── HtmlExtension.php │ │ │ ├── NodeExtension.php │ │ │ └── PseudoClassExtension.php │ │ ├── Translator.php │ │ ├── TranslatorInterface.php │ │ └── XPathExpr.php │ │ ├── composer.json │ │ └── phpunit.xml.dist └── wpcom-helper.php ├── facebook-instant-articles-3.0 ├── LICENSE ├── README.md ├── class-instant-articles-post.php ├── class-instant-articles-publisher.php ├── compat.php ├── compat │ ├── class-instant-articles-co-authors-plus.php │ ├── class-instant-articles-google-analytics-for-wordpress.php │ ├── class-instant-articles-jetpack.php │ └── class-instant-articles-yoast-seo.php ├── css │ ├── instant-articles-meta-box.css │ ├── instant-articles-settings-wizard.css │ └── instant-articles-settings.css ├── embeds.php ├── facebook-instant-articles.php ├── feed-template.php ├── js │ ├── instant-articles-meta-box.js │ ├── instant-articles-option-ads.js │ ├── instant-articles-option-analytics.js │ ├── instant-articles-option-publishing.js │ └── instant-articles-settings.js ├── languages │ └── instant-articles.pot ├── meta-box │ ├── class-instant-articles-meta-box.php │ ├── meta-box-loader-template.php │ └── meta-box-template.php ├── readme.txt ├── rules-configuration.json ├── settings │ ├── class-instant-articles-option-ads.php │ ├── class-instant-articles-option-analytics.php │ ├── class-instant-articles-option-fb-app.php │ ├── class-instant-articles-option-fb-page.php │ ├── class-instant-articles-option-publishing.php │ ├── class-instant-articles-option-styles.php │ ├── class-instant-articles-option.php │ ├── class-instant-articles-settings-fb-page.php │ ├── class-instant-articles-settings-wizard.php │ ├── class-instant-articles-settings.php │ ├── template-settings-advanced.php │ ├── template-settings-info.php │ ├── template-settings-wizard.php │ └── template-settings.php ├── vendor │ ├── apache │ │ └── log4php │ │ │ ├── CHANGELOG │ │ │ ├── INSTALL │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README │ │ │ ├── apigen.neon │ │ │ ├── build.xml │ │ │ ├── composer.json │ │ │ ├── doap_log4php.rdf │ │ │ ├── package-config.php │ │ │ ├── package.php │ │ │ ├── phpdoc.xml │ │ │ ├── phpunit.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ ├── assembly │ │ │ └── src.xml │ │ │ ├── changes │ │ │ └── changes.xml │ │ │ ├── examples │ │ │ ├── php │ │ │ │ ├── appender_console.php │ │ │ │ ├── appender_dailyfile.php │ │ │ │ ├── appender_echo.php │ │ │ │ ├── appender_file.php │ │ │ │ ├── appender_firephp.php │ │ │ │ ├── appender_mail.php │ │ │ │ ├── appender_mailevent.php │ │ │ │ ├── appender_mongodb.php │ │ │ │ ├── appender_null.php │ │ │ │ ├── appender_pdo.php │ │ │ │ ├── appender_php.php │ │ │ │ ├── appender_rollingfile.php │ │ │ │ ├── appender_socket.php │ │ │ │ ├── appender_socket_server.php │ │ │ │ ├── appender_syslog.php │ │ │ │ ├── cache.php │ │ │ │ ├── configurator_basic.php │ │ │ │ ├── configurator_php.php │ │ │ │ ├── configurator_xml.php │ │ │ │ ├── filter_denyall.php │ │ │ │ ├── filter_levelmatch.php │ │ │ │ ├── filter_levelrange.php │ │ │ │ ├── filter_stringmatch.php │ │ │ │ ├── layout_html.php │ │ │ │ ├── layout_pattern.php │ │ │ │ ├── layout_simple.php │ │ │ │ ├── layout_ttcc.php │ │ │ │ ├── layout_xml.php │ │ │ │ ├── mdc.php │ │ │ │ ├── ndc.php │ │ │ │ ├── renderer_default.php │ │ │ │ ├── renderer_map.php │ │ │ │ └── simple.php │ │ │ └── resources │ │ │ │ ├── appender_console.properties │ │ │ │ ├── appender_dailyfile.properties │ │ │ │ ├── appender_echo.properties │ │ │ │ ├── appender_file.properties │ │ │ │ ├── appender_firephp.xml │ │ │ │ ├── appender_mail.properties │ │ │ │ ├── appender_mailevent.properties │ │ │ │ ├── appender_mongodb.xml │ │ │ │ ├── appender_null.properties │ │ │ │ ├── appender_pdo.properties │ │ │ │ ├── appender_php.properties │ │ │ │ ├── appender_rollingfile.properties │ │ │ │ ├── appender_socket.properties │ │ │ │ ├── appender_socket_server.properties │ │ │ │ ├── appender_syslog.properties │ │ │ │ ├── cache.properties │ │ │ │ ├── configurator_php.php │ │ │ │ ├── configurator_xml.xml │ │ │ │ ├── filter_denyall.xml │ │ │ │ ├── filter_levelmatch.xml │ │ │ │ ├── filter_levelrange.xml │ │ │ │ ├── filter_stringmatch.xml │ │ │ │ ├── layout_html.properties │ │ │ │ ├── layout_pattern.properties │ │ │ │ ├── layout_simple.properties │ │ │ │ ├── layout_ttcc.properties │ │ │ │ ├── layout_xml.properties │ │ │ │ ├── mdc.properties │ │ │ │ ├── ndc.properties │ │ │ │ ├── renderer_default.properties │ │ │ │ └── renderer_map.properties │ │ │ ├── main │ │ │ └── php │ │ │ │ ├── Logger.php │ │ │ │ ├── LoggerAppender.php │ │ │ │ ├── LoggerAppenderPool.php │ │ │ │ ├── LoggerAutoloader.php │ │ │ │ ├── LoggerConfigurable.php │ │ │ │ ├── LoggerConfigurator.php │ │ │ │ ├── LoggerException.php │ │ │ │ ├── LoggerFilter.php │ │ │ │ ├── LoggerHierarchy.php │ │ │ │ ├── LoggerLayout.php │ │ │ │ ├── LoggerLevel.php │ │ │ │ ├── LoggerLocationInfo.php │ │ │ │ ├── LoggerLoggingEvent.php │ │ │ │ ├── LoggerMDC.php │ │ │ │ ├── LoggerNDC.php │ │ │ │ ├── LoggerReflectionUtils.php │ │ │ │ ├── LoggerRoot.php │ │ │ │ ├── LoggerThrowableInformation.php │ │ │ │ ├── appenders │ │ │ │ ├── LoggerAppenderConsole.php │ │ │ │ ├── LoggerAppenderDailyFile.php │ │ │ │ ├── LoggerAppenderEcho.php │ │ │ │ ├── LoggerAppenderFile.php │ │ │ │ ├── LoggerAppenderFirePHP.php │ │ │ │ ├── LoggerAppenderMail.php │ │ │ │ ├── LoggerAppenderMailEvent.php │ │ │ │ ├── LoggerAppenderMongoDB.php │ │ │ │ ├── LoggerAppenderNull.php │ │ │ │ ├── LoggerAppenderPDO.php │ │ │ │ ├── LoggerAppenderPhp.php │ │ │ │ ├── LoggerAppenderRollingFile.php │ │ │ │ ├── LoggerAppenderSocket.php │ │ │ │ └── LoggerAppenderSyslog.php │ │ │ │ ├── configurators │ │ │ │ ├── LoggerConfigurationAdapter.php │ │ │ │ ├── LoggerConfigurationAdapterINI.php │ │ │ │ ├── LoggerConfigurationAdapterPHP.php │ │ │ │ ├── LoggerConfigurationAdapterXML.php │ │ │ │ └── LoggerConfiguratorDefault.php │ │ │ │ ├── filters │ │ │ │ ├── LoggerFilterDenyAll.php │ │ │ │ ├── LoggerFilterLevelMatch.php │ │ │ │ ├── LoggerFilterLevelRange.php │ │ │ │ └── LoggerFilterStringMatch.php │ │ │ │ ├── helpers │ │ │ │ ├── LoggerFormattingInfo.php │ │ │ │ ├── LoggerOptionConverter.php │ │ │ │ ├── LoggerPatternParser.php │ │ │ │ └── LoggerUtils.php │ │ │ │ ├── layouts │ │ │ │ ├── LoggerLayoutHtml.php │ │ │ │ ├── LoggerLayoutPattern.php │ │ │ │ ├── LoggerLayoutSerialized.php │ │ │ │ ├── LoggerLayoutSimple.php │ │ │ │ ├── LoggerLayoutTTCC.php │ │ │ │ └── LoggerLayoutXml.php │ │ │ │ ├── pattern │ │ │ │ ├── LoggerPatternConverter.php │ │ │ │ ├── LoggerPatternConverterClass.php │ │ │ │ ├── LoggerPatternConverterCookie.php │ │ │ │ ├── LoggerPatternConverterDate.php │ │ │ │ ├── LoggerPatternConverterEnvironment.php │ │ │ │ ├── LoggerPatternConverterFile.php │ │ │ │ ├── LoggerPatternConverterLevel.php │ │ │ │ ├── LoggerPatternConverterLine.php │ │ │ │ ├── LoggerPatternConverterLiteral.php │ │ │ │ ├── LoggerPatternConverterLocation.php │ │ │ │ ├── LoggerPatternConverterLogger.php │ │ │ │ ├── LoggerPatternConverterMDC.php │ │ │ │ ├── LoggerPatternConverterMessage.php │ │ │ │ ├── LoggerPatternConverterMethod.php │ │ │ │ ├── LoggerPatternConverterNDC.php │ │ │ │ ├── LoggerPatternConverterNewLine.php │ │ │ │ ├── LoggerPatternConverterProcess.php │ │ │ │ ├── LoggerPatternConverterRelative.php │ │ │ │ ├── LoggerPatternConverterRequest.php │ │ │ │ ├── LoggerPatternConverterServer.php │ │ │ │ ├── LoggerPatternConverterSession.php │ │ │ │ ├── LoggerPatternConverterSessionID.php │ │ │ │ ├── LoggerPatternConverterSuperglobal.php │ │ │ │ └── LoggerPatternConverterThrowable.php │ │ │ │ ├── renderers │ │ │ │ ├── LoggerRenderer.php │ │ │ │ ├── LoggerRendererDefault.php │ │ │ │ ├── LoggerRendererException.php │ │ │ │ └── LoggerRendererMap.php │ │ │ │ └── xml │ │ │ │ └── log4php.dtd │ │ │ └── site │ │ │ ├── apt │ │ │ ├── contributingpatches.apt │ │ │ ├── download.apt │ │ │ ├── index.apt │ │ │ ├── privacy-policy.apt │ │ │ └── volunteering.apt │ │ │ ├── cse.xml │ │ │ ├── resources │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── site.css │ │ │ ├── images │ │ │ │ ├── collapsed.gif │ │ │ │ ├── expanded.gif │ │ │ │ └── logos │ │ │ │ │ ├── ls-logo.jpg │ │ │ │ │ └── maven-feather.png │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── prettify.js │ │ │ │ ├── prettify.min.js │ │ │ │ └── site.js │ │ │ ├── site.vm │ │ │ ├── site.xml │ │ │ └── xdoc │ │ │ ├── changelog.xml │ │ │ ├── docs │ │ │ ├── appenders.xml │ │ │ ├── appenders │ │ │ │ ├── console.xml │ │ │ │ ├── daily-file.xml │ │ │ │ ├── echo.xml │ │ │ │ ├── file.xml │ │ │ │ ├── firephp.xml │ │ │ │ ├── mail-event.xml │ │ │ │ ├── mail.xml │ │ │ │ ├── mongodb.xml │ │ │ │ ├── null.xml │ │ │ │ ├── pdo.xml │ │ │ │ ├── php.xml │ │ │ │ ├── rolling-file.xml │ │ │ │ ├── socket.xml │ │ │ │ └── syslog.xml │ │ │ ├── configuration.xml │ │ │ ├── filters.xml │ │ │ ├── introduction.xml │ │ │ ├── layouts.xml │ │ │ ├── layouts │ │ │ │ ├── html.xml │ │ │ │ ├── pattern.xml │ │ │ │ ├── serialized.xml │ │ │ │ ├── simple.xml │ │ │ │ ├── ttcc.xml │ │ │ │ └── xml.xml │ │ │ ├── loggers.xml │ │ │ └── renderers.xml │ │ │ ├── install.xml │ │ │ ├── privacy.xml │ │ │ └── quickstart.xml │ ├── autoload.php │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ ├── facebook │ │ ├── facebook-instant-articles-sdk-php │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── docs │ │ │ │ └── QuickStart.md │ │ │ ├── phpcs.xml │ │ │ ├── phpunit.xml │ │ │ ├── src │ │ │ │ └── Facebook │ │ │ │ │ └── InstantArticles │ │ │ │ │ ├── Client │ │ │ │ │ ├── Client.php │ │ │ │ │ ├── ClientException.php │ │ │ │ │ ├── Helper.php │ │ │ │ │ ├── InstantArticleStatus.php │ │ │ │ │ └── ServerMessage.php │ │ │ │ │ ├── Elements │ │ │ │ │ ├── Ad.php │ │ │ │ │ ├── Analytics.php │ │ │ │ │ ├── Anchor.php │ │ │ │ │ ├── AnimatedGIF.php │ │ │ │ │ ├── Audible.php │ │ │ │ │ ├── Audio.php │ │ │ │ │ ├── Author.php │ │ │ │ │ ├── Blockquote.php │ │ │ │ │ ├── Bold.php │ │ │ │ │ ├── Caption.php │ │ │ │ │ ├── Cite.php │ │ │ │ │ ├── Container.php │ │ │ │ │ ├── Div.php │ │ │ │ │ ├── Element.php │ │ │ │ │ ├── ElementWithHTML.php │ │ │ │ │ ├── Footer.php │ │ │ │ │ ├── FormattedText.php │ │ │ │ │ ├── GeoTag.php │ │ │ │ │ ├── H1.php │ │ │ │ │ ├── H2.php │ │ │ │ │ ├── H3.php │ │ │ │ │ ├── Header.php │ │ │ │ │ ├── Image.php │ │ │ │ │ ├── InstantArticle.php │ │ │ │ │ ├── InstantArticleInterface.php │ │ │ │ │ ├── Interactive.php │ │ │ │ │ ├── Italic.php │ │ │ │ │ ├── LineBreak.php │ │ │ │ │ ├── ListElement.php │ │ │ │ │ ├── ListItem.php │ │ │ │ │ ├── Map.php │ │ │ │ │ ├── Paragraph.php │ │ │ │ │ ├── Pullquote.php │ │ │ │ │ ├── RelatedArticles.php │ │ │ │ │ ├── RelatedItem.php │ │ │ │ │ ├── Slideshow.php │ │ │ │ │ ├── SocialEmbed.php │ │ │ │ │ ├── Span.php │ │ │ │ │ ├── Sponsor.php │ │ │ │ │ ├── TextContainer.php │ │ │ │ │ ├── Time.php │ │ │ │ │ └── Video.php │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Parser.php │ │ │ │ │ └── instant-articles-rules.json │ │ │ │ │ ├── Transformer │ │ │ │ │ ├── Getters │ │ │ │ │ │ ├── AbstractGetter.php │ │ │ │ │ │ ├── ChildrenGetter.php │ │ │ │ │ │ ├── ElementGetter.php │ │ │ │ │ │ ├── ExistsGetter.php │ │ │ │ │ │ ├── GetterFactory.php │ │ │ │ │ │ ├── IntegerGetter.php │ │ │ │ │ │ ├── NextSiblingGetter.php │ │ │ │ │ │ ├── StringGetter.php │ │ │ │ │ │ └── XpathGetter.php │ │ │ │ │ ├── Rules │ │ │ │ │ │ ├── AdRule.php │ │ │ │ │ │ ├── AnalyticsRule.php │ │ │ │ │ │ ├── AnchorRule.php │ │ │ │ │ │ ├── AudioRule.php │ │ │ │ │ │ ├── AuthorRule.php │ │ │ │ │ │ ├── BlockquoteRule.php │ │ │ │ │ │ ├── BoldRule.php │ │ │ │ │ │ ├── CaptionCreditRule.php │ │ │ │ │ │ ├── CaptionRule.php │ │ │ │ │ │ ├── ConfigurationSelectorRule.php │ │ │ │ │ │ ├── FooterRelatedArticlesRule.php │ │ │ │ │ │ ├── FooterRule.php │ │ │ │ │ │ ├── GeoTagRule.php │ │ │ │ │ │ ├── H1Rule.php │ │ │ │ │ │ ├── H2Rule.php │ │ │ │ │ │ ├── HeaderAdRule.php │ │ │ │ │ │ ├── HeaderImageRule.php │ │ │ │ │ │ ├── HeaderKickerRule.php │ │ │ │ │ │ ├── HeaderRule.php │ │ │ │ │ │ ├── HeaderSubTitleRule.php │ │ │ │ │ │ ├── HeaderTitleRule.php │ │ │ │ │ │ ├── IgnoreRule.php │ │ │ │ │ │ ├── ImageInsideParagraphRule.php │ │ │ │ │ │ ├── ImageRule.php │ │ │ │ │ │ ├── InstantArticleRule.php │ │ │ │ │ │ ├── InteractiveRule.php │ │ │ │ │ │ ├── ItalicRule.php │ │ │ │ │ │ ├── LineBreakRule.php │ │ │ │ │ │ ├── ListElementRule.php │ │ │ │ │ │ ├── ListItemRule.php │ │ │ │ │ │ ├── MapRule.php │ │ │ │ │ │ ├── ParagraphFooterRule.php │ │ │ │ │ │ ├── ParagraphRule.php │ │ │ │ │ │ ├── PassThroughRule.php │ │ │ │ │ │ ├── PullquoteCiteRule.php │ │ │ │ │ │ ├── PullquoteRule.php │ │ │ │ │ │ ├── RelatedArticlesRule.php │ │ │ │ │ │ ├── RelatedItemRule.php │ │ │ │ │ │ ├── Rule.php │ │ │ │ │ │ ├── SlideshowImageRule.php │ │ │ │ │ │ ├── SlideshowRule.php │ │ │ │ │ │ ├── SocialEmbedRule.php │ │ │ │ │ │ ├── SponsorRule.php │ │ │ │ │ │ ├── TextNodeRule.php │ │ │ │ │ │ ├── TimeRule.php │ │ │ │ │ │ └── VideoRule.php │ │ │ │ │ ├── Transformer.php │ │ │ │ │ └── Warnings │ │ │ │ │ │ ├── DeprecatedRuleWarning.php │ │ │ │ │ │ ├── InvalidSelector.php │ │ │ │ │ │ ├── NoRootInstantArticleFoundWarning.php │ │ │ │ │ │ ├── UnrecognizedElement.php │ │ │ │ │ │ ├── ValidatorWarning.php │ │ │ │ │ │ └── validator_warning_messages.ini │ │ │ │ │ └── Validators │ │ │ │ │ ├── InstantArticleValidator.php │ │ │ │ │ └── Type.php │ │ │ └── tests │ │ │ │ └── Facebook │ │ │ │ └── InstantArticles │ │ │ │ ├── Client │ │ │ │ ├── ClientExceptionTest.php │ │ │ │ ├── ClientTest.php │ │ │ │ └── HelperTest.php │ │ │ │ ├── Elements │ │ │ │ ├── AdTest.php │ │ │ │ ├── AnalyticsTest.php │ │ │ │ ├── AudioTest.php │ │ │ │ ├── AuthorTest.php │ │ │ │ ├── BlockquoteTest.php │ │ │ │ ├── CaptionTest.php │ │ │ │ ├── CiteTest.php │ │ │ │ ├── FooterTest.php │ │ │ │ ├── GeoTagTest.php │ │ │ │ ├── H1Test.php │ │ │ │ ├── H2Test.php │ │ │ │ ├── H3Test.php │ │ │ │ ├── HeaderTest.php │ │ │ │ ├── ImageTest.php │ │ │ │ ├── InstantArticleTest.php │ │ │ │ ├── InteractiveTest.php │ │ │ │ ├── ListElementTest.php │ │ │ │ ├── MapTest.php │ │ │ │ ├── ParagraphTest.php │ │ │ │ ├── PullquoteTest.php │ │ │ │ ├── RelatedArticlesTest.php │ │ │ │ ├── SlideshowTest.php │ │ │ │ ├── SocialEmbedTest.php │ │ │ │ ├── SponsorTest.php │ │ │ │ ├── TimeTest.php │ │ │ │ ├── Validators │ │ │ │ │ ├── InstantArticleValidatorTest.php │ │ │ │ │ └── TypeTest.php │ │ │ │ └── VideoTest.php │ │ │ │ ├── Parser │ │ │ │ ├── ParserTest.php │ │ │ │ └── instant-article-example.html │ │ │ │ └── Transformer │ │ │ │ ├── CMS │ │ │ │ ├── WPTransformerTest.php │ │ │ │ ├── wp-ia.xml │ │ │ │ ├── wp-rules.json │ │ │ │ └── wp.html │ │ │ │ ├── Example │ │ │ │ ├── SimpleTransformerTest.php │ │ │ │ ├── simple-ia.html │ │ │ │ ├── simple-rules.json │ │ │ │ └── simple.html │ │ │ │ ├── GeneratorTrait.php │ │ │ │ ├── Rules │ │ │ │ ├── AuthorRuleTest.php │ │ │ │ ├── PullquoteRuleTest.php │ │ │ │ └── RuleTest.php │ │ │ │ ├── TransformerTest.php │ │ │ │ ├── Warnings │ │ │ │ └── InvalidSelectorTest.php │ │ │ │ ├── instant-article-example.html │ │ │ │ └── wp-rules.json │ │ └── php-sdk-v4 │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── Facebook │ │ │ ├── Authentication │ │ │ ├── AccessToken.php │ │ │ ├── AccessTokenMetadata.php │ │ │ └── OAuth2Client.php │ │ │ ├── Exceptions │ │ │ ├── FacebookAuthenticationException.php │ │ │ ├── FacebookAuthorizationException.php │ │ │ ├── FacebookClientException.php │ │ │ ├── FacebookOtherException.php │ │ │ ├── FacebookResponseException.php │ │ │ ├── FacebookResumableUploadException.php │ │ │ ├── FacebookSDKException.php │ │ │ ├── FacebookServerException.php │ │ │ └── FacebookThrottleException.php │ │ │ ├── Facebook.php │ │ │ ├── FacebookApp.php │ │ │ ├── FacebookBatchRequest.php │ │ │ ├── FacebookBatchResponse.php │ │ │ ├── FacebookClient.php │ │ │ ├── FacebookRequest.php │ │ │ ├── FacebookResponse.php │ │ │ ├── FileUpload │ │ │ ├── FacebookFile.php │ │ │ ├── FacebookResumableUploader.php │ │ │ ├── FacebookTransferChunk.php │ │ │ ├── FacebookVideo.php │ │ │ └── Mimetypes.php │ │ │ ├── GraphNodes │ │ │ ├── Birthday.php │ │ │ ├── Collection.php │ │ │ ├── GraphAchievement.php │ │ │ ├── GraphAlbum.php │ │ │ ├── GraphApplication.php │ │ │ ├── GraphCoverPhoto.php │ │ │ ├── GraphEdge.php │ │ │ ├── GraphEvent.php │ │ │ ├── GraphGroup.php │ │ │ ├── GraphList.php │ │ │ ├── GraphLocation.php │ │ │ ├── GraphNode.php │ │ │ ├── GraphNodeFactory.php │ │ │ ├── GraphObject.php │ │ │ ├── GraphObjectFactory.php │ │ │ ├── GraphPage.php │ │ │ ├── GraphPicture.php │ │ │ ├── GraphSessionInfo.php │ │ │ └── GraphUser.php │ │ │ ├── Helpers │ │ │ ├── FacebookCanvasHelper.php │ │ │ ├── FacebookJavaScriptHelper.php │ │ │ ├── FacebookPageTabHelper.php │ │ │ ├── FacebookRedirectLoginHelper.php │ │ │ └── FacebookSignedRequestFromInputHelper.php │ │ │ ├── Http │ │ │ ├── GraphRawResponse.php │ │ │ ├── RequestBodyInterface.php │ │ │ ├── RequestBodyMultipart.php │ │ │ └── RequestBodyUrlEncoded.php │ │ │ ├── HttpClients │ │ │ ├── FacebookCurl.php │ │ │ ├── FacebookCurlHttpClient.php │ │ │ ├── FacebookGuzzleHttpClient.php │ │ │ ├── FacebookHttpClientInterface.php │ │ │ ├── FacebookStream.php │ │ │ ├── FacebookStreamHttpClient.php │ │ │ ├── HttpClientsFactory.php │ │ │ └── certs │ │ │ │ └── DigiCertHighAssuranceEVRootCA.pem │ │ │ ├── PersistentData │ │ │ ├── FacebookMemoryPersistentDataHandler.php │ │ │ ├── FacebookSessionPersistentDataHandler.php │ │ │ ├── PersistentDataFactory.php │ │ │ └── PersistentDataInterface.php │ │ │ ├── PseudoRandomString │ │ │ ├── McryptPseudoRandomStringGenerator.php │ │ │ ├── OpenSslPseudoRandomStringGenerator.php │ │ │ ├── PseudoRandomStringGeneratorFactory.php │ │ │ ├── PseudoRandomStringGeneratorInterface.php │ │ │ ├── PseudoRandomStringGeneratorTrait.php │ │ │ └── UrandomPseudoRandomStringGenerator.php │ │ │ ├── SignedRequest.php │ │ │ ├── Url │ │ │ ├── FacebookUrlDetectionHandler.php │ │ │ ├── FacebookUrlManipulator.php │ │ │ └── UrlDetectionInterface.php │ │ │ ├── autoload.php │ │ │ └── polyfills.php │ └── symfony │ │ └── css-selector │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CssSelector.php │ │ ├── CssSelectorConverter.php │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── ExpressionErrorException.php │ │ ├── InternalErrorException.php │ │ ├── ParseException.php │ │ └── SyntaxErrorException.php │ │ ├── LICENSE │ │ ├── Node │ │ ├── AbstractNode.php │ │ ├── AttributeNode.php │ │ ├── ClassNode.php │ │ ├── CombinedSelectorNode.php │ │ ├── ElementNode.php │ │ ├── FunctionNode.php │ │ ├── HashNode.php │ │ ├── NegationNode.php │ │ ├── NodeInterface.php │ │ ├── PseudoNode.php │ │ ├── SelectorNode.php │ │ └── Specificity.php │ │ ├── Parser │ │ ├── Handler │ │ │ ├── CommentHandler.php │ │ │ ├── HandlerInterface.php │ │ │ ├── HashHandler.php │ │ │ ├── IdentifierHandler.php │ │ │ ├── NumberHandler.php │ │ │ ├── StringHandler.php │ │ │ └── WhitespaceHandler.php │ │ ├── Parser.php │ │ ├── ParserInterface.php │ │ ├── Reader.php │ │ ├── Shortcut │ │ │ ├── ClassParser.php │ │ │ ├── ElementParser.php │ │ │ ├── EmptyStringParser.php │ │ │ └── HashParser.php │ │ ├── Token.php │ │ ├── TokenStream.php │ │ └── Tokenizer │ │ │ ├── Tokenizer.php │ │ │ ├── TokenizerEscaping.php │ │ │ └── TokenizerPatterns.php │ │ ├── README.md │ │ ├── Tests │ │ ├── CssSelectorConverterTest.php │ │ ├── CssSelectorTest.php │ │ ├── Node │ │ │ ├── AbstractNodeTest.php │ │ │ ├── AttributeNodeTest.php │ │ │ ├── ClassNodeTest.php │ │ │ ├── CombinedSelectorNodeTest.php │ │ │ ├── ElementNodeTest.php │ │ │ ├── FunctionNodeTest.php │ │ │ ├── HashNodeTest.php │ │ │ ├── NegationNodeTest.php │ │ │ ├── PseudoNodeTest.php │ │ │ ├── SelectorNodeTest.php │ │ │ └── SpecificityTest.php │ │ ├── Parser │ │ │ ├── Handler │ │ │ │ ├── AbstractHandlerTest.php │ │ │ │ ├── CommentHandlerTest.php │ │ │ │ ├── HashHandlerTest.php │ │ │ │ ├── IdentifierHandlerTest.php │ │ │ │ ├── NumberHandlerTest.php │ │ │ │ ├── StringHandlerTest.php │ │ │ │ └── WhitespaceHandlerTest.php │ │ │ ├── ParserTest.php │ │ │ ├── ReaderTest.php │ │ │ ├── Shortcut │ │ │ │ ├── ClassParserTest.php │ │ │ │ ├── ElementParserTest.php │ │ │ │ ├── EmptyStringParserTest.php │ │ │ │ └── HashParserTest.php │ │ │ └── TokenStreamTest.php │ │ └── XPath │ │ │ ├── Fixtures │ │ │ ├── ids.html │ │ │ ├── lang.xml │ │ │ └── shakespear.html │ │ │ └── TranslatorTest.php │ │ ├── XPath │ │ ├── Extension │ │ │ ├── AbstractExtension.php │ │ │ ├── AttributeMatchingExtension.php │ │ │ ├── CombinationExtension.php │ │ │ ├── ExtensionInterface.php │ │ │ ├── FunctionExtension.php │ │ │ ├── HtmlExtension.php │ │ │ ├── NodeExtension.php │ │ │ └── PseudoClassExtension.php │ │ ├── Translator.php │ │ ├── TranslatorInterface.php │ │ └── XPathExpr.php │ │ ├── composer.json │ │ └── phpunit.xml.dist └── wpcom-helper.php ├── facebook-instant-articles-3.1 ├── LICENSE ├── README.md ├── class-instant-articles-post.php ├── class-instant-articles-publisher.php ├── compat.php ├── compat │ ├── class-instant-articles-co-authors-plus.php │ ├── class-instant-articles-get-the-image.php │ ├── class-instant-articles-google-analytics-for-wordpress.php │ ├── class-instant-articles-jetpack.php │ ├── class-instant-articles-yoast-seo.php │ ├── get-the-image-rules-configuration.json │ └── jetpack-rules-configuration.json ├── css │ ├── instant-articles-meta-box.css │ ├── instant-articles-settings-wizard.css │ ├── instant-articles-settings.css │ └── instant-articles-wizard.css ├── embeds.php ├── facebook-instant-articles.php ├── feed-template.php ├── js │ ├── instant-articles-meta-box.js │ ├── instant-articles-option-ads.js │ ├── instant-articles-option-analytics.js │ ├── instant-articles-option-publishing.js │ ├── instant-articles-settings.js │ └── instant-articles-wizard.js ├── languages │ └── instant-articles.pot ├── meta-box │ ├── class-instant-articles-meta-box.php │ ├── meta-box-loader-template.php │ └── meta-box-template.php ├── readme.txt ├── rules-configuration.json ├── settings │ ├── class-instant-articles-option-ads.php │ ├── class-instant-articles-option-analytics.php │ ├── class-instant-articles-option-fb-app.php │ ├── class-instant-articles-option-fb-page.php │ ├── class-instant-articles-option-publishing.php │ ├── class-instant-articles-option-styles.php │ ├── class-instant-articles-option.php │ ├── class-instant-articles-settings-fb-page.php │ ├── class-instant-articles-settings-wizard.php │ ├── class-instant-articles-settings.php │ ├── template-settings-advanced.php │ ├── template-settings-info.php │ ├── template-settings-wizard.php │ └── template-settings.php ├── vendor │ ├── apache │ │ └── log4php │ │ │ ├── CHANGELOG │ │ │ ├── INSTALL │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README │ │ │ ├── apigen.neon │ │ │ ├── build.xml │ │ │ ├── composer.json │ │ │ ├── doap_log4php.rdf │ │ │ ├── package-config.php │ │ │ ├── package.php │ │ │ ├── phpdoc.xml │ │ │ ├── phpunit.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ ├── assembly │ │ │ └── src.xml │ │ │ ├── changes │ │ │ └── changes.xml │ │ │ ├── examples │ │ │ ├── php │ │ │ │ ├── appender_console.php │ │ │ │ ├── appender_dailyfile.php │ │ │ │ ├── appender_echo.php │ │ │ │ ├── appender_file.php │ │ │ │ ├── appender_firephp.php │ │ │ │ ├── appender_mail.php │ │ │ │ ├── appender_mailevent.php │ │ │ │ ├── appender_mongodb.php │ │ │ │ ├── appender_null.php │ │ │ │ ├── appender_pdo.php │ │ │ │ ├── appender_php.php │ │ │ │ ├── appender_rollingfile.php │ │ │ │ ├── appender_socket.php │ │ │ │ ├── appender_socket_server.php │ │ │ │ ├── appender_syslog.php │ │ │ │ ├── cache.php │ │ │ │ ├── configurator_basic.php │ │ │ │ ├── configurator_php.php │ │ │ │ ├── configurator_xml.php │ │ │ │ ├── filter_denyall.php │ │ │ │ ├── filter_levelmatch.php │ │ │ │ ├── filter_levelrange.php │ │ │ │ ├── filter_stringmatch.php │ │ │ │ ├── layout_html.php │ │ │ │ ├── layout_pattern.php │ │ │ │ ├── layout_simple.php │ │ │ │ ├── layout_ttcc.php │ │ │ │ ├── layout_xml.php │ │ │ │ ├── mdc.php │ │ │ │ ├── ndc.php │ │ │ │ ├── renderer_default.php │ │ │ │ ├── renderer_map.php │ │ │ │ └── simple.php │ │ │ └── resources │ │ │ │ ├── appender_console.properties │ │ │ │ ├── appender_dailyfile.properties │ │ │ │ ├── appender_echo.properties │ │ │ │ ├── appender_file.properties │ │ │ │ ├── appender_firephp.xml │ │ │ │ ├── appender_mail.properties │ │ │ │ ├── appender_mailevent.properties │ │ │ │ ├── appender_mongodb.xml │ │ │ │ ├── appender_null.properties │ │ │ │ ├── appender_pdo.properties │ │ │ │ ├── appender_php.properties │ │ │ │ ├── appender_rollingfile.properties │ │ │ │ ├── appender_socket.properties │ │ │ │ ├── appender_socket_server.properties │ │ │ │ ├── appender_syslog.properties │ │ │ │ ├── cache.properties │ │ │ │ ├── configurator_php.php │ │ │ │ ├── configurator_xml.xml │ │ │ │ ├── filter_denyall.xml │ │ │ │ ├── filter_levelmatch.xml │ │ │ │ ├── filter_levelrange.xml │ │ │ │ ├── filter_stringmatch.xml │ │ │ │ ├── layout_html.properties │ │ │ │ ├── layout_pattern.properties │ │ │ │ ├── layout_simple.properties │ │ │ │ ├── layout_ttcc.properties │ │ │ │ ├── layout_xml.properties │ │ │ │ ├── mdc.properties │ │ │ │ ├── ndc.properties │ │ │ │ ├── renderer_default.properties │ │ │ │ └── renderer_map.properties │ │ │ ├── main │ │ │ └── php │ │ │ │ ├── Logger.php │ │ │ │ ├── LoggerAppender.php │ │ │ │ ├── LoggerAppenderPool.php │ │ │ │ ├── LoggerAutoloader.php │ │ │ │ ├── LoggerConfigurable.php │ │ │ │ ├── LoggerConfigurator.php │ │ │ │ ├── LoggerException.php │ │ │ │ ├── LoggerFilter.php │ │ │ │ ├── LoggerHierarchy.php │ │ │ │ ├── LoggerLayout.php │ │ │ │ ├── LoggerLevel.php │ │ │ │ ├── LoggerLocationInfo.php │ │ │ │ ├── LoggerLoggingEvent.php │ │ │ │ ├── LoggerMDC.php │ │ │ │ ├── LoggerNDC.php │ │ │ │ ├── LoggerReflectionUtils.php │ │ │ │ ├── LoggerRoot.php │ │ │ │ ├── LoggerThrowableInformation.php │ │ │ │ ├── appenders │ │ │ │ ├── LoggerAppenderConsole.php │ │ │ │ ├── LoggerAppenderDailyFile.php │ │ │ │ ├── LoggerAppenderEcho.php │ │ │ │ ├── LoggerAppenderFile.php │ │ │ │ ├── LoggerAppenderFirePHP.php │ │ │ │ ├── LoggerAppenderMail.php │ │ │ │ ├── LoggerAppenderMailEvent.php │ │ │ │ ├── LoggerAppenderMongoDB.php │ │ │ │ ├── LoggerAppenderNull.php │ │ │ │ ├── LoggerAppenderPDO.php │ │ │ │ ├── LoggerAppenderPhp.php │ │ │ │ ├── LoggerAppenderRollingFile.php │ │ │ │ ├── LoggerAppenderSocket.php │ │ │ │ └── LoggerAppenderSyslog.php │ │ │ │ ├── configurators │ │ │ │ ├── LoggerConfigurationAdapter.php │ │ │ │ ├── LoggerConfigurationAdapterINI.php │ │ │ │ ├── LoggerConfigurationAdapterPHP.php │ │ │ │ ├── LoggerConfigurationAdapterXML.php │ │ │ │ └── LoggerConfiguratorDefault.php │ │ │ │ ├── filters │ │ │ │ ├── LoggerFilterDenyAll.php │ │ │ │ ├── LoggerFilterLevelMatch.php │ │ │ │ ├── LoggerFilterLevelRange.php │ │ │ │ └── LoggerFilterStringMatch.php │ │ │ │ ├── helpers │ │ │ │ ├── LoggerFormattingInfo.php │ │ │ │ ├── LoggerOptionConverter.php │ │ │ │ ├── LoggerPatternParser.php │ │ │ │ └── LoggerUtils.php │ │ │ │ ├── layouts │ │ │ │ ├── LoggerLayoutHtml.php │ │ │ │ ├── LoggerLayoutPattern.php │ │ │ │ ├── LoggerLayoutSerialized.php │ │ │ │ ├── LoggerLayoutSimple.php │ │ │ │ ├── LoggerLayoutTTCC.php │ │ │ │ └── LoggerLayoutXml.php │ │ │ │ ├── pattern │ │ │ │ ├── LoggerPatternConverter.php │ │ │ │ ├── LoggerPatternConverterClass.php │ │ │ │ ├── LoggerPatternConverterCookie.php │ │ │ │ ├── LoggerPatternConverterDate.php │ │ │ │ ├── LoggerPatternConverterEnvironment.php │ │ │ │ ├── LoggerPatternConverterFile.php │ │ │ │ ├── LoggerPatternConverterLevel.php │ │ │ │ ├── LoggerPatternConverterLine.php │ │ │ │ ├── LoggerPatternConverterLiteral.php │ │ │ │ ├── LoggerPatternConverterLocation.php │ │ │ │ ├── LoggerPatternConverterLogger.php │ │ │ │ ├── LoggerPatternConverterMDC.php │ │ │ │ ├── LoggerPatternConverterMessage.php │ │ │ │ ├── LoggerPatternConverterMethod.php │ │ │ │ ├── LoggerPatternConverterNDC.php │ │ │ │ ├── LoggerPatternConverterNewLine.php │ │ │ │ ├── LoggerPatternConverterProcess.php │ │ │ │ ├── LoggerPatternConverterRelative.php │ │ │ │ ├── LoggerPatternConverterRequest.php │ │ │ │ ├── LoggerPatternConverterServer.php │ │ │ │ ├── LoggerPatternConverterSession.php │ │ │ │ ├── LoggerPatternConverterSessionID.php │ │ │ │ ├── LoggerPatternConverterSuperglobal.php │ │ │ │ └── LoggerPatternConverterThrowable.php │ │ │ │ ├── renderers │ │ │ │ ├── LoggerRenderer.php │ │ │ │ ├── LoggerRendererDefault.php │ │ │ │ ├── LoggerRendererException.php │ │ │ │ └── LoggerRendererMap.php │ │ │ │ └── xml │ │ │ │ └── log4php.dtd │ │ │ └── site │ │ │ ├── apt │ │ │ ├── contributingpatches.apt │ │ │ ├── download.apt │ │ │ ├── index.apt │ │ │ ├── privacy-policy.apt │ │ │ └── volunteering.apt │ │ │ ├── cse.xml │ │ │ ├── resources │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── site.css │ │ │ ├── images │ │ │ │ ├── collapsed.gif │ │ │ │ ├── expanded.gif │ │ │ │ └── logos │ │ │ │ │ ├── ls-logo.jpg │ │ │ │ │ └── maven-feather.png │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── prettify.js │ │ │ │ ├── prettify.min.js │ │ │ │ └── site.js │ │ │ ├── site.vm │ │ │ ├── site.xml │ │ │ └── xdoc │ │ │ ├── changelog.xml │ │ │ ├── docs │ │ │ ├── appenders.xml │ │ │ ├── appenders │ │ │ │ ├── console.xml │ │ │ │ ├── daily-file.xml │ │ │ │ ├── echo.xml │ │ │ │ ├── file.xml │ │ │ │ ├── firephp.xml │ │ │ │ ├── mail-event.xml │ │ │ │ ├── mail.xml │ │ │ │ ├── mongodb.xml │ │ │ │ ├── null.xml │ │ │ │ ├── pdo.xml │ │ │ │ ├── php.xml │ │ │ │ ├── rolling-file.xml │ │ │ │ ├── socket.xml │ │ │ │ └── syslog.xml │ │ │ ├── configuration.xml │ │ │ ├── filters.xml │ │ │ ├── introduction.xml │ │ │ ├── layouts.xml │ │ │ ├── layouts │ │ │ │ ├── html.xml │ │ │ │ ├── pattern.xml │ │ │ │ ├── serialized.xml │ │ │ │ ├── simple.xml │ │ │ │ ├── ttcc.xml │ │ │ │ └── xml.xml │ │ │ ├── loggers.xml │ │ │ └── renderers.xml │ │ │ ├── install.xml │ │ │ ├── privacy.xml │ │ │ └── quickstart.xml │ ├── autoload.php │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ ├── facebook │ │ ├── facebook-instant-articles-sdk-php │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── docs │ │ │ │ └── QuickStart.md │ │ │ ├── phpcs.xml │ │ │ ├── phpunit.xml │ │ │ ├── src │ │ │ │ └── Facebook │ │ │ │ │ └── InstantArticles │ │ │ │ │ ├── Client │ │ │ │ │ ├── Client.php │ │ │ │ │ ├── ClientException.php │ │ │ │ │ ├── Helper.php │ │ │ │ │ ├── InstantArticleStatus.php │ │ │ │ │ └── ServerMessage.php │ │ │ │ │ ├── Elements │ │ │ │ │ ├── Ad.php │ │ │ │ │ ├── Analytics.php │ │ │ │ │ ├── Anchor.php │ │ │ │ │ ├── AnimatedGIF.php │ │ │ │ │ ├── Audible.php │ │ │ │ │ ├── Audio.php │ │ │ │ │ ├── Author.php │ │ │ │ │ ├── Blockquote.php │ │ │ │ │ ├── Bold.php │ │ │ │ │ ├── Caption.php │ │ │ │ │ ├── Cite.php │ │ │ │ │ ├── Container.php │ │ │ │ │ ├── Div.php │ │ │ │ │ ├── Element.php │ │ │ │ │ ├── ElementWithHTML.php │ │ │ │ │ ├── Footer.php │ │ │ │ │ ├── FormattedText.php │ │ │ │ │ ├── GeoTag.php │ │ │ │ │ ├── H1.php │ │ │ │ │ ├── H2.php │ │ │ │ │ ├── H3.php │ │ │ │ │ ├── Header.php │ │ │ │ │ ├── Image.php │ │ │ │ │ ├── InstantArticle.php │ │ │ │ │ ├── InstantArticleInterface.php │ │ │ │ │ ├── Interactive.php │ │ │ │ │ ├── Italic.php │ │ │ │ │ ├── LineBreak.php │ │ │ │ │ ├── ListElement.php │ │ │ │ │ ├── ListItem.php │ │ │ │ │ ├── Map.php │ │ │ │ │ ├── Paragraph.php │ │ │ │ │ ├── Pullquote.php │ │ │ │ │ ├── RelatedArticles.php │ │ │ │ │ ├── RelatedItem.php │ │ │ │ │ ├── Slideshow.php │ │ │ │ │ ├── SocialEmbed.php │ │ │ │ │ ├── Span.php │ │ │ │ │ ├── Sponsor.php │ │ │ │ │ ├── TextContainer.php │ │ │ │ │ ├── Time.php │ │ │ │ │ └── Video.php │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Parser.php │ │ │ │ │ └── instant-articles-rules.json │ │ │ │ │ ├── Transformer │ │ │ │ │ ├── Getters │ │ │ │ │ │ ├── AbstractGetter.php │ │ │ │ │ │ ├── ChildrenGetter.php │ │ │ │ │ │ ├── ElementGetter.php │ │ │ │ │ │ ├── ExistsGetter.php │ │ │ │ │ │ ├── FragmentGetter.php │ │ │ │ │ │ ├── GetterFactory.php │ │ │ │ │ │ ├── IntegerGetter.php │ │ │ │ │ │ ├── JSONGetter.php │ │ │ │ │ │ ├── MultipleElementsGetter.php │ │ │ │ │ │ ├── NextSiblingElementGetter.php │ │ │ │ │ │ ├── NextSiblingGetter.php │ │ │ │ │ │ ├── StringGetter.php │ │ │ │ │ │ └── XpathGetter.php │ │ │ │ │ ├── Rules │ │ │ │ │ │ ├── AdRule.php │ │ │ │ │ │ ├── AnalyticsRule.php │ │ │ │ │ │ ├── AnchorRule.php │ │ │ │ │ │ ├── AudioRule.php │ │ │ │ │ │ ├── AuthorRule.php │ │ │ │ │ │ ├── BlockquoteRule.php │ │ │ │ │ │ ├── BoldRule.php │ │ │ │ │ │ ├── CaptionCreditRule.php │ │ │ │ │ │ ├── CaptionRule.php │ │ │ │ │ │ ├── Compat │ │ │ │ │ │ │ └── JetpackSlideshowRule.php │ │ │ │ │ │ ├── ConfigurationSelectorRule.php │ │ │ │ │ │ ├── FooterRelatedArticlesRule.php │ │ │ │ │ │ ├── FooterRule.php │ │ │ │ │ │ ├── GeoTagRule.php │ │ │ │ │ │ ├── H1Rule.php │ │ │ │ │ │ ├── H2Rule.php │ │ │ │ │ │ ├── HeaderAdRule.php │ │ │ │ │ │ ├── HeaderImageRule.php │ │ │ │ │ │ ├── HeaderKickerRule.php │ │ │ │ │ │ ├── HeaderRule.php │ │ │ │ │ │ ├── HeaderSubTitleRule.php │ │ │ │ │ │ ├── HeaderTitleRule.php │ │ │ │ │ │ ├── IgnoreRule.php │ │ │ │ │ │ ├── ImageInsideParagraphRule.php │ │ │ │ │ │ ├── ImageRule.php │ │ │ │ │ │ ├── InstantArticleRule.php │ │ │ │ │ │ ├── InteractiveInsideParagraphRule.php │ │ │ │ │ │ ├── InteractiveRule.php │ │ │ │ │ │ ├── ItalicRule.php │ │ │ │ │ │ ├── LineBreakRule.php │ │ │ │ │ │ ├── ListElementRule.php │ │ │ │ │ │ ├── ListItemRule.php │ │ │ │ │ │ ├── MapRule.php │ │ │ │ │ │ ├── ParagraphFooterRule.php │ │ │ │ │ │ ├── ParagraphRule.php │ │ │ │ │ │ ├── PassThroughRule.php │ │ │ │ │ │ ├── PullquoteCiteRule.php │ │ │ │ │ │ ├── PullquoteRule.php │ │ │ │ │ │ ├── RelatedArticlesRule.php │ │ │ │ │ │ ├── RelatedItemRule.php │ │ │ │ │ │ ├── Rule.php │ │ │ │ │ │ ├── SlideshowImageRule.php │ │ │ │ │ │ ├── SlideshowRule.php │ │ │ │ │ │ ├── SocialEmbedRule.php │ │ │ │ │ │ ├── SponsorRule.php │ │ │ │ │ │ ├── TextNodeRule.php │ │ │ │ │ │ ├── TimeRule.php │ │ │ │ │ │ └── VideoRule.php │ │ │ │ │ ├── Transformer.php │ │ │ │ │ └── Warnings │ │ │ │ │ │ ├── DeprecatedRuleWarning.php │ │ │ │ │ │ ├── InvalidSelector.php │ │ │ │ │ │ ├── NoRootInstantArticleFoundWarning.php │ │ │ │ │ │ ├── UnrecognizedElement.php │ │ │ │ │ │ ├── ValidatorWarning.php │ │ │ │ │ │ └── validator_warning_messages.ini │ │ │ │ │ └── Validators │ │ │ │ │ ├── InstantArticleValidator.php │ │ │ │ │ └── Type.php │ │ │ └── tests │ │ │ │ └── Facebook │ │ │ │ └── InstantArticles │ │ │ │ ├── Client │ │ │ │ ├── ClientExceptionTest.php │ │ │ │ ├── ClientTest.php │ │ │ │ └── HelperTest.php │ │ │ │ ├── Elements │ │ │ │ ├── AdTest.php │ │ │ │ ├── AnalyticsTest.php │ │ │ │ ├── AudioTest.php │ │ │ │ ├── AuthorTest.php │ │ │ │ ├── BlockquoteTest.php │ │ │ │ ├── CaptionTest.php │ │ │ │ ├── CiteTest.php │ │ │ │ ├── FooterTest.php │ │ │ │ ├── GeoTagTest.php │ │ │ │ ├── H1Test.php │ │ │ │ ├── H2Test.php │ │ │ │ ├── H3Test.php │ │ │ │ ├── HeaderTest.php │ │ │ │ ├── ImageTest.php │ │ │ │ ├── InstantArticleTest.php │ │ │ │ ├── InteractiveTest.php │ │ │ │ ├── ListElementTest.php │ │ │ │ ├── MapTest.php │ │ │ │ ├── ParagraphTest.php │ │ │ │ ├── PullquoteTest.php │ │ │ │ ├── RelatedArticlesTest.php │ │ │ │ ├── SlideshowTest.php │ │ │ │ ├── SocialEmbedTest.php │ │ │ │ ├── SponsorTest.php │ │ │ │ ├── TimeTest.php │ │ │ │ ├── Validators │ │ │ │ │ ├── InstantArticleValidatorTest.php │ │ │ │ │ └── TypeTest.php │ │ │ │ └── VideoTest.php │ │ │ │ ├── Parser │ │ │ │ ├── ParserTest.php │ │ │ │ └── instant-article-example.html │ │ │ │ └── Transformer │ │ │ │ ├── CMS │ │ │ │ ├── WPTransformerTest.php │ │ │ │ ├── wp-ia.xml │ │ │ │ ├── wp-rules.json │ │ │ │ └── wp.html │ │ │ │ ├── Example │ │ │ │ ├── SimpleTransformerTest.php │ │ │ │ ├── simple-ia.html │ │ │ │ ├── simple-rules.json │ │ │ │ └── simple.html │ │ │ │ ├── GeneratorTrait.php │ │ │ │ ├── Rules │ │ │ │ ├── AuthorRuleTest.php │ │ │ │ ├── PullquoteRuleTest.php │ │ │ │ └── RuleTest.php │ │ │ │ ├── TransformerTest.php │ │ │ │ ├── Warnings │ │ │ │ └── InvalidSelectorTest.php │ │ │ │ ├── instant-article-example-multibyte.html │ │ │ │ ├── instant-article-example-nonutf8.html │ │ │ │ ├── instant-article-example.html │ │ │ │ └── wp-rules.json │ │ └── php-sdk-v4 │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── Facebook │ │ │ ├── Authentication │ │ │ ├── AccessToken.php │ │ │ ├── AccessTokenMetadata.php │ │ │ └── OAuth2Client.php │ │ │ ├── Exceptions │ │ │ ├── FacebookAuthenticationException.php │ │ │ ├── FacebookAuthorizationException.php │ │ │ ├── FacebookClientException.php │ │ │ ├── FacebookOtherException.php │ │ │ ├── FacebookResponseException.php │ │ │ ├── FacebookResumableUploadException.php │ │ │ ├── FacebookSDKException.php │ │ │ ├── FacebookServerException.php │ │ │ └── FacebookThrottleException.php │ │ │ ├── Facebook.php │ │ │ ├── FacebookApp.php │ │ │ ├── FacebookBatchRequest.php │ │ │ ├── FacebookBatchResponse.php │ │ │ ├── FacebookClient.php │ │ │ ├── FacebookRequest.php │ │ │ ├── FacebookResponse.php │ │ │ ├── FileUpload │ │ │ ├── FacebookFile.php │ │ │ ├── FacebookResumableUploader.php │ │ │ ├── FacebookTransferChunk.php │ │ │ ├── FacebookVideo.php │ │ │ └── Mimetypes.php │ │ │ ├── GraphNodes │ │ │ ├── Birthday.php │ │ │ ├── Collection.php │ │ │ ├── GraphAchievement.php │ │ │ ├── GraphAlbum.php │ │ │ ├── GraphApplication.php │ │ │ ├── GraphCoverPhoto.php │ │ │ ├── GraphEdge.php │ │ │ ├── GraphEvent.php │ │ │ ├── GraphGroup.php │ │ │ ├── GraphList.php │ │ │ ├── GraphLocation.php │ │ │ ├── GraphNode.php │ │ │ ├── GraphNodeFactory.php │ │ │ ├── GraphObject.php │ │ │ ├── GraphObjectFactory.php │ │ │ ├── GraphPage.php │ │ │ ├── GraphPicture.php │ │ │ ├── GraphSessionInfo.php │ │ │ └── GraphUser.php │ │ │ ├── Helpers │ │ │ ├── FacebookCanvasHelper.php │ │ │ ├── FacebookJavaScriptHelper.php │ │ │ ├── FacebookPageTabHelper.php │ │ │ ├── FacebookRedirectLoginHelper.php │ │ │ └── FacebookSignedRequestFromInputHelper.php │ │ │ ├── Http │ │ │ ├── GraphRawResponse.php │ │ │ ├── RequestBodyInterface.php │ │ │ ├── RequestBodyMultipart.php │ │ │ └── RequestBodyUrlEncoded.php │ │ │ ├── HttpClients │ │ │ ├── FacebookCurl.php │ │ │ ├── FacebookCurlHttpClient.php │ │ │ ├── FacebookGuzzleHttpClient.php │ │ │ ├── FacebookHttpClientInterface.php │ │ │ ├── FacebookStream.php │ │ │ ├── FacebookStreamHttpClient.php │ │ │ ├── HttpClientsFactory.php │ │ │ └── certs │ │ │ │ └── DigiCertHighAssuranceEVRootCA.pem │ │ │ ├── PersistentData │ │ │ ├── FacebookMemoryPersistentDataHandler.php │ │ │ ├── FacebookSessionPersistentDataHandler.php │ │ │ ├── PersistentDataFactory.php │ │ │ └── PersistentDataInterface.php │ │ │ ├── PseudoRandomString │ │ │ ├── McryptPseudoRandomStringGenerator.php │ │ │ ├── OpenSslPseudoRandomStringGenerator.php │ │ │ ├── PseudoRandomStringGeneratorFactory.php │ │ │ ├── PseudoRandomStringGeneratorInterface.php │ │ │ ├── PseudoRandomStringGeneratorTrait.php │ │ │ └── UrandomPseudoRandomStringGenerator.php │ │ │ ├── SignedRequest.php │ │ │ ├── Url │ │ │ ├── FacebookUrlDetectionHandler.php │ │ │ ├── FacebookUrlManipulator.php │ │ │ └── UrlDetectionInterface.php │ │ │ ├── autoload.php │ │ │ └── polyfills.php │ └── symfony │ │ └── css-selector │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CssSelector.php │ │ ├── CssSelectorConverter.php │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── ExpressionErrorException.php │ │ ├── InternalErrorException.php │ │ ├── ParseException.php │ │ └── SyntaxErrorException.php │ │ ├── LICENSE │ │ ├── Node │ │ ├── AbstractNode.php │ │ ├── AttributeNode.php │ │ ├── ClassNode.php │ │ ├── CombinedSelectorNode.php │ │ ├── ElementNode.php │ │ ├── FunctionNode.php │ │ ├── HashNode.php │ │ ├── NegationNode.php │ │ ├── NodeInterface.php │ │ ├── PseudoNode.php │ │ ├── SelectorNode.php │ │ └── Specificity.php │ │ ├── Parser │ │ ├── Handler │ │ │ ├── CommentHandler.php │ │ │ ├── HandlerInterface.php │ │ │ ├── HashHandler.php │ │ │ ├── IdentifierHandler.php │ │ │ ├── NumberHandler.php │ │ │ ├── StringHandler.php │ │ │ └── WhitespaceHandler.php │ │ ├── Parser.php │ │ ├── ParserInterface.php │ │ ├── Reader.php │ │ ├── Shortcut │ │ │ ├── ClassParser.php │ │ │ ├── ElementParser.php │ │ │ ├── EmptyStringParser.php │ │ │ └── HashParser.php │ │ ├── Token.php │ │ ├── TokenStream.php │ │ └── Tokenizer │ │ │ ├── Tokenizer.php │ │ │ ├── TokenizerEscaping.php │ │ │ └── TokenizerPatterns.php │ │ ├── README.md │ │ ├── Tests │ │ ├── CssSelectorConverterTest.php │ │ ├── CssSelectorTest.php │ │ ├── Node │ │ │ ├── AbstractNodeTest.php │ │ │ ├── AttributeNodeTest.php │ │ │ ├── ClassNodeTest.php │ │ │ ├── CombinedSelectorNodeTest.php │ │ │ ├── ElementNodeTest.php │ │ │ ├── FunctionNodeTest.php │ │ │ ├── HashNodeTest.php │ │ │ ├── NegationNodeTest.php │ │ │ ├── PseudoNodeTest.php │ │ │ ├── SelectorNodeTest.php │ │ │ └── SpecificityTest.php │ │ ├── Parser │ │ │ ├── Handler │ │ │ │ ├── AbstractHandlerTest.php │ │ │ │ ├── CommentHandlerTest.php │ │ │ │ ├── HashHandlerTest.php │ │ │ │ ├── IdentifierHandlerTest.php │ │ │ │ ├── NumberHandlerTest.php │ │ │ │ ├── StringHandlerTest.php │ │ │ │ └── WhitespaceHandlerTest.php │ │ │ ├── ParserTest.php │ │ │ ├── ReaderTest.php │ │ │ ├── Shortcut │ │ │ │ ├── ClassParserTest.php │ │ │ │ ├── ElementParserTest.php │ │ │ │ ├── EmptyStringParserTest.php │ │ │ │ └── HashParserTest.php │ │ │ └── TokenStreamTest.php │ │ └── XPath │ │ │ ├── Fixtures │ │ │ ├── ids.html │ │ │ ├── lang.xml │ │ │ └── shakespear.html │ │ │ └── TranslatorTest.php │ │ ├── XPath │ │ ├── Extension │ │ │ ├── AbstractExtension.php │ │ │ ├── AttributeMatchingExtension.php │ │ │ ├── CombinationExtension.php │ │ │ ├── ExtensionInterface.php │ │ │ ├── FunctionExtension.php │ │ │ ├── HtmlExtension.php │ │ │ ├── NodeExtension.php │ │ │ └── PseudoClassExtension.php │ │ ├── Translator.php │ │ ├── TranslatorInterface.php │ │ └── XPathExpr.php │ │ ├── composer.json │ │ └── phpunit.xml.dist ├── wizard │ ├── class-instant-articles-invalid-wizard-transition-exception.php │ ├── class-instant-articles-option-ads.php │ ├── class-instant-articles-option-analytics.php │ ├── class-instant-articles-option-fb-app.php │ ├── class-instant-articles-option-fb-page.php │ ├── class-instant-articles-option-publishing.php │ ├── class-instant-articles-option-styles.php │ ├── class-instant-articles-option.php │ ├── class-instant-articles-wizard-fb-helper.php │ ├── class-instant-articles-wizard-review-submission.php │ ├── class-instant-articles-wizard-state.php │ ├── class-instant-articles-wizard.php │ ├── state_machine.txt │ └── templates │ │ ├── advanced-template.php │ │ ├── all-steps-wizard.php │ │ ├── app-setup-template.php │ │ ├── overview-template.php │ │ ├── page-selection-template.php │ │ ├── review-submission-template.php │ │ ├── style-selection-template.php │ │ └── wizard-template.php └── wpcom-helper.php ├── facebook-instant-articles-3.2 ├── LICENSE ├── README.md ├── assets │ ├── banner-1544x500.jpg │ ├── banner-772x250.jpg │ ├── check@2x.png │ ├── connect@2x.png │ ├── customize@2x.png │ ├── icon-128x128.jpg │ ├── icon-256x256.jpg │ ├── icon-fb-login.png │ ├── key@2x.png │ ├── pencil.png │ └── screenshot-1.png ├── class-instant-articles-post.php ├── class-instant-articles-publisher.php ├── compat.php ├── compat │ ├── class-instant-articles-co-authors-plus.php │ ├── class-instant-articles-get-the-image.php │ ├── class-instant-articles-google-analytics-for-wordpress.php │ ├── class-instant-articles-jetpack.php │ ├── class-instant-articles-playbuzz.php │ ├── class-instant-articles-yoast-seo.php │ ├── get-the-image-rules-configuration.json │ ├── jetpack-rules-configuration.json │ └── playbuzz-rules-configuration.json ├── css │ ├── instant-articles-meta-box.css │ ├── instant-articles-settings-wizard.css │ ├── instant-articles-settings.css │ └── instant-articles-wizard.css ├── embeds.php ├── facebook-instant-articles.php ├── feed-template.php ├── js │ ├── instant-articles-meta-box.js │ ├── instant-articles-option-ads.js │ ├── instant-articles-option-analytics.js │ ├── instant-articles-option-publishing.js │ ├── instant-articles-settings.js │ └── instant-articles-wizard.js ├── languages │ └── instant-articles.pot ├── meta-box │ ├── class-instant-articles-meta-box.php │ ├── meta-box-loader-template.php │ └── meta-box-template.php ├── readme.txt ├── rules-configuration.json ├── settings │ ├── class-instant-articles-option-ads.php │ ├── class-instant-articles-option-analytics.php │ ├── class-instant-articles-option-fb-app.php │ ├── class-instant-articles-option-fb-page.php │ ├── class-instant-articles-option-publishing.php │ ├── class-instant-articles-option-styles.php │ ├── class-instant-articles-option.php │ ├── class-instant-articles-settings-fb-page.php │ ├── class-instant-articles-settings-wizard.php │ ├── class-instant-articles-settings.php │ ├── template-settings-advanced.php │ ├── template-settings-info.php │ ├── template-settings-wizard.php │ └── template-settings.php ├── vendor │ ├── apache │ │ └── log4php │ │ │ ├── CHANGELOG │ │ │ ├── INSTALL │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README │ │ │ ├── apigen.neon │ │ │ ├── build.xml │ │ │ ├── composer.json │ │ │ ├── doap_log4php.rdf │ │ │ ├── package-config.php │ │ │ ├── package.php │ │ │ ├── phpdoc.xml │ │ │ ├── phpunit.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ ├── assembly │ │ │ └── src.xml │ │ │ ├── changes │ │ │ └── changes.xml │ │ │ ├── examples │ │ │ ├── php │ │ │ │ ├── appender_console.php │ │ │ │ ├── appender_dailyfile.php │ │ │ │ ├── appender_echo.php │ │ │ │ ├── appender_file.php │ │ │ │ ├── appender_firephp.php │ │ │ │ ├── appender_mail.php │ │ │ │ ├── appender_mailevent.php │ │ │ │ ├── appender_mongodb.php │ │ │ │ ├── appender_null.php │ │ │ │ ├── appender_pdo.php │ │ │ │ ├── appender_php.php │ │ │ │ ├── appender_rollingfile.php │ │ │ │ ├── appender_socket.php │ │ │ │ ├── appender_socket_server.php │ │ │ │ ├── appender_syslog.php │ │ │ │ ├── cache.php │ │ │ │ ├── configurator_basic.php │ │ │ │ ├── configurator_php.php │ │ │ │ ├── configurator_xml.php │ │ │ │ ├── filter_denyall.php │ │ │ │ ├── filter_levelmatch.php │ │ │ │ ├── filter_levelrange.php │ │ │ │ ├── filter_stringmatch.php │ │ │ │ ├── layout_html.php │ │ │ │ ├── layout_pattern.php │ │ │ │ ├── layout_simple.php │ │ │ │ ├── layout_ttcc.php │ │ │ │ ├── layout_xml.php │ │ │ │ ├── mdc.php │ │ │ │ ├── ndc.php │ │ │ │ ├── renderer_default.php │ │ │ │ ├── renderer_map.php │ │ │ │ └── simple.php │ │ │ └── resources │ │ │ │ ├── appender_console.properties │ │ │ │ ├── appender_dailyfile.properties │ │ │ │ ├── appender_echo.properties │ │ │ │ ├── appender_file.properties │ │ │ │ ├── appender_firephp.xml │ │ │ │ ├── appender_mail.properties │ │ │ │ ├── appender_mailevent.properties │ │ │ │ ├── appender_mongodb.xml │ │ │ │ ├── appender_null.properties │ │ │ │ ├── appender_pdo.properties │ │ │ │ ├── appender_php.properties │ │ │ │ ├── appender_rollingfile.properties │ │ │ │ ├── appender_socket.properties │ │ │ │ ├── appender_socket_server.properties │ │ │ │ ├── appender_syslog.properties │ │ │ │ ├── cache.properties │ │ │ │ ├── configurator_php.php │ │ │ │ ├── configurator_xml.xml │ │ │ │ ├── filter_denyall.xml │ │ │ │ ├── filter_levelmatch.xml │ │ │ │ ├── filter_levelrange.xml │ │ │ │ ├── filter_stringmatch.xml │ │ │ │ ├── layout_html.properties │ │ │ │ ├── layout_pattern.properties │ │ │ │ ├── layout_simple.properties │ │ │ │ ├── layout_ttcc.properties │ │ │ │ ├── layout_xml.properties │ │ │ │ ├── mdc.properties │ │ │ │ ├── ndc.properties │ │ │ │ ├── renderer_default.properties │ │ │ │ └── renderer_map.properties │ │ │ ├── main │ │ │ └── php │ │ │ │ ├── Logger.php │ │ │ │ ├── LoggerAppender.php │ │ │ │ ├── LoggerAppenderPool.php │ │ │ │ ├── LoggerAutoloader.php │ │ │ │ ├── LoggerConfigurable.php │ │ │ │ ├── LoggerConfigurator.php │ │ │ │ ├── LoggerException.php │ │ │ │ ├── LoggerFilter.php │ │ │ │ ├── LoggerHierarchy.php │ │ │ │ ├── LoggerLayout.php │ │ │ │ ├── LoggerLevel.php │ │ │ │ ├── LoggerLocationInfo.php │ │ │ │ ├── LoggerLoggingEvent.php │ │ │ │ ├── LoggerMDC.php │ │ │ │ ├── LoggerNDC.php │ │ │ │ ├── LoggerReflectionUtils.php │ │ │ │ ├── LoggerRoot.php │ │ │ │ ├── LoggerThrowableInformation.php │ │ │ │ ├── appenders │ │ │ │ ├── LoggerAppenderConsole.php │ │ │ │ ├── LoggerAppenderDailyFile.php │ │ │ │ ├── LoggerAppenderEcho.php │ │ │ │ ├── LoggerAppenderFile.php │ │ │ │ ├── LoggerAppenderFirePHP.php │ │ │ │ ├── LoggerAppenderMail.php │ │ │ │ ├── LoggerAppenderMailEvent.php │ │ │ │ ├── LoggerAppenderMongoDB.php │ │ │ │ ├── LoggerAppenderNull.php │ │ │ │ ├── LoggerAppenderPDO.php │ │ │ │ ├── LoggerAppenderPhp.php │ │ │ │ ├── LoggerAppenderRollingFile.php │ │ │ │ ├── LoggerAppenderSocket.php │ │ │ │ └── LoggerAppenderSyslog.php │ │ │ │ ├── configurators │ │ │ │ ├── LoggerConfigurationAdapter.php │ │ │ │ ├── LoggerConfigurationAdapterINI.php │ │ │ │ ├── LoggerConfigurationAdapterPHP.php │ │ │ │ ├── LoggerConfigurationAdapterXML.php │ │ │ │ └── LoggerConfiguratorDefault.php │ │ │ │ ├── filters │ │ │ │ ├── LoggerFilterDenyAll.php │ │ │ │ ├── LoggerFilterLevelMatch.php │ │ │ │ ├── LoggerFilterLevelRange.php │ │ │ │ └── LoggerFilterStringMatch.php │ │ │ │ ├── helpers │ │ │ │ ├── LoggerFormattingInfo.php │ │ │ │ ├── LoggerOptionConverter.php │ │ │ │ ├── LoggerPatternParser.php │ │ │ │ └── LoggerUtils.php │ │ │ │ ├── layouts │ │ │ │ ├── LoggerLayoutHtml.php │ │ │ │ ├── LoggerLayoutPattern.php │ │ │ │ ├── LoggerLayoutSerialized.php │ │ │ │ ├── LoggerLayoutSimple.php │ │ │ │ ├── LoggerLayoutTTCC.php │ │ │ │ └── LoggerLayoutXml.php │ │ │ │ ├── pattern │ │ │ │ ├── LoggerPatternConverter.php │ │ │ │ ├── LoggerPatternConverterClass.php │ │ │ │ ├── LoggerPatternConverterCookie.php │ │ │ │ ├── LoggerPatternConverterDate.php │ │ │ │ ├── LoggerPatternConverterEnvironment.php │ │ │ │ ├── LoggerPatternConverterFile.php │ │ │ │ ├── LoggerPatternConverterLevel.php │ │ │ │ ├── LoggerPatternConverterLine.php │ │ │ │ ├── LoggerPatternConverterLiteral.php │ │ │ │ ├── LoggerPatternConverterLocation.php │ │ │ │ ├── LoggerPatternConverterLogger.php │ │ │ │ ├── LoggerPatternConverterMDC.php │ │ │ │ ├── LoggerPatternConverterMessage.php │ │ │ │ ├── LoggerPatternConverterMethod.php │ │ │ │ ├── LoggerPatternConverterNDC.php │ │ │ │ ├── LoggerPatternConverterNewLine.php │ │ │ │ ├── LoggerPatternConverterProcess.php │ │ │ │ ├── LoggerPatternConverterRelative.php │ │ │ │ ├── LoggerPatternConverterRequest.php │ │ │ │ ├── LoggerPatternConverterServer.php │ │ │ │ ├── LoggerPatternConverterSession.php │ │ │ │ ├── LoggerPatternConverterSessionID.php │ │ │ │ ├── LoggerPatternConverterSuperglobal.php │ │ │ │ └── LoggerPatternConverterThrowable.php │ │ │ │ ├── renderers │ │ │ │ ├── LoggerRenderer.php │ │ │ │ ├── LoggerRendererDefault.php │ │ │ │ ├── LoggerRendererException.php │ │ │ │ └── LoggerRendererMap.php │ │ │ │ └── xml │ │ │ │ └── log4php.dtd │ │ │ └── site │ │ │ ├── apt │ │ │ ├── contributingpatches.apt │ │ │ ├── download.apt │ │ │ ├── index.apt │ │ │ ├── privacy-policy.apt │ │ │ └── volunteering.apt │ │ │ ├── cse.xml │ │ │ ├── resources │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── site.css │ │ │ ├── images │ │ │ │ ├── collapsed.gif │ │ │ │ ├── expanded.gif │ │ │ │ └── logos │ │ │ │ │ ├── ls-logo.jpg │ │ │ │ │ └── maven-feather.png │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── prettify.js │ │ │ │ ├── prettify.min.js │ │ │ │ └── site.js │ │ │ ├── site.vm │ │ │ ├── site.xml │ │ │ └── xdoc │ │ │ ├── changelog.xml │ │ │ ├── docs │ │ │ ├── appenders.xml │ │ │ ├── appenders │ │ │ │ ├── console.xml │ │ │ │ ├── daily-file.xml │ │ │ │ ├── echo.xml │ │ │ │ ├── file.xml │ │ │ │ ├── firephp.xml │ │ │ │ ├── mail-event.xml │ │ │ │ ├── mail.xml │ │ │ │ ├── mongodb.xml │ │ │ │ ├── null.xml │ │ │ │ ├── pdo.xml │ │ │ │ ├── php.xml │ │ │ │ ├── rolling-file.xml │ │ │ │ ├── socket.xml │ │ │ │ └── syslog.xml │ │ │ ├── configuration.xml │ │ │ ├── filters.xml │ │ │ ├── introduction.xml │ │ │ ├── layouts.xml │ │ │ ├── layouts │ │ │ │ ├── html.xml │ │ │ │ ├── pattern.xml │ │ │ │ ├── serialized.xml │ │ │ │ ├── simple.xml │ │ │ │ ├── ttcc.xml │ │ │ │ └── xml.xml │ │ │ ├── loggers.xml │ │ │ └── renderers.xml │ │ │ ├── install.xml │ │ │ ├── privacy.xml │ │ │ └── quickstart.xml │ ├── autoload.php │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ ├── facebook │ │ ├── facebook-instant-articles-sdk-php │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── docs │ │ │ │ └── QuickStart.md │ │ │ ├── phpcs.xml │ │ │ ├── phpunit.xml │ │ │ ├── src │ │ │ │ └── Facebook │ │ │ │ │ └── InstantArticles │ │ │ │ │ ├── Client │ │ │ │ │ ├── Client.php │ │ │ │ │ ├── ClientException.php │ │ │ │ │ ├── Helper.php │ │ │ │ │ ├── InstantArticleStatus.php │ │ │ │ │ └── ServerMessage.php │ │ │ │ │ ├── Elements │ │ │ │ │ ├── Ad.php │ │ │ │ │ ├── Analytics.php │ │ │ │ │ ├── Anchor.php │ │ │ │ │ ├── AnimatedGIF.php │ │ │ │ │ ├── Audible.php │ │ │ │ │ ├── Audio.php │ │ │ │ │ ├── Author.php │ │ │ │ │ ├── Blockquote.php │ │ │ │ │ ├── Bold.php │ │ │ │ │ ├── Caption.php │ │ │ │ │ ├── Cite.php │ │ │ │ │ ├── Container.php │ │ │ │ │ ├── Div.php │ │ │ │ │ ├── Element.php │ │ │ │ │ ├── ElementWithHTML.php │ │ │ │ │ ├── Footer.php │ │ │ │ │ ├── FormattedText.php │ │ │ │ │ ├── GeoTag.php │ │ │ │ │ ├── H1.php │ │ │ │ │ ├── H2.php │ │ │ │ │ ├── H3.php │ │ │ │ │ ├── Header.php │ │ │ │ │ ├── Image.php │ │ │ │ │ ├── InstantArticle.php │ │ │ │ │ ├── InstantArticleInterface.php │ │ │ │ │ ├── Interactive.php │ │ │ │ │ ├── Italic.php │ │ │ │ │ ├── LineBreak.php │ │ │ │ │ ├── ListElement.php │ │ │ │ │ ├── ListItem.php │ │ │ │ │ ├── Map.php │ │ │ │ │ ├── Paragraph.php │ │ │ │ │ ├── Pullquote.php │ │ │ │ │ ├── RelatedArticles.php │ │ │ │ │ ├── RelatedItem.php │ │ │ │ │ ├── Slideshow.php │ │ │ │ │ ├── SocialEmbed.php │ │ │ │ │ ├── Span.php │ │ │ │ │ ├── Sponsor.php │ │ │ │ │ ├── TextContainer.php │ │ │ │ │ ├── Time.php │ │ │ │ │ └── Video.php │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Parser.php │ │ │ │ │ └── instant-articles-rules.json │ │ │ │ │ ├── Transformer │ │ │ │ │ ├── Getters │ │ │ │ │ │ ├── AbstractGetter.php │ │ │ │ │ │ ├── ChildrenGetter.php │ │ │ │ │ │ ├── ElementGetter.php │ │ │ │ │ │ ├── ExistsGetter.php │ │ │ │ │ │ ├── FragmentGetter.php │ │ │ │ │ │ ├── GetterFactory.php │ │ │ │ │ │ ├── IntegerGetter.php │ │ │ │ │ │ ├── JSONGetter.php │ │ │ │ │ │ ├── MultipleElementsGetter.php │ │ │ │ │ │ ├── NextSiblingElementGetter.php │ │ │ │ │ │ ├── NextSiblingGetter.php │ │ │ │ │ │ ├── StringGetter.php │ │ │ │ │ │ └── XpathGetter.php │ │ │ │ │ ├── Rules │ │ │ │ │ │ ├── AdRule.php │ │ │ │ │ │ ├── AnalyticsRule.php │ │ │ │ │ │ ├── AnchorRule.php │ │ │ │ │ │ ├── AudioRule.php │ │ │ │ │ │ ├── AuthorRule.php │ │ │ │ │ │ ├── BlockquoteRule.php │ │ │ │ │ │ ├── BoldRule.php │ │ │ │ │ │ ├── CaptionCreditRule.php │ │ │ │ │ │ ├── CaptionRule.php │ │ │ │ │ │ ├── Compat │ │ │ │ │ │ │ └── JetpackSlideshowRule.php │ │ │ │ │ │ ├── ConfigurationSelectorRule.php │ │ │ │ │ │ ├── FooterRelatedArticlesRule.php │ │ │ │ │ │ ├── FooterRule.php │ │ │ │ │ │ ├── GeoTagRule.php │ │ │ │ │ │ ├── H1Rule.php │ │ │ │ │ │ ├── H2Rule.php │ │ │ │ │ │ ├── HeaderAdRule.php │ │ │ │ │ │ ├── HeaderImageRule.php │ │ │ │ │ │ ├── HeaderKickerRule.php │ │ │ │ │ │ ├── HeaderRule.php │ │ │ │ │ │ ├── HeaderSubTitleRule.php │ │ │ │ │ │ ├── HeaderTitleRule.php │ │ │ │ │ │ ├── IgnoreRule.php │ │ │ │ │ │ ├── ImageInsideParagraphRule.php │ │ │ │ │ │ ├── ImageRule.php │ │ │ │ │ │ ├── InstantArticleRule.php │ │ │ │ │ │ ├── InteractiveInsideParagraphRule.php │ │ │ │ │ │ ├── InteractiveRule.php │ │ │ │ │ │ ├── ItalicRule.php │ │ │ │ │ │ ├── LineBreakRule.php │ │ │ │ │ │ ├── ListElementRule.php │ │ │ │ │ │ ├── ListItemRule.php │ │ │ │ │ │ ├── MapRule.php │ │ │ │ │ │ ├── ParagraphFooterRule.php │ │ │ │ │ │ ├── ParagraphRule.php │ │ │ │ │ │ ├── PassThroughRule.php │ │ │ │ │ │ ├── PullquoteCiteRule.php │ │ │ │ │ │ ├── PullquoteRule.php │ │ │ │ │ │ ├── RelatedArticlesRule.php │ │ │ │ │ │ ├── RelatedItemRule.php │ │ │ │ │ │ ├── Rule.php │ │ │ │ │ │ ├── SlideshowImageRule.php │ │ │ │ │ │ ├── SlideshowRule.php │ │ │ │ │ │ ├── SocialEmbedRule.php │ │ │ │ │ │ ├── SponsorRule.php │ │ │ │ │ │ ├── TextNodeRule.php │ │ │ │ │ │ ├── TimeRule.php │ │ │ │ │ │ └── VideoRule.php │ │ │ │ │ ├── Transformer.php │ │ │ │ │ └── Warnings │ │ │ │ │ │ ├── DeprecatedRuleWarning.php │ │ │ │ │ │ ├── InvalidSelector.php │ │ │ │ │ │ ├── NoRootInstantArticleFoundWarning.php │ │ │ │ │ │ ├── UnrecognizedElement.php │ │ │ │ │ │ ├── ValidatorWarning.php │ │ │ │ │ │ └── validator_warning_messages.ini │ │ │ │ │ └── Validators │ │ │ │ │ ├── InstantArticleValidator.php │ │ │ │ │ └── Type.php │ │ │ └── tests │ │ │ │ └── Facebook │ │ │ │ └── InstantArticles │ │ │ │ ├── Client │ │ │ │ ├── ClientExceptionTest.php │ │ │ │ ├── ClientTest.php │ │ │ │ └── HelperTest.php │ │ │ │ ├── Elements │ │ │ │ ├── AdTest.php │ │ │ │ ├── AnalyticsTest.php │ │ │ │ ├── AudioTest.php │ │ │ │ ├── AuthorTest.php │ │ │ │ ├── BlockquoteTest.php │ │ │ │ ├── CaptionTest.php │ │ │ │ ├── CiteTest.php │ │ │ │ ├── FooterTest.php │ │ │ │ ├── GeoTagTest.php │ │ │ │ ├── H1Test.php │ │ │ │ ├── H2Test.php │ │ │ │ ├── H3Test.php │ │ │ │ ├── HeaderTest.php │ │ │ │ ├── ImageTest.php │ │ │ │ ├── InstantArticleTest.php │ │ │ │ ├── InteractiveTest.php │ │ │ │ ├── ListElementTest.php │ │ │ │ ├── MapTest.php │ │ │ │ ├── ParagraphTest.php │ │ │ │ ├── PullquoteTest.php │ │ │ │ ├── RelatedArticlesTest.php │ │ │ │ ├── SlideshowTest.php │ │ │ │ ├── SocialEmbedTest.php │ │ │ │ ├── SponsorTest.php │ │ │ │ ├── TimeTest.php │ │ │ │ ├── Validators │ │ │ │ │ ├── InstantArticleValidatorTest.php │ │ │ │ │ └── TypeTest.php │ │ │ │ └── VideoTest.php │ │ │ │ ├── Parser │ │ │ │ ├── ParserTest.php │ │ │ │ └── instant-article-example.html │ │ │ │ └── Transformer │ │ │ │ ├── CMS │ │ │ │ ├── WPTransformerTest.php │ │ │ │ ├── wp-ia.xml │ │ │ │ ├── wp-rules.json │ │ │ │ └── wp.html │ │ │ │ ├── Example │ │ │ │ ├── SimpleTransformerTest.php │ │ │ │ ├── simple-ia.html │ │ │ │ ├── simple-rules.json │ │ │ │ └── simple.html │ │ │ │ ├── GeneratorTrait.php │ │ │ │ ├── Rules │ │ │ │ ├── AuthorRuleTest.php │ │ │ │ ├── PullquoteRuleTest.php │ │ │ │ └── RuleTest.php │ │ │ │ ├── TransformerTest.php │ │ │ │ ├── Warnings │ │ │ │ └── InvalidSelectorTest.php │ │ │ │ ├── instant-article-example-multibyte.html │ │ │ │ ├── instant-article-example-nonutf8.html │ │ │ │ ├── instant-article-example.html │ │ │ │ └── wp-rules.json │ │ ├── graph-sdk │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ ├── phpcs.xml.dist │ │ │ └── src │ │ │ │ └── Facebook │ │ │ │ ├── Authentication │ │ │ │ ├── AccessToken.php │ │ │ │ ├── AccessTokenMetadata.php │ │ │ │ └── OAuth2Client.php │ │ │ │ ├── Exceptions │ │ │ │ ├── FacebookAuthenticationException.php │ │ │ │ ├── FacebookAuthorizationException.php │ │ │ │ ├── FacebookClientException.php │ │ │ │ ├── FacebookOtherException.php │ │ │ │ ├── FacebookResponseException.php │ │ │ │ ├── FacebookResumableUploadException.php │ │ │ │ ├── FacebookSDKException.php │ │ │ │ ├── FacebookServerException.php │ │ │ │ └── FacebookThrottleException.php │ │ │ │ ├── Facebook.php │ │ │ │ ├── FacebookApp.php │ │ │ │ ├── FacebookBatchRequest.php │ │ │ │ ├── FacebookBatchResponse.php │ │ │ │ ├── FacebookClient.php │ │ │ │ ├── FacebookRequest.php │ │ │ │ ├── FacebookResponse.php │ │ │ │ ├── FileUpload │ │ │ │ ├── FacebookFile.php │ │ │ │ ├── FacebookResumableUploader.php │ │ │ │ ├── FacebookTransferChunk.php │ │ │ │ ├── FacebookVideo.php │ │ │ │ └── Mimetypes.php │ │ │ │ ├── GraphNodes │ │ │ │ ├── Birthday.php │ │ │ │ ├── Collection.php │ │ │ │ ├── GraphAchievement.php │ │ │ │ ├── GraphAlbum.php │ │ │ │ ├── GraphApplication.php │ │ │ │ ├── GraphCoverPhoto.php │ │ │ │ ├── GraphEdge.php │ │ │ │ ├── GraphEvent.php │ │ │ │ ├── GraphGroup.php │ │ │ │ ├── GraphList.php │ │ │ │ ├── GraphLocation.php │ │ │ │ ├── GraphNode.php │ │ │ │ ├── GraphNodeFactory.php │ │ │ │ ├── GraphObject.php │ │ │ │ ├── GraphObjectFactory.php │ │ │ │ ├── GraphPage.php │ │ │ │ ├── GraphPicture.php │ │ │ │ ├── GraphSessionInfo.php │ │ │ │ └── GraphUser.php │ │ │ │ ├── Helpers │ │ │ │ ├── FacebookCanvasHelper.php │ │ │ │ ├── FacebookJavaScriptHelper.php │ │ │ │ ├── FacebookPageTabHelper.php │ │ │ │ ├── FacebookRedirectLoginHelper.php │ │ │ │ └── FacebookSignedRequestFromInputHelper.php │ │ │ │ ├── Http │ │ │ │ ├── GraphRawResponse.php │ │ │ │ ├── RequestBodyInterface.php │ │ │ │ ├── RequestBodyMultipart.php │ │ │ │ └── RequestBodyUrlEncoded.php │ │ │ │ ├── HttpClients │ │ │ │ ├── FacebookCurl.php │ │ │ │ ├── FacebookCurlHttpClient.php │ │ │ │ ├── FacebookGuzzleHttpClient.php │ │ │ │ ├── FacebookHttpClientInterface.php │ │ │ │ ├── FacebookStream.php │ │ │ │ ├── FacebookStreamHttpClient.php │ │ │ │ ├── HttpClientsFactory.php │ │ │ │ └── certs │ │ │ │ │ └── DigiCertHighAssuranceEVRootCA.pem │ │ │ │ ├── PersistentData │ │ │ │ ├── FacebookMemoryPersistentDataHandler.php │ │ │ │ ├── FacebookSessionPersistentDataHandler.php │ │ │ │ ├── PersistentDataFactory.php │ │ │ │ └── PersistentDataInterface.php │ │ │ │ ├── PseudoRandomString │ │ │ │ ├── McryptPseudoRandomStringGenerator.php │ │ │ │ ├── OpenSslPseudoRandomStringGenerator.php │ │ │ │ ├── PseudoRandomStringGeneratorFactory.php │ │ │ │ ├── PseudoRandomStringGeneratorInterface.php │ │ │ │ ├── PseudoRandomStringGeneratorTrait.php │ │ │ │ └── UrandomPseudoRandomStringGenerator.php │ │ │ │ ├── SignedRequest.php │ │ │ │ ├── Url │ │ │ │ ├── FacebookUrlDetectionHandler.php │ │ │ │ ├── FacebookUrlManipulator.php │ │ │ │ └── UrlDetectionInterface.php │ │ │ │ ├── autoload.php │ │ │ │ └── polyfills.php │ │ └── php-sdk-v4 │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── Facebook │ │ │ ├── Authentication │ │ │ ├── AccessToken.php │ │ │ ├── AccessTokenMetadata.php │ │ │ └── OAuth2Client.php │ │ │ ├── Exceptions │ │ │ ├── FacebookAuthenticationException.php │ │ │ ├── FacebookAuthorizationException.php │ │ │ ├── FacebookClientException.php │ │ │ ├── FacebookOtherException.php │ │ │ ├── FacebookResponseException.php │ │ │ ├── FacebookResumableUploadException.php │ │ │ ├── FacebookSDKException.php │ │ │ ├── FacebookServerException.php │ │ │ └── FacebookThrottleException.php │ │ │ ├── Facebook.php │ │ │ ├── FacebookApp.php │ │ │ ├── FacebookBatchRequest.php │ │ │ ├── FacebookBatchResponse.php │ │ │ ├── FacebookClient.php │ │ │ ├── FacebookRequest.php │ │ │ ├── FacebookResponse.php │ │ │ ├── FileUpload │ │ │ ├── FacebookFile.php │ │ │ ├── FacebookResumableUploader.php │ │ │ ├── FacebookTransferChunk.php │ │ │ ├── FacebookVideo.php │ │ │ └── Mimetypes.php │ │ │ ├── GraphNodes │ │ │ ├── Birthday.php │ │ │ ├── Collection.php │ │ │ ├── GraphAchievement.php │ │ │ ├── GraphAlbum.php │ │ │ ├── GraphApplication.php │ │ │ ├── GraphCoverPhoto.php │ │ │ ├── GraphEdge.php │ │ │ ├── GraphEvent.php │ │ │ ├── GraphGroup.php │ │ │ ├── GraphList.php │ │ │ ├── GraphLocation.php │ │ │ ├── GraphNode.php │ │ │ ├── GraphNodeFactory.php │ │ │ ├── GraphObject.php │ │ │ ├── GraphObjectFactory.php │ │ │ ├── GraphPage.php │ │ │ ├── GraphPicture.php │ │ │ ├── GraphSessionInfo.php │ │ │ └── GraphUser.php │ │ │ ├── Helpers │ │ │ ├── FacebookCanvasHelper.php │ │ │ ├── FacebookJavaScriptHelper.php │ │ │ ├── FacebookPageTabHelper.php │ │ │ ├── FacebookRedirectLoginHelper.php │ │ │ └── FacebookSignedRequestFromInputHelper.php │ │ │ ├── Http │ │ │ ├── GraphRawResponse.php │ │ │ ├── RequestBodyInterface.php │ │ │ ├── RequestBodyMultipart.php │ │ │ └── RequestBodyUrlEncoded.php │ │ │ ├── HttpClients │ │ │ ├── FacebookCurl.php │ │ │ ├── FacebookCurlHttpClient.php │ │ │ ├── FacebookGuzzleHttpClient.php │ │ │ ├── FacebookHttpClientInterface.php │ │ │ ├── FacebookStream.php │ │ │ ├── FacebookStreamHttpClient.php │ │ │ ├── HttpClientsFactory.php │ │ │ └── certs │ │ │ │ └── DigiCertHighAssuranceEVRootCA.pem │ │ │ ├── PersistentData │ │ │ ├── FacebookMemoryPersistentDataHandler.php │ │ │ ├── FacebookSessionPersistentDataHandler.php │ │ │ ├── PersistentDataFactory.php │ │ │ └── PersistentDataInterface.php │ │ │ ├── PseudoRandomString │ │ │ ├── McryptPseudoRandomStringGenerator.php │ │ │ ├── OpenSslPseudoRandomStringGenerator.php │ │ │ ├── PseudoRandomStringGeneratorFactory.php │ │ │ ├── PseudoRandomStringGeneratorInterface.php │ │ │ ├── PseudoRandomStringGeneratorTrait.php │ │ │ └── UrandomPseudoRandomStringGenerator.php │ │ │ ├── SignedRequest.php │ │ │ ├── Url │ │ │ ├── FacebookUrlDetectionHandler.php │ │ │ ├── FacebookUrlManipulator.php │ │ │ └── UrlDetectionInterface.php │ │ │ ├── autoload.php │ │ │ └── polyfills.php │ └── symfony │ │ └── css-selector │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CssSelector.php │ │ ├── CssSelectorConverter.php │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── ExpressionErrorException.php │ │ ├── InternalErrorException.php │ │ ├── ParseException.php │ │ └── SyntaxErrorException.php │ │ ├── LICENSE │ │ ├── Node │ │ ├── AbstractNode.php │ │ ├── AttributeNode.php │ │ ├── ClassNode.php │ │ ├── CombinedSelectorNode.php │ │ ├── ElementNode.php │ │ ├── FunctionNode.php │ │ ├── HashNode.php │ │ ├── NegationNode.php │ │ ├── NodeInterface.php │ │ ├── PseudoNode.php │ │ ├── SelectorNode.php │ │ └── Specificity.php │ │ ├── Parser │ │ ├── Handler │ │ │ ├── CommentHandler.php │ │ │ ├── HandlerInterface.php │ │ │ ├── HashHandler.php │ │ │ ├── IdentifierHandler.php │ │ │ ├── NumberHandler.php │ │ │ ├── StringHandler.php │ │ │ └── WhitespaceHandler.php │ │ ├── Parser.php │ │ ├── ParserInterface.php │ │ ├── Reader.php │ │ ├── Shortcut │ │ │ ├── ClassParser.php │ │ │ ├── ElementParser.php │ │ │ ├── EmptyStringParser.php │ │ │ └── HashParser.php │ │ ├── Token.php │ │ ├── TokenStream.php │ │ └── Tokenizer │ │ │ ├── Tokenizer.php │ │ │ ├── TokenizerEscaping.php │ │ │ └── TokenizerPatterns.php │ │ ├── README.md │ │ ├── Tests │ │ ├── CssSelectorConverterTest.php │ │ ├── CssSelectorTest.php │ │ ├── Node │ │ │ ├── AbstractNodeTest.php │ │ │ ├── AttributeNodeTest.php │ │ │ ├── ClassNodeTest.php │ │ │ ├── CombinedSelectorNodeTest.php │ │ │ ├── ElementNodeTest.php │ │ │ ├── FunctionNodeTest.php │ │ │ ├── HashNodeTest.php │ │ │ ├── NegationNodeTest.php │ │ │ ├── PseudoNodeTest.php │ │ │ ├── SelectorNodeTest.php │ │ │ └── SpecificityTest.php │ │ ├── Parser │ │ │ ├── Handler │ │ │ │ ├── AbstractHandlerTest.php │ │ │ │ ├── CommentHandlerTest.php │ │ │ │ ├── HashHandlerTest.php │ │ │ │ ├── IdentifierHandlerTest.php │ │ │ │ ├── NumberHandlerTest.php │ │ │ │ ├── StringHandlerTest.php │ │ │ │ └── WhitespaceHandlerTest.php │ │ │ ├── ParserTest.php │ │ │ ├── ReaderTest.php │ │ │ ├── Shortcut │ │ │ │ ├── ClassParserTest.php │ │ │ │ ├── ElementParserTest.php │ │ │ │ ├── EmptyStringParserTest.php │ │ │ │ └── HashParserTest.php │ │ │ └── TokenStreamTest.php │ │ └── XPath │ │ │ ├── Fixtures │ │ │ ├── ids.html │ │ │ ├── lang.xml │ │ │ └── shakespear.html │ │ │ └── TranslatorTest.php │ │ ├── XPath │ │ ├── Extension │ │ │ ├── AbstractExtension.php │ │ │ ├── AttributeMatchingExtension.php │ │ │ ├── CombinationExtension.php │ │ │ ├── ExtensionInterface.php │ │ │ ├── FunctionExtension.php │ │ │ ├── HtmlExtension.php │ │ │ ├── NodeExtension.php │ │ │ └── PseudoClassExtension.php │ │ ├── Translator.php │ │ ├── TranslatorInterface.php │ │ └── XPathExpr.php │ │ ├── composer.json │ │ └── phpunit.xml.dist ├── wizard │ ├── class-instant-articles-invalid-wizard-transition-exception.php │ ├── class-instant-articles-option-ads.php │ ├── class-instant-articles-option-analytics.php │ ├── class-instant-articles-option-fb-app.php │ ├── class-instant-articles-option-fb-page.php │ ├── class-instant-articles-option-publishing.php │ ├── class-instant-articles-option-styles.php │ ├── class-instant-articles-option.php │ ├── class-instant-articles-wizard-fb-helper.php │ ├── class-instant-articles-wizard-review-submission.php │ ├── class-instant-articles-wizard-state.php │ ├── class-instant-articles-wizard.php │ ├── state_machine.txt │ └── templates │ │ ├── advanced-template.php │ │ ├── all-steps-wizard.php │ │ ├── app-setup-template.php │ │ ├── overview-template.php │ │ ├── page-selection-template.php │ │ ├── review-submission-template.php │ │ ├── style-selection-template.php │ │ └── wizard-template.php └── wpcom-helper.php ├── facebook-instant-articles-3.3 ├── LICENSE ├── README.md ├── assets │ ├── banner-1544x500.jpg │ ├── banner-772x250.jpg │ ├── check@2x.png │ ├── connect@2x.png │ ├── customize@2x.png │ ├── icon-128x128.jpg │ ├── icon-256x256.jpg │ ├── icon-fb-login.png │ ├── key@2x.png │ ├── pencil.png │ └── screenshot-1.png ├── class-instant-articles-post.php ├── class-instant-articles-publisher.php ├── compat.php ├── compat │ ├── apester-rules-configuration.json │ ├── class-instant-articles-apester.php │ ├── class-instant-articles-co-authors-plus.php │ ├── class-instant-articles-get-the-image.php │ ├── class-instant-articles-google-analytics-for-wordpress.php │ ├── class-instant-articles-jetpack.php │ ├── class-instant-articles-playbuzz.php │ ├── class-instant-articles-yoast-seo.php │ ├── get-the-image-rules-configuration.json │ ├── jetpack-rules-configuration.json │ └── playbuzz-rules-configuration.json ├── css │ ├── instant-articles-meta-box.css │ ├── instant-articles-settings.css │ └── instant-articles-wizard.css ├── embeds.php ├── facebook-instant-articles.php ├── feed-template.php ├── js │ ├── instant-articles-meta-box.js │ ├── instant-articles-option-ads.js │ ├── instant-articles-option-analytics.js │ ├── instant-articles-option-publishing.js │ ├── instant-articles-settings.js │ └── instant-articles-wizard.js ├── languages │ ├── de_DE.mo │ ├── de_DE.po │ └── instant-articles.pot ├── meta-box │ ├── class-instant-articles-meta-box.php │ ├── meta-box-loader-template.php │ └── meta-box-template.php ├── readme.txt ├── rules-configuration.json ├── settings │ ├── class-instant-articles-option-ads.php │ ├── class-instant-articles-option-analytics.php │ ├── class-instant-articles-option-fb-app.php │ ├── class-instant-articles-option-fb-page.php │ ├── class-instant-articles-option-publishing.php │ ├── class-instant-articles-option-styles.php │ ├── class-instant-articles-option.php │ ├── class-instant-articles-settings-fb-page.php │ ├── class-instant-articles-settings-wizard.php │ ├── class-instant-articles-settings.php │ ├── template-settings-advanced.php │ ├── template-settings-info.php │ ├── template-settings-wizard.php │ └── template-settings.php ├── vendor │ ├── apache │ │ └── log4php │ │ │ ├── CHANGELOG │ │ │ ├── INSTALL │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README │ │ │ ├── apigen.neon │ │ │ ├── build.xml │ │ │ ├── composer.json │ │ │ ├── doap_log4php.rdf │ │ │ ├── package-config.php │ │ │ ├── package.php │ │ │ ├── phpdoc.xml │ │ │ ├── phpunit.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ ├── assembly │ │ │ └── src.xml │ │ │ ├── changes │ │ │ └── changes.xml │ │ │ ├── examples │ │ │ ├── php │ │ │ │ ├── appender_console.php │ │ │ │ ├── appender_dailyfile.php │ │ │ │ ├── appender_echo.php │ │ │ │ ├── appender_file.php │ │ │ │ ├── appender_firephp.php │ │ │ │ ├── appender_mail.php │ │ │ │ ├── appender_mailevent.php │ │ │ │ ├── appender_mongodb.php │ │ │ │ ├── appender_null.php │ │ │ │ ├── appender_pdo.php │ │ │ │ ├── appender_php.php │ │ │ │ ├── appender_rollingfile.php │ │ │ │ ├── appender_socket.php │ │ │ │ ├── appender_socket_server.php │ │ │ │ ├── appender_syslog.php │ │ │ │ ├── cache.php │ │ │ │ ├── configurator_basic.php │ │ │ │ ├── configurator_php.php │ │ │ │ ├── configurator_xml.php │ │ │ │ ├── filter_denyall.php │ │ │ │ ├── filter_levelmatch.php │ │ │ │ ├── filter_levelrange.php │ │ │ │ ├── filter_stringmatch.php │ │ │ │ ├── layout_html.php │ │ │ │ ├── layout_pattern.php │ │ │ │ ├── layout_simple.php │ │ │ │ ├── layout_ttcc.php │ │ │ │ ├── layout_xml.php │ │ │ │ ├── mdc.php │ │ │ │ ├── ndc.php │ │ │ │ ├── renderer_default.php │ │ │ │ ├── renderer_map.php │ │ │ │ └── simple.php │ │ │ └── resources │ │ │ │ ├── appender_console.properties │ │ │ │ ├── appender_dailyfile.properties │ │ │ │ ├── appender_echo.properties │ │ │ │ ├── appender_file.properties │ │ │ │ ├── appender_firephp.xml │ │ │ │ ├── appender_mail.properties │ │ │ │ ├── appender_mailevent.properties │ │ │ │ ├── appender_mongodb.xml │ │ │ │ ├── appender_null.properties │ │ │ │ ├── appender_pdo.properties │ │ │ │ ├── appender_php.properties │ │ │ │ ├── appender_rollingfile.properties │ │ │ │ ├── appender_socket.properties │ │ │ │ ├── appender_socket_server.properties │ │ │ │ ├── appender_syslog.properties │ │ │ │ ├── cache.properties │ │ │ │ ├── configurator_php.php │ │ │ │ ├── configurator_xml.xml │ │ │ │ ├── filter_denyall.xml │ │ │ │ ├── filter_levelmatch.xml │ │ │ │ ├── filter_levelrange.xml │ │ │ │ ├── filter_stringmatch.xml │ │ │ │ ├── layout_html.properties │ │ │ │ ├── layout_pattern.properties │ │ │ │ ├── layout_simple.properties │ │ │ │ ├── layout_ttcc.properties │ │ │ │ ├── layout_xml.properties │ │ │ │ ├── mdc.properties │ │ │ │ ├── ndc.properties │ │ │ │ ├── renderer_default.properties │ │ │ │ └── renderer_map.properties │ │ │ ├── main │ │ │ └── php │ │ │ │ ├── Logger.php │ │ │ │ ├── LoggerAppender.php │ │ │ │ ├── LoggerAppenderPool.php │ │ │ │ ├── LoggerAutoloader.php │ │ │ │ ├── LoggerConfigurable.php │ │ │ │ ├── LoggerConfigurator.php │ │ │ │ ├── LoggerException.php │ │ │ │ ├── LoggerFilter.php │ │ │ │ ├── LoggerHierarchy.php │ │ │ │ ├── LoggerLayout.php │ │ │ │ ├── LoggerLevel.php │ │ │ │ ├── LoggerLocationInfo.php │ │ │ │ ├── LoggerLoggingEvent.php │ │ │ │ ├── LoggerMDC.php │ │ │ │ ├── LoggerNDC.php │ │ │ │ ├── LoggerReflectionUtils.php │ │ │ │ ├── LoggerRoot.php │ │ │ │ ├── LoggerThrowableInformation.php │ │ │ │ ├── appenders │ │ │ │ ├── LoggerAppenderConsole.php │ │ │ │ ├── LoggerAppenderDailyFile.php │ │ │ │ ├── LoggerAppenderEcho.php │ │ │ │ ├── LoggerAppenderFile.php │ │ │ │ ├── LoggerAppenderFirePHP.php │ │ │ │ ├── LoggerAppenderMail.php │ │ │ │ ├── LoggerAppenderMailEvent.php │ │ │ │ ├── LoggerAppenderMongoDB.php │ │ │ │ ├── LoggerAppenderNull.php │ │ │ │ ├── LoggerAppenderPDO.php │ │ │ │ ├── LoggerAppenderPhp.php │ │ │ │ ├── LoggerAppenderRollingFile.php │ │ │ │ ├── LoggerAppenderSocket.php │ │ │ │ └── LoggerAppenderSyslog.php │ │ │ │ ├── configurators │ │ │ │ ├── LoggerConfigurationAdapter.php │ │ │ │ ├── LoggerConfigurationAdapterINI.php │ │ │ │ ├── LoggerConfigurationAdapterPHP.php │ │ │ │ ├── LoggerConfigurationAdapterXML.php │ │ │ │ └── LoggerConfiguratorDefault.php │ │ │ │ ├── filters │ │ │ │ ├── LoggerFilterDenyAll.php │ │ │ │ ├── LoggerFilterLevelMatch.php │ │ │ │ ├── LoggerFilterLevelRange.php │ │ │ │ └── LoggerFilterStringMatch.php │ │ │ │ ├── helpers │ │ │ │ ├── LoggerFormattingInfo.php │ │ │ │ ├── LoggerOptionConverter.php │ │ │ │ ├── LoggerPatternParser.php │ │ │ │ └── LoggerUtils.php │ │ │ │ ├── layouts │ │ │ │ ├── LoggerLayoutHtml.php │ │ │ │ ├── LoggerLayoutPattern.php │ │ │ │ ├── LoggerLayoutSerialized.php │ │ │ │ ├── LoggerLayoutSimple.php │ │ │ │ ├── LoggerLayoutTTCC.php │ │ │ │ └── LoggerLayoutXml.php │ │ │ │ ├── pattern │ │ │ │ ├── LoggerPatternConverter.php │ │ │ │ ├── LoggerPatternConverterClass.php │ │ │ │ ├── LoggerPatternConverterCookie.php │ │ │ │ ├── LoggerPatternConverterDate.php │ │ │ │ ├── LoggerPatternConverterEnvironment.php │ │ │ │ ├── LoggerPatternConverterFile.php │ │ │ │ ├── LoggerPatternConverterLevel.php │ │ │ │ ├── LoggerPatternConverterLine.php │ │ │ │ ├── LoggerPatternConverterLiteral.php │ │ │ │ ├── LoggerPatternConverterLocation.php │ │ │ │ ├── LoggerPatternConverterLogger.php │ │ │ │ ├── LoggerPatternConverterMDC.php │ │ │ │ ├── LoggerPatternConverterMessage.php │ │ │ │ ├── LoggerPatternConverterMethod.php │ │ │ │ ├── LoggerPatternConverterNDC.php │ │ │ │ ├── LoggerPatternConverterNewLine.php │ │ │ │ ├── LoggerPatternConverterProcess.php │ │ │ │ ├── LoggerPatternConverterRelative.php │ │ │ │ ├── LoggerPatternConverterRequest.php │ │ │ │ ├── LoggerPatternConverterServer.php │ │ │ │ ├── LoggerPatternConverterSession.php │ │ │ │ ├── LoggerPatternConverterSessionID.php │ │ │ │ ├── LoggerPatternConverterSuperglobal.php │ │ │ │ └── LoggerPatternConverterThrowable.php │ │ │ │ ├── renderers │ │ │ │ ├── LoggerRenderer.php │ │ │ │ ├── LoggerRendererDefault.php │ │ │ │ ├── LoggerRendererException.php │ │ │ │ └── LoggerRendererMap.php │ │ │ │ └── xml │ │ │ │ └── log4php.dtd │ │ │ └── site │ │ │ ├── apt │ │ │ ├── contributingpatches.apt │ │ │ ├── download.apt │ │ │ ├── index.apt │ │ │ ├── privacy-policy.apt │ │ │ └── volunteering.apt │ │ │ ├── cse.xml │ │ │ ├── resources │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── site.css │ │ │ ├── images │ │ │ │ ├── collapsed.gif │ │ │ │ ├── expanded.gif │ │ │ │ └── logos │ │ │ │ │ ├── ls-logo.jpg │ │ │ │ │ └── maven-feather.png │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── prettify.js │ │ │ │ ├── prettify.min.js │ │ │ │ └── site.js │ │ │ ├── site.vm │ │ │ ├── site.xml │ │ │ └── xdoc │ │ │ ├── changelog.xml │ │ │ ├── docs │ │ │ ├── appenders.xml │ │ │ ├── appenders │ │ │ │ ├── console.xml │ │ │ │ ├── daily-file.xml │ │ │ │ ├── echo.xml │ │ │ │ ├── file.xml │ │ │ │ ├── firephp.xml │ │ │ │ ├── mail-event.xml │ │ │ │ ├── mail.xml │ │ │ │ ├── mongodb.xml │ │ │ │ ├── null.xml │ │ │ │ ├── pdo.xml │ │ │ │ ├── php.xml │ │ │ │ ├── rolling-file.xml │ │ │ │ ├── socket.xml │ │ │ │ └── syslog.xml │ │ │ ├── configuration.xml │ │ │ ├── filters.xml │ │ │ ├── introduction.xml │ │ │ ├── layouts.xml │ │ │ ├── layouts │ │ │ │ ├── html.xml │ │ │ │ ├── pattern.xml │ │ │ │ ├── serialized.xml │ │ │ │ ├── simple.xml │ │ │ │ ├── ttcc.xml │ │ │ │ └── xml.xml │ │ │ ├── loggers.xml │ │ │ └── renderers.xml │ │ │ ├── install.xml │ │ │ ├── privacy.xml │ │ │ └── quickstart.xml │ ├── autoload.php │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ ├── facebook │ │ ├── facebook-instant-articles-sdk-php │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ └── Facebook │ │ │ │ └── InstantArticles │ │ │ │ ├── Client │ │ │ │ ├── Client.php │ │ │ │ ├── ClientException.php │ │ │ │ ├── Helper.php │ │ │ │ ├── InstantArticleStatus.php │ │ │ │ └── ServerMessage.php │ │ │ │ ├── Elements │ │ │ │ ├── Ad.php │ │ │ │ ├── Analytics.php │ │ │ │ ├── Anchor.php │ │ │ │ ├── AnimatedGIF.php │ │ │ │ ├── Audible.php │ │ │ │ ├── Audio.php │ │ │ │ ├── Author.php │ │ │ │ ├── Blockquote.php │ │ │ │ ├── Bold.php │ │ │ │ ├── Caption.php │ │ │ │ ├── Cite.php │ │ │ │ ├── Container.php │ │ │ │ ├── Div.php │ │ │ │ ├── Element.php │ │ │ │ ├── ElementWithHTML.php │ │ │ │ ├── Footer.php │ │ │ │ ├── FormattedText.php │ │ │ │ ├── GeoTag.php │ │ │ │ ├── H1.php │ │ │ │ ├── H2.php │ │ │ │ ├── H3.php │ │ │ │ ├── Header.php │ │ │ │ ├── Image.php │ │ │ │ ├── InstantArticle.php │ │ │ │ ├── InstantArticleInterface.php │ │ │ │ ├── Interactive.php │ │ │ │ ├── Italic.php │ │ │ │ ├── LineBreak.php │ │ │ │ ├── ListElement.php │ │ │ │ ├── ListItem.php │ │ │ │ ├── Map.php │ │ │ │ ├── Paragraph.php │ │ │ │ ├── Pullquote.php │ │ │ │ ├── RelatedArticles.php │ │ │ │ ├── RelatedItem.php │ │ │ │ ├── Slideshow.php │ │ │ │ ├── Small.php │ │ │ │ ├── SocialEmbed.php │ │ │ │ ├── Span.php │ │ │ │ ├── Sponsor.php │ │ │ │ ├── TextContainer.php │ │ │ │ ├── Time.php │ │ │ │ └── Video.php │ │ │ │ ├── Parser │ │ │ │ ├── Parser.php │ │ │ │ └── instant-articles-rules.json │ │ │ │ ├── Transformer │ │ │ │ ├── Getters │ │ │ │ │ ├── AbstractGetter.php │ │ │ │ │ ├── ChildrenGetter.php │ │ │ │ │ ├── ConstantGetter.php │ │ │ │ │ ├── ElementGetter.php │ │ │ │ │ ├── ExistsGetter.php │ │ │ │ │ ├── FragmentGetter.php │ │ │ │ │ ├── GetterFactory.php │ │ │ │ │ ├── IntegerGetter.php │ │ │ │ │ ├── JSONGetter.php │ │ │ │ │ ├── MultipleElementsGetter.php │ │ │ │ │ ├── NextSiblingElementGetter.php │ │ │ │ │ ├── NextSiblingGetter.php │ │ │ │ │ ├── StringGetter.php │ │ │ │ │ └── XpathGetter.php │ │ │ │ ├── Rules │ │ │ │ │ ├── AdRule.php │ │ │ │ │ ├── AnalyticsRule.php │ │ │ │ │ ├── AnchorRule.php │ │ │ │ │ ├── AudioRule.php │ │ │ │ │ ├── AuthorRule.php │ │ │ │ │ ├── BlockquoteRule.php │ │ │ │ │ ├── BoldRule.php │ │ │ │ │ ├── CaptionCreditRule.php │ │ │ │ │ ├── CaptionRule.php │ │ │ │ │ ├── Compat │ │ │ │ │ │ └── JetpackSlideshowRule.php │ │ │ │ │ ├── ConfigurationSelectorRule.php │ │ │ │ │ ├── FooterRelatedArticlesRule.php │ │ │ │ │ ├── FooterRule.php │ │ │ │ │ ├── FooterSmallRule.php │ │ │ │ │ ├── GeoTagRule.php │ │ │ │ │ ├── H1Rule.php │ │ │ │ │ ├── H2Rule.php │ │ │ │ │ ├── HeaderAdRule.php │ │ │ │ │ ├── HeaderImageRule.php │ │ │ │ │ ├── HeaderKickerRule.php │ │ │ │ │ ├── HeaderRule.php │ │ │ │ │ ├── HeaderSubTitleRule.php │ │ │ │ │ ├── HeaderTitleRule.php │ │ │ │ │ ├── IgnoreRule.php │ │ │ │ │ ├── ImageInsideParagraphRule.php │ │ │ │ │ ├── ImageRule.php │ │ │ │ │ ├── InstantArticleRule.php │ │ │ │ │ ├── InteractiveInsideParagraphRule.php │ │ │ │ │ ├── InteractiveRule.php │ │ │ │ │ ├── ItalicRule.php │ │ │ │ │ ├── LineBreakRule.php │ │ │ │ │ ├── ListElementRule.php │ │ │ │ │ ├── ListItemRule.php │ │ │ │ │ ├── MapRule.php │ │ │ │ │ ├── ParagraphFooterRule.php │ │ │ │ │ ├── ParagraphRule.php │ │ │ │ │ ├── PassThroughRule.php │ │ │ │ │ ├── PullquoteCiteRule.php │ │ │ │ │ ├── PullquoteRule.php │ │ │ │ │ ├── RelatedArticlesRule.php │ │ │ │ │ ├── RelatedItemRule.php │ │ │ │ │ ├── Rule.php │ │ │ │ │ ├── SlideshowImageRule.php │ │ │ │ │ ├── SlideshowRule.php │ │ │ │ │ ├── SocialEmbedRule.php │ │ │ │ │ ├── SponsorRule.php │ │ │ │ │ ├── TextNodeRule.php │ │ │ │ │ ├── TimeRule.php │ │ │ │ │ └── VideoRule.php │ │ │ │ ├── Transformer.php │ │ │ │ └── Warnings │ │ │ │ │ ├── DeprecatedRuleWarning.php │ │ │ │ │ ├── InvalidSelector.php │ │ │ │ │ ├── NoRootInstantArticleFoundWarning.php │ │ │ │ │ ├── UnrecognizedElement.php │ │ │ │ │ ├── ValidatorWarning.php │ │ │ │ │ └── validator_warning_messages.ini │ │ │ │ └── Validators │ │ │ │ ├── InstantArticleValidator.php │ │ │ │ └── Type.php │ │ └── graph-sdk │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ ├── phpcs.xml.dist │ │ │ └── src │ │ │ └── Facebook │ │ │ ├── Authentication │ │ │ ├── AccessToken.php │ │ │ ├── AccessTokenMetadata.php │ │ │ └── OAuth2Client.php │ │ │ ├── Exceptions │ │ │ ├── FacebookAuthenticationException.php │ │ │ ├── FacebookAuthorizationException.php │ │ │ ├── FacebookClientException.php │ │ │ ├── FacebookOtherException.php │ │ │ ├── FacebookResponseException.php │ │ │ ├── FacebookResumableUploadException.php │ │ │ ├── FacebookSDKException.php │ │ │ ├── FacebookServerException.php │ │ │ └── FacebookThrottleException.php │ │ │ ├── Facebook.php │ │ │ ├── FacebookApp.php │ │ │ ├── FacebookBatchRequest.php │ │ │ ├── FacebookBatchResponse.php │ │ │ ├── FacebookClient.php │ │ │ ├── FacebookRequest.php │ │ │ ├── FacebookResponse.php │ │ │ ├── FileUpload │ │ │ ├── FacebookFile.php │ │ │ ├── FacebookResumableUploader.php │ │ │ ├── FacebookTransferChunk.php │ │ │ ├── FacebookVideo.php │ │ │ └── Mimetypes.php │ │ │ ├── GraphNodes │ │ │ ├── Birthday.php │ │ │ ├── Collection.php │ │ │ ├── GraphAchievement.php │ │ │ ├── GraphAlbum.php │ │ │ ├── GraphApplication.php │ │ │ ├── GraphCoverPhoto.php │ │ │ ├── GraphEdge.php │ │ │ ├── GraphEvent.php │ │ │ ├── GraphGroup.php │ │ │ ├── GraphList.php │ │ │ ├── GraphLocation.php │ │ │ ├── GraphNode.php │ │ │ ├── GraphNodeFactory.php │ │ │ ├── GraphObject.php │ │ │ ├── GraphObjectFactory.php │ │ │ ├── GraphPage.php │ │ │ ├── GraphPicture.php │ │ │ ├── GraphSessionInfo.php │ │ │ └── GraphUser.php │ │ │ ├── Helpers │ │ │ ├── FacebookCanvasHelper.php │ │ │ ├── FacebookJavaScriptHelper.php │ │ │ ├── FacebookPageTabHelper.php │ │ │ ├── FacebookRedirectLoginHelper.php │ │ │ └── FacebookSignedRequestFromInputHelper.php │ │ │ ├── Http │ │ │ ├── GraphRawResponse.php │ │ │ ├── RequestBodyInterface.php │ │ │ ├── RequestBodyMultipart.php │ │ │ └── RequestBodyUrlEncoded.php │ │ │ ├── HttpClients │ │ │ ├── FacebookCurl.php │ │ │ ├── FacebookCurlHttpClient.php │ │ │ ├── FacebookGuzzleHttpClient.php │ │ │ ├── FacebookHttpClientInterface.php │ │ │ ├── FacebookStream.php │ │ │ ├── FacebookStreamHttpClient.php │ │ │ ├── HttpClientsFactory.php │ │ │ └── certs │ │ │ │ └── DigiCertHighAssuranceEVRootCA.pem │ │ │ ├── PersistentData │ │ │ ├── FacebookMemoryPersistentDataHandler.php │ │ │ ├── FacebookSessionPersistentDataHandler.php │ │ │ ├── PersistentDataFactory.php │ │ │ └── PersistentDataInterface.php │ │ │ ├── PseudoRandomString │ │ │ ├── McryptPseudoRandomStringGenerator.php │ │ │ ├── OpenSslPseudoRandomStringGenerator.php │ │ │ ├── PseudoRandomStringGeneratorFactory.php │ │ │ ├── PseudoRandomStringGeneratorInterface.php │ │ │ ├── PseudoRandomStringGeneratorTrait.php │ │ │ ├── RandomBytesPseudoRandomStringGenerator.php │ │ │ └── UrandomPseudoRandomStringGenerator.php │ │ │ ├── SignedRequest.php │ │ │ ├── Url │ │ │ ├── FacebookUrlDetectionHandler.php │ │ │ ├── FacebookUrlManipulator.php │ │ │ └── UrlDetectionInterface.php │ │ │ ├── autoload.php │ │ │ └── polyfills.php │ └── symfony │ │ └── css-selector │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CssSelector.php │ │ ├── CssSelectorConverter.php │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── ExpressionErrorException.php │ │ ├── InternalErrorException.php │ │ ├── ParseException.php │ │ └── SyntaxErrorException.php │ │ ├── LICENSE │ │ ├── Node │ │ ├── AbstractNode.php │ │ ├── AttributeNode.php │ │ ├── ClassNode.php │ │ ├── CombinedSelectorNode.php │ │ ├── ElementNode.php │ │ ├── FunctionNode.php │ │ ├── HashNode.php │ │ ├── NegationNode.php │ │ ├── NodeInterface.php │ │ ├── PseudoNode.php │ │ ├── SelectorNode.php │ │ └── Specificity.php │ │ ├── Parser │ │ ├── Handler │ │ │ ├── CommentHandler.php │ │ │ ├── HandlerInterface.php │ │ │ ├── HashHandler.php │ │ │ ├── IdentifierHandler.php │ │ │ ├── NumberHandler.php │ │ │ ├── StringHandler.php │ │ │ └── WhitespaceHandler.php │ │ ├── Parser.php │ │ ├── ParserInterface.php │ │ ├── Reader.php │ │ ├── Shortcut │ │ │ ├── ClassParser.php │ │ │ ├── ElementParser.php │ │ │ ├── EmptyStringParser.php │ │ │ └── HashParser.php │ │ ├── Token.php │ │ ├── TokenStream.php │ │ └── Tokenizer │ │ │ ├── Tokenizer.php │ │ │ ├── TokenizerEscaping.php │ │ │ └── TokenizerPatterns.php │ │ ├── README.md │ │ ├── XPath │ │ ├── Extension │ │ │ ├── AbstractExtension.php │ │ │ ├── AttributeMatchingExtension.php │ │ │ ├── CombinationExtension.php │ │ │ ├── ExtensionInterface.php │ │ │ ├── FunctionExtension.php │ │ │ ├── HtmlExtension.php │ │ │ ├── NodeExtension.php │ │ │ └── PseudoClassExtension.php │ │ ├── Translator.php │ │ ├── TranslatorInterface.php │ │ └── XPathExpr.php │ │ └── composer.json ├── wizard │ ├── class-instant-articles-invalid-wizard-transition-exception.php │ ├── class-instant-articles-option-ads.php │ ├── class-instant-articles-option-analytics.php │ ├── class-instant-articles-option-fb-app.php │ ├── class-instant-articles-option-fb-page.php │ ├── class-instant-articles-option-publishing.php │ ├── class-instant-articles-option-styles.php │ ├── class-instant-articles-option.php │ ├── class-instant-articles-wizard-fb-helper.php │ ├── class-instant-articles-wizard-review-submission.php │ ├── class-instant-articles-wizard-state.php │ ├── class-instant-articles-wizard.php │ ├── state_machine.txt │ └── templates │ │ ├── advanced-template.php │ │ ├── all-steps-wizard.php │ │ ├── app-setup-template.php │ │ ├── overview-template.php │ │ ├── page-selection-template.php │ │ ├── review-submission-template.php │ │ ├── style-selection-template.php │ │ └── wizard-template.php └── wpcom-helper.php ├── facebook-instant-articles-4.0 ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets │ ├── banner-1544x500.jpg │ ├── banner-772x250.jpg │ ├── check@2x.png │ ├── connect@2x.png │ ├── customize@2x.png │ ├── icon-128x128.jpg │ ├── icon-256x256.jpg │ ├── icon-fb-login.png │ ├── key@2x.png │ ├── pencil.png │ └── screenshot-1.png ├── class-instant-articles-amp-markup.php ├── class-instant-articles-post.php ├── compat.php ├── compat │ ├── apester-rules-configuration.json │ ├── class-instant-articles-apester.php │ ├── class-instant-articles-co-authors-plus.php │ ├── class-instant-articles-get-the-image.php │ ├── class-instant-articles-google-analytics-for-wordpress.php │ ├── class-instant-articles-jetpack.php │ ├── class-instant-articles-playbuzz.php │ ├── class-instant-articles-yoast-seo.php │ ├── get-the-image-rules-configuration.json │ ├── jetpack-rules-configuration.json │ └── playbuzz-rules-configuration.json ├── composer.json ├── composer.lock ├── css │ ├── instant-articles-meta-box.css │ ├── instant-articles-settings.css │ └── instant-articles-wizard.css ├── embeds.php ├── facebook-instant-articles.php ├── feed-template.php ├── js │ ├── instant-articles-meta-box.js │ ├── instant-articles-option-ads.js │ ├── instant-articles-option-analytics.js │ ├── instant-articles-option-publishing.js │ └── instant-articles-settings.js ├── languages │ ├── de_DE.mo │ ├── de_DE.po │ └── instant-articles.pot ├── meta-box │ ├── class-instant-articles-meta-box.php │ ├── meta-box-loader-template.php │ └── meta-box-template.php ├── phpunit.xml ├── readme.txt ├── rules-configuration.json ├── vendor │ ├── apache │ │ └── log4php │ │ │ ├── CHANGELOG │ │ │ ├── INSTALL │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README │ │ │ ├── apigen.neon │ │ │ ├── build.xml │ │ │ ├── composer.json │ │ │ ├── doap_log4php.rdf │ │ │ ├── package-config.php │ │ │ ├── package.php │ │ │ ├── phpdoc.xml │ │ │ ├── phpunit.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ ├── assembly │ │ │ └── src.xml │ │ │ ├── changes │ │ │ └── changes.xml │ │ │ ├── examples │ │ │ ├── php │ │ │ │ ├── appender_console.php │ │ │ │ ├── appender_dailyfile.php │ │ │ │ ├── appender_echo.php │ │ │ │ ├── appender_file.php │ │ │ │ ├── appender_firephp.php │ │ │ │ ├── appender_mail.php │ │ │ │ ├── appender_mailevent.php │ │ │ │ ├── appender_mongodb.php │ │ │ │ ├── appender_null.php │ │ │ │ ├── appender_pdo.php │ │ │ │ ├── appender_php.php │ │ │ │ ├── appender_rollingfile.php │ │ │ │ ├── appender_socket.php │ │ │ │ ├── appender_socket_server.php │ │ │ │ ├── appender_syslog.php │ │ │ │ ├── cache.php │ │ │ │ ├── configurator_basic.php │ │ │ │ ├── configurator_php.php │ │ │ │ ├── configurator_xml.php │ │ │ │ ├── filter_denyall.php │ │ │ │ ├── filter_levelmatch.php │ │ │ │ ├── filter_levelrange.php │ │ │ │ ├── filter_stringmatch.php │ │ │ │ ├── layout_html.php │ │ │ │ ├── layout_pattern.php │ │ │ │ ├── layout_simple.php │ │ │ │ ├── layout_ttcc.php │ │ │ │ ├── layout_xml.php │ │ │ │ ├── mdc.php │ │ │ │ ├── ndc.php │ │ │ │ ├── renderer_default.php │ │ │ │ ├── renderer_map.php │ │ │ │ └── simple.php │ │ │ └── resources │ │ │ │ ├── appender_console.properties │ │ │ │ ├── appender_dailyfile.properties │ │ │ │ ├── appender_echo.properties │ │ │ │ ├── appender_file.properties │ │ │ │ ├── appender_firephp.xml │ │ │ │ ├── appender_mail.properties │ │ │ │ ├── appender_mailevent.properties │ │ │ │ ├── appender_mongodb.xml │ │ │ │ ├── appender_null.properties │ │ │ │ ├── appender_pdo.properties │ │ │ │ ├── appender_php.properties │ │ │ │ ├── appender_rollingfile.properties │ │ │ │ ├── appender_socket.properties │ │ │ │ ├── appender_socket_server.properties │ │ │ │ ├── appender_syslog.properties │ │ │ │ ├── cache.properties │ │ │ │ ├── configurator_php.php │ │ │ │ ├── configurator_xml.xml │ │ │ │ ├── filter_denyall.xml │ │ │ │ ├── filter_levelmatch.xml │ │ │ │ ├── filter_levelrange.xml │ │ │ │ ├── filter_stringmatch.xml │ │ │ │ ├── layout_html.properties │ │ │ │ ├── layout_pattern.properties │ │ │ │ ├── layout_simple.properties │ │ │ │ ├── layout_ttcc.properties │ │ │ │ ├── layout_xml.properties │ │ │ │ ├── mdc.properties │ │ │ │ ├── ndc.properties │ │ │ │ ├── renderer_default.properties │ │ │ │ └── renderer_map.properties │ │ │ ├── main │ │ │ └── php │ │ │ │ ├── Logger.php │ │ │ │ ├── LoggerAppender.php │ │ │ │ ├── LoggerAppenderPool.php │ │ │ │ ├── LoggerAutoloader.php │ │ │ │ ├── LoggerConfigurable.php │ │ │ │ ├── LoggerConfigurator.php │ │ │ │ ├── LoggerException.php │ │ │ │ ├── LoggerFilter.php │ │ │ │ ├── LoggerHierarchy.php │ │ │ │ ├── LoggerLayout.php │ │ │ │ ├── LoggerLevel.php │ │ │ │ ├── LoggerLocationInfo.php │ │ │ │ ├── LoggerLoggingEvent.php │ │ │ │ ├── LoggerMDC.php │ │ │ │ ├── LoggerNDC.php │ │ │ │ ├── LoggerReflectionUtils.php │ │ │ │ ├── LoggerRoot.php │ │ │ │ ├── LoggerThrowableInformation.php │ │ │ │ ├── appenders │ │ │ │ ├── LoggerAppenderConsole.php │ │ │ │ ├── LoggerAppenderDailyFile.php │ │ │ │ ├── LoggerAppenderEcho.php │ │ │ │ ├── LoggerAppenderFile.php │ │ │ │ ├── LoggerAppenderFirePHP.php │ │ │ │ ├── LoggerAppenderMail.php │ │ │ │ ├── LoggerAppenderMailEvent.php │ │ │ │ ├── LoggerAppenderMongoDB.php │ │ │ │ ├── LoggerAppenderNull.php │ │ │ │ ├── LoggerAppenderPDO.php │ │ │ │ ├── LoggerAppenderPhp.php │ │ │ │ ├── LoggerAppenderRollingFile.php │ │ │ │ ├── LoggerAppenderSocket.php │ │ │ │ └── LoggerAppenderSyslog.php │ │ │ │ ├── configurators │ │ │ │ ├── LoggerConfigurationAdapter.php │ │ │ │ ├── LoggerConfigurationAdapterINI.php │ │ │ │ ├── LoggerConfigurationAdapterPHP.php │ │ │ │ ├── LoggerConfigurationAdapterXML.php │ │ │ │ └── LoggerConfiguratorDefault.php │ │ │ │ ├── filters │ │ │ │ ├── LoggerFilterDenyAll.php │ │ │ │ ├── LoggerFilterLevelMatch.php │ │ │ │ ├── LoggerFilterLevelRange.php │ │ │ │ └── LoggerFilterStringMatch.php │ │ │ │ ├── helpers │ │ │ │ ├── LoggerFormattingInfo.php │ │ │ │ ├── LoggerOptionConverter.php │ │ │ │ ├── LoggerPatternParser.php │ │ │ │ └── LoggerUtils.php │ │ │ │ ├── layouts │ │ │ │ ├── LoggerLayoutHtml.php │ │ │ │ ├── LoggerLayoutPattern.php │ │ │ │ ├── LoggerLayoutSerialized.php │ │ │ │ ├── LoggerLayoutSimple.php │ │ │ │ ├── LoggerLayoutTTCC.php │ │ │ │ └── LoggerLayoutXml.php │ │ │ │ ├── pattern │ │ │ │ ├── LoggerPatternConverter.php │ │ │ │ ├── LoggerPatternConverterClass.php │ │ │ │ ├── LoggerPatternConverterCookie.php │ │ │ │ ├── LoggerPatternConverterDate.php │ │ │ │ ├── LoggerPatternConverterEnvironment.php │ │ │ │ ├── LoggerPatternConverterFile.php │ │ │ │ ├── LoggerPatternConverterLevel.php │ │ │ │ ├── LoggerPatternConverterLine.php │ │ │ │ ├── LoggerPatternConverterLiteral.php │ │ │ │ ├── LoggerPatternConverterLocation.php │ │ │ │ ├── LoggerPatternConverterLogger.php │ │ │ │ ├── LoggerPatternConverterMDC.php │ │ │ │ ├── LoggerPatternConverterMessage.php │ │ │ │ ├── LoggerPatternConverterMethod.php │ │ │ │ ├── LoggerPatternConverterNDC.php │ │ │ │ ├── LoggerPatternConverterNewLine.php │ │ │ │ ├── LoggerPatternConverterProcess.php │ │ │ │ ├── LoggerPatternConverterRelative.php │ │ │ │ ├── LoggerPatternConverterRequest.php │ │ │ │ ├── LoggerPatternConverterServer.php │ │ │ │ ├── LoggerPatternConverterSession.php │ │ │ │ ├── LoggerPatternConverterSessionID.php │ │ │ │ ├── LoggerPatternConverterSuperglobal.php │ │ │ │ └── LoggerPatternConverterThrowable.php │ │ │ │ ├── renderers │ │ │ │ ├── LoggerRenderer.php │ │ │ │ ├── LoggerRendererDefault.php │ │ │ │ ├── LoggerRendererException.php │ │ │ │ └── LoggerRendererMap.php │ │ │ │ └── xml │ │ │ │ └── log4php.dtd │ │ │ └── site │ │ │ ├── apt │ │ │ ├── contributingpatches.apt │ │ │ ├── download.apt │ │ │ ├── index.apt │ │ │ ├── privacy-policy.apt │ │ │ └── volunteering.apt │ │ │ ├── cse.xml │ │ │ ├── resources │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── site.css │ │ │ ├── images │ │ │ │ ├── collapsed.gif │ │ │ │ ├── expanded.gif │ │ │ │ └── logos │ │ │ │ │ ├── ls-logo.jpg │ │ │ │ │ └── maven-feather.png │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── prettify.js │ │ │ │ ├── prettify.min.js │ │ │ │ └── site.js │ │ │ ├── site.vm │ │ │ ├── site.xml │ │ │ └── xdoc │ │ │ ├── changelog.xml │ │ │ ├── docs │ │ │ ├── appenders.xml │ │ │ ├── appenders │ │ │ │ ├── console.xml │ │ │ │ ├── daily-file.xml │ │ │ │ ├── echo.xml │ │ │ │ ├── file.xml │ │ │ │ ├── firephp.xml │ │ │ │ ├── mail-event.xml │ │ │ │ ├── mail.xml │ │ │ │ ├── mongodb.xml │ │ │ │ ├── null.xml │ │ │ │ ├── pdo.xml │ │ │ │ ├── php.xml │ │ │ │ ├── rolling-file.xml │ │ │ │ ├── socket.xml │ │ │ │ └── syslog.xml │ │ │ ├── configuration.xml │ │ │ ├── filters.xml │ │ │ ├── introduction.xml │ │ │ ├── layouts.xml │ │ │ ├── layouts │ │ │ │ ├── html.xml │ │ │ │ ├── pattern.xml │ │ │ │ ├── serialized.xml │ │ │ │ ├── simple.xml │ │ │ │ ├── ttcc.xml │ │ │ │ └── xml.xml │ │ │ ├── loggers.xml │ │ │ └── renderers.xml │ │ │ ├── install.xml │ │ │ ├── privacy.xml │ │ │ └── quickstart.xml │ ├── autoload.php │ ├── bin │ │ ├── phpcbf │ │ └── phpcs │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ ├── facebook │ │ ├── facebook-instant-articles-sdk-extensions-in-php │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── examples │ │ │ │ ├── example-override-styling.php │ │ │ │ ├── example-quick-start.php │ │ │ │ ├── example-simple-styling.php │ │ │ │ ├── instant-article-example.html │ │ │ │ ├── quiet_logger.php │ │ │ │ └── styles │ │ │ │ │ ├── gray.style.json │ │ │ │ │ └── style-got-from-somewhereelse.json │ │ │ ├── phpcs.xml │ │ │ ├── phpunit.xml │ │ │ ├── src │ │ │ │ └── Facebook │ │ │ │ │ └── InstantArticles │ │ │ │ │ ├── AMP │ │ │ │ │ ├── AMPArticle.php │ │ │ │ │ ├── AMPCaption.php │ │ │ │ │ ├── AMPContext.php │ │ │ │ │ ├── AMPCover.php │ │ │ │ │ ├── AMPCoverImage.php │ │ │ │ │ ├── AMPHeader.php │ │ │ │ │ ├── AMPImage.php │ │ │ │ │ └── configuration │ │ │ │ │ │ ├── default-amp.style.json │ │ │ │ │ │ └── global.amp.css │ │ │ │ │ └── Utils │ │ │ │ │ ├── CSSBuilder.php │ │ │ │ │ ├── CallbackHook.php │ │ │ │ │ ├── Hook.php │ │ │ │ │ ├── Observer.php │ │ │ │ │ └── Warning.php │ │ │ └── tests │ │ │ │ └── Facebook │ │ │ │ └── InstantArticles │ │ │ │ ├── AMP │ │ │ │ ├── AMPArticleTest.php │ │ │ │ ├── AMPCaptionTest.php │ │ │ │ ├── AMPContextTest.php │ │ │ │ ├── AMPCoverImageTest.php │ │ │ │ ├── AMPHeaderTest.php │ │ │ │ ├── articles │ │ │ │ │ ├── amp-converted.html │ │ │ │ │ ├── amp-example.html │ │ │ │ │ ├── media-cache │ │ │ │ │ │ ├── fail1.jpg │ │ │ │ │ │ ├── fb_icon_325x325.png │ │ │ │ │ │ ├── heart-rate-age-300x182.gif │ │ │ │ │ │ └── timelapse-final-4x3.mp4 │ │ │ │ │ ├── test1-amp-converted.html │ │ │ │ │ ├── test1-instant-article.html │ │ │ │ │ ├── test2-amp-converted.html │ │ │ │ │ ├── test2-instant-article.html │ │ │ │ │ ├── test3-amp-converted.html │ │ │ │ │ ├── test3-instant-article.html │ │ │ │ │ ├── test4-amp-converted.html │ │ │ │ │ ├── test4-instant-article.html │ │ │ │ │ ├── test5-amp-converted.html │ │ │ │ │ ├── test5-instant-article.html │ │ │ │ │ ├── tutorial-amp-converted.html │ │ │ │ │ └── tutorial-instant-article.html │ │ │ │ ├── default.amp-custom.css │ │ │ │ ├── default.style.json │ │ │ │ └── wod-gray.style.json │ │ │ │ └── Utils │ │ │ │ ├── CSSBuilderTest.php │ │ │ │ ├── FileUtilsPHPUnitTestCase.php │ │ │ │ ├── Greeting.php │ │ │ │ ├── HookTest.php │ │ │ │ └── ObserverTest.php │ │ ├── facebook-instant-articles-sdk-php │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── docs │ │ │ │ └── QuickStart.md │ │ │ ├── phpcs.xml │ │ │ ├── phpunit.xml │ │ │ ├── src │ │ │ │ └── Facebook │ │ │ │ │ └── InstantArticles │ │ │ │ │ ├── Client │ │ │ │ │ ├── Client.php │ │ │ │ │ ├── ClientException.php │ │ │ │ │ ├── Helper.php │ │ │ │ │ ├── InstantArticleStatus.php │ │ │ │ │ └── ServerMessage.php │ │ │ │ │ ├── Elements │ │ │ │ │ ├── Ad.php │ │ │ │ │ ├── Analytics.php │ │ │ │ │ ├── Anchor.php │ │ │ │ │ ├── AnimatedGIF.php │ │ │ │ │ ├── Audible.php │ │ │ │ │ ├── Audio.php │ │ │ │ │ ├── Author.php │ │ │ │ │ ├── Blockquote.php │ │ │ │ │ ├── Bold.php │ │ │ │ │ ├── Caption.php │ │ │ │ │ ├── Cite.php │ │ │ │ │ ├── Container.php │ │ │ │ │ ├── Div.php │ │ │ │ │ ├── Element.php │ │ │ │ │ ├── ElementWithHTML.php │ │ │ │ │ ├── Emphasized.php │ │ │ │ │ ├── Footer.php │ │ │ │ │ ├── FormattedText.php │ │ │ │ │ ├── GeoTag.php │ │ │ │ │ ├── H1.php │ │ │ │ │ ├── H2.php │ │ │ │ │ ├── H3.php │ │ │ │ │ ├── Header.php │ │ │ │ │ ├── Image.php │ │ │ │ │ ├── InstantArticle.php │ │ │ │ │ ├── InstantArticleInterface.php │ │ │ │ │ ├── Interactive.php │ │ │ │ │ ├── Italic.php │ │ │ │ │ ├── LineBreak.php │ │ │ │ │ ├── ListElement.php │ │ │ │ │ ├── ListItem.php │ │ │ │ │ ├── Map.php │ │ │ │ │ ├── Paragraph.php │ │ │ │ │ ├── Pullquote.php │ │ │ │ │ ├── RelatedArticles.php │ │ │ │ │ ├── RelatedItem.php │ │ │ │ │ ├── Slideshow.php │ │ │ │ │ ├── Small.php │ │ │ │ │ ├── SocialEmbed.php │ │ │ │ │ ├── Span.php │ │ │ │ │ ├── Sponsor.php │ │ │ │ │ ├── TextContainer.php │ │ │ │ │ ├── Time.php │ │ │ │ │ └── Video.php │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Parser.php │ │ │ │ │ └── instant-articles-rules.json │ │ │ │ │ ├── Transformer │ │ │ │ │ ├── Getters │ │ │ │ │ │ ├── AbstractGetter.php │ │ │ │ │ │ ├── ChildrenGetter.php │ │ │ │ │ │ ├── ConstantGetter.php │ │ │ │ │ │ ├── ElementGetter.php │ │ │ │ │ │ ├── ExistsGetter.php │ │ │ │ │ │ ├── FragmentGetter.php │ │ │ │ │ │ ├── GetterFactory.php │ │ │ │ │ │ ├── IntegerGetter.php │ │ │ │ │ │ ├── JSONGetter.php │ │ │ │ │ │ ├── MultipleElementsGetter.php │ │ │ │ │ │ ├── NextSiblingElementGetter.php │ │ │ │ │ │ ├── NextSiblingGetter.php │ │ │ │ │ │ ├── StringGetter.php │ │ │ │ │ │ └── XpathGetter.php │ │ │ │ │ ├── Rules │ │ │ │ │ │ ├── AdRule.php │ │ │ │ │ │ ├── AnalyticsRule.php │ │ │ │ │ │ ├── AnchorRule.php │ │ │ │ │ │ ├── AudioRule.php │ │ │ │ │ │ ├── AuthorRule.php │ │ │ │ │ │ ├── BlockquoteRule.php │ │ │ │ │ │ ├── BoldRule.php │ │ │ │ │ │ ├── CaptionCreditRule.php │ │ │ │ │ │ ├── CaptionRule.php │ │ │ │ │ │ ├── Compat │ │ │ │ │ │ │ └── JetpackSlideshowRule.php │ │ │ │ │ │ ├── ConfigurationSelectorRule.php │ │ │ │ │ │ ├── EmphasizedRule.php │ │ │ │ │ │ ├── FooterRelatedArticlesRule.php │ │ │ │ │ │ ├── FooterRule.php │ │ │ │ │ │ ├── FooterSmallRule.php │ │ │ │ │ │ ├── GeoTagRule.php │ │ │ │ │ │ ├── H1Rule.php │ │ │ │ │ │ ├── H2Rule.php │ │ │ │ │ │ ├── HeaderAdRule.php │ │ │ │ │ │ ├── HeaderImageRule.php │ │ │ │ │ │ ├── HeaderKickerRule.php │ │ │ │ │ │ ├── HeaderRule.php │ │ │ │ │ │ ├── HeaderSubTitleRule.php │ │ │ │ │ │ ├── HeaderTitleRule.php │ │ │ │ │ │ ├── IgnoreRule.php │ │ │ │ │ │ ├── ImageInsideParagraphRule.php │ │ │ │ │ │ ├── ImageRule.php │ │ │ │ │ │ ├── InstantArticleRule.php │ │ │ │ │ │ ├── InteractiveInsideParagraphRule.php │ │ │ │ │ │ ├── InteractiveRule.php │ │ │ │ │ │ ├── ItalicRule.php │ │ │ │ │ │ ├── LineBreakRule.php │ │ │ │ │ │ ├── ListElementRule.php │ │ │ │ │ │ ├── ListItemRule.php │ │ │ │ │ │ ├── MapRule.php │ │ │ │ │ │ ├── ParagraphFooterRule.php │ │ │ │ │ │ ├── ParagraphRule.php │ │ │ │ │ │ ├── PassThroughRule.php │ │ │ │ │ │ ├── PullquoteCiteRule.php │ │ │ │ │ │ ├── PullquoteRule.php │ │ │ │ │ │ ├── RelatedArticlesRule.php │ │ │ │ │ │ ├── RelatedItemRule.php │ │ │ │ │ │ ├── Rule.php │ │ │ │ │ │ ├── SlideshowImageRule.php │ │ │ │ │ │ ├── SlideshowRule.php │ │ │ │ │ │ ├── SocialEmbedRule.php │ │ │ │ │ │ ├── SponsorRule.php │ │ │ │ │ │ ├── TextNodeRule.php │ │ │ │ │ │ ├── TimeRule.php │ │ │ │ │ │ └── VideoRule.php │ │ │ │ │ ├── Transformer.php │ │ │ │ │ └── Warnings │ │ │ │ │ │ ├── DeprecatedRuleWarning.php │ │ │ │ │ │ ├── InvalidSelector.php │ │ │ │ │ │ ├── NoRootInstantArticleFoundWarning.php │ │ │ │ │ │ ├── UnrecognizedElement.php │ │ │ │ │ │ ├── ValidatorWarning.php │ │ │ │ │ │ └── validator_warning_messages.ini │ │ │ │ │ └── Validators │ │ │ │ │ ├── InstantArticleValidator.php │ │ │ │ │ └── Type.php │ │ │ └── tests │ │ │ │ └── Facebook │ │ │ │ └── InstantArticles │ │ │ │ ├── Client │ │ │ │ ├── ClientExceptionTest.php │ │ │ │ ├── ClientTest.php │ │ │ │ └── HelperTest.php │ │ │ │ ├── Elements │ │ │ │ ├── AdTest.php │ │ │ │ ├── AnalyticsTest.php │ │ │ │ ├── AudioTest.php │ │ │ │ ├── AuthorTest.php │ │ │ │ ├── BlockquoteTest.php │ │ │ │ ├── CaptionTest.php │ │ │ │ ├── CiteTest.php │ │ │ │ ├── FooterTest.php │ │ │ │ ├── GeoTagTest.php │ │ │ │ ├── H1Test.php │ │ │ │ ├── H2Test.php │ │ │ │ ├── H3Test.php │ │ │ │ ├── HeaderTest.php │ │ │ │ ├── ImageTest.php │ │ │ │ ├── InstantArticleTest.php │ │ │ │ ├── InteractiveTest.php │ │ │ │ ├── ListElementTest.php │ │ │ │ ├── MapTest.php │ │ │ │ ├── ParagraphTest.php │ │ │ │ ├── PullquoteTest.php │ │ │ │ ├── RelatedArticlesTest.php │ │ │ │ ├── SlideshowTest.php │ │ │ │ ├── SponsorTest.php │ │ │ │ ├── TimeTest.php │ │ │ │ ├── Validators │ │ │ │ │ ├── InstantArticleValidatorTest.php │ │ │ │ │ └── TypeTest.php │ │ │ │ └── VideoTest.php │ │ │ │ ├── Parser │ │ │ │ ├── ParserTest.php │ │ │ │ ├── instant-article-example-ads.html │ │ │ │ ├── instant-article-example-no-timezone.html │ │ │ │ ├── instant-article-example-nyc-timezone.html │ │ │ │ ├── instant-article-example-standard-timezone.html │ │ │ │ └── instant-article-example.html │ │ │ │ └── Transformer │ │ │ │ ├── CustomHTMLTransformerTest.php │ │ │ │ ├── Example │ │ │ │ ├── SimpleTransformerTest.php │ │ │ │ ├── simple-ia.html │ │ │ │ ├── simple-rules.json │ │ │ │ └── simple.html │ │ │ │ ├── GeneratorTrait.php │ │ │ │ ├── Rules │ │ │ │ ├── AuthorRuleTest.php │ │ │ │ ├── PullquoteRuleTest.php │ │ │ │ └── RuleTest.php │ │ │ │ ├── TransformerTest.php │ │ │ │ ├── Warnings │ │ │ │ └── InvalidSelectorTest.php │ │ │ │ ├── custom-html-ia.xml │ │ │ │ ├── custom-html-rules.json │ │ │ │ ├── custom.html │ │ │ │ ├── instant-article-example-multibyte.html │ │ │ │ ├── instant-article-example-nonutf8.html │ │ │ │ └── instant-article-example.html │ │ └── graph-sdk │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ ├── phpcs.xml.dist │ │ │ └── src │ │ │ └── Facebook │ │ │ ├── Authentication │ │ │ ├── AccessToken.php │ │ │ ├── AccessTokenMetadata.php │ │ │ └── OAuth2Client.php │ │ │ ├── Exceptions │ │ │ ├── FacebookAuthenticationException.php │ │ │ ├── FacebookAuthorizationException.php │ │ │ ├── FacebookClientException.php │ │ │ ├── FacebookOtherException.php │ │ │ ├── FacebookResponseException.php │ │ │ ├── FacebookResumableUploadException.php │ │ │ ├── FacebookSDKException.php │ │ │ ├── FacebookServerException.php │ │ │ └── FacebookThrottleException.php │ │ │ ├── Facebook.php │ │ │ ├── FacebookApp.php │ │ │ ├── FacebookBatchRequest.php │ │ │ ├── FacebookBatchResponse.php │ │ │ ├── FacebookClient.php │ │ │ ├── FacebookRequest.php │ │ │ ├── FacebookResponse.php │ │ │ ├── FileUpload │ │ │ ├── FacebookFile.php │ │ │ ├── FacebookResumableUploader.php │ │ │ ├── FacebookTransferChunk.php │ │ │ ├── FacebookVideo.php │ │ │ └── Mimetypes.php │ │ │ ├── GraphNodes │ │ │ ├── Birthday.php │ │ │ ├── Collection.php │ │ │ ├── GraphAchievement.php │ │ │ ├── GraphAlbum.php │ │ │ ├── GraphApplication.php │ │ │ ├── GraphCoverPhoto.php │ │ │ ├── GraphEdge.php │ │ │ ├── GraphEvent.php │ │ │ ├── GraphGroup.php │ │ │ ├── GraphList.php │ │ │ ├── GraphLocation.php │ │ │ ├── GraphNode.php │ │ │ ├── GraphNodeFactory.php │ │ │ ├── GraphObject.php │ │ │ ├── GraphObjectFactory.php │ │ │ ├── GraphPage.php │ │ │ ├── GraphPicture.php │ │ │ ├── GraphSessionInfo.php │ │ │ └── GraphUser.php │ │ │ ├── Helpers │ │ │ ├── FacebookCanvasHelper.php │ │ │ ├── FacebookJavaScriptHelper.php │ │ │ ├── FacebookPageTabHelper.php │ │ │ ├── FacebookRedirectLoginHelper.php │ │ │ └── FacebookSignedRequestFromInputHelper.php │ │ │ ├── Http │ │ │ ├── GraphRawResponse.php │ │ │ ├── RequestBodyInterface.php │ │ │ ├── RequestBodyMultipart.php │ │ │ └── RequestBodyUrlEncoded.php │ │ │ ├── HttpClients │ │ │ ├── FacebookCurl.php │ │ │ ├── FacebookCurlHttpClient.php │ │ │ ├── FacebookGuzzleHttpClient.php │ │ │ ├── FacebookHttpClientInterface.php │ │ │ ├── FacebookStream.php │ │ │ ├── FacebookStreamHttpClient.php │ │ │ ├── HttpClientsFactory.php │ │ │ └── certs │ │ │ │ └── DigiCertHighAssuranceEVRootCA.pem │ │ │ ├── PersistentData │ │ │ ├── FacebookMemoryPersistentDataHandler.php │ │ │ ├── FacebookSessionPersistentDataHandler.php │ │ │ ├── PersistentDataFactory.php │ │ │ └── PersistentDataInterface.php │ │ │ ├── PseudoRandomString │ │ │ ├── McryptPseudoRandomStringGenerator.php │ │ │ ├── OpenSslPseudoRandomStringGenerator.php │ │ │ ├── PseudoRandomStringGeneratorFactory.php │ │ │ ├── PseudoRandomStringGeneratorInterface.php │ │ │ ├── PseudoRandomStringGeneratorTrait.php │ │ │ ├── RandomBytesPseudoRandomStringGenerator.php │ │ │ └── UrandomPseudoRandomStringGenerator.php │ │ │ ├── SignedRequest.php │ │ │ ├── Url │ │ │ ├── FacebookUrlDetectionHandler.php │ │ │ ├── FacebookUrlManipulator.php │ │ │ └── UrlDetectionInterface.php │ │ │ ├── autoload.php │ │ │ └── polyfills.php │ ├── squizlabs │ │ └── php_codesniffer │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CodeSniffer.conf.dist │ │ │ ├── CodeSniffer.php │ │ │ ├── CodeSniffer │ │ │ ├── CLI.php │ │ │ ├── DocGenerators │ │ │ │ ├── Generator.php │ │ │ │ ├── HTML.php │ │ │ │ ├── Markdown.php │ │ │ │ └── Text.php │ │ │ ├── Exception.php │ │ │ ├── File.php │ │ │ ├── Fixer.php │ │ │ ├── Report.php │ │ │ ├── Reporting.php │ │ │ ├── Reports │ │ │ │ ├── Cbf.php │ │ │ │ ├── Checkstyle.php │ │ │ │ ├── Csv.php │ │ │ │ ├── Diff.php │ │ │ │ ├── Emacs.php │ │ │ │ ├── Full.php │ │ │ │ ├── Gitblame.php │ │ │ │ ├── Hgblame.php │ │ │ │ ├── Info.php │ │ │ │ ├── Json.php │ │ │ │ ├── Junit.php │ │ │ │ ├── Notifysend.php │ │ │ │ ├── Source.php │ │ │ │ ├── Summary.php │ │ │ │ ├── Svnblame.php │ │ │ │ ├── VersionControl.php │ │ │ │ └── Xml.php │ │ │ ├── Sniff.php │ │ │ ├── Standards │ │ │ │ ├── AbstractPatternSniff.php │ │ │ │ ├── AbstractScopeSniff.php │ │ │ │ ├── AbstractVariableSniff.php │ │ │ │ ├── Generic │ │ │ │ │ ├── Docs │ │ │ │ │ │ ├── Classes │ │ │ │ │ │ │ ├── DuplicateClassNameStandard.xml │ │ │ │ │ │ │ └── OpeningBraceSameLineStandard.xml │ │ │ │ │ │ ├── CodeAnalysis │ │ │ │ │ │ │ ├── EmptyStatementStandard.xml │ │ │ │ │ │ │ ├── ForLoopShouldBeWhileLoopStandard.xml │ │ │ │ │ │ │ ├── ForLoopWithTestFunctionCallStandard.xml │ │ │ │ │ │ │ ├── JumbledIncrementerStandard.xml │ │ │ │ │ │ │ ├── UnconditionalIfStatementStandard.xml │ │ │ │ │ │ │ ├── UnnecessaryFinalModifierStandard.xml │ │ │ │ │ │ │ ├── UnusedFunctionParameterStandard.xml │ │ │ │ │ │ │ └── UselessOverridingMethodStandard.xml │ │ │ │ │ │ ├── Commenting │ │ │ │ │ │ │ ├── FixmeStandard.xml │ │ │ │ │ │ │ └── TodoStandard.xml │ │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ │ └── InlineControlStructureStandard.xml │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ ├── CSSLintStandard.xml │ │ │ │ │ │ │ ├── ClosureLinterStandard.xml │ │ │ │ │ │ │ └── JSHintStandard.xml │ │ │ │ │ │ ├── Files │ │ │ │ │ │ │ ├── ByteOrderMarkStandard.xml │ │ │ │ │ │ │ ├── EndFileNewlineStandard.xml │ │ │ │ │ │ │ ├── EndFileNoNewlineStandard.xml │ │ │ │ │ │ │ ├── InlineHTMLStandard.xml │ │ │ │ │ │ │ ├── LineEndingsStandard.xml │ │ │ │ │ │ │ ├── LineLengthStandard.xml │ │ │ │ │ │ │ ├── LowercasedFilenameStandard.xml │ │ │ │ │ │ │ ├── OneClassPerFileStandard.xml │ │ │ │ │ │ │ └── OneInterfacePerFileStandard.xml │ │ │ │ │ │ ├── Formatting │ │ │ │ │ │ │ ├── DisallowMultipleStatementsStandard.xml │ │ │ │ │ │ │ ├── MultipleStatementAlignmentStandard.xml │ │ │ │ │ │ │ ├── NoSpaceAfterCastStandard.xml │ │ │ │ │ │ │ └── SpaceAfterCastStandard.xml │ │ │ │ │ │ ├── Functions │ │ │ │ │ │ │ ├── CallTimePassByReferenceStandard.xml │ │ │ │ │ │ │ ├── FunctionCallArgumentSpacingStandard.xml │ │ │ │ │ │ │ ├── OpeningFunctionBraceBsdAllmanStandard.xml │ │ │ │ │ │ │ └── OpeningFunctionBraceKernighanRitchieStandard.xml │ │ │ │ │ │ ├── Metrics │ │ │ │ │ │ │ ├── CyclomaticComplexityStandard.xml │ │ │ │ │ │ │ └── NestingLevelStandard.xml │ │ │ │ │ │ ├── NamingConventions │ │ │ │ │ │ │ ├── CamelCapsFunctionNameStandard.xml │ │ │ │ │ │ │ ├── ConstructorNameStandard.xml │ │ │ │ │ │ │ └── UpperCaseConstantNameStandard.xml │ │ │ │ │ │ ├── PHP │ │ │ │ │ │ │ ├── BacktickOperatorStandard.xml │ │ │ │ │ │ │ ├── CharacterBeforePHPOpeningTagStandard.xml │ │ │ │ │ │ │ ├── ClosingPHPTagStandard.xml │ │ │ │ │ │ │ ├── DeprecatedFunctionsStandard.xml │ │ │ │ │ │ │ ├── DisallowAlternativePHPTagsStandard.xml │ │ │ │ │ │ │ ├── DisallowShortOpenTagStandard.xml │ │ │ │ │ │ │ ├── ForbiddenFunctionsStandard.xml │ │ │ │ │ │ │ ├── LowerCaseConstantStandard.xml │ │ │ │ │ │ │ ├── LowerCaseKeywordStandard.xml │ │ │ │ │ │ │ ├── NoSilencedErrorsStandard.xml │ │ │ │ │ │ │ ├── SAPIUsageStandard.xml │ │ │ │ │ │ │ └── UpperCaseConstantStandard.xml │ │ │ │ │ │ ├── Strings │ │ │ │ │ │ │ └── UnnecessaryStringConcatStandard.xml │ │ │ │ │ │ ├── VersionControl │ │ │ │ │ │ │ └── SubversionPropertiesStandard.xml │ │ │ │ │ │ └── WhiteSpace │ │ │ │ │ │ │ ├── DisallowSpaceIndentStandard.xml │ │ │ │ │ │ │ ├── DisallowTabIndentStandard.xml │ │ │ │ │ │ │ └── ScopeIndentStandard.xml │ │ │ │ │ ├── Sniffs │ │ │ │ │ │ ├── Arrays │ │ │ │ │ │ │ ├── DisallowLongArraySyntaxSniff.php │ │ │ │ │ │ │ └── DisallowShortArraySyntaxSniff.php │ │ │ │ │ │ ├── Classes │ │ │ │ │ │ │ ├── DuplicateClassNameSniff.php │ │ │ │ │ │ │ └── OpeningBraceSameLineSniff.php │ │ │ │ │ │ ├── CodeAnalysis │ │ │ │ │ │ │ ├── EmptyStatementSniff.php │ │ │ │ │ │ │ ├── ForLoopShouldBeWhileLoopSniff.php │ │ │ │ │ │ │ ├── ForLoopWithTestFunctionCallSniff.php │ │ │ │ │ │ │ ├── JumbledIncrementerSniff.php │ │ │ │ │ │ │ ├── UnconditionalIfStatementSniff.php │ │ │ │ │ │ │ ├── UnnecessaryFinalModifierSniff.php │ │ │ │ │ │ │ ├── UnusedFunctionParameterSniff.php │ │ │ │ │ │ │ └── UselessOverridingMethodSniff.php │ │ │ │ │ │ ├── Commenting │ │ │ │ │ │ │ ├── DocCommentSniff.php │ │ │ │ │ │ │ ├── FixmeSniff.php │ │ │ │ │ │ │ └── TodoSniff.php │ │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ │ └── InlineControlStructureSniff.php │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ ├── CSSLintSniff.php │ │ │ │ │ │ │ ├── ClosureLinterSniff.php │ │ │ │ │ │ │ ├── ESLintSniff.php │ │ │ │ │ │ │ └── JSHintSniff.php │ │ │ │ │ │ ├── Files │ │ │ │ │ │ │ ├── ByteOrderMarkSniff.php │ │ │ │ │ │ │ ├── EndFileNewlineSniff.php │ │ │ │ │ │ │ ├── EndFileNoNewlineSniff.php │ │ │ │ │ │ │ ├── InlineHTMLSniff.php │ │ │ │ │ │ │ ├── LineEndingsSniff.php │ │ │ │ │ │ │ ├── LineLengthSniff.php │ │ │ │ │ │ │ ├── LowercasedFilenameSniff.php │ │ │ │ │ │ │ ├── OneClassPerFileSniff.php │ │ │ │ │ │ │ ├── OneInterfacePerFileSniff.php │ │ │ │ │ │ │ └── OneTraitPerFileSniff.php │ │ │ │ │ │ ├── Formatting │ │ │ │ │ │ │ ├── DisallowMultipleStatementsSniff.php │ │ │ │ │ │ │ ├── MultipleStatementAlignmentSniff.php │ │ │ │ │ │ │ ├── NoSpaceAfterCastSniff.php │ │ │ │ │ │ │ ├── SpaceAfterCastSniff.php │ │ │ │ │ │ │ └── SpaceAfterNotSniff.php │ │ │ │ │ │ ├── Functions │ │ │ │ │ │ │ ├── CallTimePassByReferenceSniff.php │ │ │ │ │ │ │ ├── FunctionCallArgumentSpacingSniff.php │ │ │ │ │ │ │ ├── OpeningFunctionBraceBsdAllmanSniff.php │ │ │ │ │ │ │ └── OpeningFunctionBraceKernighanRitchieSniff.php │ │ │ │ │ │ ├── Metrics │ │ │ │ │ │ │ ├── CyclomaticComplexitySniff.php │ │ │ │ │ │ │ └── NestingLevelSniff.php │ │ │ │ │ │ ├── NamingConventions │ │ │ │ │ │ │ ├── CamelCapsFunctionNameSniff.php │ │ │ │ │ │ │ ├── ConstructorNameSniff.php │ │ │ │ │ │ │ └── UpperCaseConstantNameSniff.php │ │ │ │ │ │ ├── PHP │ │ │ │ │ │ │ ├── BacktickOperatorSniff.php │ │ │ │ │ │ │ ├── CharacterBeforePHPOpeningTagSniff.php │ │ │ │ │ │ │ ├── ClosingPHPTagSniff.php │ │ │ │ │ │ │ ├── DeprecatedFunctionsSniff.php │ │ │ │ │ │ │ ├── DisallowAlternativePHPTagsSniff.php │ │ │ │ │ │ │ ├── DisallowShortOpenTagSniff.php │ │ │ │ │ │ │ ├── ForbiddenFunctionsSniff.php │ │ │ │ │ │ │ ├── LowerCaseConstantSniff.php │ │ │ │ │ │ │ ├── LowerCaseKeywordSniff.php │ │ │ │ │ │ │ ├── NoSilencedErrorsSniff.php │ │ │ │ │ │ │ ├── SAPIUsageSniff.php │ │ │ │ │ │ │ ├── SyntaxSniff.php │ │ │ │ │ │ │ └── UpperCaseConstantSniff.php │ │ │ │ │ │ ├── Strings │ │ │ │ │ │ │ └── UnnecessaryStringConcatSniff.php │ │ │ │ │ │ ├── VersionControl │ │ │ │ │ │ │ └── SubversionPropertiesSniff.php │ │ │ │ │ │ └── WhiteSpace │ │ │ │ │ │ │ ├── DisallowSpaceIndentSniff.php │ │ │ │ │ │ │ ├── DisallowTabIndentSniff.php │ │ │ │ │ │ │ └── ScopeIndentSniff.php │ │ │ │ │ └── ruleset.xml │ │ │ │ ├── IncorrectPatternException.php │ │ │ │ ├── MySource │ │ │ │ │ ├── Sniffs │ │ │ │ │ │ ├── CSS │ │ │ │ │ │ │ └── BrowserSpecificStylesSniff.php │ │ │ │ │ │ ├── Channels │ │ │ │ │ │ │ ├── DisallowSelfActionsSniff.php │ │ │ │ │ │ │ ├── IncludeOwnSystemSniff.php │ │ │ │ │ │ │ ├── IncludeSystemSniff.php │ │ │ │ │ │ │ └── UnusedSystemSniff.php │ │ │ │ │ │ ├── Commenting │ │ │ │ │ │ │ └── FunctionCommentSniff.php │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ ├── DebugCodeSniff.php │ │ │ │ │ │ │ └── FirebugConsoleSniff.php │ │ │ │ │ │ ├── Objects │ │ │ │ │ │ │ ├── AssignThisSniff.php │ │ │ │ │ │ │ ├── CreateWidgetTypeCallbackSniff.php │ │ │ │ │ │ │ └── DisallowNewWidgetSniff.php │ │ │ │ │ │ ├── PHP │ │ │ │ │ │ │ ├── AjaxNullComparisonSniff.php │ │ │ │ │ │ │ ├── EvalObjectFactorySniff.php │ │ │ │ │ │ │ ├── GetRequestDataSniff.php │ │ │ │ │ │ │ └── ReturnFunctionValueSniff.php │ │ │ │ │ │ └── Strings │ │ │ │ │ │ │ └── JoinStringsSniff.php │ │ │ │ │ └── ruleset.xml │ │ │ │ ├── PEAR │ │ │ │ │ ├── Docs │ │ │ │ │ │ ├── Classes │ │ │ │ │ │ │ └── ClassDeclarationStandard.xml │ │ │ │ │ │ ├── Commenting │ │ │ │ │ │ │ ├── ClassCommentStandard.xml │ │ │ │ │ │ │ ├── FileCommentStandard.xml │ │ │ │ │ │ │ ├── FunctionCommentStandard.xml │ │ │ │ │ │ │ └── InlineCommentStandard.xml │ │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ │ ├── ControlSignatureStandard.xml │ │ │ │ │ │ │ └── MultiLineConditionStandard.xml │ │ │ │ │ │ ├── Files │ │ │ │ │ │ │ ├── IncludingFileStandard.xml │ │ │ │ │ │ │ └── LineLengthStandard.xml │ │ │ │ │ │ ├── Formatting │ │ │ │ │ │ │ └── MultiLineAssignmentStandard.xml │ │ │ │ │ │ ├── Functions │ │ │ │ │ │ │ ├── FunctionCallSignatureStandard.xml │ │ │ │ │ │ │ ├── FunctionDeclarationStandard.xml │ │ │ │ │ │ │ └── ValidDefaultValueStandard.xml │ │ │ │ │ │ ├── NamingConventions │ │ │ │ │ │ │ ├── ValidClassNameStandard.xml │ │ │ │ │ │ │ ├── ValidFunctionNameStandard.xml │ │ │ │ │ │ │ └── ValidVariableNameStandard.xml │ │ │ │ │ │ └── WhiteSpace │ │ │ │ │ │ │ ├── ObjectOperatorIndentStandard.xml │ │ │ │ │ │ │ ├── ScopeClosingBraceStandard.xml │ │ │ │ │ │ │ └── ScopeIndentStandard.xml │ │ │ │ │ ├── Sniffs │ │ │ │ │ │ ├── Classes │ │ │ │ │ │ │ └── ClassDeclarationSniff.php │ │ │ │ │ │ ├── Commenting │ │ │ │ │ │ │ ├── ClassCommentSniff.php │ │ │ │ │ │ │ ├── FileCommentSniff.php │ │ │ │ │ │ │ ├── FunctionCommentSniff.php │ │ │ │ │ │ │ └── InlineCommentSniff.php │ │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ │ ├── ControlSignatureSniff.php │ │ │ │ │ │ │ └── MultiLineConditionSniff.php │ │ │ │ │ │ ├── Files │ │ │ │ │ │ │ └── IncludingFileSniff.php │ │ │ │ │ │ ├── Formatting │ │ │ │ │ │ │ └── MultiLineAssignmentSniff.php │ │ │ │ │ │ ├── Functions │ │ │ │ │ │ │ ├── FunctionCallSignatureSniff.php │ │ │ │ │ │ │ ├── FunctionDeclarationSniff.php │ │ │ │ │ │ │ └── ValidDefaultValueSniff.php │ │ │ │ │ │ ├── NamingConventions │ │ │ │ │ │ │ ├── ValidClassNameSniff.php │ │ │ │ │ │ │ ├── ValidFunctionNameSniff.php │ │ │ │ │ │ │ └── ValidVariableNameSniff.php │ │ │ │ │ │ └── WhiteSpace │ │ │ │ │ │ │ ├── ObjectOperatorIndentSniff.php │ │ │ │ │ │ │ ├── ScopeClosingBraceSniff.php │ │ │ │ │ │ │ └── ScopeIndentSniff.php │ │ │ │ │ └── ruleset.xml │ │ │ │ ├── PHPCS │ │ │ │ │ └── ruleset.xml │ │ │ │ ├── PSR1 │ │ │ │ │ ├── Docs │ │ │ │ │ │ ├── Classes │ │ │ │ │ │ │ └── ClassDeclarationStandard.xml │ │ │ │ │ │ └── Files │ │ │ │ │ │ │ └── SideEffectsStandard.xml │ │ │ │ │ ├── Sniffs │ │ │ │ │ │ ├── Classes │ │ │ │ │ │ │ └── ClassDeclarationSniff.php │ │ │ │ │ │ ├── Files │ │ │ │ │ │ │ └── SideEffectsSniff.php │ │ │ │ │ │ └── Methods │ │ │ │ │ │ │ └── CamelCapsMethodNameSniff.php │ │ │ │ │ └── ruleset.xml │ │ │ │ ├── PSR2 │ │ │ │ │ ├── Docs │ │ │ │ │ │ ├── Classes │ │ │ │ │ │ │ ├── ClassDeclarationStandard.xml │ │ │ │ │ │ │ └── PropertyDeclarationStandard.xml │ │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ │ ├── ControlStructureSpacingStandard.xml │ │ │ │ │ │ │ ├── ElseIfDeclarationStandard.xml │ │ │ │ │ │ │ └── SwitchDeclarationStandard.xml │ │ │ │ │ │ ├── Files │ │ │ │ │ │ │ └── EndFileNewlineStandard.xml │ │ │ │ │ │ ├── Methods │ │ │ │ │ │ │ └── MethodDeclarationStandard.xml │ │ │ │ │ │ └── Namespaces │ │ │ │ │ │ │ ├── NamespaceDeclarationStandard.xml │ │ │ │ │ │ │ └── UseDeclarationStandard.xml │ │ │ │ │ ├── Sniffs │ │ │ │ │ │ ├── Classes │ │ │ │ │ │ │ ├── ClassDeclarationSniff.php │ │ │ │ │ │ │ └── PropertyDeclarationSniff.php │ │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ │ ├── ControlStructureSpacingSniff.php │ │ │ │ │ │ │ ├── ElseIfDeclarationSniff.php │ │ │ │ │ │ │ └── SwitchDeclarationSniff.php │ │ │ │ │ │ ├── Files │ │ │ │ │ │ │ ├── ClosingTagSniff.php │ │ │ │ │ │ │ └── EndFileNewlineSniff.php │ │ │ │ │ │ ├── Methods │ │ │ │ │ │ │ ├── FunctionCallSignatureSniff.php │ │ │ │ │ │ │ ├── FunctionClosingBraceSniff.php │ │ │ │ │ │ │ └── MethodDeclarationSniff.php │ │ │ │ │ │ └── Namespaces │ │ │ │ │ │ │ ├── NamespaceDeclarationSniff.php │ │ │ │ │ │ │ └── UseDeclarationSniff.php │ │ │ │ │ └── ruleset.xml │ │ │ │ ├── Squiz │ │ │ │ │ ├── Docs │ │ │ │ │ │ ├── Arrays │ │ │ │ │ │ │ ├── ArrayBracketSpacingStandard.xml │ │ │ │ │ │ │ └── ArrayDeclarationStandard.xml │ │ │ │ │ │ ├── Classes │ │ │ │ │ │ │ ├── LowercaseClassKeywordsStandard.xml │ │ │ │ │ │ │ └── SelfMemberReferenceStandard.xml │ │ │ │ │ │ ├── Commenting │ │ │ │ │ │ │ ├── DocCommentAlignmentStandard.xml │ │ │ │ │ │ │ └── FunctionCommentThrowTagStandard.xml │ │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ │ ├── ForEachLoopDeclarationStandard.xml │ │ │ │ │ │ │ ├── ForLoopDeclarationStandard.xml │ │ │ │ │ │ │ └── LowercaseDeclarationStandard.xml │ │ │ │ │ │ ├── Functions │ │ │ │ │ │ │ ├── FunctionDuplicateArgumentStandard.xml │ │ │ │ │ │ │ └── LowercaseFunctionKeywordsStandard.xml │ │ │ │ │ │ ├── Scope │ │ │ │ │ │ │ └── StaticThisUsageStandard.xml │ │ │ │ │ │ ├── Strings │ │ │ │ │ │ │ └── EchoedStringsStandard.xml │ │ │ │ │ │ └── WhiteSpace │ │ │ │ │ │ │ ├── CastSpacingStandard.xml │ │ │ │ │ │ │ ├── FunctionOpeningBraceStandard.xml │ │ │ │ │ │ │ ├── LanguageConstructSpacingStandard.xml │ │ │ │ │ │ │ ├── ObjectOperatorSpacingStandard.xml │ │ │ │ │ │ │ ├── ScopeKeywordSpacingStandard.xml │ │ │ │ │ │ │ └── SemicolonSpacingStandard.xml │ │ │ │ │ ├── Sniffs │ │ │ │ │ │ ├── Arrays │ │ │ │ │ │ │ ├── ArrayBracketSpacingSniff.php │ │ │ │ │ │ │ └── ArrayDeclarationSniff.php │ │ │ │ │ │ ├── CSS │ │ │ │ │ │ │ ├── ClassDefinitionClosingBraceSpaceSniff.php │ │ │ │ │ │ │ ├── ClassDefinitionNameSpacingSniff.php │ │ │ │ │ │ │ ├── ClassDefinitionOpeningBraceSpaceSniff.php │ │ │ │ │ │ │ ├── ColonSpacingSniff.php │ │ │ │ │ │ │ ├── ColourDefinitionSniff.php │ │ │ │ │ │ │ ├── DisallowMultipleStyleDefinitionsSniff.php │ │ │ │ │ │ │ ├── DuplicateClassDefinitionSniff.php │ │ │ │ │ │ │ ├── DuplicateStyleDefinitionSniff.php │ │ │ │ │ │ │ ├── EmptyClassDefinitionSniff.php │ │ │ │ │ │ │ ├── EmptyStyleDefinitionSniff.php │ │ │ │ │ │ │ ├── ForbiddenStylesSniff.php │ │ │ │ │ │ │ ├── IndentationSniff.php │ │ │ │ │ │ │ ├── LowercaseStyleDefinitionSniff.php │ │ │ │ │ │ │ ├── MissingColonSniff.php │ │ │ │ │ │ │ ├── NamedColoursSniff.php │ │ │ │ │ │ │ ├── OpacitySniff.php │ │ │ │ │ │ │ ├── SemicolonSpacingSniff.php │ │ │ │ │ │ │ └── ShorthandSizeSniff.php │ │ │ │ │ │ ├── Classes │ │ │ │ │ │ │ ├── ClassDeclarationSniff.php │ │ │ │ │ │ │ ├── ClassFileNameSniff.php │ │ │ │ │ │ │ ├── DuplicatePropertySniff.php │ │ │ │ │ │ │ ├── LowercaseClassKeywordsSniff.php │ │ │ │ │ │ │ ├── SelfMemberReferenceSniff.php │ │ │ │ │ │ │ └── ValidClassNameSniff.php │ │ │ │ │ │ ├── Commenting │ │ │ │ │ │ │ ├── BlockCommentSniff.php │ │ │ │ │ │ │ ├── ClassCommentSniff.php │ │ │ │ │ │ │ ├── ClosingDeclarationCommentSniff.php │ │ │ │ │ │ │ ├── DocCommentAlignmentSniff.php │ │ │ │ │ │ │ ├── EmptyCatchCommentSniff.php │ │ │ │ │ │ │ ├── FileCommentSniff.php │ │ │ │ │ │ │ ├── FunctionCommentSniff.php │ │ │ │ │ │ │ ├── FunctionCommentThrowTagSniff.php │ │ │ │ │ │ │ ├── InlineCommentSniff.php │ │ │ │ │ │ │ ├── LongConditionClosingCommentSniff.php │ │ │ │ │ │ │ ├── PostStatementCommentSniff.php │ │ │ │ │ │ │ └── VariableCommentSniff.php │ │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ │ ├── ControlSignatureSniff.php │ │ │ │ │ │ │ ├── ElseIfDeclarationSniff.php │ │ │ │ │ │ │ ├── ForEachLoopDeclarationSniff.php │ │ │ │ │ │ │ ├── ForLoopDeclarationSniff.php │ │ │ │ │ │ │ ├── InlineIfDeclarationSniff.php │ │ │ │ │ │ │ ├── LowercaseDeclarationSniff.php │ │ │ │ │ │ │ └── SwitchDeclarationSniff.php │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ ├── JSLintSniff.php │ │ │ │ │ │ │ └── JavaScriptLintSniff.php │ │ │ │ │ │ ├── Files │ │ │ │ │ │ │ └── FileExtensionSniff.php │ │ │ │ │ │ ├── Formatting │ │ │ │ │ │ │ └── OperatorBracketSniff.php │ │ │ │ │ │ ├── Functions │ │ │ │ │ │ │ ├── FunctionDeclarationArgumentSpacingSniff.php │ │ │ │ │ │ │ ├── FunctionDeclarationSniff.php │ │ │ │ │ │ │ ├── FunctionDuplicateArgumentSniff.php │ │ │ │ │ │ │ ├── GlobalFunctionSniff.php │ │ │ │ │ │ │ ├── LowercaseFunctionKeywordsSniff.php │ │ │ │ │ │ │ └── MultiLineFunctionDeclarationSniff.php │ │ │ │ │ │ ├── NamingConventions │ │ │ │ │ │ │ ├── ValidFunctionNameSniff.php │ │ │ │ │ │ │ └── ValidVariableNameSniff.php │ │ │ │ │ │ ├── Objects │ │ │ │ │ │ │ ├── DisallowObjectStringIndexSniff.php │ │ │ │ │ │ │ ├── ObjectInstantiationSniff.php │ │ │ │ │ │ │ └── ObjectMemberCommaSniff.php │ │ │ │ │ │ ├── Operators │ │ │ │ │ │ │ ├── ComparisonOperatorUsageSniff.php │ │ │ │ │ │ │ ├── IncrementDecrementUsageSniff.php │ │ │ │ │ │ │ └── ValidLogicalOperatorsSniff.php │ │ │ │ │ │ ├── PHP │ │ │ │ │ │ │ ├── CommentedOutCodeSniff.php │ │ │ │ │ │ │ ├── DisallowBooleanStatementSniff.php │ │ │ │ │ │ │ ├── DisallowComparisonAssignmentSniff.php │ │ │ │ │ │ │ ├── DisallowInlineIfSniff.php │ │ │ │ │ │ │ ├── DisallowMultipleAssignmentsSniff.php │ │ │ │ │ │ │ ├── DisallowObEndFlushSniff.php │ │ │ │ │ │ │ ├── DisallowSizeFunctionsInLoopsSniff.php │ │ │ │ │ │ │ ├── DiscouragedFunctionsSniff.php │ │ │ │ │ │ │ ├── EmbeddedPhpSniff.php │ │ │ │ │ │ │ ├── EvalSniff.php │ │ │ │ │ │ │ ├── ForbiddenFunctionsSniff.php │ │ │ │ │ │ │ ├── GlobalKeywordSniff.php │ │ │ │ │ │ │ ├── HeredocSniff.php │ │ │ │ │ │ │ ├── InnerFunctionsSniff.php │ │ │ │ │ │ │ ├── LowercasePHPFunctionsSniff.php │ │ │ │ │ │ │ └── NonExecutableCodeSniff.php │ │ │ │ │ │ ├── Scope │ │ │ │ │ │ │ ├── MemberVarScopeSniff.php │ │ │ │ │ │ │ ├── MethodScopeSniff.php │ │ │ │ │ │ │ └── StaticThisUsageSniff.php │ │ │ │ │ │ ├── Strings │ │ │ │ │ │ │ ├── ConcatenationSpacingSniff.php │ │ │ │ │ │ │ ├── DoubleQuoteUsageSniff.php │ │ │ │ │ │ │ └── EchoedStringsSniff.php │ │ │ │ │ │ └── WhiteSpace │ │ │ │ │ │ │ ├── CastSpacingSniff.php │ │ │ │ │ │ │ ├── ControlStructureSpacingSniff.php │ │ │ │ │ │ │ ├── FunctionClosingBraceSpaceSniff.php │ │ │ │ │ │ │ ├── FunctionOpeningBraceSpaceSniff.php │ │ │ │ │ │ │ ├── FunctionSpacingSniff.php │ │ │ │ │ │ │ ├── LanguageConstructSpacingSniff.php │ │ │ │ │ │ │ ├── LogicalOperatorSpacingSniff.php │ │ │ │ │ │ │ ├── MemberVarSpacingSniff.php │ │ │ │ │ │ │ ├── ObjectOperatorSpacingSniff.php │ │ │ │ │ │ │ ├── OperatorSpacingSniff.php │ │ │ │ │ │ │ ├── PropertyLabelSpacingSniff.php │ │ │ │ │ │ │ ├── ScopeClosingBraceSniff.php │ │ │ │ │ │ │ ├── ScopeKeywordSpacingSniff.php │ │ │ │ │ │ │ ├── SemicolonSpacingSniff.php │ │ │ │ │ │ │ └── SuperfluousWhitespaceSniff.php │ │ │ │ │ └── ruleset.xml │ │ │ │ └── Zend │ │ │ │ │ ├── Docs │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── CodeAnalyzerStandard.xml │ │ │ │ │ ├── Files │ │ │ │ │ │ └── ClosingTagStandard.xml │ │ │ │ │ └── NamingConventions │ │ │ │ │ │ └── ValidVariableNameStandard.xml │ │ │ │ │ ├── Sniffs │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── CodeAnalyzerSniff.php │ │ │ │ │ ├── Files │ │ │ │ │ │ └── ClosingTagSniff.php │ │ │ │ │ └── NamingConventions │ │ │ │ │ │ └── ValidVariableNameSniff.php │ │ │ │ │ └── ruleset.xml │ │ │ ├── Tokenizers │ │ │ │ ├── CSS.php │ │ │ │ ├── Comment.php │ │ │ │ ├── JS.php │ │ │ │ └── PHP.php │ │ │ └── Tokens.php │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── licence.txt │ │ │ └── phpcs.xml.dist │ ├── symfony │ │ └── css-selector │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CssSelector.php │ │ │ ├── CssSelectorConverter.php │ │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── ExpressionErrorException.php │ │ │ ├── InternalErrorException.php │ │ │ ├── ParseException.php │ │ │ └── SyntaxErrorException.php │ │ │ ├── LICENSE │ │ │ ├── Node │ │ │ ├── AbstractNode.php │ │ │ ├── AttributeNode.php │ │ │ ├── ClassNode.php │ │ │ ├── CombinedSelectorNode.php │ │ │ ├── ElementNode.php │ │ │ ├── FunctionNode.php │ │ │ ├── HashNode.php │ │ │ ├── NegationNode.php │ │ │ ├── NodeInterface.php │ │ │ ├── PseudoNode.php │ │ │ ├── SelectorNode.php │ │ │ └── Specificity.php │ │ │ ├── Parser │ │ │ ├── Handler │ │ │ │ ├── CommentHandler.php │ │ │ │ ├── HandlerInterface.php │ │ │ │ ├── HashHandler.php │ │ │ │ ├── IdentifierHandler.php │ │ │ │ ├── NumberHandler.php │ │ │ │ ├── StringHandler.php │ │ │ │ └── WhitespaceHandler.php │ │ │ ├── Parser.php │ │ │ ├── ParserInterface.php │ │ │ ├── Reader.php │ │ │ ├── Shortcut │ │ │ │ ├── ClassParser.php │ │ │ │ ├── ElementParser.php │ │ │ │ ├── EmptyStringParser.php │ │ │ │ └── HashParser.php │ │ │ ├── Token.php │ │ │ ├── TokenStream.php │ │ │ └── Tokenizer │ │ │ │ ├── Tokenizer.php │ │ │ │ ├── TokenizerEscaping.php │ │ │ │ └── TokenizerPatterns.php │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ ├── CssSelectorConverterTest.php │ │ │ ├── CssSelectorTest.php │ │ │ ├── Node │ │ │ │ ├── AbstractNodeTest.php │ │ │ │ ├── AttributeNodeTest.php │ │ │ │ ├── ClassNodeTest.php │ │ │ │ ├── CombinedSelectorNodeTest.php │ │ │ │ ├── ElementNodeTest.php │ │ │ │ ├── FunctionNodeTest.php │ │ │ │ ├── HashNodeTest.php │ │ │ │ ├── NegationNodeTest.php │ │ │ │ ├── PseudoNodeTest.php │ │ │ │ ├── SelectorNodeTest.php │ │ │ │ └── SpecificityTest.php │ │ │ ├── Parser │ │ │ │ ├── Handler │ │ │ │ │ ├── AbstractHandlerTest.php │ │ │ │ │ ├── CommentHandlerTest.php │ │ │ │ │ ├── HashHandlerTest.php │ │ │ │ │ ├── IdentifierHandlerTest.php │ │ │ │ │ ├── NumberHandlerTest.php │ │ │ │ │ ├── StringHandlerTest.php │ │ │ │ │ └── WhitespaceHandlerTest.php │ │ │ │ ├── ParserTest.php │ │ │ │ ├── ReaderTest.php │ │ │ │ ├── Shortcut │ │ │ │ │ ├── ClassParserTest.php │ │ │ │ │ ├── ElementParserTest.php │ │ │ │ │ ├── EmptyStringParserTest.php │ │ │ │ │ └── HashParserTest.php │ │ │ │ └── TokenStreamTest.php │ │ │ └── XPath │ │ │ │ ├── Fixtures │ │ │ │ ├── ids.html │ │ │ │ ├── lang.xml │ │ │ │ └── shakespear.html │ │ │ │ └── TranslatorTest.php │ │ │ ├── XPath │ │ │ ├── Extension │ │ │ │ ├── AbstractExtension.php │ │ │ │ ├── AttributeMatchingExtension.php │ │ │ │ ├── CombinationExtension.php │ │ │ │ ├── ExtensionInterface.php │ │ │ │ ├── FunctionExtension.php │ │ │ │ ├── HtmlExtension.php │ │ │ │ ├── NodeExtension.php │ │ │ │ └── PseudoClassExtension.php │ │ │ ├── Translator.php │ │ │ ├── TranslatorInterface.php │ │ │ └── XPathExpr.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ └── wp-coding-standards │ │ └── wpcs │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── WordPress-Core │ │ └── ruleset.xml │ │ ├── WordPress-Docs │ │ └── ruleset.xml │ │ ├── WordPress-Extra │ │ └── ruleset.xml │ │ ├── WordPress-VIP │ │ └── ruleset.xml │ │ ├── WordPress │ │ ├── AbstractArrayAssignmentRestrictionsSniff.php │ │ ├── AbstractClassRestrictionsSniff.php │ │ ├── AbstractFunctionParameterSniff.php │ │ ├── AbstractFunctionRestrictionsSniff.php │ │ ├── AbstractVariableRestrictionsSniff.php │ │ ├── Sniff.php │ │ ├── Sniffs │ │ │ ├── Arrays │ │ │ │ ├── ArrayAssignmentRestrictionsSniff.php │ │ │ │ ├── ArrayDeclarationSniff.php │ │ │ │ ├── ArrayDeclarationSpacingSniff.php │ │ │ │ ├── ArrayIndentationSniff.php │ │ │ │ ├── ArrayKeySpacingRestrictionsSniff.php │ │ │ │ └── CommaAfterArrayItemSniff.php │ │ │ ├── CSRF │ │ │ │ └── NonceVerificationSniff.php │ │ │ ├── Classes │ │ │ │ └── ClassInstantiationSniff.php │ │ │ ├── CodeAnalysis │ │ │ │ └── EmptyStatementSniff.php │ │ │ ├── DB │ │ │ │ ├── RestrictedClassesSniff.php │ │ │ │ └── RestrictedFunctionsSniff.php │ │ │ ├── Files │ │ │ │ └── FileNameSniff.php │ │ │ ├── Functions │ │ │ │ ├── DontExtractSniff.php │ │ │ │ ├── FunctionCallSignatureNoParamsSniff.php │ │ │ │ └── FunctionRestrictionsSniff.php │ │ │ ├── NamingConventions │ │ │ │ ├── PrefixAllGlobalsSniff.php │ │ │ │ ├── ValidFunctionNameSniff.php │ │ │ │ ├── ValidHookNameSniff.php │ │ │ │ └── ValidVariableNameSniff.php │ │ │ ├── PHP │ │ │ │ ├── DevelopmentFunctionsSniff.php │ │ │ │ ├── DiscouragedFunctionsSniff.php │ │ │ │ ├── DiscouragedPHPFunctionsSniff.php │ │ │ │ ├── POSIXFunctionsSniff.php │ │ │ │ ├── StrictComparisonsSniff.php │ │ │ │ ├── StrictInArraySniff.php │ │ │ │ └── YodaConditionsSniff.php │ │ │ ├── VIP │ │ │ │ ├── AdminBarRemovalSniff.php │ │ │ │ ├── CronIntervalSniff.php │ │ │ │ ├── DirectDatabaseQuerySniff.php │ │ │ │ ├── FileSystemWritesDisallowSniff.php │ │ │ │ ├── OrderByRandSniff.php │ │ │ │ ├── PluginMenuSlugSniff.php │ │ │ │ ├── PostsPerPageSniff.php │ │ │ │ ├── RestrictedFunctionsSniff.php │ │ │ │ ├── RestrictedVariablesSniff.php │ │ │ │ ├── SessionFunctionsUsageSniff.php │ │ │ │ ├── SessionVariableUsageSniff.php │ │ │ │ ├── SlowDBQuerySniff.php │ │ │ │ ├── SuperGlobalInputUsageSniff.php │ │ │ │ ├── TimezoneChangeSniff.php │ │ │ │ └── ValidatedSanitizedInputSniff.php │ │ │ ├── Variables │ │ │ │ ├── GlobalVariablesSniff.php │ │ │ │ └── VariableRestrictionsSniff.php │ │ │ ├── WP │ │ │ │ ├── AlternativeFunctionsSniff.php │ │ │ │ ├── CapitalPDangitSniff.php │ │ │ │ ├── DeprecatedClassesSniff.php │ │ │ │ ├── DeprecatedFunctionsSniff.php │ │ │ │ ├── DeprecatedParametersSniff.php │ │ │ │ ├── DiscouragedFunctionsSniff.php │ │ │ │ ├── EnqueuedResourcesSniff.php │ │ │ │ ├── I18nSniff.php │ │ │ │ └── PreparedSQLSniff.php │ │ │ ├── WhiteSpace │ │ │ │ ├── CastStructureSpacingSniff.php │ │ │ │ ├── ControlStructureSpacingSniff.php │ │ │ │ ├── DisallowInlineTabsSniff.php │ │ │ │ └── OperatorSpacingSniff.php │ │ │ └── XSS │ │ │ │ └── EscapeOutputSniff.php │ │ ├── Tests │ │ │ ├── Arrays │ │ │ │ ├── ArrayAssignmentRestrictionsUnitTest.inc │ │ │ │ ├── ArrayAssignmentRestrictionsUnitTest.php │ │ │ │ ├── ArrayDeclarationSpacingUnitTest.inc │ │ │ │ ├── ArrayDeclarationSpacingUnitTest.inc.fixed │ │ │ │ ├── ArrayDeclarationSpacingUnitTest.php │ │ │ │ ├── ArrayDeclarationUnitTest.txt │ │ │ │ ├── ArrayIndentationUnitTest.1.inc │ │ │ │ ├── ArrayIndentationUnitTest.1.inc.fixed │ │ │ │ ├── ArrayIndentationUnitTest.2.inc │ │ │ │ ├── ArrayIndentationUnitTest.2.inc.fixed │ │ │ │ ├── ArrayIndentationUnitTest.php │ │ │ │ ├── ArrayKeySpacingRestrictionsUnitTest.inc │ │ │ │ ├── ArrayKeySpacingRestrictionsUnitTest.inc.fixed │ │ │ │ ├── ArrayKeySpacingRestrictionsUnitTest.php │ │ │ │ ├── CommaAfterArrayItemUnitTest.inc │ │ │ │ ├── CommaAfterArrayItemUnitTest.inc.fixed │ │ │ │ └── CommaAfterArrayItemUnitTest.php │ │ │ ├── CSRF │ │ │ │ ├── NonceVerificationUnitTest.inc │ │ │ │ └── NonceVerificationUnitTest.php │ │ │ ├── Classes │ │ │ │ ├── ClassInstantiationUnitTest.1.inc │ │ │ │ ├── ClassInstantiationUnitTest.1.inc.fixed │ │ │ │ ├── ClassInstantiationUnitTest.2.inc │ │ │ │ ├── ClassInstantiationUnitTest.2.inc.fixed │ │ │ │ ├── ClassInstantiationUnitTest.js │ │ │ │ ├── ClassInstantiationUnitTest.js.fixed │ │ │ │ └── ClassInstantiationUnitTest.php │ │ │ ├── CodeAnalysis │ │ │ │ ├── EmptyStatementUnitTest.inc │ │ │ │ ├── EmptyStatementUnitTest.inc.fixed │ │ │ │ └── EmptyStatementUnitTest.php │ │ │ ├── DB │ │ │ │ ├── RestrictedClassesUnitTest.1.inc │ │ │ │ ├── RestrictedClassesUnitTest.2.inc │ │ │ │ ├── RestrictedClassesUnitTest.3.inc │ │ │ │ ├── RestrictedClassesUnitTest.php │ │ │ │ ├── RestrictedFunctionsUnitTest.inc │ │ │ │ └── RestrictedFunctionsUnitTest.php │ │ │ ├── Files │ │ │ │ ├── FileNameUnitTest.inc │ │ │ │ ├── FileNameUnitTest.php │ │ │ │ └── FileNameUnitTests │ │ │ │ │ ├── ClassMyClass.inc │ │ │ │ │ ├── NonStrictClassNames │ │ │ │ │ ├── ClassNonStrictClass.inc │ │ │ │ │ ├── non-strict-class.inc │ │ │ │ │ └── unrelated-filename.inc │ │ │ │ │ ├── SomeFile.inc │ │ │ │ │ ├── TestFiles │ │ │ │ │ ├── test-sample-custom-unit.inc │ │ │ │ │ ├── test-sample-phpunit.inc │ │ │ │ │ ├── test-sample-phpunit6.inc │ │ │ │ │ └── test-sample-wpunit.inc │ │ │ │ │ ├── ThemeExceptions │ │ │ │ │ ├── FrontPage.inc │ │ │ │ │ ├── application_flash.inc │ │ │ │ │ ├── archive-post_type.inc │ │ │ │ │ ├── author-nice_name.inc │ │ │ │ │ ├── category-another_slug.inc │ │ │ │ │ ├── category-slug.inc │ │ │ │ │ ├── content-another_slug.inc │ │ │ │ │ ├── content-slug.inc │ │ │ │ │ ├── embed-post_type-post_format.inc │ │ │ │ │ ├── embed-post_type.inc │ │ │ │ │ ├── front-page.inc │ │ │ │ │ ├── front_page.inc │ │ │ │ │ ├── page-slug_slug.inc │ │ │ │ │ ├── single-post-type.inc │ │ │ │ │ ├── single-post_type-slug.inc │ │ │ │ │ ├── single-post_type.inc │ │ │ │ │ ├── tag-another_slug.inc │ │ │ │ │ ├── tag-slug.inc │ │ │ │ │ ├── taxonomy-my_taxonomy-term.inc │ │ │ │ │ ├── taxonomy-my_taxonomy.inc │ │ │ │ │ ├── taxonomy-post_format-post-format-link.inc │ │ │ │ │ ├── taxonomy-post_format.inc │ │ │ │ │ ├── text.inc │ │ │ │ │ └── text_plain.inc │ │ │ │ │ ├── class-different-class.inc │ │ │ │ │ ├── class-my-class.inc │ │ │ │ │ ├── class.wp-dependencies.inc │ │ │ │ │ ├── class.wp-scripts.inc │ │ │ │ │ ├── class.wp-styles.inc │ │ │ │ │ ├── my-class.inc │ │ │ │ │ ├── single-my_post_type.inc │ │ │ │ │ ├── some-File.inc │ │ │ │ │ ├── some_file.inc │ │ │ │ │ ├── taxonomy-post_format-post-format-audio.inc │ │ │ │ │ └── wp-includes │ │ │ │ │ ├── author-template.inc │ │ │ │ │ ├── bookmark-template.inc │ │ │ │ │ ├── class-walker-page.inc │ │ │ │ │ └── general.inc │ │ │ ├── Functions │ │ │ │ ├── DontExtractUnitTest.inc │ │ │ │ ├── DontExtractUnitTest.php │ │ │ │ ├── FunctionCallSignatureNoParamsUnitTest.inc │ │ │ │ ├── FunctionCallSignatureNoParamsUnitTest.inc.fixed │ │ │ │ └── FunctionCallSignatureNoParamsUnitTest.php │ │ │ ├── NamingConventions │ │ │ │ ├── PrefixAllGlobalsUnitTest.1.inc │ │ │ │ ├── PrefixAllGlobalsUnitTest.inc │ │ │ │ ├── PrefixAllGlobalsUnitTest.php │ │ │ │ ├── ValidFunctionNameUnitTest.inc │ │ │ │ ├── ValidFunctionNameUnitTest.php │ │ │ │ ├── ValidHookNameUnitTest.1.inc │ │ │ │ ├── ValidHookNameUnitTest.2.inc │ │ │ │ ├── ValidHookNameUnitTest.inc │ │ │ │ ├── ValidHookNameUnitTest.php │ │ │ │ ├── ValidVariableNameUnitTest.inc │ │ │ │ └── ValidVariableNameUnitTest.php │ │ │ ├── PHP │ │ │ │ ├── DevelopmentFunctionsUnitTest.inc │ │ │ │ ├── DevelopmentFunctionsUnitTest.php │ │ │ │ ├── DiscouragedPHPFunctionsUnitTest.inc │ │ │ │ ├── DiscouragedPHPFunctionsUnitTest.php │ │ │ │ ├── POSIXFunctionsUnitTest.inc │ │ │ │ ├── POSIXFunctionsUnitTest.php │ │ │ │ ├── StrictComparisonsUnitTest.inc │ │ │ │ ├── StrictComparisonsUnitTest.php │ │ │ │ ├── StrictInArrayUnitTest.inc │ │ │ │ ├── StrictInArrayUnitTest.php │ │ │ │ ├── YodaConditionsUnitTest.inc │ │ │ │ └── YodaConditionsUnitTest.php │ │ │ ├── VIP │ │ │ │ ├── AdminBarRemovalUnitTest.css │ │ │ │ ├── AdminBarRemovalUnitTest.inc │ │ │ │ ├── AdminBarRemovalUnitTest.php │ │ │ │ ├── CronIntervalUnitTest.inc │ │ │ │ ├── CronIntervalUnitTest.php │ │ │ │ ├── DirectDatabaseQueryUnitTest.inc │ │ │ │ ├── DirectDatabaseQueryUnitTest.php │ │ │ │ ├── FileSystemWritesDisallowUnitTest.inc │ │ │ │ ├── FileSystemWritesDisallowUnitTest.php │ │ │ │ ├── OrderByRandUnitTest.inc │ │ │ │ ├── OrderByRandUnitTest.php │ │ │ │ ├── PluginMenuSlugUnitTest.inc │ │ │ │ ├── PluginMenuSlugUnitTest.php │ │ │ │ ├── PostsPerPageUnitTest.inc │ │ │ │ ├── PostsPerPageUnitTest.php │ │ │ │ ├── RestrictedFunctionsUnitTest.inc │ │ │ │ ├── RestrictedFunctionsUnitTest.php │ │ │ │ ├── RestrictedVariablesUnitTest.inc │ │ │ │ ├── RestrictedVariablesUnitTest.php │ │ │ │ ├── SessionFunctionsUsageUnitTest.inc │ │ │ │ ├── SessionFunctionsUsageUnitTest.php │ │ │ │ ├── SessionVariableUsageUnitTest.inc │ │ │ │ ├── SessionVariableUsageUnitTest.php │ │ │ │ ├── SlowDBQueryUnitTest.inc │ │ │ │ ├── SlowDBQueryUnitTest.php │ │ │ │ ├── SuperGlobalInputUsageUnitTest.inc │ │ │ │ ├── SuperGlobalInputUsageUnitTest.php │ │ │ │ ├── TimezoneChangeUnitTest.inc │ │ │ │ ├── TimezoneChangeUnitTest.php │ │ │ │ ├── ValidatedSanitizedInputUnitTest.inc │ │ │ │ └── ValidatedSanitizedInputUnitTest.php │ │ │ ├── Variables │ │ │ │ ├── GlobalVariablesUnitTest.inc │ │ │ │ ├── GlobalVariablesUnitTest.php │ │ │ │ ├── VariableRestrictionsUnitTest.inc │ │ │ │ └── VariableRestrictionsUnitTest.php │ │ │ ├── WP │ │ │ │ ├── AlternativeFunctionsUnitTest.inc │ │ │ │ ├── AlternativeFunctionsUnitTest.php │ │ │ │ ├── CapitalPDangitUnitTest.1.inc │ │ │ │ ├── CapitalPDangitUnitTest.inc │ │ │ │ ├── CapitalPDangitUnitTest.inc.fixed │ │ │ │ ├── CapitalPDangitUnitTest.php │ │ │ │ ├── DeprecatedClassesUnitTest.inc │ │ │ │ ├── DeprecatedClassesUnitTest.php │ │ │ │ ├── DeprecatedFunctionsUnitTest.inc │ │ │ │ ├── DeprecatedFunctionsUnitTest.php │ │ │ │ ├── DeprecatedParametersUnitTest.inc │ │ │ │ ├── DeprecatedParametersUnitTest.php │ │ │ │ ├── DiscouragedFunctionsUnitTest.inc │ │ │ │ ├── DiscouragedFunctionsUnitTest.php │ │ │ │ ├── EnqueuedResourcesUnitTest.inc │ │ │ │ ├── EnqueuedResourcesUnitTest.php │ │ │ │ ├── I18nUnitTest.1.inc │ │ │ │ ├── I18nUnitTest.inc │ │ │ │ ├── I18nUnitTest.inc.fixed │ │ │ │ ├── I18nUnitTest.php │ │ │ │ ├── PreparedSQLUnitTest.inc │ │ │ │ └── PreparedSQLUnitTest.php │ │ │ ├── WhiteSpace │ │ │ │ ├── CastStructureSpacingUnitTest.inc │ │ │ │ ├── CastStructureSpacingUnitTest.inc.fixed │ │ │ │ ├── CastStructureSpacingUnitTest.php │ │ │ │ ├── ControlStructureSpacingUnitTest.inc │ │ │ │ ├── ControlStructureSpacingUnitTest.inc.fixed │ │ │ │ ├── ControlStructureSpacingUnitTest.php │ │ │ │ ├── DisallowInlineTabsUnitTest.inc │ │ │ │ ├── DisallowInlineTabsUnitTest.inc.fixed │ │ │ │ ├── DisallowInlineTabsUnitTest.php │ │ │ │ ├── OperatorSpacingUnitTest.inc │ │ │ │ ├── OperatorSpacingUnitTest.inc.fixed │ │ │ │ └── OperatorSpacingUnitTest.php │ │ │ └── XSS │ │ │ │ ├── EscapeOutputUnitTest.inc │ │ │ │ └── EscapeOutputUnitTest.php │ │ └── ruleset.xml │ │ ├── bin │ │ ├── phpcs.xml │ │ └── pre-commit │ │ ├── composer.json │ │ └── phpcs.xml.dist.sample ├── wizard │ ├── class-instant-articles-option-ads.php │ ├── class-instant-articles-option-amp.php │ ├── class-instant-articles-option-analytics.php │ ├── class-instant-articles-option-fb-page.php │ ├── class-instant-articles-option-publishing.php │ ├── class-instant-articles-option-styles.php │ ├── class-instant-articles-option.php │ ├── class-instant-articles-wizard.php │ └── templates │ │ └── advanced-template.php └── wpcom-helper.php ├── facebook-instant-articles ├── LICENSE ├── class-instant-articles-dom-transform-filter-runner.php ├── class-instant-articles-post.php ├── compat.php ├── compat │ ├── class-instant-articles-co-authors-plus.php │ ├── class-instant-articles-google-analytics-for-wordpress.php │ └── class-instant-articles-yoast-seo.php ├── dom-transform-filters │ ├── class-instant-articles-dom-transform-filter-address.php │ ├── class-instant-articles-dom-transform-filter-blockquote.php │ ├── class-instant-articles-dom-transform-filter-emptyelements.php │ ├── class-instant-articles-dom-transform-filter-heading.php │ ├── class-instant-articles-dom-transform-filter-image.php │ ├── class-instant-articles-dom-transform-filter-ordered-list.php │ ├── class-instant-articles-dom-transform-filter-table.php │ ├── class-instant-articles-dom-transform-filter-unordered-list.php │ ├── class-instant-articles-dom-transform-filter-video.php │ └── class-instant-articles-dom-transform-filter.php ├── embeds.php ├── facebook-instant-articles.php ├── feed-template.php ├── languages │ └── instant-articles.pot ├── readme.txt ├── shortcodes.php ├── template.php └── wpcom-helper.php ├── facebook-simple-translation ├── facebook-simple-translation.php └── readme.txt ├── facebook ├── CONTRIBUTING.md ├── admin │ ├── login.php │ ├── migrate-options-10.php │ ├── migrate-options-115.php │ ├── migrate-options-118.php │ ├── profile.php │ ├── settings-app.php │ ├── settings-comments.php │ ├── settings-debug.php │ ├── settings-follow-button.php │ ├── settings-like-button.php │ ├── settings-recommendations-bar.php │ ├── settings-send-button.php │ ├── settings-social-plugin-button.php │ ├── settings-social-plugin.php │ ├── settings-social-publisher.php │ ├── settings.php │ └── social-publisher │ │ ├── mentions │ │ └── mentions-search.php │ │ ├── publish-box-page.php │ │ ├── publish-box-profile.php │ │ └── social-publisher.php ├── channel.php ├── extras │ └── google-analytics.php ├── facebook-user.php ├── facebook.php ├── includes │ └── facebook-php-sdk │ │ ├── base_facebook.php │ │ ├── class-facebook-wp.php │ │ ├── facebook.php │ │ └── fb_ca_chain_bundle.crt ├── index.php ├── languages │ ├── facebook.pot │ └── index.php ├── license.txt ├── open-graph-protocol.php ├── readme.txt ├── social-plugins │ ├── class-facebook-activity-feed.php │ ├── class-facebook-comments-box.php │ ├── class-facebook-comments.php │ ├── class-facebook-follow-button.php │ ├── class-facebook-like-box.php │ ├── class-facebook-like-button.php │ ├── class-facebook-recommendations-bar.php │ ├── class-facebook-recommendations-box.php │ ├── class-facebook-send-button.php │ ├── class-facebook-social-plugin.php │ ├── comments.php │ ├── shortcodes.php │ ├── social-plugins.php │ └── widgets │ │ ├── activity-feed.php │ │ ├── follow-button.php │ │ ├── like-box.php │ │ ├── like-button.php │ │ ├── recommendations-box.php │ │ └── send-button.php ├── static │ ├── css │ │ ├── admin │ │ │ ├── debug.css │ │ │ ├── debug.min.css │ │ │ ├── icons.css │ │ │ ├── icons.min.css │ │ │ ├── mentions.css │ │ │ └── mentions.min.css │ │ ├── style.css │ │ └── style.min.css │ ├── img │ │ ├── create-app.png │ │ ├── icon-2x.png │ │ ├── icon-bw-2x.png │ │ ├── icon-bw.png │ │ ├── icon.png │ │ └── logo.png │ └── js │ │ ├── admin │ │ ├── login.js │ │ ├── login.min.js │ │ ├── mentions.js │ │ └── mentions.min.js │ │ └── extras │ │ └── analytics │ │ ├── google-analytics.js │ │ └── google-analytics.min.js ├── uninstall.php └── wpcom-helper.php ├── feedwordpress ├── admin-ui.php ├── authors-page.php ├── categories-page.php ├── compatability.php ├── diagnostics-page.php ├── feedfinder.class.php ├── feeds-page.php ├── feedtime.class.php ├── feedwordpress-content-type-sniffer.class.php ├── feedwordpress-elements.css ├── feedwordpress-elements.js ├── feedwordpress-tiny.png ├── feedwordpress-walker-category-checklist.class.php ├── feedwordpress.php ├── feedwordpress.png ├── feedwordpresshtml.class.php ├── magpiefromsimplepie.class.php ├── magpiemocklink.class.php ├── performance-page.php ├── posts-page.php ├── readme.txt ├── relative_uri.class.php ├── syndicatedlink.class.php ├── syndicatedpost.class.php ├── syndication.php ├── updatedpostscontrol.class.php └── wpcom-helper.php ├── fieldmanager-1.0 ├── README.md ├── VERSION ├── apigen.neon ├── credits.txt ├── css │ ├── fieldmanager-draggablepost.css │ ├── fieldmanager-group-tabs.css │ ├── fieldmanager-options.css │ ├── fieldmanager-post.css │ ├── fieldmanager-richtext-content.css │ ├── fieldmanager-validation.css │ ├── fieldmanager.css │ └── jquery-ui │ │ ├── images │ │ ├── animated-overlay.gif │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── jquery-ui-1.10.2.custom.css │ │ └── jquery-ui-1.10.2.custom.min.css ├── fieldmanager.php ├── images │ ├── draggable.png │ ├── grid.png │ ├── vertical-tab-bg.png │ └── xit.gif ├── js │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ ├── chosen │ │ ├── chosen-sprite.png │ │ ├── chosen.css │ │ ├── chosen.jquery.js │ │ ├── chosen.jquery.min.js │ │ ├── chosen.proto.js │ │ └── chosen.proto.min.js │ ├── fieldmanager-autocomplete.js │ ├── fieldmanager-colorpicker.js │ ├── fieldmanager-datepicker.js │ ├── fieldmanager-draggablepost.js │ ├── fieldmanager-group-tabs.js │ ├── fieldmanager-post.js │ ├── fieldmanager-quickedit.js │ ├── fieldmanager-select.js │ ├── fieldmanager.js │ ├── grid.js │ ├── grid │ │ ├── LICENSE │ │ ├── extensions │ │ │ ├── jquery.handsontable.removeRow.css │ │ │ └── jquery.handsontable.removeRow.js │ │ ├── jquery.handsontable.css │ │ ├── jquery.handsontable.js │ │ └── lib │ │ │ ├── bootstrap-typeahead.js │ │ │ ├── jQuery-contextMenu │ │ │ ├── jquery.contextMenu.css │ │ │ ├── jquery.contextMenu.js │ │ │ └── jquery.ui.position.js │ │ │ ├── jquery.js │ │ │ └── jquery.min.js │ ├── jquery.hoverIntent.js │ ├── media │ │ └── fieldmanager-media.js │ ├── richtext.js │ └── validation │ │ ├── fieldmanager-validation.js │ │ └── jquery.validate.min.js ├── license.txt ├── php │ ├── class-fieldmanager-autocomplete.php │ ├── class-fieldmanager-checkbox.php │ ├── class-fieldmanager-checkboxes.php │ ├── class-fieldmanager-colorpicker.php │ ├── class-fieldmanager-datepicker.php │ ├── class-fieldmanager-draggablepost.php │ ├── class-fieldmanager-field.php │ ├── class-fieldmanager-grid.php │ ├── class-fieldmanager-group.php │ ├── class-fieldmanager-hidden.php │ ├── class-fieldmanager-link.php │ ├── class-fieldmanager-media.php │ ├── class-fieldmanager-options.php │ ├── class-fieldmanager-password.php │ ├── class-fieldmanager-radios.php │ ├── class-fieldmanager-richtextarea.php │ ├── class-fieldmanager-select.php │ ├── class-fieldmanager-textarea.php │ ├── class-fieldmanager-textfield.php │ ├── context │ │ ├── class-fieldmanager-context-page.php │ │ ├── class-fieldmanager-context-post.php │ │ ├── class-fieldmanager-context-quickedit.php │ │ ├── class-fieldmanager-context-storable.php │ │ ├── class-fieldmanager-context-submenu.php │ │ ├── class-fieldmanager-context-term.php │ │ ├── class-fieldmanager-context-user.php │ │ └── class-fieldmanager-context.php │ ├── datasource │ │ ├── class-fieldmanager-datasource-post.php │ │ ├── class-fieldmanager-datasource-term.php │ │ ├── class-fieldmanager-datasource-user.php │ │ └── class-fieldmanager-datasource.php │ └── util │ │ ├── class-fieldmanager-util-term-meta.php │ │ └── class-fieldmanager-util-validation.php ├── phpunit.xml ├── templates │ ├── datepicker.php │ ├── options-checkboxes.php │ ├── options-radios.php │ └── textfield.php ├── todo.txt └── wpcom-helper.php ├── fieldmanager-1.1 ├── README.md ├── VERSION ├── apigen.neon ├── credits.txt ├── css │ ├── fieldmanager-draggablepost.css │ ├── fieldmanager-group-tabs.css │ ├── fieldmanager-options.css │ ├── fieldmanager-post.css │ ├── fieldmanager-richtext-content.css │ ├── fieldmanager-validation.css │ ├── fieldmanager.css │ └── jquery-ui │ │ ├── images │ │ ├── animated-overlay.gif │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── jquery-ui-1.10.2.custom.css │ │ └── jquery-ui-1.10.2.custom.min.css ├── fieldmanager-update-20160804.diff ├── fieldmanager.php ├── images │ └── vertical-tab-bg.png ├── js │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ ├── chosen │ │ ├── chosen-sprite.png │ │ ├── chosen.css │ │ ├── chosen.jquery.js │ │ ├── chosen.jquery.min.js │ │ ├── chosen.proto.js │ │ └── chosen.proto.min.js │ ├── fieldmanager-autocomplete.js │ ├── fieldmanager-colorpicker.js │ ├── fieldmanager-datepicker.js │ ├── fieldmanager-draggablepost.js │ ├── fieldmanager-group-tabs.js │ ├── fieldmanager-post.js │ ├── fieldmanager-quickedit.js │ ├── fieldmanager-select.js │ ├── fieldmanager.js │ ├── grid.js │ ├── grid │ │ ├── LICENSE │ │ ├── extensions │ │ │ ├── jquery.handsontable.removeRow.css │ │ │ └── jquery.handsontable.removeRow.js │ │ ├── jquery.handsontable.css │ │ ├── jquery.handsontable.js │ │ └── lib │ │ │ ├── bootstrap-typeahead.js │ │ │ ├── jQuery-contextMenu │ │ │ ├── jquery.contextMenu.css │ │ │ ├── jquery.contextMenu.js │ │ │ └── jquery.ui.position.js │ │ │ ├── jquery.js │ │ │ └── jquery.min.js │ ├── jquery.hoverIntent.js │ ├── media │ │ └── fieldmanager-media.js │ ├── richtext.js │ └── validation │ │ ├── fieldmanager-validation.js │ │ └── jquery.validate.min.js ├── license.txt ├── php │ ├── class-fieldmanager-autocomplete.php │ ├── class-fieldmanager-checkbox.php │ ├── class-fieldmanager-checkboxes.php │ ├── class-fieldmanager-colorpicker.php │ ├── class-fieldmanager-datepicker.php │ ├── class-fieldmanager-draggablepost.php │ ├── class-fieldmanager-field.php │ ├── class-fieldmanager-grid.php │ ├── class-fieldmanager-group.php │ ├── class-fieldmanager-hidden.php │ ├── class-fieldmanager-link.php │ ├── class-fieldmanager-media.php │ ├── class-fieldmanager-options.php │ ├── class-fieldmanager-password.php │ ├── class-fieldmanager-radios.php │ ├── class-fieldmanager-richtextarea.php │ ├── class-fieldmanager-select.php │ ├── class-fieldmanager-textarea.php │ ├── class-fieldmanager-textfield.php │ ├── context │ │ ├── class-fieldmanager-context-page.php │ │ ├── class-fieldmanager-context-post.php │ │ ├── class-fieldmanager-context-quickedit.php │ │ ├── class-fieldmanager-context-storable.php │ │ ├── class-fieldmanager-context-submenu.php │ │ ├── class-fieldmanager-context-term.php │ │ ├── class-fieldmanager-context-user.php │ │ └── class-fieldmanager-context.php │ ├── datasource │ │ ├── class-fieldmanager-datasource-post.php │ │ ├── class-fieldmanager-datasource-term.php │ │ ├── class-fieldmanager-datasource-user.php │ │ └── class-fieldmanager-datasource.php │ └── util │ │ ├── class-fieldmanager-util-assets.php │ │ ├── class-fieldmanager-util-term-meta.php │ │ └── class-fieldmanager-util-validation.php ├── phpunit.xml ├── templates │ ├── datepicker.php │ ├── options-checkboxes.php │ ├── options-radios.php │ └── textfield.php ├── todo.txt └── wpcom-helper.php ├── fieldmanager-1.2 ├── .editorconfig ├── .gitignore ├── .travis.yml ├── Gruntfile.js ├── README.md ├── apigen.neon ├── bin │ └── install-wp-tests.sh ├── composer.json ├── credits.txt ├── css │ ├── fieldmanager-draggablepost.css │ ├── fieldmanager-group-tabs.css │ ├── fieldmanager-options.css │ ├── fieldmanager-post.css │ ├── fieldmanager-richtext-content.css │ ├── fieldmanager-validation.css │ ├── fieldmanager.css │ └── jquery-ui │ │ ├── jquery-ui-1.10.2.custom.css │ │ └── jquery-ui-1.10.2.custom.min.css ├── docs-src │ └── templates │ │ └── bootstrap │ │ ├── 404.latte │ │ ├── @elementlist.latte │ │ ├── @layout.latte │ │ ├── class.latte │ │ ├── combined.js.latte │ │ ├── config.neon │ │ ├── constant.latte │ │ ├── deprecated.latte │ │ ├── elementlist.js.latte │ │ ├── function.latte │ │ ├── js │ │ ├── jquery.autocomplete.js │ │ ├── jquery.cookie.js │ │ ├── jquery.min.js │ │ ├── jquery.sortElements.js │ │ ├── jquery.sprintf.js │ │ └── main.js │ │ ├── namespace.latte │ │ ├── opensearch.xml.latte │ │ ├── overview.latte │ │ ├── package.latte │ │ ├── resources │ │ ├── bootstrap.min.css │ │ └── style.css │ │ ├── robots.txt.latte │ │ ├── sitemap.xml.latte │ │ ├── source.latte │ │ ├── todo.latte │ │ └── tree.latte ├── fieldmanager.php ├── js │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ ├── chosen │ │ ├── chosen.css │ │ ├── chosen.jquery.js │ │ ├── chosen.jquery.min.js │ │ └── chosen.min.css │ ├── fieldmanager-autocomplete.js │ ├── fieldmanager-colorpicker.js │ ├── fieldmanager-datepicker.js │ ├── fieldmanager-draggablepost.js │ ├── fieldmanager-group-tabs.js │ ├── fieldmanager-post.js │ ├── fieldmanager-quickedit.js │ ├── fieldmanager-select.js │ ├── fieldmanager.js │ ├── grid.js │ ├── grid │ │ ├── LICENSE │ │ ├── extensions │ │ │ ├── jquery.handsontable.removeRow.css │ │ │ └── jquery.handsontable.removeRow.js │ │ ├── jquery.handsontable.css │ │ ├── jquery.handsontable.js │ │ └── lib │ │ │ ├── bootstrap-typeahead.js │ │ │ ├── jQuery-contextMenu │ │ │ ├── jquery.contextMenu.css │ │ │ ├── jquery.contextMenu.js │ │ │ └── jquery.ui.position.js │ │ │ ├── jquery.js │ │ │ └── jquery.min.js │ ├── jquery.hoverIntent.js │ ├── media │ │ └── fieldmanager-media.js │ ├── richtext.js │ └── validation │ │ ├── fieldmanager-validation.js │ │ └── jquery.validate.min.js ├── license.txt ├── multisite.xml ├── package.json ├── php │ ├── class-fieldmanager-autocomplete.php │ ├── class-fieldmanager-checkbox.php │ ├── class-fieldmanager-checkboxes.php │ ├── class-fieldmanager-colorpicker.php │ ├── class-fieldmanager-datepicker.php │ ├── class-fieldmanager-draggablepost.php │ ├── class-fieldmanager-field.php │ ├── class-fieldmanager-grid.php │ ├── class-fieldmanager-group.php │ ├── class-fieldmanager-hidden.php │ ├── class-fieldmanager-link.php │ ├── class-fieldmanager-media.php │ ├── class-fieldmanager-options.php │ ├── class-fieldmanager-password.php │ ├── class-fieldmanager-radios.php │ ├── class-fieldmanager-richtextarea.php │ ├── class-fieldmanager-select.php │ ├── class-fieldmanager-textarea.php │ ├── class-fieldmanager-textfield.php │ ├── context │ │ ├── class-fieldmanager-context-page.php │ │ ├── class-fieldmanager-context-post.php │ │ ├── class-fieldmanager-context-quickedit.php │ │ ├── class-fieldmanager-context-storable.php │ │ ├── class-fieldmanager-context-submenu.php │ │ ├── class-fieldmanager-context-term.php │ │ ├── class-fieldmanager-context-user.php │ │ └── class-fieldmanager-context.php │ ├── datasource │ │ ├── class-fieldmanager-datasource-post.php │ │ ├── class-fieldmanager-datasource-term.php │ │ ├── class-fieldmanager-datasource-user.php │ │ └── class-fieldmanager-datasource.php │ └── util │ │ ├── class-fieldmanager-util-assets.php │ │ ├── class-fieldmanager-util-term-meta.php │ │ └── class-fieldmanager-util-validation.php ├── phpcs.ruleset.xml ├── phpunit.xml ├── templates │ ├── datepicker.php │ ├── options-checkboxes.php │ ├── options-radios.php │ └── textfield.php ├── tests │ ├── js │ │ ├── index.html │ │ └── test-fieldmanager.js │ └── php │ │ ├── README.txt │ │ ├── bootstrap.php │ │ ├── includes │ │ └── class-fieldmanager-assets-unit-test-case.php │ │ ├── phpunit.xml │ │ ├── test-fieldmanager-autocomplete-field.php │ │ ├── test-fieldmanager-calculate-context.php │ │ ├── test-fieldmanager-checkbox-field.php │ │ ├── test-fieldmanager-checkboxes-field.php │ │ ├── test-fieldmanager-colorpicker-field.php │ │ ├── test-fieldmanager-context-post.php │ │ ├── test-fieldmanager-context-quickedit.php │ │ ├── test-fieldmanager-context-storable.php │ │ ├── test-fieldmanager-context-submenu.php │ │ ├── test-fieldmanager-context-term-fm-term-meta.php │ │ ├── test-fieldmanager-context-term.php │ │ ├── test-fieldmanager-context-user.php │ │ ├── test-fieldmanager-datasource-post.php │ │ ├── test-fieldmanager-datasource-term.php │ │ ├── test-fieldmanager-datasource-user.php │ │ ├── test-fieldmanager-datepicker-field.php │ │ ├── test-fieldmanager-group.php │ │ ├── test-fieldmanager-media-field.php │ │ ├── test-fieldmanager-radios-field.php │ │ ├── test-fieldmanager-richtextarea-field.php │ │ ├── test-fieldmanager-script-loading.php │ │ ├── test-fieldmanager-select-field.php │ │ ├── test-fieldmanager-term-meta.php │ │ ├── test-fieldmanager-util-assets.php │ │ └── test_fieldmanager_field.php └── wpcom-helper.php ├── fieldmanager ├── README.md ├── VERSION ├── apigen.neon ├── credits.txt ├── css │ ├── fieldmanager-draggablepost.css │ ├── fieldmanager-group-tabs.css │ ├── fieldmanager-options.css │ ├── fieldmanager-post.css │ ├── fieldmanager-richtext-content.css │ ├── fieldmanager-validation.css │ ├── fieldmanager.css │ └── jquery-ui │ │ ├── images │ │ ├── animated-overlay.gif │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── jquery-ui-1.10.2.custom.css │ │ └── jquery-ui-1.10.2.custom.min.css ├── fieldmanager.php ├── images │ ├── draggable.png │ ├── grid.png │ ├── vertical-tab-bg.png │ └── xit.gif ├── js │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ ├── chosen │ │ ├── chosen-sprite.png │ │ ├── chosen.css │ │ ├── chosen.jquery.js │ │ ├── chosen.jquery.min.js │ │ ├── chosen.proto.js │ │ └── chosen.proto.min.js │ ├── fieldmanager-autocomplete.js │ ├── fieldmanager-datepicker.js │ ├── fieldmanager-draggablepost.js │ ├── fieldmanager-group-tabs.js │ ├── fieldmanager-post.js │ ├── fieldmanager-quickedit.js │ ├── fieldmanager-select.js │ ├── fieldmanager.js │ ├── grid.js │ ├── grid │ │ ├── LICENSE │ │ ├── extensions │ │ │ ├── jquery.handsontable.removeRow.css │ │ │ └── jquery.handsontable.removeRow.js │ │ ├── jquery.handsontable.css │ │ ├── jquery.handsontable.js │ │ └── lib │ │ │ ├── bootstrap-typeahead.js │ │ │ ├── jQuery-contextMenu │ │ │ ├── jquery.contextMenu.css │ │ │ ├── jquery.contextMenu.js │ │ │ └── jquery.ui.position.js │ │ │ ├── jquery.js │ │ │ └── jquery.min.js │ ├── jquery.hoverIntent.js │ ├── media │ │ └── fieldmanager-media.js │ ├── richtext.js │ └── validation │ │ ├── fieldmanager-validation.js │ │ └── jquery.validate.min.js ├── license.txt ├── php │ ├── class-fieldmanager-autocomplete.php │ ├── class-fieldmanager-checkbox.php │ ├── class-fieldmanager-checkboxes.php │ ├── class-fieldmanager-datepicker.php │ ├── class-fieldmanager-draggablepost.php │ ├── class-fieldmanager-field.php │ ├── class-fieldmanager-grid.php │ ├── class-fieldmanager-group.php │ ├── class-fieldmanager-hidden.php │ ├── class-fieldmanager-link.php │ ├── class-fieldmanager-media.php │ ├── class-fieldmanager-options.php │ ├── class-fieldmanager-password.php │ ├── class-fieldmanager-radios.php │ ├── class-fieldmanager-richtextarea.php │ ├── class-fieldmanager-select.php │ ├── class-fieldmanager-textarea.php │ ├── class-fieldmanager-textfield.php │ ├── context │ │ ├── class-fieldmanager-context-page.php │ │ ├── class-fieldmanager-context-post.php │ │ ├── class-fieldmanager-context-quickedit.php │ │ ├── class-fieldmanager-context-storable.php │ │ ├── class-fieldmanager-context-submenu.php │ │ ├── class-fieldmanager-context-term.php │ │ ├── class-fieldmanager-context-user.php │ │ └── class-fieldmanager-context.php │ ├── datasource │ │ ├── class-fieldmanager-datasource-post.php │ │ ├── class-fieldmanager-datasource-term.php │ │ ├── class-fieldmanager-datasource-user.php │ │ └── class-fieldmanager-datasource.php │ └── util │ │ ├── class-fieldmanager-util-term-meta.php │ │ └── class-fieldmanager-util-validation.php ├── phpunit.xml ├── templates │ ├── datepicker.php │ ├── options-checkboxes.php │ ├── options-radios.php │ └── textfield.php ├── todo.txt └── wpcom-helper.php ├── findthebest ├── assets │ ├── banner-1544x500.png │ ├── banner-772x250.png │ ├── screenshot-1.png │ ├── screenshot-2.png │ └── screenshot-3.png ├── css │ ├── ftb.css │ └── tiny-mce-plugin.css ├── findthebest.php ├── images │ ├── launch.png │ ├── launch.svg │ ├── placeholder.png │ └── search.png ├── js │ ├── box.js │ ├── cms-plugin.js │ ├── ftb.js │ ├── jquery.textarea-helper.js │ ├── tiny-mce-plugin.js │ └── tiny-mce-view.js ├── languages │ ├── en_US.mo │ ├── en_US.po │ └── findthebest.pot ├── readme.txt ├── uninstall.php ├── views │ ├── embed-code.php │ ├── media-button.php │ ├── meta-box.php │ ├── options-input-text.php │ ├── options.php │ └── tiny-mce-view.php └── wpcom-helper.php ├── five-min-video-suggest ├── FiveMinVideoSuggest.php ├── five-min-video-suggest.php ├── readme.txt ├── screenshot-1.jpg └── screenshot-2.jpg ├── flag-comments ├── flag-comments-no-totals.php ├── flag-comments.php └── readme.txt ├── formategory ├── css │ └── admin.css ├── formategory.php ├── js │ └── admin-edit.js ├── languages │ ├── formategory-es_ES.mo │ ├── formategory-es_ES.po │ └── formategory.po ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png └── uninstall.php ├── gallery-style-cleanup └── gallery-style-cleanup.php ├── get-the-image ├── get-the-image.php ├── license.txt ├── readme.css ├── readme.html └── readme.txt ├── getty-images-3.0 ├── css │ ├── getty-about-text.css │ ├── getty-base-styles.css │ ├── getty-browser.css │ ├── getty-choose-mode.css │ ├── getty-images-login.css │ ├── getty-landing.css │ ├── getty-refinement-panel.css │ ├── getty-sidebar-container.css │ ├── getty-title-bar.css │ ├── getty-toolbar.css │ └── getty-welcome.css ├── fonts │ ├── GettyIcons.eot │ ├── GettyIcons.svg │ ├── GettyIcons.ttf │ ├── GettyIcons.woff │ ├── helveticaneue-normal-webfont.eot │ ├── helveticaneue-normal-webfont.svg │ ├── helveticaneue-normal-webfont.ttf │ ├── helveticaneue-normal-webfont.woff │ ├── helveticaneue-thin-webfont.eot │ ├── helveticaneue-thin-webfont.svg │ ├── helveticaneue-thin-webfont.ttf │ └── helveticaneue-thin-webfont.woff ├── getty-about-en-us.html ├── getty-comp-license.html ├── getty-images.php ├── getty-images.pot ├── getty-templates.php ├── images │ ├── arrows-2x.png │ ├── arrows-small-2x.png │ ├── arrows-small.png │ ├── arrows.png │ ├── getty-images-logo.png │ ├── getty-logo-2x.png │ ├── getty-logo-large.png │ ├── getty-logo.png │ ├── image.svg │ ├── load-bar.gif │ ├── load-stripes.gif │ ├── load.gif │ ├── unlocked.svg │ ├── x-2x.png │ ├── x.png │ ├── xit-2x.gif │ └── xit.gif ├── js │ ├── getty-filters.js │ ├── getty-firebase.js │ ├── getty-images.js │ ├── getty-models.js │ ├── getty-mosaic.js │ ├── getty-views.js │ └── vendor │ │ ├── firebase-app.js │ │ ├── firebase-auth.js │ │ ├── firebase-database.js │ │ ├── firebase-messaging.js │ │ ├── firebase.js │ │ ├── google-analytics.js │ │ ├── google-tag-manager-head.js │ │ ├── jquery.cookie.js │ │ ├── moment.min.js │ │ └── spin.js ├── readme.md └── readme.txt ├── getty-images-4.0 ├── css │ ├── getty-about-text.css │ ├── getty-base-styles.css │ ├── getty-blocks.css │ ├── getty-browser.css │ ├── getty-choose-mode.css │ ├── getty-images-login.css │ ├── getty-landing.css │ ├── getty-refinement-panel.css │ ├── getty-sidebar-container.css │ ├── getty-title-bar.css │ ├── getty-toolbar.css │ └── getty-welcome.css ├── fonts │ ├── GettyIcons.eot │ ├── GettyIcons.svg │ ├── GettyIcons.ttf │ ├── GettyIcons.woff │ ├── helveticaneue-normal-webfont.eot │ ├── helveticaneue-normal-webfont.svg │ ├── helveticaneue-normal-webfont.ttf │ ├── helveticaneue-normal-webfont.woff │ ├── helveticaneue-thin-webfont.eot │ ├── helveticaneue-thin-webfont.svg │ ├── helveticaneue-thin-webfont.ttf │ └── helveticaneue-thin-webfont.woff ├── getty-about-en-us.html ├── getty-comp-license.html ├── getty-images.php ├── getty-images.pot ├── getty-templates.php ├── images │ ├── arrows-2x.png │ ├── arrows-small-2x.png │ ├── arrows-small.png │ ├── arrows.png │ ├── getty-images-logo.png │ ├── getty-logo-2x.png │ ├── getty-logo-large.png │ ├── getty-logo.png │ ├── image.svg │ ├── load-bar.gif │ ├── load-stripes.gif │ ├── load.gif │ ├── unlocked.svg │ ├── x-2x.png │ ├── x.png │ ├── xit-2x.gif │ └── xit.gif ├── js │ ├── getty-blocks.js │ ├── getty-filters.js │ ├── getty-firebase.js │ ├── getty-images.js │ ├── getty-models.js │ ├── getty-mosaic.js │ ├── getty-views.js │ └── vendor │ │ ├── firebase-app.js │ │ ├── firebase-auth.js │ │ ├── firebase-database.js │ │ ├── firebase-messaging.js │ │ ├── firebase.js │ │ ├── google-analytics.js │ │ ├── google-tag-manager-head.js │ │ ├── jquery.cookie.js │ │ ├── moment.min.js │ │ └── spin.js ├── readme.md └── readme.txt ├── getty-images ├── fonts │ ├── icomoon.eot │ ├── icomoon.svg │ ├── icomoon.ttf │ ├── icomoon.woff │ ├── w3fwoff.eot │ ├── w3fwoff.svg │ ├── w3fwoff.ttf │ └── w3fwoff.woff ├── getty-about-en-us.html ├── getty-comp-license.html ├── getty-images.css ├── getty-images.php ├── getty-images.pot ├── getty-templates.php ├── images │ ├── arrows-2x.png │ ├── arrows-small-2x.png │ ├── arrows-small.png │ ├── arrows.png │ ├── getty-images-logo.png │ ├── getty-logo-2x.png │ ├── getty-logo-large.png │ ├── getty-logo.png │ ├── image.svg │ ├── load-bar.gif │ ├── load-stripes.gif │ ├── load.gif │ ├── unlocked.svg │ ├── x-2x.png │ ├── x.png │ ├── xit-2x.gif │ └── xit.gif ├── js │ ├── getty-filters.js │ ├── getty-images.js │ ├── getty-models.js │ ├── getty-views.js │ ├── jquery.cookie.js │ ├── s_code.js │ └── spin.js ├── readme.txt └── wpcom-helper.php ├── google-calendar-events ├── admin │ ├── add.php │ ├── delete.php │ ├── edit.php │ ├── main.php │ ├── refresh.php │ └── timezone-choices.php ├── css │ ├── gce-old-style.css │ └── gce-style.css ├── google-calendar-events.php ├── inc │ ├── gce-event.php │ ├── gce-feed.php │ ├── gce-parser.php │ └── php-calendar.php ├── js │ ├── gce-admin-script.js │ ├── gce-script.js │ └── jquery-qtip.js ├── languages │ ├── google-calendar-events-hu_HU.mo │ ├── google-calendar-events-hu_HU.po │ └── google-calendar-events.pot ├── license.txt ├── readme.txt ├── screenshot-1.jpg ├── screenshot-2.jpg ├── screenshot-3.jpg ├── uninstall.php └── widget │ └── gce-widget.php ├── graphiq-search ├── assets │ ├── banner-1544x500.png │ ├── banner-772x250.png │ ├── screenshot-1.png │ ├── screenshot-2.png │ └── screenshot-3.png ├── classes │ └── class-graphiq-search-amp-embed.php ├── css │ ├── graphiq-search.css │ └── tiny-mce-plugin.css ├── graphiq-search.php ├── images │ ├── launch.png │ ├── launch.svg │ └── search.png ├── js │ ├── cms-plugin.js │ ├── graphiq-search.js │ ├── jquery.textarea-helper.js │ ├── tiny-mce-plugin.js │ ├── tiny-mce-view.js │ └── widgets.js ├── languages │ ├── en_US.mo │ ├── en_US.po │ └── graphiq-search.pot ├── readme.txt ├── uninstall.php ├── views │ ├── embed-code-amp-styles.php │ ├── embed-code-amp.php │ ├── embed-code-script.php │ ├── media-button.php │ ├── meta-box.php │ ├── options-input-text.php │ ├── options.php │ └── tiny-mce-view.php └── wpcom-helper.php ├── gumroad ├── LICENSE.txt ├── README.txt ├── assets │ ├── banner-772x250.png │ ├── icon-128x128.png │ ├── icon-256x256.png │ ├── screenshot-1.png │ └── screenshot-2.png ├── class-gumroad.php ├── css │ └── admin.css ├── gumroad.php ├── includes │ ├── misc-functions.php │ └── shortcodes.php ├── languages │ ├── gum-es_ES.mo │ ├── gum-es_ES.po │ └── gum.pot └── views │ ├── admin-sidebar.php │ └── admin.php ├── hidden-posts ├── hidden-posts.php └── readme.txt ├── history-bar ├── history-bar.css ├── history-bar.gif ├── history-bar.js └── history-bar.php ├── ice ├── class-ice-span-filter.php ├── ice.php ├── ice │ ├── css │ │ └── ice.css │ ├── editor_plugin.js │ ├── editor_plugin_src.js │ ├── ice │ │ └── ice.min.js │ └── img │ │ ├── ice-accept-change.png │ │ ├── ice-accept.png │ │ ├── ice-reject-change.png │ │ ├── ice-reject.png │ │ ├── ice-showchanges.png │ │ └── ice-togglechanges.png ├── icerevisions │ ├── css │ │ └── ice-revisions.css │ ├── editor_plugin.js │ └── editor_plugin_src.js ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png └── tests │ └── test-ice-span-filter.php ├── image-metadata-cruncher ├── README.txt ├── assets │ ├── screenshot-1.png │ ├── screenshot-2.png │ └── screenshot-3.png ├── image-metadata-cruncher.php ├── includes │ ├── collectexif.py │ ├── collectiptc.py │ ├── exif-mapping.php │ └── iptc-mapping.php ├── js │ ├── ext │ │ ├── rangy-core.js │ │ └── rangy-selectionsaverestore.js │ └── script.js ├── style.css ├── uninstall.php └── wpcom-helper.php ├── inform-video-match-1.5.2 ├── css │ ├── jquery-ui.css │ ├── ndn_plugin_admin.css │ ├── ndn_plugin_admin_custom_modal.css │ ├── ndn_plugin_admin_login.css │ ├── ndn_plugin_admin_search_results.css │ └── ndn_plugin_public.css ├── includes │ ├── ndn_plugin_admin.php │ ├── ndn_plugin_i18n.php │ ├── ndn_plugin_loader.php │ └── ndn_plugin_public.php ├── inform-video-match.php ├── js │ ├── ndn_plugin_admin.js │ ├── ndn_plugin_admin_custom_modal.js │ ├── ndn_plugin_admin_search_results.js │ └── ndn_plugin_public.js ├── partials │ ├── ndn_plugin_admin_login_page.php │ ├── ndn_plugin_admin_search_modal.php │ ├── ndn_plugin_admin_search_results.php │ └── ndn_plugin_admin_settings_page.php └── readme.txt ├── inform-video-match-1.7.3 ├── .gitignore ├── .jshintrc ├── README.md ├── Vagrant │ ├── Vagrantfile │ ├── root-install.sh │ └── user-install.sh ├── bin │ └── install-wp-tests.sh ├── css │ ├── jquery-ui.css │ ├── ndn_plugin_admin.css │ ├── ndn_plugin_admin_custom_modal.css │ ├── ndn_plugin_admin_login.css │ ├── ndn_plugin_admin_search_results.css │ └── ndn_plugin_public.css ├── includes │ ├── ndn_plugin_admin.php │ ├── ndn_plugin_i18n.php │ ├── ndn_plugin_loader.php │ └── ndn_plugin_public.php ├── inform-video-match.php ├── js │ ├── ndn_plugin_admin.js │ ├── ndn_plugin_admin_custom_modal.js │ ├── ndn_plugin_admin_search_results.js │ └── ndn_plugin_public.js ├── package.json ├── partials │ ├── ndn_plugin_admin_login_page.php │ ├── ndn_plugin_admin_search_modal.php │ ├── ndn_plugin_admin_search_results.php │ └── ndn_plugin_admin_settings_page.php ├── phpunit.xml ├── readme.txt └── tests │ ├── bootstrap.php │ ├── test-ndn-plugin-admin.php │ ├── test-ndn-plugin-public.php │ └── test-ndn-plugin.php ├── inform-video-match ├── .gitignore ├── .jshintrc ├── README.md ├── assets │ ├── informIconGray_20x20.png │ ├── informIconWhite_20x20.png │ ├── informIcon_17x17.png │ ├── informIcon_20x20.png │ ├── informLogo_116x50.png │ ├── informLogo_162x42.png │ ├── informLogo_193x50.png │ ├── informLogo_93x42.png │ ├── ndnIcon_17x17.png │ ├── ndnLogo_116x50.png │ ├── ndnLogo_93x42.png │ └── ndn_icon_tinymce_20x20.png ├── css │ ├── ndn_plugin_admin.css │ ├── ndn_plugin_admin_custom_modal.css │ ├── ndn_plugin_admin_login.css │ ├── ndn_plugin_admin_search_results.css │ └── ndn_plugin_public.css ├── includes │ ├── ndn_plugin_admin.php │ ├── ndn_plugin_i18n.php │ ├── ndn_plugin_loader.php │ └── ndn_plugin_public.php ├── inform-video-match.php ├── js │ ├── ndn_plugin_admin.js │ ├── ndn_plugin_admin_custom_modal.js │ ├── ndn_plugin_admin_search_results.js │ └── ndn_plugin_public.js ├── package.json ├── partials │ ├── ndn_plugin_admin_login_page.php │ ├── ndn_plugin_admin_search_modal.php │ ├── ndn_plugin_admin_search_results.php │ └── ndn_plugin_admin_settings_page.php ├── phpunit.xml ├── readme.txt ├── screenshot-1.png └── screenshot-2.png ├── inform ├── css │ └── inform.css ├── images │ └── icon-inform.png ├── inform.php ├── js │ └── inform.js └── proxy.php ├── intensedebate ├── comments.png ├── intensedebate-comment-template.php ├── intensedebate.php ├── intensedebate.pot ├── loading.gif ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png ├── screenshot-5.png └── screenshot-6.png ├── internacional └── internacional.php ├── janrain-capture ├── README.md ├── janrain-capture-admin.php ├── janrain-capture-screens │ ├── edit-profile.html │ ├── edit-profile.js │ ├── forgot.html │ ├── forgot.js │ ├── public-profile.html │ ├── public-profile.js │ ├── signin.html │ ├── signin.js │ ├── stylesheets │ │ └── styles.css │ ├── verify.html │ └── verify.js ├── janrain-capture-ui.php ├── janrain-capture.php ├── readme.txt ├── stylesheet.css └── xdcomm.html ├── json-feed ├── json-feed.php ├── readme.txt └── wpcom-helper.php ├── jw-player-1.5.1 ├── LICENSE.txt ├── include │ ├── admin.php │ ├── ajax.php │ ├── api.php │ ├── jwplayer-api.class.php │ ├── login.php │ ├── media.php │ ├── proxy.php │ ├── settings.php │ ├── shortcode.php │ ├── utils.php │ └── validation.php ├── jw-player.php ├── readme.txt ├── screenshot-1.png ├── static │ ├── css │ │ └── style.css │ ├── img │ │ ├── channel-40.png │ │ ├── close.png │ │ ├── loading.gif │ │ ├── logo.png │ │ ├── no-thumb.jpg │ │ ├── processing.gif │ │ ├── search.png │ │ ├── thumb-error-40.gif │ │ ├── video-error-40.gif │ │ └── widget-logo.png │ └── js │ │ ├── logic.js │ │ └── upload.js └── wpcom-helper.php ├── jwplayer-1.6 ├── LICENSE.txt ├── include │ ├── admin.php │ ├── ajax.php │ ├── api.php │ ├── import.php │ ├── jwplayer-api.class.php │ ├── login.php │ ├── media.php │ ├── proxy.php │ ├── settings.php │ ├── shortcode.php │ ├── utils.php │ └── validation.php ├── jwplayer.php ├── readme.txt └── static │ ├── css │ └── style.css │ ├── img │ ├── channel-40.png │ ├── close.png │ ├── loading.gif │ ├── logo.png │ ├── no-thumb.jpg │ ├── processing.gif │ ├── search.png │ ├── thumb-error-40.gif │ ├── video-error-40.gif │ └── widget-logo.png │ └── js │ ├── logic.js │ └── upload.js ├── jwplayer ├── JWPlayer-api.class.php ├── LICENSE.txt ├── channel-40.png ├── close.png ├── jwplayer.php ├── logic.js ├── logo.png ├── processing-40.gif ├── proxy.php ├── readme.txt ├── screenshot-1.png ├── search.png ├── style.css ├── thumb-error-40.gif ├── upload.js └── video-error-40.gif ├── kapost-byline ├── kapost-byline.php └── readme.txt ├── kimili-flash-embed ├── kfe │ ├── editor_plugin_tmce3.js │ ├── images │ │ └── flash.gif │ └── langs │ │ └── en.js ├── kimili-flash-embed.php ├── kml_flashembed.php └── readme.txt ├── laterpay ├── LICENSE.txt ├── README.txt ├── application │ ├── Controller │ │ ├── Admin.php │ │ ├── Admin │ │ │ ├── Account.php │ │ │ ├── Appearance.php │ │ │ ├── Base.php │ │ │ ├── Notice.php │ │ │ ├── Post │ │ │ │ ├── Column.php │ │ │ │ └── Metabox.php │ │ │ ├── Pricing.php │ │ │ └── Settings.php │ │ ├── Base.php │ │ ├── Frontend │ │ │ ├── Post.php │ │ │ ├── PreviewMode.php │ │ │ └── Shortcode.php │ │ └── Install.php │ ├── Core │ │ ├── Auth │ │ │ └── Hmac.php │ │ ├── Bootstrap.php │ │ ├── Capability.php │ │ ├── Entity.php │ │ ├── Event.php │ │ ├── Event │ │ │ ├── Dispatcher.php │ │ │ ├── DispatcherInterface.php │ │ │ └── SubscriberInterface.php │ │ ├── Exception.php │ │ ├── Exception │ │ │ ├── Client.php │ │ │ ├── FormValidation.php │ │ │ ├── InvalidIncomingData.php │ │ │ └── PostNotFound.php │ │ ├── Request.php │ │ ├── Response.php │ │ └── View.php │ ├── Form │ │ ├── Abstract.php │ │ ├── ApiKey.php │ │ ├── DynamicPricingData.php │ │ ├── EnabledPostType.php │ │ ├── GlobalPrice.php │ │ ├── MerchantId.php │ │ ├── PaidContentPreview.php │ │ ├── Pass.php │ │ ├── PluginMode.php │ │ ├── Post.php │ │ ├── PostWithoutPricing.php │ │ ├── PreviewMode.php │ │ ├── PreviewModeForm.php │ │ ├── PreviewModeVisibility.php │ │ ├── PriceCategory.php │ │ ├── PurchaseButtonPosition.php │ │ ├── Region.php │ │ ├── Subscription.php │ │ ├── TestMode.php │ │ └── TimePassPosition.php │ ├── Helper │ │ ├── Appearance.php │ │ ├── Cache.php │ │ ├── Config.php │ │ ├── File.php │ │ ├── Post.php │ │ ├── Pricing.php │ │ ├── Request.php │ │ ├── String.php │ │ ├── Subscription.php │ │ ├── TimePass.php │ │ ├── User.php │ │ ├── View.php │ │ └── Voucher.php │ ├── Hooks.php │ ├── Model │ │ ├── CategoryPriceWP.php │ │ ├── Config.php │ │ ├── SubscriptionWP.php │ │ └── TimePassWP.php │ └── Module │ │ ├── Appearance.php │ │ ├── Purchase.php │ │ ├── Subscriptions.php │ │ └── TimePasses.php ├── asset_sources │ ├── img │ │ ├── account-link-1.png │ │ ├── account-link-2.png │ │ ├── benefits-header.png │ │ ├── button-position-1.png │ │ ├── button-position-2.png │ │ ├── close.png │ │ ├── gift-card-background.png │ │ ├── gift-card-instructions-step-1.png │ │ ├── gift-card-instructions-step-2.png │ │ ├── invoice-indicator-1.png │ │ ├── invoice-indicator-2.png │ │ ├── laterpay-icon-buy.svg │ │ ├── laterpay-icon-pay.svg │ │ ├── laterpay-icon-read.svg │ │ ├── logo-americanexpress.svg │ │ ├── logo-discovercard-bw.svg │ │ ├── logo-mastercard.svg │ │ ├── logo-paypal.svg │ │ ├── logo-sepa.svg │ │ ├── logo-visa-debit.svg │ │ ├── logo-visa.svg │ │ ├── pass-cover.png │ │ ├── premium-audio.png │ │ ├── premium-audio_2x.png │ │ ├── premium-download.png │ │ ├── premium-download_2x.png │ │ ├── premium-gallery.png │ │ ├── premium-gallery_2x.png │ │ ├── premium-text.png │ │ ├── premium-text_2x.png │ │ ├── premium-video.png │ │ ├── premium-video_2x.png │ │ ├── preview-mode-1.png │ │ ├── preview-mode-2.png │ │ ├── preview-mode-3.png │ │ ├── rating-star.svg │ │ ├── select2.png │ │ ├── shortcode-2x.png │ │ ├── shortcode-alignment-2x.png │ │ ├── shortcode-preview.png │ │ ├── spinner.svg │ │ ├── time-pass-background-flip-small.png │ │ ├── time-pass-background-flip.png │ │ ├── time-pass-background-small.png │ │ ├── time-pass-background.png │ │ ├── time-passes-position-1.png │ │ └── time-passes-position-2.png │ ├── js │ │ ├── laterpay-backend-account.js │ │ ├── laterpay-backend-appearance.js │ │ ├── laterpay-backend-options.js │ │ ├── laterpay-backend-pricing.js │ │ ├── laterpay-backend.js │ │ ├── laterpay-common.js │ │ ├── laterpay-dynamic-pricing-widget.js │ │ ├── laterpay-migrate-data.js │ │ ├── laterpay-post-edit.js │ │ ├── laterpay-post-view.js │ │ └── laterpay-wpengine-notice.js │ └── scss │ │ ├── components │ │ ├── _api-credentials-form.scss │ │ ├── _dialogs_iframe.scss │ │ ├── _dynamic_pricing.scss │ │ ├── _legal_docs_viewer.scss │ │ ├── _post_preview_mode.scss │ │ ├── _purchase_button.scss │ │ ├── _purchase_overlay.scss │ │ ├── _time_pass.scss │ │ └── _toggle.scss │ │ ├── laterpay-admin.scss │ │ ├── laterpay-backend.scss │ │ ├── laterpay-options.scss │ │ ├── laterpay-post-edit.scss │ │ ├── laterpay-post-view.scss │ │ ├── objects │ │ ├── _backend_layout.scss │ │ ├── _badge.scss │ │ ├── _button_group.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _greybox.scss │ │ ├── _kpi.scss │ │ ├── _layout.scss │ │ ├── _lists.scss │ │ ├── _polyfills.scss │ │ ├── _spinner.scss │ │ ├── _tags.scss │ │ ├── _tooltips.scss │ │ ├── _triangle.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ └── _vector_icons.scss │ │ └── pages │ │ ├── _account.scss │ │ ├── _appearance.scss │ │ ├── _post_edit.scss │ │ ├── _post_view.scss │ │ └── _pricing.scss ├── built_assets │ ├── css │ │ ├── laterpay-admin.css │ │ ├── laterpay-backend.css │ │ ├── laterpay-options.css │ │ ├── laterpay-post-edit.css │ │ ├── laterpay-post-view.css │ │ └── vendor │ │ │ └── select2.min.css │ ├── fonts │ │ ├── laterpay-wordpress-icons_v099.eot │ │ ├── laterpay-wordpress-icons_v099.svg │ │ ├── laterpay-wordpress-icons_v099.ttf │ │ └── laterpay-wordpress-icons_v099.woff │ ├── img │ │ ├── account-link-1.png │ │ ├── account-link-2.png │ │ ├── benefits-header.png │ │ ├── button-position-1.png │ │ ├── button-position-2.png │ │ ├── close.png │ │ ├── gift-card-background.png │ │ ├── gift-card-instructions-step-1.png │ │ ├── gift-card-instructions-step-2.png │ │ ├── invoice-indicator-1.png │ │ ├── invoice-indicator-2.png │ │ ├── laterpay-icon-buy.svg │ │ ├── laterpay-icon-pay.svg │ │ ├── laterpay-icon-read.svg │ │ ├── logo-americanexpress.svg │ │ ├── logo-discovercard-bw.svg │ │ ├── logo-mastercard.svg │ │ ├── logo-paypal.svg │ │ ├── logo-sepa.svg │ │ ├── logo-visa-debit.svg │ │ ├── logo-visa.svg │ │ ├── pass-cover.png │ │ ├── premium-audio.png │ │ ├── premium-audio_2x.png │ │ ├── premium-download.png │ │ ├── premium-download_2x.png │ │ ├── premium-gallery.png │ │ ├── premium-gallery_2x.png │ │ ├── premium-text.png │ │ ├── premium-text_2x.png │ │ ├── premium-video.png │ │ ├── premium-video_2x.png │ │ ├── preview-mode-1.png │ │ ├── preview-mode-2.png │ │ ├── preview-mode-3.png │ │ ├── rating-star.svg │ │ ├── select2-spinner.gif │ │ ├── select2.png │ │ ├── shortcode-2x.png │ │ ├── shortcode-alignment-2x.png │ │ ├── shortcode-preview.png │ │ ├── spinner.svg │ │ ├── time-pass-background-flip-small.png │ │ ├── time-pass-background-flip.png │ │ ├── time-pass-background-small.png │ │ ├── time-pass-background.png │ │ ├── time-passes-position-1.png │ │ └── time-passes-position-2.png │ └── js │ │ ├── laterpay-backend-account.js │ │ ├── laterpay-backend-appearance.js │ │ ├── laterpay-backend-options.js │ │ ├── laterpay-backend-pricing.js │ │ ├── laterpay-backend.js │ │ ├── laterpay-common.js │ │ ├── laterpay-dynamic-pricing-widget.js │ │ ├── laterpay-migrate-data.js │ │ ├── laterpay-post-edit.js │ │ ├── laterpay-post-view.js │ │ ├── laterpay-wpengine-notice.js │ │ └── vendor │ │ ├── d3.min.js │ │ ├── select2.min.js │ │ └── velocity.min.js ├── languages │ ├── laterpay-de_DE.mo │ ├── laterpay-de_DE.po │ └── laterpay.po ├── laterpay-load.php ├── laterpay.php ├── uninstall.php ├── vendor │ ├── autoload.php │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ └── laterpay │ │ └── laterpay-client-php │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── LaterPay │ │ ├── Client.php │ │ ├── Client │ │ │ └── Signing.php │ │ ├── Crypt.php │ │ ├── Http │ │ │ ├── Client.php │ │ │ ├── Transport.php │ │ │ └── Transport │ │ │ │ ├── Abstract.php │ │ │ │ ├── Curl.php │ │ │ │ ├── Native.php │ │ │ │ └── Wp.php │ │ └── Wrapper.php │ │ ├── README.md │ │ ├── autoload.php │ │ ├── composer.json │ │ └── phpcs.xml └── views │ ├── backend │ ├── account.php │ ├── appearance.php │ ├── options.php │ ├── partials │ │ ├── html5shiv.php │ │ ├── navigation.php │ │ ├── pointer-scripts.php │ │ ├── post-pricing-form.php │ │ ├── purchase-overlay.php │ │ ├── subscription.php │ │ └── time-pass.php │ └── pricing.php │ └── frontend │ └── partials │ ├── post │ ├── gift │ │ ├── gift-actions.php │ │ ├── gift-card.php │ │ ├── gift-pass.php │ │ ├── gift-redeem.php │ │ └── redeem-form.php │ ├── select-preview-mode-tab.php │ ├── shortcode-purchase-link.php │ └── teaser.php │ └── widget │ ├── explanatory-overlay.php │ ├── purchase-button.php │ ├── purchase-link.php │ ├── purchase-overlay.php │ ├── subscriptions-link.php │ ├── subscriptions.php │ ├── time-passes-link.php │ ├── time-passes.php │ └── timepass-subscription-link.php ├── lazy-load-0.7 ├── images │ └── 1x1.trans.gif ├── js │ ├── jquery.sonar.js │ ├── jquery.sonar.min.js │ └── lazy-load.js ├── lazy-load.php ├── readme.txt └── wpcom-helper.php ├── lazy-load ├── images │ └── 1x1.trans.gif ├── js │ ├── jquery.sonar.js │ ├── jquery.sonar.min.js │ └── lazy-load.js ├── lazy-load.php ├── readme.txt └── wpcom-helper.php ├── lib ├── Mustache │ ├── 0-load.php │ ├── Autoloader.php │ ├── Compiler.php │ ├── Context.php │ ├── Engine.php │ ├── Exception.php │ ├── Exception │ │ ├── InvalidArgumentException.php │ │ ├── LogicException.php │ │ ├── RuntimeException.php │ │ ├── SyntaxException.php │ │ ├── UnknownFilterException.php │ │ ├── UnknownHelperException.php │ │ └── UnknownTemplateException.php │ ├── HelperCollection.php │ ├── LambdaHelper.php │ ├── Loader.php │ ├── Loader │ │ ├── ArrayLoader.php │ │ ├── CascadingLoader.php │ │ ├── FilesystemLoader.php │ │ ├── InlineLoader.php │ │ ├── MutableLoader.php │ │ └── StringLoader.php │ ├── Logger.php │ ├── Logger │ │ ├── AbstractLogger.php │ │ └── StreamLogger.php │ ├── Parser.php │ ├── Template.php │ └── Tokenizer.php ├── OAuth │ ├── 0-load.php │ ├── CHANGELOG.txt │ ├── LICENSE.txt │ └── OAuth.php ├── bc-mapi │ ├── 0-load.php │ ├── bc-mapi.php │ └── wp-bc-mapi.php ├── codebird │ ├── 0-load.php │ ├── README.md │ ├── class-wp-codebird.php │ └── codebird.php └── facebook │ ├── LICENSE │ ├── composer.json │ ├── composer.lock │ ├── facebook.php │ ├── src │ └── FacebookWPHttpClient.php │ └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ └── installed.json │ └── facebook │ └── php-sdk-v4 │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ └── Facebook │ │ ├── FacebookAuthorizationException.php │ │ ├── FacebookCanvasLoginHelper.php │ │ ├── FacebookClientException.php │ │ ├── FacebookCurl.php │ │ ├── FacebookCurlHttpClient.php │ │ ├── FacebookHttpable.php │ │ ├── FacebookJavaScriptLoginHelper.php │ │ ├── FacebookOtherException.php │ │ ├── FacebookPageTabHelper.php │ │ ├── FacebookPermissionException.php │ │ ├── FacebookRedirectLoginHelper.php │ │ ├── FacebookRequest.php │ │ ├── FacebookRequestException.php │ │ ├── FacebookResponse.php │ │ ├── FacebookSDKException.php │ │ ├── FacebookServerException.php │ │ ├── FacebookSession.php │ │ ├── FacebookThrottleException.php │ │ ├── GraphAlbum.php │ │ ├── GraphLocation.php │ │ ├── GraphObject.php │ │ ├── GraphSessionInfo.php │ │ ├── GraphUser.php │ │ └── fb_ca_chain_bundle.crt │ └── tests │ ├── FacebookCanvasLoginHelperTest.php │ ├── FacebookCurlHttpClientTest.php │ ├── FacebookJavaScriptLoginHelperTest.php │ ├── FacebookPageTabHelperTest.php │ ├── FacebookRedirectLoginHelperTest.php │ ├── FacebookRequestExceptionTest.php │ ├── FacebookRequestTest.php │ ├── FacebookSessionTest.php │ ├── FacebookTestCredentials.php.dist │ ├── FacebookTestHelper.php │ ├── GraphAlbumTest.php │ ├── GraphLocationTest.php │ ├── GraphObjectTest.php │ ├── GraphSessionInfoTest.php │ ├── GraphUserTest.php │ └── bootstrap.php ├── lift-search ├── README.md ├── admin │ ├── admin.php │ └── templates │ │ ├── dashboard.html │ │ ├── error-logs.html │ │ ├── errors.html │ │ ├── modal-confirm-domain.html │ │ ├── modal-error-missing-domain.html │ │ ├── modal-error-set-credentials.html │ │ ├── modal-error.html │ │ ├── modal-set-credentials.html │ │ ├── set-credentials.html │ │ ├── set-domain.html │ │ ├── setup-processing.html │ │ └── update-queue.html ├── api │ ├── cloud-config-api.php │ ├── cloud-schemas.php │ ├── cloud-search-api.php │ ├── cloud-search-query.php │ ├── lift-batch.php │ └── lift-http.php ├── config.rb ├── css │ ├── admin.css │ └── style.css ├── img │ ├── 0-9.png │ ├── a-z.png │ ├── amazon-cloud-search.png │ ├── blue-box.png │ ├── cloud1.png │ ├── cloud2.png │ ├── documentation.png │ ├── hyphen.png │ ├── lift-admin-header.png │ ├── lift-docs-header.png │ ├── lift-logo.png │ ├── loader.gif │ ├── logo-102x56.png │ ├── logo.png │ ├── sprite-icons.png │ └── status.png ├── js │ ├── admin.js │ ├── admin.min.js │ ├── lift-search-form.js │ └── modernizr.min.js ├── lib │ ├── functions.php │ ├── posts-to-sdf.php │ ├── voce-error-logging │ │ └── voce-error-logging.php │ └── wp-asynch-events.php ├── lift-core.php ├── lift-search.php ├── package.json ├── peon-config.jst ├── readme.txt ├── sass │ ├── _grid.scss │ ├── _vars.scss │ ├── admin.scss │ └── style.scss ├── screenshot-1.jpg ├── screenshot-2.jpg ├── screenshot-3.jpg ├── screenshot-4.png ├── stylesheets │ └── style.css ├── templates │ ├── lift-loop.php │ └── search.php └── wp │ ├── domain-manager.php │ ├── field.php │ ├── form-controls.php │ ├── form-filters.php │ ├── lift-batch-handler.php │ ├── lift-health.php │ ├── lift-search-form.php │ ├── lift-update-queue.php │ ├── lift-wp-search.php │ └── update-watchers │ └── post.php ├── lightbox-plus ├── css │ ├── black │ │ ├── colorbox.css │ │ └── images │ │ │ ├── close.png │ │ │ ├── loading.gif │ │ │ ├── nextblack.png │ │ │ └── prevblack.png │ ├── dark │ │ ├── colorbox.css │ │ └── images │ │ │ ├── controls.png │ │ │ └── loading.gif │ ├── elegant │ │ ├── colorbox-ie.css │ │ ├── colorbox.css │ │ └── images │ │ │ ├── borderBottomCenter.png │ │ │ ├── borderBottomLeft.png │ │ │ ├── borderBottomRight.png │ │ │ ├── borderMiddleLeft.png │ │ │ ├── borderMiddleRight.png │ │ │ ├── borderTopCenter.png │ │ │ ├── borderTopLeft.png │ │ │ ├── borderTopRight.png │ │ │ ├── controls.png │ │ │ ├── loading.gif │ │ │ ├── loading_background.png │ │ │ └── overlay.png │ ├── framed │ │ ├── colorbox.css │ │ └── images │ │ │ ├── borderHorizontal.png │ │ │ ├── borderVertical.png │ │ │ ├── controls.png │ │ │ ├── loading.gif │ │ │ └── loading_background.png │ ├── lightweight │ │ ├── colorbox.css │ │ └── images │ │ │ ├── controls.png │ │ │ └── loading.gif │ ├── shadowed │ │ ├── colorbox-ie.css │ │ ├── colorbox.css │ │ └── images │ │ │ ├── borderBottomCenter.png │ │ │ ├── borderBottomLeft.png │ │ │ ├── borderBottomRight.png │ │ │ ├── borderMiddleLeft.png │ │ │ ├── borderMiddleRight.png │ │ │ ├── borderTopCenter.png │ │ │ ├── borderTopLeft.png │ │ │ ├── borderTopRight.png │ │ │ └── loading.gif │ └── white │ │ ├── colorbox.css │ │ └── images │ │ ├── close.png │ │ ├── loading.gif │ │ ├── nextwhite.png │ │ └── prevwhite.png ├── js │ └── jquery.colorbox-min.js ├── lightbox-plus.php ├── lightboxplus.php ├── readme.txt └── screenshot-1.jpg ├── lightweight-term-count-update ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── bin │ └── install-wp-tests.sh ├── lightweight-term-count-update.php ├── multisite.xml ├── package.json ├── phpcs.ruleset.xml ├── phpunit.xml.dist ├── readme.txt └── tests │ ├── bootstrap.php │ └── test-term-counting.php ├── liveblog-1.5 ├── .jshintrc ├── CONTRIBUTING.md ├── HACKING.md ├── README.md ├── classes │ ├── class-wpcom-liveblog-entry-extend-feature-authors.php │ ├── class-wpcom-liveblog-entry-extend-feature-commands.php │ ├── class-wpcom-liveblog-entry-extend-feature-emojis.php │ ├── class-wpcom-liveblog-entry-extend-feature-hashtags.php │ ├── class-wpcom-liveblog-entry-extend-feature.php │ ├── class-wpcom-liveblog-entry-extend.php │ ├── class-wpcom-liveblog-entry-instagram-oembed.php │ ├── class-wpcom-liveblog-entry-key-events-widget.php │ ├── class-wpcom-liveblog-entry-key-events.php │ ├── class-wpcom-liveblog-entry-query.php │ ├── class-wpcom-liveblog-entry.php │ ├── class-wpcom-liveblog-lazyloader.php │ ├── class-wpcom-liveblog-socketio-loader.php │ ├── class-wpcom-liveblog-socketio.php │ └── class-wpcom-liveblog-wp-cli.php ├── css │ ├── jquery.textcomplete.css │ ├── liveblog-admin.css │ └── liveblog.css ├── images │ ├── icons-2x.png │ └── icons.png ├── js │ ├── jquery.ba-throttle-debounce.js │ ├── jquery.ba-throttle-debounce.min.js │ ├── jquery.caret.min.js │ ├── jquery.spin.js │ ├── jquery.textcomplete.min.js │ ├── liveblog-admin.js │ ├── liveblog-lazyloader.js │ ├── liveblog-publisher.js │ ├── liveblog-socket.io.js │ ├── liveblog.js │ ├── moment.js │ ├── moment.min.js │ ├── plupload.js │ ├── socket.io.min.js │ ├── spin.js │ └── twitter-timeline.js ├── languages │ ├── liveblog-ca.mo │ ├── liveblog-ca.po │ ├── liveblog-da_DK.mo │ ├── liveblog-da_DK.po │ ├── liveblog-de_DE.mo │ ├── liveblog-de_DE.po │ ├── liveblog-es_ES.mo │ ├── liveblog-es_ES.po │ ├── liveblog-it_IT.mo │ ├── liveblog-it_IT.po │ ├── liveblog-nl_NL.mo │ ├── liveblog-nl_NL.po │ ├── liveblog-pt_BR.mo │ ├── liveblog-pt_BR.po │ ├── liveblog-pt_PT.mo │ ├── liveblog-pt_PT.po │ └── liveblog.pot ├── liveblog.php ├── nodeapp │ ├── app.js │ └── package.json ├── readme.txt ├── templates │ ├── lazyload-notice.php │ ├── liveblog-form.php │ ├── liveblog-key-admin.php │ ├── liveblog-key-events.php │ ├── liveblog-key-single-list.php │ ├── liveblog-key-single-timeline.php │ ├── liveblog-loop.php │ ├── liveblog-single-entry.php │ ├── liveblog-socketio-error.php │ ├── meta-box.php │ ├── old-wp-notice.php │ └── restrict-manage-posts.php ├── vendor │ ├── autoload.php │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ ├── installed.json │ │ └── installers │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── phpunit.xml.dist │ │ │ ├── src │ │ │ ├── Composer │ │ │ │ └── Installers │ │ │ │ │ ├── AglInstaller.php │ │ │ │ │ ├── AimeosInstaller.php │ │ │ │ │ ├── AnnotateCmsInstaller.php │ │ │ │ │ ├── AsgardInstaller.php │ │ │ │ │ ├── BaseInstaller.php │ │ │ │ │ ├── BitrixInstaller.php │ │ │ │ │ ├── BonefishInstaller.php │ │ │ │ │ ├── CakePHPInstaller.php │ │ │ │ │ ├── ChefInstaller.php │ │ │ │ │ ├── ClanCatsFrameworkInstaller.php │ │ │ │ │ ├── CodeIgniterInstaller.php │ │ │ │ │ ├── Concrete5Installer.php │ │ │ │ │ ├── CraftInstaller.php │ │ │ │ │ ├── CroogoInstaller.php │ │ │ │ │ ├── DokuWikiInstaller.php │ │ │ │ │ ├── DolibarrInstaller.php │ │ │ │ │ ├── DrupalInstaller.php │ │ │ │ │ ├── ElggInstaller.php │ │ │ │ │ ├── FuelInstaller.php │ │ │ │ │ ├── FuelphpInstaller.php │ │ │ │ │ ├── GravInstaller.php │ │ │ │ │ ├── HuradInstaller.php │ │ │ │ │ ├── ImageCMSInstaller.php │ │ │ │ │ ├── Installer.php │ │ │ │ │ ├── JoomlaInstaller.php │ │ │ │ │ ├── KirbyInstaller.php │ │ │ │ │ ├── KodiCMSInstaller.php │ │ │ │ │ ├── KohanaInstaller.php │ │ │ │ │ ├── LaravelInstaller.php │ │ │ │ │ ├── LithiumInstaller.php │ │ │ │ │ ├── MODULEWorkInstaller.php │ │ │ │ │ ├── MODXEvoInstaller.php │ │ │ │ │ ├── MagentoInstaller.php │ │ │ │ │ ├── MakoInstaller.php │ │ │ │ │ ├── MauticInstaller.php │ │ │ │ │ ├── MediaWikiInstaller.php │ │ │ │ │ ├── MicroweberInstaller.php │ │ │ │ │ ├── MoodleInstaller.php │ │ │ │ │ ├── OctoberInstaller.php │ │ │ │ │ ├── OxidInstaller.php │ │ │ │ │ ├── PPIInstaller.php │ │ │ │ │ ├── PhpBBInstaller.php │ │ │ │ │ ├── PimcoreInstaller.php │ │ │ │ │ ├── PiwikInstaller.php │ │ │ │ │ ├── Plugin.php │ │ │ │ │ ├── PrestashopInstaller.php │ │ │ │ │ ├── PuppetInstaller.php │ │ │ │ │ ├── RedaxoInstaller.php │ │ │ │ │ ├── RoundcubeInstaller.php │ │ │ │ │ ├── SMFInstaller.php │ │ │ │ │ ├── ShopwareInstaller.php │ │ │ │ │ ├── SilverStripeInstaller.php │ │ │ │ │ ├── Symfony1Installer.php │ │ │ │ │ ├── TYPO3CmsInstaller.php │ │ │ │ │ ├── TYPO3FlowInstaller.php │ │ │ │ │ ├── TheliaInstaller.php │ │ │ │ │ ├── TuskInstaller.php │ │ │ │ │ ├── WHMCSInstaller.php │ │ │ │ │ ├── WolfCMSInstaller.php │ │ │ │ │ ├── WordPressInstaller.php │ │ │ │ │ ├── ZendInstaller.php │ │ │ │ │ └── ZikulaInstaller.php │ │ │ └── bootstrap.php │ │ │ └── tests │ │ │ ├── Composer │ │ │ └── Installers │ │ │ │ └── Test │ │ │ │ ├── AsgardInstallerTest.php │ │ │ │ ├── CakePHPInstallerTest.php │ │ │ │ ├── CraftInstallerTest.php │ │ │ │ ├── DokuWikiInstallerTest.php │ │ │ │ ├── GravInstallerTest.php │ │ │ │ ├── InstallerTest.php │ │ │ │ ├── MediaWikiInstallerTest.php │ │ │ │ ├── OctoberInstallerTest.php │ │ │ │ ├── PimcoreInstallerTest.php │ │ │ │ ├── PiwikInstallerTest.php │ │ │ │ └── TestCase.php │ │ │ └── bootstrap.php │ ├── predis │ │ └── predis │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── FAQ.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── VERSION │ │ │ ├── autoload.php │ │ │ ├── bin │ │ │ ├── create-command-test │ │ │ ├── create-pear │ │ │ ├── create-phar │ │ │ └── create-single-file │ │ │ ├── composer.json │ │ │ ├── examples │ │ │ ├── custom_cluster_distributor.php │ │ │ ├── debuggable_connection.php │ │ │ ├── dispatcher_loop.php │ │ │ ├── executing_redis_commands.php │ │ │ ├── key_prefixing.php │ │ │ ├── lua_scripting_abstraction.php │ │ │ ├── monitor_consumer.php │ │ │ ├── pipelining_commands.php │ │ │ ├── pubsub_consumer.php │ │ │ ├── redis_collections_iterators.php │ │ │ ├── replication_complex.php │ │ │ ├── replication_simple.php │ │ │ ├── session_handler.php │ │ │ ├── shared.php │ │ │ └── transaction_using_cas.php │ │ │ ├── package.ini │ │ │ └── src │ │ │ ├── Autoloader.php │ │ │ ├── Client.php │ │ │ ├── ClientContextInterface.php │ │ │ ├── ClientException.php │ │ │ ├── ClientInterface.php │ │ │ ├── Cluster │ │ │ ├── ClusterStrategy.php │ │ │ ├── Distributor │ │ │ │ ├── DistributorInterface.php │ │ │ │ ├── EmptyRingException.php │ │ │ │ ├── HashRing.php │ │ │ │ └── KetamaRing.php │ │ │ ├── Hash │ │ │ │ ├── CRC16.php │ │ │ │ └── HashGeneratorInterface.php │ │ │ ├── PredisStrategy.php │ │ │ ├── RedisStrategy.php │ │ │ └── StrategyInterface.php │ │ │ ├── Collection │ │ │ └── Iterator │ │ │ │ ├── CursorBasedIterator.php │ │ │ │ ├── HashKey.php │ │ │ │ ├── Keyspace.php │ │ │ │ ├── ListKey.php │ │ │ │ ├── SetKey.php │ │ │ │ └── SortedSetKey.php │ │ │ ├── Command │ │ │ ├── Command.php │ │ │ ├── CommandInterface.php │ │ │ ├── ConnectionAuth.php │ │ │ ├── ConnectionEcho.php │ │ │ ├── ConnectionPing.php │ │ │ ├── ConnectionQuit.php │ │ │ ├── ConnectionSelect.php │ │ │ ├── GeospatialGeoAdd.php │ │ │ ├── GeospatialGeoDist.php │ │ │ ├── GeospatialGeoHash.php │ │ │ ├── GeospatialGeoPos.php │ │ │ ├── GeospatialGeoRadius.php │ │ │ ├── GeospatialGeoRadiusByMember.php │ │ │ ├── HashDelete.php │ │ │ ├── HashExists.php │ │ │ ├── HashGet.php │ │ │ ├── HashGetAll.php │ │ │ ├── HashGetMultiple.php │ │ │ ├── HashIncrementBy.php │ │ │ ├── HashIncrementByFloat.php │ │ │ ├── HashKeys.php │ │ │ ├── HashLength.php │ │ │ ├── HashScan.php │ │ │ ├── HashSet.php │ │ │ ├── HashSetMultiple.php │ │ │ ├── HashSetPreserve.php │ │ │ ├── HashStringLength.php │ │ │ ├── HashValues.php │ │ │ ├── HyperLogLogAdd.php │ │ │ ├── HyperLogLogCount.php │ │ │ ├── HyperLogLogMerge.php │ │ │ ├── KeyDelete.php │ │ │ ├── KeyDump.php │ │ │ ├── KeyExists.php │ │ │ ├── KeyExpire.php │ │ │ ├── KeyExpireAt.php │ │ │ ├── KeyKeys.php │ │ │ ├── KeyMigrate.php │ │ │ ├── KeyMove.php │ │ │ ├── KeyPersist.php │ │ │ ├── KeyPreciseExpire.php │ │ │ ├── KeyPreciseExpireAt.php │ │ │ ├── KeyPreciseTimeToLive.php │ │ │ ├── KeyRandom.php │ │ │ ├── KeyRename.php │ │ │ ├── KeyRenamePreserve.php │ │ │ ├── KeyRestore.php │ │ │ ├── KeyScan.php │ │ │ ├── KeySort.php │ │ │ ├── KeyTimeToLive.php │ │ │ ├── KeyType.php │ │ │ ├── ListIndex.php │ │ │ ├── ListInsert.php │ │ │ ├── ListLength.php │ │ │ ├── ListPopFirst.php │ │ │ ├── ListPopFirstBlocking.php │ │ │ ├── ListPopLast.php │ │ │ ├── ListPopLastBlocking.php │ │ │ ├── ListPopLastPushHead.php │ │ │ ├── ListPopLastPushHeadBlocking.php │ │ │ ├── ListPushHead.php │ │ │ ├── ListPushHeadX.php │ │ │ ├── ListPushTail.php │ │ │ ├── ListPushTailX.php │ │ │ ├── ListRange.php │ │ │ ├── ListRemove.php │ │ │ ├── ListSet.php │ │ │ ├── ListTrim.php │ │ │ ├── PrefixableCommandInterface.php │ │ │ ├── Processor │ │ │ │ ├── KeyPrefixProcessor.php │ │ │ │ ├── ProcessorChain.php │ │ │ │ └── ProcessorInterface.php │ │ │ ├── PubSubPublish.php │ │ │ ├── PubSubPubsub.php │ │ │ ├── PubSubSubscribe.php │ │ │ ├── PubSubSubscribeByPattern.php │ │ │ ├── PubSubUnsubscribe.php │ │ │ ├── PubSubUnsubscribeByPattern.php │ │ │ ├── RawCommand.php │ │ │ ├── ScriptCommand.php │ │ │ ├── ServerBackgroundRewriteAOF.php │ │ │ ├── ServerBackgroundSave.php │ │ │ ├── ServerClient.php │ │ │ ├── ServerCommand.php │ │ │ ├── ServerConfig.php │ │ │ ├── ServerDatabaseSize.php │ │ │ ├── ServerEval.php │ │ │ ├── ServerEvalSHA.php │ │ │ ├── ServerFlushAll.php │ │ │ ├── ServerFlushDatabase.php │ │ │ ├── ServerInfo.php │ │ │ ├── ServerInfoV26x.php │ │ │ ├── ServerLastSave.php │ │ │ ├── ServerMonitor.php │ │ │ ├── ServerObject.php │ │ │ ├── ServerSave.php │ │ │ ├── ServerScript.php │ │ │ ├── ServerSentinel.php │ │ │ ├── ServerShutdown.php │ │ │ ├── ServerSlaveOf.php │ │ │ ├── ServerSlowlog.php │ │ │ ├── ServerTime.php │ │ │ ├── SetAdd.php │ │ │ ├── SetCardinality.php │ │ │ ├── SetDifference.php │ │ │ ├── SetDifferenceStore.php │ │ │ ├── SetIntersection.php │ │ │ ├── SetIntersectionStore.php │ │ │ ├── SetIsMember.php │ │ │ ├── SetMembers.php │ │ │ ├── SetMove.php │ │ │ ├── SetPop.php │ │ │ ├── SetRandomMember.php │ │ │ ├── SetRemove.php │ │ │ ├── SetScan.php │ │ │ ├── SetUnion.php │ │ │ ├── SetUnionStore.php │ │ │ ├── StringAppend.php │ │ │ ├── StringBitCount.php │ │ │ ├── StringBitField.php │ │ │ ├── StringBitOp.php │ │ │ ├── StringBitPos.php │ │ │ ├── StringDecrement.php │ │ │ ├── StringDecrementBy.php │ │ │ ├── StringGet.php │ │ │ ├── StringGetBit.php │ │ │ ├── StringGetMultiple.php │ │ │ ├── StringGetRange.php │ │ │ ├── StringGetSet.php │ │ │ ├── StringIncrement.php │ │ │ ├── StringIncrementBy.php │ │ │ ├── StringIncrementByFloat.php │ │ │ ├── StringPreciseSetExpire.php │ │ │ ├── StringSet.php │ │ │ ├── StringSetBit.php │ │ │ ├── StringSetExpire.php │ │ │ ├── StringSetMultiple.php │ │ │ ├── StringSetMultiplePreserve.php │ │ │ ├── StringSetPreserve.php │ │ │ ├── StringSetRange.php │ │ │ ├── StringStrlen.php │ │ │ ├── StringSubstr.php │ │ │ ├── TransactionDiscard.php │ │ │ ├── TransactionExec.php │ │ │ ├── TransactionMulti.php │ │ │ ├── TransactionUnwatch.php │ │ │ ├── TransactionWatch.php │ │ │ ├── ZSetAdd.php │ │ │ ├── ZSetCardinality.php │ │ │ ├── ZSetCount.php │ │ │ ├── ZSetIncrementBy.php │ │ │ ├── ZSetIntersectionStore.php │ │ │ ├── ZSetLexCount.php │ │ │ ├── ZSetRange.php │ │ │ ├── ZSetRangeByLex.php │ │ │ ├── ZSetRangeByScore.php │ │ │ ├── ZSetRank.php │ │ │ ├── ZSetRemove.php │ │ │ ├── ZSetRemoveRangeByLex.php │ │ │ ├── ZSetRemoveRangeByRank.php │ │ │ ├── ZSetRemoveRangeByScore.php │ │ │ ├── ZSetReverseRange.php │ │ │ ├── ZSetReverseRangeByLex.php │ │ │ ├── ZSetReverseRangeByScore.php │ │ │ ├── ZSetReverseRank.php │ │ │ ├── ZSetScan.php │ │ │ ├── ZSetScore.php │ │ │ └── ZSetUnionStore.php │ │ │ ├── CommunicationException.php │ │ │ ├── Configuration │ │ │ ├── ClusterOption.php │ │ │ ├── ConnectionFactoryOption.php │ │ │ ├── ExceptionsOption.php │ │ │ ├── OptionInterface.php │ │ │ ├── Options.php │ │ │ ├── OptionsInterface.php │ │ │ ├── PrefixOption.php │ │ │ ├── ProfileOption.php │ │ │ └── ReplicationOption.php │ │ │ ├── Connection │ │ │ ├── AbstractConnection.php │ │ │ ├── Aggregate │ │ │ │ ├── ClusterInterface.php │ │ │ │ ├── MasterSlaveReplication.php │ │ │ │ ├── PredisCluster.php │ │ │ │ ├── RedisCluster.php │ │ │ │ └── ReplicationInterface.php │ │ │ ├── AggregateConnectionInterface.php │ │ │ ├── CompositeConnectionInterface.php │ │ │ ├── CompositeStreamConnection.php │ │ │ ├── ConnectionException.php │ │ │ ├── ConnectionInterface.php │ │ │ ├── Factory.php │ │ │ ├── FactoryInterface.php │ │ │ ├── NodeConnectionInterface.php │ │ │ ├── Parameters.php │ │ │ ├── ParametersInterface.php │ │ │ ├── PhpiredisSocketConnection.php │ │ │ ├── PhpiredisStreamConnection.php │ │ │ ├── StreamConnection.php │ │ │ └── WebdisConnection.php │ │ │ ├── Monitor │ │ │ └── Consumer.php │ │ │ ├── NotSupportedException.php │ │ │ ├── Pipeline │ │ │ ├── Atomic.php │ │ │ ├── ConnectionErrorProof.php │ │ │ ├── FireAndForget.php │ │ │ └── Pipeline.php │ │ │ ├── PredisException.php │ │ │ ├── Profile │ │ │ ├── Factory.php │ │ │ ├── ProfileInterface.php │ │ │ ├── RedisProfile.php │ │ │ ├── RedisUnstable.php │ │ │ ├── RedisVersion200.php │ │ │ ├── RedisVersion220.php │ │ │ ├── RedisVersion240.php │ │ │ ├── RedisVersion260.php │ │ │ ├── RedisVersion280.php │ │ │ ├── RedisVersion300.php │ │ │ └── RedisVersion320.php │ │ │ ├── Protocol │ │ │ ├── ProtocolException.php │ │ │ ├── ProtocolProcessorInterface.php │ │ │ ├── RequestSerializerInterface.php │ │ │ ├── ResponseReaderInterface.php │ │ │ └── Text │ │ │ │ ├── CompositeProtocolProcessor.php │ │ │ │ ├── Handler │ │ │ │ ├── BulkResponse.php │ │ │ │ ├── ErrorResponse.php │ │ │ │ ├── IntegerResponse.php │ │ │ │ ├── MultiBulkResponse.php │ │ │ │ ├── ResponseHandlerInterface.php │ │ │ │ ├── StatusResponse.php │ │ │ │ └── StreamableMultiBulkResponse.php │ │ │ │ ├── ProtocolProcessor.php │ │ │ │ ├── RequestSerializer.php │ │ │ │ └── ResponseReader.php │ │ │ ├── PubSub │ │ │ ├── AbstractConsumer.php │ │ │ ├── Consumer.php │ │ │ └── DispatcherLoop.php │ │ │ ├── Replication │ │ │ └── ReplicationStrategy.php │ │ │ ├── Response │ │ │ ├── Error.php │ │ │ ├── ErrorInterface.php │ │ │ ├── Iterator │ │ │ │ ├── MultiBulk.php │ │ │ │ ├── MultiBulkIterator.php │ │ │ │ └── MultiBulkTuple.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ServerException.php │ │ │ └── Status.php │ │ │ ├── Session │ │ │ └── Handler.php │ │ │ └── Transaction │ │ │ ├── AbortedMultiExecException.php │ │ │ ├── MultiExec.php │ │ │ └── MultiExecState.php │ ├── ptrofimov │ │ └── tinyredisclient │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── src │ │ │ └── TinyRedisClient.php │ │ │ └── tests │ │ │ ├── .gitignore │ │ │ └── TinyRedisClientTest.php │ └── rase │ │ └── socket.io-emitter │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── composer.json │ │ ├── src │ │ ├── Emitter.php │ │ ├── binary.php │ │ └── msgpack_pack.php │ │ └── test │ │ ├── process.php │ │ └── test.php └── wpcom-helper.php ├── liveblog-1.6 ├── classes │ ├── class-wpcom-liveblog-cron.php │ ├── class-wpcom-liveblog-entry-extend-feature-authors.php │ ├── class-wpcom-liveblog-entry-extend-feature-commands.php │ ├── class-wpcom-liveblog-entry-extend-feature-emojis.php │ ├── class-wpcom-liveblog-entry-extend-feature-hashtags.php │ ├── class-wpcom-liveblog-entry-extend-feature.php │ ├── class-wpcom-liveblog-entry-extend.php │ ├── class-wpcom-liveblog-entry-instagram-oembed.php │ ├── class-wpcom-liveblog-entry-key-events-widget.php │ ├── class-wpcom-liveblog-entry-key-events.php │ ├── class-wpcom-liveblog-entry-query.php │ ├── class-wpcom-liveblog-entry.php │ ├── class-wpcom-liveblog-lazyloader.php │ ├── class-wpcom-liveblog-rest-api.php │ ├── class-wpcom-liveblog-socketio-loader.php │ ├── class-wpcom-liveblog-socketio.php │ └── class-wpcom-liveblog-wp-cli.php ├── css │ ├── jquery.textcomplete.css │ ├── liveblog-admin.css │ └── liveblog.css ├── images │ ├── icons-2x.png │ └── icons.png ├── js │ ├── jquery.ba-throttle-debounce.js │ ├── jquery.ba-throttle-debounce.min.js │ ├── jquery.caret.min.js │ ├── jquery.spin.js │ ├── jquery.textcomplete.min.js │ ├── liveblog-admin.js │ ├── liveblog-lazyloader.js │ ├── liveblog-publisher.js │ ├── liveblog-socket.io.js │ ├── liveblog.js │ ├── moment.js │ ├── moment.min.js │ ├── plupload.js │ ├── socket.io.min.js │ ├── spin.js │ └── twitter-timeline.js ├── languages │ ├── liveblog-ca.mo │ ├── liveblog-ca.po │ ├── liveblog-da_DK.mo │ ├── liveblog-da_DK.po │ ├── liveblog-de_DE.mo │ ├── liveblog-de_DE.po │ ├── liveblog-es_ES.mo │ ├── liveblog-es_ES.po │ ├── liveblog-it_IT.mo │ ├── liveblog-it_IT.po │ ├── liveblog-nl_NL.mo │ ├── liveblog-nl_NL.po │ ├── liveblog-pt_BR.mo │ ├── liveblog-pt_BR.po │ ├── liveblog-pt_PT.mo │ ├── liveblog-pt_PT.po │ └── liveblog.pot ├── liveblog.php ├── readme.txt ├── templates │ ├── lazyload-notice.php │ ├── liveblog-form.php │ ├── liveblog-key-admin.php │ ├── liveblog-key-events.php │ ├── liveblog-key-single-list.php │ ├── liveblog-key-single-timeline.php │ ├── liveblog-loop.php │ ├── liveblog-single-entry.php │ ├── liveblog-socketio-error.php │ ├── meta-box.php │ ├── old-wp-notice.php │ └── restrict-manage-posts.php ├── vendor │ ├── autoload.php │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ ├── installed.json │ │ └── installers │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── _config.yml │ │ │ ├── composer.json │ │ │ ├── phpunit.xml.dist │ │ │ ├── src │ │ │ ├── Composer │ │ │ │ └── Installers │ │ │ │ │ ├── AglInstaller.php │ │ │ │ │ ├── AimeosInstaller.php │ │ │ │ │ ├── AnnotateCmsInstaller.php │ │ │ │ │ ├── AsgardInstaller.php │ │ │ │ │ ├── AttogramInstaller.php │ │ │ │ │ ├── BaseInstaller.php │ │ │ │ │ ├── BitrixInstaller.php │ │ │ │ │ ├── BonefishInstaller.php │ │ │ │ │ ├── CakePHPInstaller.php │ │ │ │ │ ├── ChefInstaller.php │ │ │ │ │ ├── ClanCatsFrameworkInstaller.php │ │ │ │ │ ├── CockpitInstaller.php │ │ │ │ │ ├── CodeIgniterInstaller.php │ │ │ │ │ ├── Concrete5Installer.php │ │ │ │ │ ├── CraftInstaller.php │ │ │ │ │ ├── CroogoInstaller.php │ │ │ │ │ ├── DecibelInstaller.php │ │ │ │ │ ├── DokuWikiInstaller.php │ │ │ │ │ ├── DolibarrInstaller.php │ │ │ │ │ ├── DrupalInstaller.php │ │ │ │ │ ├── ElggInstaller.php │ │ │ │ │ ├── EliasisInstaller.php │ │ │ │ │ ├── ExpressionEngineInstaller.php │ │ │ │ │ ├── EzPlatformInstaller.php │ │ │ │ │ ├── FuelInstaller.php │ │ │ │ │ ├── FuelphpInstaller.php │ │ │ │ │ ├── GravInstaller.php │ │ │ │ │ ├── HuradInstaller.php │ │ │ │ │ ├── ImageCMSInstaller.php │ │ │ │ │ ├── Installer.php │ │ │ │ │ ├── ItopInstaller.php │ │ │ │ │ ├── JoomlaInstaller.php │ │ │ │ │ ├── KanboardInstaller.php │ │ │ │ │ ├── KirbyInstaller.php │ │ │ │ │ ├── KodiCMSInstaller.php │ │ │ │ │ ├── KohanaInstaller.php │ │ │ │ │ ├── LanManagementSystemInstaller.php │ │ │ │ │ ├── LaravelInstaller.php │ │ │ │ │ ├── LavaLiteInstaller.php │ │ │ │ │ ├── LithiumInstaller.php │ │ │ │ │ ├── MODULEWorkInstaller.php │ │ │ │ │ ├── MODXEvoInstaller.php │ │ │ │ │ ├── MagentoInstaller.php │ │ │ │ │ ├── MakoInstaller.php │ │ │ │ │ ├── MauticInstaller.php │ │ │ │ │ ├── MayaInstaller.php │ │ │ │ │ ├── MediaWikiInstaller.php │ │ │ │ │ ├── MicroweberInstaller.php │ │ │ │ │ ├── MoodleInstaller.php │ │ │ │ │ ├── OctoberInstaller.php │ │ │ │ │ ├── OntoWikiInstaller.php │ │ │ │ │ ├── OsclassInstaller.php │ │ │ │ │ ├── OxidInstaller.php │ │ │ │ │ ├── PPIInstaller.php │ │ │ │ │ ├── PhiftyInstaller.php │ │ │ │ │ ├── PhpBBInstaller.php │ │ │ │ │ ├── PimcoreInstaller.php │ │ │ │ │ ├── PiwikInstaller.php │ │ │ │ │ ├── PlentymarketsInstaller.php │ │ │ │ │ ├── Plugin.php │ │ │ │ │ ├── PortoInstaller.php │ │ │ │ │ ├── PrestashopInstaller.php │ │ │ │ │ ├── PuppetInstaller.php │ │ │ │ │ ├── RadPHPInstaller.php │ │ │ │ │ ├── ReIndexInstaller.php │ │ │ │ │ ├── RedaxoInstaller.php │ │ │ │ │ ├── RoundcubeInstaller.php │ │ │ │ │ ├── SMFInstaller.php │ │ │ │ │ ├── ShopwareInstaller.php │ │ │ │ │ ├── SilverStripeInstaller.php │ │ │ │ │ ├── SyDESInstaller.php │ │ │ │ │ ├── Symfony1Installer.php │ │ │ │ │ ├── TYPO3CmsInstaller.php │ │ │ │ │ ├── TYPO3FlowInstaller.php │ │ │ │ │ ├── TheliaInstaller.php │ │ │ │ │ ├── TuskInstaller.php │ │ │ │ │ ├── UserFrostingInstaller.php │ │ │ │ │ ├── VanillaInstaller.php │ │ │ │ │ ├── VgmcpInstaller.php │ │ │ │ │ ├── WHMCSInstaller.php │ │ │ │ │ ├── WolfCMSInstaller.php │ │ │ │ │ ├── WordPressInstaller.php │ │ │ │ │ ├── YawikInstaller.php │ │ │ │ │ ├── ZendInstaller.php │ │ │ │ │ └── ZikulaInstaller.php │ │ │ └── bootstrap.php │ │ │ └── tests │ │ │ ├── Composer │ │ │ └── Installers │ │ │ │ └── Test │ │ │ │ ├── AsgardInstallerTest.php │ │ │ │ ├── BitrixInstallerTest.php │ │ │ │ ├── CakePHPInstallerTest.php │ │ │ │ ├── CraftInstallerTest.php │ │ │ │ ├── DokuWikiInstallerTest.php │ │ │ │ ├── GravInstallerTest.php │ │ │ │ ├── InstallerTest.php │ │ │ │ ├── MayaInstallerTest.php │ │ │ │ ├── MediaWikiInstallerTest.php │ │ │ │ ├── OctoberInstallerTest.php │ │ │ │ ├── OntoWikiInstallerTest.php │ │ │ │ ├── PimcoreInstallerTest.php │ │ │ │ ├── PiwikInstallerTest.php │ │ │ │ ├── SyDESInstallerTest.php │ │ │ │ ├── TestCase.php │ │ │ │ ├── VgmcpInstallerTest.php │ │ │ │ └── YawikInstallerTest.php │ │ │ └── bootstrap.php │ ├── predis │ │ └── predis │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── FAQ.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── VERSION │ │ │ ├── autoload.php │ │ │ ├── bin │ │ │ ├── create-command-test │ │ │ ├── create-pear │ │ │ ├── create-phar │ │ │ └── create-single-file │ │ │ ├── composer.json │ │ │ ├── examples │ │ │ ├── custom_cluster_distributor.php │ │ │ ├── debuggable_connection.php │ │ │ ├── dispatcher_loop.php │ │ │ ├── executing_redis_commands.php │ │ │ ├── key_prefixing.php │ │ │ ├── lua_scripting_abstraction.php │ │ │ ├── monitor_consumer.php │ │ │ ├── pipelining_commands.php │ │ │ ├── pubsub_consumer.php │ │ │ ├── redis_collections_iterators.php │ │ │ ├── replication_complex.php │ │ │ ├── replication_simple.php │ │ │ ├── session_handler.php │ │ │ ├── shared.php │ │ │ └── transaction_using_cas.php │ │ │ ├── package.ini │ │ │ └── src │ │ │ ├── Autoloader.php │ │ │ ├── Client.php │ │ │ ├── ClientContextInterface.php │ │ │ ├── ClientException.php │ │ │ ├── ClientInterface.php │ │ │ ├── Cluster │ │ │ ├── ClusterStrategy.php │ │ │ ├── Distributor │ │ │ │ ├── DistributorInterface.php │ │ │ │ ├── EmptyRingException.php │ │ │ │ ├── HashRing.php │ │ │ │ └── KetamaRing.php │ │ │ ├── Hash │ │ │ │ ├── CRC16.php │ │ │ │ └── HashGeneratorInterface.php │ │ │ ├── PredisStrategy.php │ │ │ ├── RedisStrategy.php │ │ │ └── StrategyInterface.php │ │ │ ├── Collection │ │ │ └── Iterator │ │ │ │ ├── CursorBasedIterator.php │ │ │ │ ├── HashKey.php │ │ │ │ ├── Keyspace.php │ │ │ │ ├── ListKey.php │ │ │ │ ├── SetKey.php │ │ │ │ └── SortedSetKey.php │ │ │ ├── Command │ │ │ ├── Command.php │ │ │ ├── CommandInterface.php │ │ │ ├── ConnectionAuth.php │ │ │ ├── ConnectionEcho.php │ │ │ ├── ConnectionPing.php │ │ │ ├── ConnectionQuit.php │ │ │ ├── ConnectionSelect.php │ │ │ ├── GeospatialGeoAdd.php │ │ │ ├── GeospatialGeoDist.php │ │ │ ├── GeospatialGeoHash.php │ │ │ ├── GeospatialGeoPos.php │ │ │ ├── GeospatialGeoRadius.php │ │ │ ├── GeospatialGeoRadiusByMember.php │ │ │ ├── HashDelete.php │ │ │ ├── HashExists.php │ │ │ ├── HashGet.php │ │ │ ├── HashGetAll.php │ │ │ ├── HashGetMultiple.php │ │ │ ├── HashIncrementBy.php │ │ │ ├── HashIncrementByFloat.php │ │ │ ├── HashKeys.php │ │ │ ├── HashLength.php │ │ │ ├── HashScan.php │ │ │ ├── HashSet.php │ │ │ ├── HashSetMultiple.php │ │ │ ├── HashSetPreserve.php │ │ │ ├── HashStringLength.php │ │ │ ├── HashValues.php │ │ │ ├── HyperLogLogAdd.php │ │ │ ├── HyperLogLogCount.php │ │ │ ├── HyperLogLogMerge.php │ │ │ ├── KeyDelete.php │ │ │ ├── KeyDump.php │ │ │ ├── KeyExists.php │ │ │ ├── KeyExpire.php │ │ │ ├── KeyExpireAt.php │ │ │ ├── KeyKeys.php │ │ │ ├── KeyMigrate.php │ │ │ ├── KeyMove.php │ │ │ ├── KeyPersist.php │ │ │ ├── KeyPreciseExpire.php │ │ │ ├── KeyPreciseExpireAt.php │ │ │ ├── KeyPreciseTimeToLive.php │ │ │ ├── KeyRandom.php │ │ │ ├── KeyRename.php │ │ │ ├── KeyRenamePreserve.php │ │ │ ├── KeyRestore.php │ │ │ ├── KeyScan.php │ │ │ ├── KeySort.php │ │ │ ├── KeyTimeToLive.php │ │ │ ├── KeyType.php │ │ │ ├── ListIndex.php │ │ │ ├── ListInsert.php │ │ │ ├── ListLength.php │ │ │ ├── ListPopFirst.php │ │ │ ├── ListPopFirstBlocking.php │ │ │ ├── ListPopLast.php │ │ │ ├── ListPopLastBlocking.php │ │ │ ├── ListPopLastPushHead.php │ │ │ ├── ListPopLastPushHeadBlocking.php │ │ │ ├── ListPushHead.php │ │ │ ├── ListPushHeadX.php │ │ │ ├── ListPushTail.php │ │ │ ├── ListPushTailX.php │ │ │ ├── ListRange.php │ │ │ ├── ListRemove.php │ │ │ ├── ListSet.php │ │ │ ├── ListTrim.php │ │ │ ├── PrefixableCommandInterface.php │ │ │ ├── Processor │ │ │ │ ├── KeyPrefixProcessor.php │ │ │ │ ├── ProcessorChain.php │ │ │ │ └── ProcessorInterface.php │ │ │ ├── PubSubPublish.php │ │ │ ├── PubSubPubsub.php │ │ │ ├── PubSubSubscribe.php │ │ │ ├── PubSubSubscribeByPattern.php │ │ │ ├── PubSubUnsubscribe.php │ │ │ ├── PubSubUnsubscribeByPattern.php │ │ │ ├── RawCommand.php │ │ │ ├── ScriptCommand.php │ │ │ ├── ServerBackgroundRewriteAOF.php │ │ │ ├── ServerBackgroundSave.php │ │ │ ├── ServerClient.php │ │ │ ├── ServerCommand.php │ │ │ ├── ServerConfig.php │ │ │ ├── ServerDatabaseSize.php │ │ │ ├── ServerEval.php │ │ │ ├── ServerEvalSHA.php │ │ │ ├── ServerFlushAll.php │ │ │ ├── ServerFlushDatabase.php │ │ │ ├── ServerInfo.php │ │ │ ├── ServerInfoV26x.php │ │ │ ├── ServerLastSave.php │ │ │ ├── ServerMonitor.php │ │ │ ├── ServerObject.php │ │ │ ├── ServerSave.php │ │ │ ├── ServerScript.php │ │ │ ├── ServerSentinel.php │ │ │ ├── ServerShutdown.php │ │ │ ├── ServerSlaveOf.php │ │ │ ├── ServerSlowlog.php │ │ │ ├── ServerTime.php │ │ │ ├── SetAdd.php │ │ │ ├── SetCardinality.php │ │ │ ├── SetDifference.php │ │ │ ├── SetDifferenceStore.php │ │ │ ├── SetIntersection.php │ │ │ ├── SetIntersectionStore.php │ │ │ ├── SetIsMember.php │ │ │ ├── SetMembers.php │ │ │ ├── SetMove.php │ │ │ ├── SetPop.php │ │ │ ├── SetRandomMember.php │ │ │ ├── SetRemove.php │ │ │ ├── SetScan.php │ │ │ ├── SetUnion.php │ │ │ ├── SetUnionStore.php │ │ │ ├── StringAppend.php │ │ │ ├── StringBitCount.php │ │ │ ├── StringBitField.php │ │ │ ├── StringBitOp.php │ │ │ ├── StringBitPos.php │ │ │ ├── StringDecrement.php │ │ │ ├── StringDecrementBy.php │ │ │ ├── StringGet.php │ │ │ ├── StringGetBit.php │ │ │ ├── StringGetMultiple.php │ │ │ ├── StringGetRange.php │ │ │ ├── StringGetSet.php │ │ │ ├── StringIncrement.php │ │ │ ├── StringIncrementBy.php │ │ │ ├── StringIncrementByFloat.php │ │ │ ├── StringPreciseSetExpire.php │ │ │ ├── StringSet.php │ │ │ ├── StringSetBit.php │ │ │ ├── StringSetExpire.php │ │ │ ├── StringSetMultiple.php │ │ │ ├── StringSetMultiplePreserve.php │ │ │ ├── StringSetPreserve.php │ │ │ ├── StringSetRange.php │ │ │ ├── StringStrlen.php │ │ │ ├── StringSubstr.php │ │ │ ├── TransactionDiscard.php │ │ │ ├── TransactionExec.php │ │ │ ├── TransactionMulti.php │ │ │ ├── TransactionUnwatch.php │ │ │ ├── TransactionWatch.php │ │ │ ├── ZSetAdd.php │ │ │ ├── ZSetCardinality.php │ │ │ ├── ZSetCount.php │ │ │ ├── ZSetIncrementBy.php │ │ │ ├── ZSetIntersectionStore.php │ │ │ ├── ZSetLexCount.php │ │ │ ├── ZSetRange.php │ │ │ ├── ZSetRangeByLex.php │ │ │ ├── ZSetRangeByScore.php │ │ │ ├── ZSetRank.php │ │ │ ├── ZSetRemove.php │ │ │ ├── ZSetRemoveRangeByLex.php │ │ │ ├── ZSetRemoveRangeByRank.php │ │ │ ├── ZSetRemoveRangeByScore.php │ │ │ ├── ZSetReverseRange.php │ │ │ ├── ZSetReverseRangeByLex.php │ │ │ ├── ZSetReverseRangeByScore.php │ │ │ ├── ZSetReverseRank.php │ │ │ ├── ZSetScan.php │ │ │ ├── ZSetScore.php │ │ │ └── ZSetUnionStore.php │ │ │ ├── CommunicationException.php │ │ │ ├── Configuration │ │ │ ├── ClusterOption.php │ │ │ ├── ConnectionFactoryOption.php │ │ │ ├── ExceptionsOption.php │ │ │ ├── OptionInterface.php │ │ │ ├── Options.php │ │ │ ├── OptionsInterface.php │ │ │ ├── PrefixOption.php │ │ │ ├── ProfileOption.php │ │ │ └── ReplicationOption.php │ │ │ ├── Connection │ │ │ ├── AbstractConnection.php │ │ │ ├── Aggregate │ │ │ │ ├── ClusterInterface.php │ │ │ │ ├── MasterSlaveReplication.php │ │ │ │ ├── PredisCluster.php │ │ │ │ ├── RedisCluster.php │ │ │ │ └── ReplicationInterface.php │ │ │ ├── AggregateConnectionInterface.php │ │ │ ├── CompositeConnectionInterface.php │ │ │ ├── CompositeStreamConnection.php │ │ │ ├── ConnectionException.php │ │ │ ├── ConnectionInterface.php │ │ │ ├── Factory.php │ │ │ ├── FactoryInterface.php │ │ │ ├── NodeConnectionInterface.php │ │ │ ├── Parameters.php │ │ │ ├── ParametersInterface.php │ │ │ ├── PhpiredisSocketConnection.php │ │ │ ├── PhpiredisStreamConnection.php │ │ │ ├── StreamConnection.php │ │ │ └── WebdisConnection.php │ │ │ ├── Monitor │ │ │ └── Consumer.php │ │ │ ├── NotSupportedException.php │ │ │ ├── Pipeline │ │ │ ├── Atomic.php │ │ │ ├── ConnectionErrorProof.php │ │ │ ├── FireAndForget.php │ │ │ └── Pipeline.php │ │ │ ├── PredisException.php │ │ │ ├── Profile │ │ │ ├── Factory.php │ │ │ ├── ProfileInterface.php │ │ │ ├── RedisProfile.php │ │ │ ├── RedisUnstable.php │ │ │ ├── RedisVersion200.php │ │ │ ├── RedisVersion220.php │ │ │ ├── RedisVersion240.php │ │ │ ├── RedisVersion260.php │ │ │ ├── RedisVersion280.php │ │ │ ├── RedisVersion300.php │ │ │ └── RedisVersion320.php │ │ │ ├── Protocol │ │ │ ├── ProtocolException.php │ │ │ ├── ProtocolProcessorInterface.php │ │ │ ├── RequestSerializerInterface.php │ │ │ ├── ResponseReaderInterface.php │ │ │ └── Text │ │ │ │ ├── CompositeProtocolProcessor.php │ │ │ │ ├── Handler │ │ │ │ ├── BulkResponse.php │ │ │ │ ├── ErrorResponse.php │ │ │ │ ├── IntegerResponse.php │ │ │ │ ├── MultiBulkResponse.php │ │ │ │ ├── ResponseHandlerInterface.php │ │ │ │ ├── StatusResponse.php │ │ │ │ └── StreamableMultiBulkResponse.php │ │ │ │ ├── ProtocolProcessor.php │ │ │ │ ├── RequestSerializer.php │ │ │ │ └── ResponseReader.php │ │ │ ├── PubSub │ │ │ ├── AbstractConsumer.php │ │ │ ├── Consumer.php │ │ │ └── DispatcherLoop.php │ │ │ ├── Replication │ │ │ └── ReplicationStrategy.php │ │ │ ├── Response │ │ │ ├── Error.php │ │ │ ├── ErrorInterface.php │ │ │ ├── Iterator │ │ │ │ ├── MultiBulk.php │ │ │ │ ├── MultiBulkIterator.php │ │ │ │ └── MultiBulkTuple.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ServerException.php │ │ │ └── Status.php │ │ │ ├── Session │ │ │ └── Handler.php │ │ │ └── Transaction │ │ │ ├── AbortedMultiExecException.php │ │ │ ├── MultiExec.php │ │ │ └── MultiExecState.php │ ├── ptrofimov │ │ └── tinyredisclient │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── src │ │ │ └── TinyRedisClient.php │ │ │ └── tests │ │ │ ├── .gitignore │ │ │ └── TinyRedisClientTest.php │ └── rase │ │ └── socket.io-emitter │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── composer.json │ │ ├── src │ │ ├── Emitter.php │ │ ├── binary.php │ │ └── msgpack_pack.php │ │ └── test │ │ ├── process.php │ │ └── test.php └── wpcom-helper.php ├── liveblog-1.7 ├── assets │ ├── app.css │ ├── app.css.map │ ├── app.js │ ├── app.js.map │ ├── bundle.js │ ├── dashboard │ │ ├── app.css │ │ └── app.js │ └── theme.css ├── classes │ ├── class-wpcom-liveblog-cron.php │ ├── class-wpcom-liveblog-entry-embed-sdks.php │ ├── class-wpcom-liveblog-entry-embed.php │ ├── class-wpcom-liveblog-entry-extend-feature-authors.php │ ├── class-wpcom-liveblog-entry-extend-feature-commands.php │ ├── class-wpcom-liveblog-entry-extend-feature-emojis.php │ ├── class-wpcom-liveblog-entry-extend-feature-hashtags.php │ ├── class-wpcom-liveblog-entry-extend-feature.php │ ├── class-wpcom-liveblog-entry-extend.php │ ├── class-wpcom-liveblog-entry-key-events-widget.php │ ├── class-wpcom-liveblog-entry-key-events.php │ ├── class-wpcom-liveblog-entry-query.php │ ├── class-wpcom-liveblog-entry.php │ ├── class-wpcom-liveblog-lazyloader.php │ ├── class-wpcom-liveblog-rest-api.php │ ├── class-wpcom-liveblog-socketio-loader.php │ ├── class-wpcom-liveblog-socketio.php │ └── class-wpcom-liveblog-wp-cli.php ├── languages │ ├── liveblog-ca.mo │ ├── liveblog-ca.po │ ├── liveblog-da_DK.mo │ ├── liveblog-da_DK.po │ ├── liveblog-de_DE.mo │ ├── liveblog-de_DE.po │ ├── liveblog-es_ES.mo │ ├── liveblog-es_ES.po │ ├── liveblog-it_IT.mo │ ├── liveblog-it_IT.po │ ├── liveblog-nl_NL.mo │ ├── liveblog-nl_NL.po │ ├── liveblog-pt_BR.mo │ ├── liveblog-pt_BR.po │ ├── liveblog-pt_PT.mo │ ├── liveblog-pt_PT.po │ └── liveblog.pot ├── liveblog.php ├── readme.txt ├── templates │ ├── lazyload-notice.php │ ├── liveblog-form.php │ ├── liveblog-key-admin.php │ ├── liveblog-key-events.php │ ├── liveblog-key-single-list.php │ ├── liveblog-key-single-timeline.php │ ├── liveblog-loop.php │ ├── liveblog-single-entry.php │ ├── liveblog-socketio-error.php │ ├── meta-box.php │ ├── old-wp-notice.php │ └── restrict-manage-posts.php └── wpcom-helper.php ├── liveblog-1.8 ├── assets │ ├── app.css │ ├── app.css.map │ ├── app.js │ ├── app.js.map │ ├── bundle.js │ ├── dashboard │ │ ├── app.css │ │ └── app.js │ └── theme.css ├── classes │ ├── class-wpcom-liveblog-cron.php │ ├── class-wpcom-liveblog-entry-embed-sdks.php │ ├── class-wpcom-liveblog-entry-embed.php │ ├── class-wpcom-liveblog-entry-extend-feature-authors.php │ ├── class-wpcom-liveblog-entry-extend-feature-commands.php │ ├── class-wpcom-liveblog-entry-extend-feature-emojis.php │ ├── class-wpcom-liveblog-entry-extend-feature-hashtags.php │ ├── class-wpcom-liveblog-entry-extend-feature.php │ ├── class-wpcom-liveblog-entry-extend.php │ ├── class-wpcom-liveblog-entry-key-events-widget.php │ ├── class-wpcom-liveblog-entry-key-events.php │ ├── class-wpcom-liveblog-entry-query.php │ ├── class-wpcom-liveblog-entry.php │ ├── class-wpcom-liveblog-lazyloader.php │ ├── class-wpcom-liveblog-rest-api.php │ ├── class-wpcom-liveblog-socketio-loader.php │ ├── class-wpcom-liveblog-socketio.php │ └── class-wpcom-liveblog-wp-cli.php ├── languages │ ├── liveblog-ca.mo │ ├── liveblog-ca.po │ ├── liveblog-da_DK.mo │ ├── liveblog-da_DK.po │ ├── liveblog-de_DE.mo │ ├── liveblog-de_DE.po │ ├── liveblog-es_ES.mo │ ├── liveblog-es_ES.po │ ├── liveblog-it_IT.mo │ ├── liveblog-it_IT.po │ ├── liveblog-nl_NL.mo │ ├── liveblog-nl_NL.po │ ├── liveblog-pt_BR.mo │ ├── liveblog-pt_BR.po │ ├── liveblog-pt_PT.mo │ ├── liveblog-pt_PT.po │ └── liveblog.pot ├── liveblog.php ├── readme.txt ├── templates │ ├── lazyload-notice.php │ ├── liveblog-form.php │ ├── liveblog-key-admin.php │ ├── liveblog-key-events.php │ ├── liveblog-key-single-list.php │ ├── liveblog-key-single-timeline.php │ ├── liveblog-loop.php │ ├── liveblog-single-entry.php │ ├── liveblog-socketio-error.php │ ├── meta-box.php │ ├── old-wp-notice.php │ └── restrict-manage-posts.php └── wpcom-helper.php ├── liveblog-1.9 ├── assets │ ├── 0.bundle.js │ ├── amp.css │ ├── amp.css.map │ ├── amp.js │ ├── amp.js.map │ ├── app.css │ ├── app.css.map │ ├── app.js │ ├── app.js.map │ ├── bundle.js │ ├── dashboard │ │ ├── app.css │ │ └── app.js │ └── theme.css ├── classes │ ├── class-wpcom-liveblog-amp-template.php │ ├── class-wpcom-liveblog-amp.php │ ├── class-wpcom-liveblog-cron.php │ ├── class-wpcom-liveblog-entry-embed-sdks.php │ ├── class-wpcom-liveblog-entry-embed.php │ ├── class-wpcom-liveblog-entry-extend-feature-authors.php │ ├── class-wpcom-liveblog-entry-extend-feature-commands.php │ ├── class-wpcom-liveblog-entry-extend-feature-emojis.php │ ├── class-wpcom-liveblog-entry-extend-feature-hashtags.php │ ├── class-wpcom-liveblog-entry-extend-feature.php │ ├── class-wpcom-liveblog-entry-extend.php │ ├── class-wpcom-liveblog-entry-key-events-widget.php │ ├── class-wpcom-liveblog-entry-key-events.php │ ├── class-wpcom-liveblog-entry-query.php │ ├── class-wpcom-liveblog-entry.php │ ├── class-wpcom-liveblog-lazyloader.php │ ├── class-wpcom-liveblog-rest-api.php │ ├── class-wpcom-liveblog-socketio-loader.php │ ├── class-wpcom-liveblog-socketio.php │ └── class-wpcom-liveblog-wp-cli.php ├── languages │ ├── liveblog-ca.mo │ ├── liveblog-ca.po │ ├── liveblog-da_DK.mo │ ├── liveblog-da_DK.po │ ├── liveblog-de_DE.mo │ ├── liveblog-de_DE.po │ ├── liveblog-es_ES.mo │ ├── liveblog-es_ES.po │ ├── liveblog-it_IT.mo │ ├── liveblog-it_IT.po │ ├── liveblog-nl_NL.mo │ ├── liveblog-nl_NL.po │ ├── liveblog-pt_BR.mo │ ├── liveblog-pt_BR.po │ ├── liveblog-pt_PT.mo │ ├── liveblog-pt_PT.po │ └── liveblog.pot ├── liveblog.php ├── readme.txt ├── templates │ ├── amp │ │ ├── author.php │ │ ├── entry.php │ │ ├── feed.php │ │ └── pagination.php │ ├── lazyload-notice.php │ ├── liveblog-form.php │ ├── liveblog-key-admin.php │ ├── liveblog-key-events.php │ ├── liveblog-key-single-list.php │ ├── liveblog-key-single-timeline.php │ ├── liveblog-loop.php │ ├── liveblog-single-entry.php │ ├── liveblog-socketio-error.php │ ├── meta-box.php │ ├── old-wp-notice.php │ └── restrict-manage-posts.php └── wpcom-helper.php ├── livefyre-apps ├── Livefyre_Apps.php ├── Livefyre_Apps_Admin.php ├── apps │ ├── blog │ │ ├── LFAPPS_Blog.php │ │ ├── LFAPPS_Blog_Admin.php │ │ └── views │ │ │ ├── general.php │ │ │ └── script.php │ ├── chat │ │ ├── LFAPPS_Chat.php │ │ ├── LFAPPS_Chat_Admin.php │ │ └── views │ │ │ ├── comments-template.php │ │ │ ├── general.php │ │ │ └── script.php │ ├── comments │ │ ├── LFAPPS_Comments.php │ │ ├── LFAPPS_Comments_Activation.php │ │ ├── LFAPPS_Comments_Admin.php │ │ ├── LFAPPS_Comments_Core.php │ │ ├── LFAPPS_Comments_Display.php │ │ ├── LFAPPS_Comments_Extension.php │ │ ├── assets │ │ │ ├── css │ │ │ │ └── lfapps_comments.css │ │ │ └── img │ │ │ │ ├── gear1.png │ │ │ │ ├── gear2.png │ │ │ │ └── gear3.png │ │ ├── import │ │ │ ├── LFAPPS_Comments_Import.php │ │ │ └── LFAPPS_Comments_Import_Impl.php │ │ └── views │ │ │ ├── comments-template.php │ │ │ ├── general.php │ │ │ ├── import.php │ │ │ ├── import_script.php │ │ │ └── script.php │ ├── designer │ │ ├── LFAPPS_Designer.php │ │ ├── LFAPPS_Designer_Admin.php │ │ └── views │ │ │ ├── general.php │ │ │ └── script.php │ └── sidenotes │ │ ├── LFAPPS_Sidenotes.php │ │ ├── LFAPPS_Sidenotes_Admin.php │ │ └── views │ │ ├── general.php │ │ └── script.php ├── assets │ ├── css │ │ └── lfapps.css │ ├── img │ │ ├── lf-blog-icon-grey.png │ │ ├── lf-blog-icon.png │ │ ├── lf-chat-icon-grey.png │ │ ├── lf-chat-icon.png │ │ ├── lf-comments-icon-grey.png │ │ ├── lf-comments-icon.png │ │ ├── lf-sidenotes-icon-grey.png │ │ ├── lf-sidenotes-icon.png │ │ ├── lf-visualization-icon-grey.png │ │ ├── lf-visualization-icon.png │ │ ├── livefyre-icon_x16.png │ │ ├── livefyre-icon_x24.png │ │ ├── livefyre-icon_x256.png │ │ ├── livefyre-icon_x64.png │ │ └── livefyre-logo.png │ └── js │ │ ├── lfapps-admin.js │ │ └── lfapps.js ├── libs │ └── php │ │ ├── LFAPPS_Http_Extension.php │ │ ├── LFAPPS_JWT.php │ │ ├── LFAPPS_View.php │ │ └── Livefyre │ │ ├── Api │ │ ├── Domain.php │ │ └── PersonalizedStream.php │ │ ├── Core │ │ ├── Network.php │ │ └── Site.php │ │ ├── Entity │ │ ├── Subscription.php │ │ ├── SubscriptionType.php │ │ ├── TimelineCursor.php │ │ └── Topic.php │ │ ├── Factory │ │ └── CursorFactory.php │ │ ├── Livefyre.php │ │ ├── Routing │ │ └── Client.php │ │ └── Utils │ │ ├── BasicEnum.php │ │ ├── IDNA.php │ │ └── JWT.php ├── livefyre-apps.php ├── readme.txt ├── views │ ├── footer.php │ ├── general.php │ ├── header.php │ ├── initial_modal.php │ ├── plugin_conflict.php │ └── script_auth.php └── wpcom-helper.php ├── livefyre3 ├── comments-template.php ├── livefyre-api │ ├── README │ └── libs │ │ └── php │ │ ├── Article.php │ │ ├── Conversation.php │ │ ├── Domain.php │ │ ├── Http.php │ │ ├── JWT.php │ │ ├── Livefyre.php │ │ ├── Site.php │ │ ├── Token.php │ │ └── User.php ├── livefyre.php ├── livefyre3.php ├── livefyre_core.php └── readme.txt ├── localtime ├── localtime.js ├── localtime.php └── readme.txt ├── maintenance-mode-0.2 ├── LICENSE ├── languages │ └── maintenance-mode.pot ├── maintenance-mode.php ├── readme.txt ├── template-maintenance-mode.php ├── vipgo-helper.php └── wpcom-helper.php ├── maintenance-mode ├── maintenance-mode.php └── template-maintenance-mode.php ├── mce-table-buttons ├── mce-table-buttons.php ├── mce_table_buttons.php ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── tinymce4-table │ ├── plugin.js │ └── plugin.min.js └── wpcom-helper.php ├── mediapass ├── .buildpath ├── .project ├── images │ ├── ajax-loader.gif │ ├── arrow.png │ ├── author.jpg │ ├── benefits-inpage.jpg │ ├── benefits-pageOverlay.jpg │ ├── categories.jpg │ ├── inpage.jpg │ ├── logo-icon-16x16.png │ ├── logo-icon.png │ ├── mp-bulk-protect-instructions.png │ ├── mp-landing-logo.jpg │ ├── mp_subscriptions_logo.jpg │ ├── overlay.jpg │ ├── post_editor.jpg │ ├── post_list.jpg │ ├── protected_icon.png │ ├── protection-instructions-author-list.jpg │ ├── protection-instructions-post-editor.jpg │ ├── protection-instructions-post-list.jpg │ ├── protection-instructions-tag-list.jpg │ ├── tags.jpg │ ├── unprotected_icon.png │ └── update-logo-inPage.jpg ├── includes │ ├── account_info.php │ ├── ajax_loader.php │ ├── benefits.php │ ├── deauth.php │ ├── ecpm_floor.php │ ├── error.php │ ├── faq_tc.php │ ├── metered.php │ ├── network.php │ ├── placement.php │ ├── price_points.php │ ├── reporting.php │ ├── signup.php │ └── summary_report.php ├── js │ ├── admin.js │ ├── charting.js │ ├── excanvas.js │ ├── fieldselection.min.js │ ├── formfieldlimiter.js │ ├── images │ │ ├── form-button.png │ │ ├── loading.gif │ │ ├── mplogo.gif │ │ ├── shortcode_inpage.png │ │ ├── shortcode_overlay.png │ │ ├── shortcode_video.png │ │ └── wp-logo.gif │ ├── inpage.js │ ├── jquery.jqplot.js │ ├── mp-content-editor-extensions.js │ ├── mp-content-list-extensions.js │ ├── overlay.js │ ├── plugins │ │ ├── jqplot.BezierCurveRenderer.js │ │ ├── jqplot.barRenderer.js │ │ ├── jqplot.blockRenderer.js │ │ ├── jqplot.bubbleRenderer.js │ │ ├── jqplot.canvasAxisLabelRenderer.js │ │ ├── jqplot.canvasAxisTickRenderer.js │ │ ├── jqplot.canvasOverlay.js │ │ ├── jqplot.canvasTextRenderer.js │ │ ├── jqplot.categoryAxisRenderer.js │ │ ├── jqplot.ciParser.js │ │ ├── jqplot.cursor.js │ │ ├── jqplot.dateAxisRenderer.js │ │ ├── jqplot.donutRenderer.js │ │ ├── jqplot.dragable.js │ │ ├── jqplot.enhancedLegendRenderer.js │ │ ├── jqplot.funnelRenderer.js │ │ ├── jqplot.highlighter.js │ │ ├── jqplot.json2.js │ │ ├── jqplot.logAxisRenderer.js │ │ ├── jqplot.mekkoAxisRenderer.js │ │ ├── jqplot.mekkoRenderer.js │ │ ├── jqplot.meterGaugeRenderer.js │ │ ├── jqplot.ohlcRenderer.js │ │ ├── jqplot.pieRenderer.js │ │ ├── jqplot.pointLabels.js │ │ ├── jqplot.pyramidAxisRenderer.js │ │ ├── jqplot.pyramidGridRenderer.js │ │ ├── jqplot.pyramidRenderer.js │ │ └── jqplot.trendline.js │ ├── qtags.js │ └── video.js ├── mediapass.php ├── mediapass_api.php ├── mediapass_plugin.php ├── mediapass_plugin_content_filters.php ├── mediapass_plugin_content_list_ex.php ├── readme.txt ├── screenshot-1.jpg ├── screenshot-2.jpg ├── screenshot-3.jpg ├── screenshot-4.jpg ├── screenshots │ ├── screenshot-1.jpg │ └── screenshot-2.jpg ├── shortcodes.php ├── styles │ ├── admin.css │ ├── charting.css │ └── tc.css └── uninstall.php ├── most-commented └── most-commented.php ├── most-popular-feed-wpcom └── most-popular-feed-wpcom.php ├── msm-sitemap-1.2 ├── README.md ├── css │ └── style.css ├── includes │ ├── msm-sitemap-builder-cron.php │ └── wp-cli.php ├── js │ └── msm-sitemap-admin.js ├── msm-sitemap.php ├── templates │ └── full-sitemaps.php ├── vipgo-helper.php └── wpcom-helper.php ├── msm-sitemap-1.3 ├── README.md ├── css │ └── style.css ├── includes │ ├── msm-sitemap-builder-cron.php │ └── wp-cli.php ├── js │ ├── flot │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── API.md │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── NEWS.md │ │ ├── PLUGINS.md │ │ ├── README.md │ │ ├── component.json │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── flot.jquery.json │ │ ├── jquery.colorhelpers.js │ │ ├── jquery.flot.canvas.js │ │ ├── jquery.flot.categories.js │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.errorbars.js │ │ ├── jquery.flot.fillbetween.js │ │ ├── jquery.flot.image.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.navigate.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.symbol.js │ │ ├── jquery.flot.threshold.js │ │ ├── jquery.flot.time.js │ │ ├── jquery.js │ │ └── package.json │ └── msm-sitemap-admin.js ├── msm-sitemap.php ├── templates │ └── full-sitemaps.php └── wpcom-helper.php ├── msm-sitemap ├── HACKING.md ├── css │ └── style.css ├── includes │ ├── msm-sitemap-builder-cron.php │ └── wp-cli.php ├── js │ ├── flot │ │ ├── API.md │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── NEWS.md │ │ ├── PLUGINS.md │ │ ├── README.md │ │ ├── component.json │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── flot.jquery.json │ │ ├── jquery.colorhelpers.js │ │ ├── jquery.flot.canvas.js │ │ ├── jquery.flot.categories.js │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.errorbars.js │ │ ├── jquery.flot.fillbetween.js │ │ ├── jquery.flot.image.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.navigate.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.symbol.js │ │ ├── jquery.flot.threshold.js │ │ ├── jquery.flot.time.js │ │ ├── jquery.js │ │ └── package.json │ └── msm-sitemap-admin.js ├── msm-sitemap.php ├── templates │ └── full-sitemaps.php └── wpcom-helper.php ├── multiple-post-thumbnails ├── js │ ├── media-modal.js │ └── multi-post-thumbnails-admin.js ├── languages │ ├── multiple-post-thumbnails-de_DE.mo │ ├── multiple-post-thumbnails-de_DE.po │ └── multiple-post-thumbnails-xx_XX.pot ├── multi-post-thumbnails.php ├── multiple-post-thumbnails.php ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png └── screenshot-3.png ├── nbcs-advanced-blacklist ├── README ├── nbcs-advanced-blacklist.php ├── script.js └── style.css ├── nbcs-moderation-queue-alerts └── nbcs-moderation-queue-alerts.php ├── ndn-video-match ├── .gitignore ├── .jshintrc ├── README.md ├── assets │ ├── ndnIcon_17x17.png │ ├── ndnLogo_116x50.png │ ├── ndnLogo_93x42.png │ └── ndn_icon_tinymce_20x20.png ├── css │ ├── ndn_plugin_admin.css │ ├── ndn_plugin_admin_custom_modal.css │ ├── ndn_plugin_admin_login.css │ ├── ndn_plugin_admin_search_results.css │ └── ndn_plugin_public.css ├── includes │ ├── ndn_plugin_admin.php │ ├── ndn_plugin_i18n.php │ ├── ndn_plugin_loader.php │ └── ndn_plugin_public.php ├── inform-video-match.php ├── js │ ├── ndn_plugin_admin.js │ ├── ndn_plugin_admin_custom_modal.js │ ├── ndn_plugin_admin_search_results.js │ └── ndn_plugin_public.js ├── package.json ├── partials │ ├── ndn_plugin_admin_login_page.php │ ├── ndn_plugin_admin_search_modal.php │ ├── ndn_plugin_admin_search_results.php │ └── ndn_plugin_admin_settings_page.php ├── readme.txt ├── screenshot-1.png └── screenshot-2.png ├── new-device-notification ├── new-device-notification.php ├── vipgo-helper.php └── wpcom-helper.php ├── newscred ├── COPYING ├── Gruntfile.js ├── application │ ├── controllers │ │ ├── class-nc-metabox.php │ │ ├── class-nc-myfeeds.php │ │ └── class-nc-settings.php │ ├── models │ │ ├── class-nc-article.php │ │ ├── class-nc-author.php │ │ ├── class-nc-image.php │ │ ├── class-nc-source.php │ │ └── class-nc-topic.php │ └── views │ │ ├── messages │ │ ├── active_mu_sites.php │ │ └── openssl.php │ │ ├── metabox │ │ ├── addimage.php │ │ ├── index.php │ │ └── remove-image.php │ │ ├── myfeeds │ │ ├── includes │ │ │ ├── api-form.php │ │ │ ├── myfeed-form.php │ │ │ └── myfeed-list.php │ │ └── index.php │ │ └── settings │ │ └── index.php ├── banner-772x250.png ├── includes │ ├── class-nc-controller.php │ ├── class-nc-cron.php │ ├── class-nc-exception.php │ ├── class-nc-template.php │ ├── class-nc-utility.php │ └── newscred.php ├── newscred-wp.php ├── newscred.php ├── package.json ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png ├── screenshot-5.png ├── static │ ├── build │ │ ├── html │ │ │ └── metabox.html │ │ └── js │ │ │ ├── lib.js │ │ │ ├── metabox.js │ │ │ └── myfeeds.js │ ├── css │ │ ├── colorbox.css │ │ ├── nc-ie8.css │ │ ├── nc-ie9.css │ │ ├── select2.css │ │ ├── style.css │ │ ├── style.min.css │ │ └── tooltipster.css │ ├── images │ │ ├── black85.png │ │ ├── controls.png │ │ ├── inserticons.png │ │ ├── loading.gif │ │ ├── nc-icon.png │ │ ├── nc-loading.gif │ │ ├── nc-loading2.gif │ │ ├── nc-page-loader.gif │ │ ├── newscred-logo.png │ │ ├── newscred.png │ │ ├── next-horizontal.png │ │ ├── next-vertical.png │ │ ├── prev-horizontal.png │ │ ├── prev-vertical.png │ │ ├── remove.png │ │ ├── select2 │ │ │ ├── select2-spinner.gif │ │ │ ├── select2.png │ │ │ └── select2x2.png │ │ └── setf.png │ └── js │ │ ├── backbone │ │ ├── collections │ │ │ ├── Articles.js │ │ │ ├── Images.js │ │ │ └── Tags.js │ │ ├── common.js │ │ ├── main.js │ │ ├── models │ │ │ ├── Article.js │ │ │ ├── Image.js │ │ │ └── Tag.js │ │ ├── router.js │ │ ├── run.js │ │ ├── templates │ │ │ ├── article-tooltip.html │ │ │ ├── article.html │ │ │ ├── articles.html │ │ │ ├── attach-image.html │ │ │ ├── image-tooltip.html │ │ │ ├── image.html │ │ │ ├── images.html │ │ │ ├── metabox.html │ │ │ ├── myfeeds.html │ │ │ └── tag.html │ │ └── views │ │ │ ├── ArticleToolTipView.js │ │ │ ├── ArticleView.js │ │ │ ├── ArticlesView.js │ │ │ ├── AttachImagesView.js │ │ │ ├── ImageToolTipView.js │ │ │ ├── ImageView.js │ │ │ ├── ImagesView.js │ │ │ ├── MetaBoxView.js │ │ │ ├── MyFeedsView.js │ │ │ ├── TagView.js │ │ │ └── TagsView.js │ │ ├── lib │ │ ├── jquery.colorbox.js │ │ ├── jquery.tooltipster.min.js │ │ └── select2.min.js │ │ └── myfeeds.js └── wpcom-helper.php ├── objects-to-objects-1.4.5 ├── README.md ├── admin │ └── admin.php ├── loader.php ├── objects-to-objects.php ├── src │ ├── cli │ │ └── o2o.php │ ├── connection-types │ │ └── taxonomy │ │ │ ├── query_modifier.php │ │ │ └── taxonomy.php │ ├── factory.php │ ├── o2o.php │ ├── query.php │ └── rewrites.php └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ └── installed.json │ └── voceconnect │ └── post-selection-ui │ ├── README.mdown │ ├── composer.json │ ├── images │ ├── add.png │ ├── delete.png │ └── sort.png │ ├── post-selection-ui.css │ ├── post-selection-ui.js │ ├── post-selection-ui.php │ └── src │ ├── Post_Selection_Box.php │ ├── Post_Selection_UI.php │ └── functions.php ├── objects-to-objects ├── README.md ├── admin │ └── admin.php ├── objects-to-objects.php ├── src │ ├── connection-types │ │ └── taxonomy │ │ │ ├── query_modifier.php │ │ │ └── taxonomy.php │ ├── factory.php │ ├── o2o.php │ ├── query.php │ └── rewrites.php ├── vendor │ ├── autoload.php │ ├── composer │ │ ├── ClassLoader.php │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ └── installed.json │ └── voceconnect │ │ └── post-selection-ui │ │ ├── README.mdown │ │ ├── composer.json │ │ ├── images │ │ ├── add.png │ │ ├── delete.png │ │ └── sort.png │ │ ├── post-selection-ui.css │ │ ├── post-selection-ui.js │ │ └── post-selection-ui.php ├── vipgo-helper.php └── wpcom-helper.php ├── ooyala-2.4 ├── js │ ├── ooyala-models.js │ ├── ooyala-settings.js │ ├── ooyala-views.js │ ├── ooyala.js │ ├── plupload.js │ └── spin.js ├── ooyala-about-en-us.html ├── ooyala-templates.php ├── ooyala.css ├── ooyala.php ├── pulse-params.js ├── readme.txt └── wpcom-helper.php ├── ooyala-2.5 ├── img │ ├── ooyala-logo-small.png │ └── ooyala-title.png ├── js │ ├── ooyala-models.js │ ├── ooyala-settings.js │ ├── ooyala-views.js │ ├── ooyala.js │ ├── plupload.js │ └── spin.js ├── ooyala-about-en-us.html ├── ooyala-templates.php ├── ooyala.css ├── ooyala.php ├── pulse-params.js ├── readme.txt └── wpcom-helper.php ├── ooyala-2.6 ├── img │ ├── ooyala-logo-small.png │ └── ooyala-title.png ├── js │ ├── ooyala-models.js │ ├── ooyala-settings.js │ ├── ooyala-views.js │ ├── ooyala.js │ ├── plupload.js │ └── spin.js ├── ooyala-about-en-us.html ├── ooyala-templates.php ├── ooyala.css ├── ooyala.php ├── pulse-params.js ├── readme.txt └── wpcom-helper.php ├── ooyala-2.7 ├── img │ ├── ooyala-logo-small.png │ └── ooyala-title.png ├── js │ ├── ooyala-models.js │ ├── ooyala-settings.js │ ├── ooyala-views.js │ ├── ooyala.js │ ├── plupload.js │ └── spin.js ├── ooyala-about-en-us.html ├── ooyala-templates.php ├── ooyala.css ├── ooyala.php ├── pulse-params.js ├── readme.txt └── wpcom-helper.php ├── ooyala-3.0 ├── img │ ├── ooyala-logo-small.png │ └── ooyala-title.png ├── js │ ├── ooyala-models.js │ ├── ooyala-settings.js │ ├── ooyala-views.js │ ├── ooyala.js │ ├── plupload.js │ └── spin.js ├── ooyala-about-en-us.html ├── ooyala-templates.php ├── ooyala.css ├── ooyala.php ├── pulse-params.js ├── readme.txt └── wpcom-helper.php ├── ooyala ├── img │ ├── ooyala-logo-small.png │ └── ooyala-title.png ├── js │ ├── ooyala-models.js │ ├── ooyala-views.js │ ├── ooyala.js │ ├── plupload.js │ └── spin.js ├── ooyala-about-en-us.html ├── ooyala-templates.php ├── ooyala.css ├── ooyala.php ├── readme.txt └── wpcom-helper.php ├── optimizely-x-1.2 ├── LICENSE ├── README.txt ├── admin │ ├── css │ │ └── style.css │ ├── images │ │ ├── ajax-loader.gif │ │ └── optimizely-icon.png │ ├── index.php │ ├── js │ │ ├── beautify.min.js │ │ ├── config.js │ │ ├── metabox.js │ │ └── results.js │ └── partials │ │ ├── config.php │ │ ├── fields │ │ ├── optimizely-x-activation-mode.php │ │ ├── optimizely-x-conditional-activation-code.php │ │ ├── optimizely-x-num-variations.php │ │ ├── optimizely-x-post-types.php │ │ ├── optimizely-x-project-id.php │ │ ├── optimizely-x-project-name.php │ │ ├── optimizely-x-token.php │ │ ├── optimizely-x-url-targeting-type.php │ │ ├── optimizely-x-url-targeting.php │ │ └── optimizely-x-variation-template.php │ │ ├── metabox.php │ │ ├── metabox │ │ ├── unauthenticated.php │ │ └── unpublished.php │ │ ├── notices │ │ ├── no-project-id.php │ │ └── no-token.php │ │ └── results.php ├── includes │ ├── class-admin.php │ ├── class-ajax-config.php │ ├── class-ajax-metabox.php │ ├── class-ajax-results.php │ ├── class-ajax.php │ ├── class-api.php │ ├── class-core.php │ ├── class-filters.php │ ├── class-frontend.php │ ├── class-i18n.php │ ├── class-partials.php │ ├── class-results-table.php │ ├── class-results.php │ ├── index.php │ └── trait-singleton.php ├── index.php ├── languages │ └── optimizely-x.pot ├── optimizely-x.php └── public │ ├── index.php │ └── partials │ └── head-js.php ├── optimizely-x ├── LICENSE ├── README.txt ├── admin │ ├── css │ │ └── style.css │ ├── images │ │ ├── ajax-loader.gif │ │ └── optimizely-icon.png │ ├── index.php │ ├── js │ │ ├── beautify.min.js │ │ ├── config.js │ │ └── metabox.js │ └── partials │ │ ├── config.php │ │ ├── fields │ │ ├── optimizely-activation-mode.php │ │ ├── optimizely-conditional-activation-code.php │ │ ├── optimizely-num-variations.php │ │ ├── optimizely-post-types.php │ │ ├── optimizely-project-id.php │ │ ├── optimizely-project-name.php │ │ ├── optimizely-token.php │ │ ├── optimizely-url-targeting-type.php │ │ ├── optimizely-url-targeting.php │ │ └── optimizely-variation-template.php │ │ ├── metabox.php │ │ ├── metabox │ │ ├── unauthenticated.php │ │ └── unpublished.php │ │ └── notices │ │ ├── no-project-id.php │ │ └── no-token.php ├── includes │ ├── class-admin.php │ ├── class-ajax.php │ ├── class-api.php │ ├── class-core.php │ ├── class-filters.php │ ├── class-frontend.php │ ├── class-i18n.php │ ├── class-partials.php │ └── index.php ├── index.php ├── languages │ └── optimizely-x.pot ├── optimizely-x.php └── public │ ├── index.php │ └── partials │ └── head-js.php ├── optimizely ├── README.txt ├── admin.php ├── config.js ├── config.php ├── edit.js ├── edit.php ├── font-awesome.min.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── images │ ├── ajax-loader.gif │ ├── optimizely-icon.png │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ ├── ui-bg_flat_10_000000_40x100.png │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ ├── ui-bg_glass_65_ffffff_1x400.png │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_228ef1_256x240.png │ ├── ui-icons_ef8c08_256x240.png │ ├── ui-icons_ffd27a_256x240.png │ └── ui-icons_ffffff_256x240.png ├── jquery-ui.css ├── optimizely.js ├── optimizely.php ├── results.js ├── screenshot-1.png ├── screenshot-2.png └── style.css ├── options-importer ├── LICENSE ├── options-importer.php └── readme.txt ├── playbuzz-1.0.6 ├── class-playbuzzi18n.php ├── img │ ├── action_close_blue.png │ ├── action_close_grey.png │ ├── action_edit_blue.png │ ├── action_edit_grey.png │ ├── favicon_blue.png │ ├── favicon_blue_dark.png │ ├── favicon_white.png │ ├── index.php │ ├── playbuzz-placeholder.png │ ├── plybuzz-logo-dark_bg.png │ ├── plybuzz-logo.png │ ├── search-icon.png │ ├── share.png │ ├── tinymce_playbuzz_blue.png │ ├── tinymce_playbuzz_grey.png │ └── user-icon.png ├── js │ ├── all-posts │ │ ├── _pb-all-posts.js │ │ └── pb-all-posts-controller.js │ ├── index.php │ ├── options │ │ ├── _pb-options.js │ │ ├── pb-options-controller.js │ │ └── pb-options-model.js │ ├── pb-alert.js │ ├── pb-api.js │ ├── pb-event.js │ ├── pb-global.js │ ├── pb-jquery.js │ ├── pb-logger.js │ ├── pb-quicktags.js │ ├── pb-search-popup.js │ ├── pb-settings.js │ ├── playbuzz-admin.js │ ├── playbuzz-tinymce.js │ └── story-creator │ │ ├── _pb-story-creator.js │ │ ├── pb-story-creator-controller.js │ │ ├── pb-story-creator-model.js │ │ └── pb-story-creator-view.js ├── lang │ └── playbuzz-he_IL.mo ├── oembed.php └── readme.txt ├── playbuzz-1.0 ├── .gitignore ├── class-pbconstants.php ├── class-playbuzzembedcodes.php ├── class-playbuzzi18n.php ├── class-playbuzzoptions.php ├── class-playbuzzscriptsstyles.php ├── class-playbuzzsettings.php ├── class-playbuzzstorycreator.php ├── class-playbuzztinymce.php ├── css │ ├── admin-rtl.css │ ├── admin.css │ ├── index.php │ ├── story-creator │ │ └── pb-story-creator.css │ ├── tinymce-visual-editor-rtl.css │ └── tinymce-visual-editor.css ├── img │ ├── action_close_blue.png │ ├── action_close_grey.png │ ├── action_edit_blue.png │ ├── action_edit_grey.png │ ├── index.php │ ├── playbuzz-placeholder.png │ ├── plybuzz-logo-dark_bg.png │ ├── plybuzz-logo.png │ ├── search-icon.png │ ├── share.png │ ├── tinymce_playbuzz_blue.png │ ├── tinymce_playbuzz_grey.png │ └── user-icon.png ├── js │ ├── all-posts │ │ ├── _pb-all-posts.js │ │ └── pb-all-posts-controller.js │ ├── index.php │ ├── options │ │ ├── _pb-options.js │ │ ├── pb-options-controller.js │ │ └── pb-options-model.js │ ├── pb-alert.js │ ├── pb-api.js │ ├── pb-event.js │ ├── pb-global.js │ ├── pb-jquery.js │ ├── pb-logger.js │ ├── pb-settings.js │ ├── playbuzz-admin.js │ ├── playbuzz-tinymce.js │ └── story-creator │ │ ├── _pb-story-creator.js │ │ ├── pb-story-creator-controller.js │ │ ├── pb-story-creator-model.js │ │ └── pb-story-creator-view.js ├── lang │ ├── index.php │ ├── playbuzz-he_IL.mo │ ├── playbuzz-he_IL.po │ ├── playbuzz.pot │ └── readme.txt ├── oembed.php ├── playbuzz.php ├── readme.txt ├── screenshot-1.jpg ├── screenshot-2.jpg ├── screenshot-3.jpg ├── screenshot-4.jpg ├── screenshot-5.png ├── screenshot-6.jpg ├── screenshot-7.jpg ├── shortcodes.php └── uninstall.php ├── playbuzz-1.1 ├── class-pbconstants.php ├── class-playbuzz-quicktags.php ├── class-playbuzzembedcodes.php ├── class-playbuzzi18n.php ├── class-playbuzzoptions.php ├── class-playbuzzscriptsstyles.php ├── class-playbuzzsettings.php ├── class-playbuzzstorycreator.php ├── class-playbuzztinymce.php ├── css │ ├── admin-rtl.css │ ├── admin.css │ ├── index.php │ ├── story-creator │ │ └── pb-story-creator.css │ ├── tinymce-visual-editor-rtl.css │ └── tinymce-visual-editor.css ├── img │ ├── action_close_blue.png │ ├── action_close_grey.png │ ├── action_edit_blue.png │ ├── action_edit_grey.png │ ├── favicon_blue.png │ ├── favicon_blue_dark.png │ ├── favicon_white.png │ ├── index.php │ ├── playbuzz-placeholder.png │ ├── plybuzz-logo-dark_bg.png │ ├── plybuzz-logo.png │ ├── search-icon.png │ ├── share.png │ ├── tinymce_playbuzz_blue.png │ ├── tinymce_playbuzz_grey.png │ └── user-icon.png ├── js │ ├── all-posts │ │ ├── _pb-all-posts.js │ │ └── pb-all-posts-controller.js │ ├── index.php │ ├── options │ │ ├── _pb-options.js │ │ ├── pb-options-controller.js │ │ └── pb-options-model.js │ ├── pb-alert.js │ ├── pb-api.js │ ├── pb-event.js │ ├── pb-global.js │ ├── pb-jquery.js │ ├── pb-logger.js │ ├── pb-quicktags.js │ ├── pb-search-popup.js │ ├── pb-settings.js │ ├── playbuzz-admin.js │ ├── playbuzz-tinymce.js │ └── story-creator │ │ ├── _pb-story-creator.js │ │ ├── pb-story-creator-controller.js │ │ ├── pb-story-creator-model.js │ │ └── pb-story-creator-view.js ├── lang │ ├── index.php │ ├── playbuzz-he_IL.mo │ ├── playbuzz-he_IL.po │ ├── playbuzz.pot │ └── readme.txt ├── oembed.php ├── playbuzz.php ├── readme.txt ├── screenshot-1.jpg ├── screenshot-2.jpg ├── screenshot-3.jpg ├── screenshot-4.jpg ├── screenshot-5.jpg ├── screenshot-6.jpg ├── screenshot-7.jpg ├── shortcodes.php └── uninstall.php ├── playbuzz ├── admin.php ├── css │ ├── admin-rtl.css │ ├── admin.css │ ├── index.php │ ├── tinymce-visual-editor-rtl.css │ └── tinymce-visual-editor.css ├── i18n.php ├── img │ ├── action_close_blue.png │ ├── action_close_grey.png │ ├── action_edit_blue.png │ ├── action_edit_grey.png │ ├── admin-embed-customization.png │ ├── admin-embed-items.png │ ├── admin-recommendations.png │ ├── index.php │ ├── playbuzz-placeholder.png │ ├── plybuzz-logo-dark_bg.png │ ├── plybuzz-logo.png │ ├── popup-bg.png │ ├── recommendation-image-list.jpg │ ├── recommendation-list.jpg │ ├── recommendation-tumbs.jpg │ ├── search-icon.png │ ├── share.png │ ├── tinymce_playbuzz_blue.png │ ├── tinymce_playbuzz_grey.png │ └── user-icon.png ├── js │ ├── index.php │ ├── playbuzz-admin.js │ └── playbuzz-tinymce.js ├── lang │ ├── index.php │ ├── playbuzz-he_IL.mo │ ├── playbuzz-he_IL.po │ ├── playbuzz.pot │ └── readme.txt ├── oembed.php ├── playbuzz.php ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png ├── screenshot-5.png ├── screenshot-6.png ├── screenshot-7.png ├── scripts-styles.php ├── shortcodes.php ├── tinymce.php └── widgets.php ├── post-author-box ├── post-author-box.php ├── readme.txt └── wpcom-helper.php ├── post-forking ├── LICENSE ├── css │ ├── admin.css │ └── admin.min.css ├── img │ ├── icon32.png │ ├── icon64.png │ └── menu-icon.png ├── includes │ ├── admin.php │ ├── branches.php │ ├── capabilities.php │ ├── diff.php │ ├── diff3.php │ ├── merge.php │ ├── options.php │ ├── preview.php │ └── revisions.php ├── js │ ├── admin.js │ ├── admin.min.js │ └── mergely-3.3.1 │ │ ├── LICENSE.html │ │ └── lib │ │ ├── codemirror.css │ │ ├── codemirror.js │ │ ├── codemirror.min.js │ │ ├── mergely.css │ │ ├── mergely.js │ │ ├── mergely.min.js │ │ └── searchcursor.js ├── languages │ ├── post-forking-de_DE.mo │ ├── post-forking-de_DE.po │ ├── post-forking-fr_FR.mo │ ├── post-forking-fr_FR.po │ ├── post-forking-nl.mo │ ├── post-forking-nl.po │ ├── post-forking.pot │ └── readme.md ├── post-forking.php ├── readme.md ├── readme.txt ├── templates │ ├── author-post-meta-box.php │ ├── branches-dropdown.php │ ├── conflict-warning.php │ ├── diff.php │ ├── fork-meta-box.php │ ├── options.php │ └── post-meta-box.php └── wpcom-helper.php ├── post-meta-inspector ├── languages │ └── post-meta-inspector.pot ├── post-meta-inspector.php ├── readme.txt ├── screenshot-1.jpg └── wpcom-helper.php ├── post-revision-workflow ├── class-post-revision-workflow.php ├── languages │ ├── default.mo │ ├── default.po │ └── post-revision-workflow.pot ├── post-revision-workflow.admin.js ├── post-revision-workflow.php ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png └── screenshot-3.png ├── postrelease-vip ├── config.php ├── postrelease-vip.php └── wpcom-helper.php ├── publishing-checklist ├── Gruntfile.js ├── README.md ├── assets │ ├── css │ │ ├── publishing-checklist.css │ │ └── scss │ │ │ └── publishing-checklist.scss │ └── js │ │ └── src │ │ └── publishing-checklist.js ├── inc │ └── class-cli-command.php ├── languages │ └── publishing-checklist.pot ├── package.json ├── publishing-checklist.php ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png └── templates │ ├── column-checklist.php │ └── post-submitbox-misc-actions.php ├── publishthis ├── admin │ ├── class-admin.php │ └── meta-box-options.php ├── assets │ ├── css │ │ ├── admin.css │ │ ├── content-on.css │ │ ├── content.css │ │ └── widgets.css │ ├── img │ │ ├── ico-16x16.png │ │ └── ico-32x32.png │ └── js │ │ ├── admin-widgets.js │ │ └── admin.js ├── classes │ ├── class-api.php │ ├── class-cron.php │ ├── class-log.php │ └── class-utils.php ├── ptfooter.php ├── ptraw-handler.php ├── publishthis-debug-widget.php ├── publishthis.php ├── readme.md ├── templates │ ├── combined.php │ ├── individual.php │ └── widgets │ │ ├── automated-feed-content.php │ │ ├── automated-saved-search-content.php │ │ └── topic-content.php └── widgets │ ├── widget-automated-feed-content.php │ ├── widget-automated-saved-search-content.php │ └── widget-topic-content.php ├── push-syndication-2.1 ├── includes │ ├── class-syndication-client-factory.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-wp-cli.php │ ├── class-wp-push-syndication-server.php │ ├── css │ │ ├── edit-site.css │ │ └── sites.css │ ├── interface-syndication-client.php │ └── push-syndicate-encryption.php ├── push-syndication.php ├── readme.txt └── wpcom-helper.php ├── push-syndication ├── includes │ ├── class-syndication-client-factory.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-wp-cli.php │ ├── class-wp-push-syndication-server.php │ ├── css │ │ ├── edit-site.css │ │ └── sites.css │ ├── interface-syndication-client.php │ └── push-syndicate-encryption.php ├── push-syndication.php ├── readme.txt └── wpcom-helper.php ├── pushup ├── css │ └── settings.css ├── images │ ├── grid.gif │ ├── loader.gif │ ├── pushup-grey.svg │ └── pushup.svg ├── includes │ ├── class-authentication.php │ ├── class-core.php │ ├── class-json-api.php │ └── class-push-notifications.php ├── js │ ├── chart.js │ ├── pushup.js │ ├── pushup.min.js │ └── settings.js ├── pushup.php ├── readme.txt └── uninstall.php ├── recent-comments └── recent-comments.php ├── release-candidates ├── babble-globals │ └── babble-globals.php ├── babble-translation-group-tool │ └── babble-translation-group-tool.php ├── babble │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── api.php │ ├── babble.php │ ├── behat.yml │ ├── bin │ │ ├── install-wp-tests.sh │ │ ├── install.sh │ │ └── script.sh │ ├── class-admin-bar.php │ ├── class-babble-log.php │ ├── class-comment.php │ ├── class-jobs.php │ ├── class-languages.php │ ├── class-locale.php │ ├── class-meta.php │ ├── class-plugin.php │ ├── class-post-public.php │ ├── class-switcher-content.php │ ├── class-switcher-interface.php │ ├── class-taxonomy.php │ ├── class-translator.php │ ├── composer.json │ ├── css │ │ ├── jobs-admin.css │ │ └── languages-options.css │ ├── deprecated.php │ ├── features │ │ ├── bootstrap │ │ │ ├── BabbleContext.php │ │ │ └── fake-mail.php │ │ ├── comments.feature │ │ ├── installation.feature │ │ └── jobs.feature │ ├── globals.php │ ├── js │ │ └── post-public-admin.js │ ├── languages │ │ ├── fa_IR.mo │ │ ├── fa_IR.php │ │ ├── fr_FR.mo │ │ ├── pt_BR.mo │ │ ├── pt_BR.po │ │ ├── pt_PT.mo │ │ ├── pt_PT.po │ │ ├── tr.mo │ │ └── tr.po │ ├── miscellaneous.php │ ├── phpunit-ms.xml │ ├── phpunit.xml │ ├── readme.md │ ├── readme.txt │ ├── screenshot-1.png │ ├── screenshot-2.png │ ├── screenshot-3.png │ ├── templates-admin │ │ ├── options-available-languages.php │ │ ├── switcher-interface.php │ │ ├── translation-editor-meta.php │ │ ├── translation-editor-post-excerpt.php │ │ ├── translation-editor-terms.php │ │ ├── translation-editor.php │ │ └── translation-groups.php │ ├── tests │ │ ├── README.md │ │ ├── babble-compat.php │ │ ├── babble-testcase.php │ │ ├── bootstrap.php │ │ ├── test-cookies.php │ │ ├── test-jobs.php │ │ ├── test-languages.php │ │ ├── test-plugin.php │ │ ├── test-requests.php │ │ ├── test-roles.php │ │ ├── test-search.php │ │ ├── test-shadows.php │ │ ├── test-templates.php │ │ ├── test-translations.php │ │ └── test-urls.php │ ├── translation-fields.php │ ├── translation-group-tool-sorter.php │ ├── translation-group-tool.php │ ├── translation-show-pre-translation.php │ └── widget.php ├── blimply │ ├── blimply.php │ ├── composer.json │ ├── composer.lock │ ├── lib │ │ ├── blimply-settings.php │ │ ├── class.wpairship.php │ │ ├── css │ │ │ └── blimply.css │ │ ├── js │ │ │ ├── blimply.js │ │ │ └── jquery.timePicker.min.js │ │ └── languages │ │ │ └── blimply.pot │ ├── phpunit.xml │ ├── readme.md │ ├── readme.txt │ ├── screenshot-1.png │ ├── screenshot-2.png │ ├── screenshot-3.png │ ├── tests │ │ ├── bootstrap.php │ │ └── test-blimply.php │ └── vendor │ │ ├── autoload.php │ │ ├── composer │ │ ├── ClassLoader.php │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ └── installed.json │ │ ├── monolog │ │ └── monolog │ │ │ ├── CHANGELOG.mdown │ │ │ ├── LICENSE │ │ │ ├── README.mdown │ │ │ ├── composer.json │ │ │ ├── doc │ │ │ ├── extending.md │ │ │ ├── sockets.md │ │ │ └── usage.md │ │ │ ├── phpunit.xml.dist │ │ │ └── src │ │ │ └── Monolog │ │ │ ├── Formatter │ │ │ ├── FormatterInterface.php │ │ │ ├── LineFormatter.php │ │ │ └── NormalizerFormatter.php │ │ │ ├── Handler │ │ │ ├── AbstractHandler.php │ │ │ ├── AbstractProcessingHandler.php │ │ │ ├── FingersCrossed │ │ │ │ ├── ActivationStrategyInterface.php │ │ │ │ └── ErrorLevelActivationStrategy.php │ │ │ ├── HandlerInterface.php │ │ │ ├── NullHandler.php │ │ │ └── StreamHandler.php │ │ │ └── Logger.php │ │ ├── psr │ │ └── log │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Psr │ │ │ └── Log │ │ │ │ ├── AbstractLogger.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogLevel.php │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ ├── LoggerInterface.php │ │ │ │ ├── LoggerTrait.php │ │ │ │ ├── NullLogger.php │ │ │ │ └── Test │ │ │ │ └── LoggerInterfaceTest.php │ │ │ ├── README.md │ │ │ └── composer.json │ │ ├── rinatkhaziev │ │ └── wordpress-settings-api-class │ │ │ ├── .gitignore │ │ │ ├── class.settings-api.php │ │ │ ├── composer.json │ │ │ ├── procedural-example.php │ │ │ ├── readme.md │ │ │ ├── readme.txt │ │ │ ├── screenshot-1.png │ │ │ └── settings-api.php │ │ └── urbanairship │ │ └── urbanairship │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── COPYING │ │ ├── README.md │ │ ├── VERSION.txt │ │ ├── composer.json │ │ ├── docs │ │ ├── Makefile │ │ ├── _extensions │ │ │ ├── phpdomain.py │ │ │ └── sphinx-php │ │ │ │ ├── __init__.py │ │ │ │ ├── configurationblock.py │ │ │ │ ├── php.py │ │ │ │ ├── phpcode.py │ │ │ │ └── refinclude.py │ │ ├── conf.py │ │ ├── index.rst │ │ └── push.rst │ │ ├── example │ │ ├── README.rst │ │ ├── composer.json │ │ └── pusher.php │ │ ├── phpdoc.dist.xml │ │ ├── phpunit.xml │ │ └── src │ │ ├── UrbanAirship │ │ ├── Airship.php │ │ ├── AirshipException.php │ │ ├── Devices │ │ │ ├── APIDList.php │ │ │ ├── DeviceList.php │ │ │ └── DeviceTokenList.php │ │ ├── Push │ │ │ ├── Audience.php │ │ │ ├── Notification.php │ │ │ ├── PushRequest.php │ │ │ ├── PushResponse.php │ │ │ ├── Schedule.php │ │ │ └── ScheduledPushRequest.php │ │ └── UALog.php │ │ └── tests │ │ ├── AirshipTest.php │ │ ├── AudienceTest.php │ │ ├── DeviceTokenListTest.php │ │ ├── NotificationTest.php │ │ ├── PushTest.php │ │ ├── ScheduledPushTest.php │ │ └── bootstrap.php ├── es-wp-query │ ├── adapters │ │ ├── searchpress.php │ │ ├── travis.php │ │ └── wpcom-vip.php │ ├── class-es-wp-date-query.php │ ├── class-es-wp-meta-query.php │ ├── class-es-wp-query-shoehorn.php │ ├── class-es-wp-query-wrapper.php │ ├── class-es-wp-tax-query.php │ ├── es-wp-query.php │ ├── functions.php │ └── wpcom-helper.php ├── fieldmanager │ ├── README.md │ ├── VERSION │ ├── apigen.neon │ ├── credits.txt │ ├── css │ │ ├── fieldmanager-draggablepost.css │ │ ├── fieldmanager-group-tabs.css │ │ ├── fieldmanager-options.css │ │ ├── fieldmanager-post.css │ │ ├── fieldmanager-richtext-content.css │ │ ├── fieldmanager-validation.css │ │ ├── fieldmanager.css │ │ └── jquery-ui │ │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── jquery-ui-1.10.2.custom.css │ │ │ └── jquery-ui-1.10.2.custom.min.css │ ├── fieldmanager.php │ ├── images │ │ ├── draggable.png │ │ ├── grid.png │ │ ├── vertical-tab-bg.png │ │ └── xit.gif │ ├── js │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ ├── chosen │ │ │ ├── chosen-sprite.png │ │ │ ├── chosen.css │ │ │ ├── chosen.jquery.js │ │ │ ├── chosen.jquery.min.js │ │ │ ├── chosen.proto.js │ │ │ └── chosen.proto.min.js │ │ ├── fieldmanager-autocomplete.js │ │ ├── fieldmanager-colorpicker.js │ │ ├── fieldmanager-datepicker.js │ │ ├── fieldmanager-draggablepost.js │ │ ├── fieldmanager-group-tabs.js │ │ ├── fieldmanager-post.js │ │ ├── fieldmanager-quickedit.js │ │ ├── fieldmanager-select.js │ │ ├── fieldmanager.js │ │ ├── grid.js │ │ ├── grid │ │ │ ├── LICENSE │ │ │ ├── extensions │ │ │ │ ├── jquery.handsontable.removeRow.css │ │ │ │ └── jquery.handsontable.removeRow.js │ │ │ ├── jquery.handsontable.css │ │ │ ├── jquery.handsontable.js │ │ │ └── lib │ │ │ │ ├── bootstrap-typeahead.js │ │ │ │ ├── jQuery-contextMenu │ │ │ │ ├── jquery.contextMenu.css │ │ │ │ ├── jquery.contextMenu.js │ │ │ │ └── jquery.ui.position.js │ │ │ │ ├── jquery.js │ │ │ │ └── jquery.min.js │ │ ├── jquery.hoverIntent.js │ │ ├── media │ │ │ └── fieldmanager-media.js │ │ ├── richtext.js │ │ └── validation │ │ │ ├── fieldmanager-validation.js │ │ │ └── jquery.validate.min.js │ ├── license.txt │ ├── php │ │ ├── class-fieldmanager-autocomplete.php │ │ ├── class-fieldmanager-checkbox.php │ │ ├── class-fieldmanager-checkboxes.php │ │ ├── class-fieldmanager-colorpicker.php │ │ ├── class-fieldmanager-datepicker.php │ │ ├── class-fieldmanager-draggablepost.php │ │ ├── class-fieldmanager-field.php │ │ ├── class-fieldmanager-grid.php │ │ ├── class-fieldmanager-group.php │ │ ├── class-fieldmanager-hidden.php │ │ ├── class-fieldmanager-link.php │ │ ├── class-fieldmanager-media.php │ │ ├── class-fieldmanager-options.php │ │ ├── class-fieldmanager-password.php │ │ ├── class-fieldmanager-radios.php │ │ ├── class-fieldmanager-richtextarea.php │ │ ├── class-fieldmanager-select.php │ │ ├── class-fieldmanager-textarea.php │ │ ├── class-fieldmanager-textfield.php │ │ ├── context │ │ │ ├── class-fieldmanager-context-page.php │ │ │ ├── class-fieldmanager-context-post.php │ │ │ ├── class-fieldmanager-context-quickedit.php │ │ │ ├── class-fieldmanager-context-storable.php │ │ │ ├── class-fieldmanager-context-submenu.php │ │ │ ├── class-fieldmanager-context-term.php │ │ │ ├── class-fieldmanager-context-user.php │ │ │ └── class-fieldmanager-context.php │ │ ├── datasource │ │ │ ├── class-fieldmanager-datasource-post.php │ │ │ ├── class-fieldmanager-datasource-term.php │ │ │ ├── class-fieldmanager-datasource-user.php │ │ │ └── class-fieldmanager-datasource.php │ │ └── util │ │ │ ├── class-fieldmanager-util-term-meta.php │ │ │ └── class-fieldmanager-util-validation.php │ ├── phpunit.xml │ ├── templates │ │ ├── datepicker.php │ │ ├── options-checkboxes.php │ │ ├── options-radios.php │ │ └── textfield.php │ ├── todo.txt │ └── wpcom-helper.php ├── jwplayer │ ├── JWPlayer-api.class.php │ ├── LICENSE.txt │ ├── channel-40.png │ ├── close.png │ ├── jwplayer.php │ ├── logic.js │ ├── logo.png │ ├── processing-40.gif │ ├── proxy.php │ ├── readme.txt │ ├── screenshot-1.png │ ├── search.png │ ├── style.css │ ├── thumb-error-40.gif │ ├── upload.js │ └── video-error-40.gif ├── lift-search │ ├── README.md │ ├── admin │ │ ├── admin.php │ │ └── templates │ │ │ ├── dashboard.html │ │ │ ├── error-logs.html │ │ │ ├── errors.html │ │ │ ├── modal-confirm-domain.html │ │ │ ├── modal-error-missing-domain.html │ │ │ ├── modal-error-set-credentials.html │ │ │ ├── modal-error.html │ │ │ ├── modal-set-credentials.html │ │ │ ├── set-credentials.html │ │ │ ├── set-domain.html │ │ │ ├── setup-processing.html │ │ │ └── update-queue.html │ ├── api │ │ ├── cloud-config-api.php │ │ ├── cloud-schemas.php │ │ ├── cloud-search-api.php │ │ ├── cloud-search-query.php │ │ ├── lift-batch.php │ │ └── lift-http.php │ ├── config.rb │ ├── css │ │ ├── admin.css │ │ └── style.css │ ├── img │ │ ├── 0-9.png │ │ ├── a-z.png │ │ ├── amazon-cloud-search.png │ │ ├── blue-box.png │ │ ├── cloud1.png │ │ ├── cloud2.png │ │ ├── documentation.png │ │ ├── hyphen.png │ │ ├── lift-admin-header.png │ │ ├── lift-docs-header.png │ │ ├── lift-logo.png │ │ ├── loader.gif │ │ ├── logo-102x56.png │ │ ├── logo.png │ │ ├── sprite-icons.png │ │ └── status.png │ ├── js │ │ ├── admin.js │ │ ├── admin.min.js │ │ ├── lift-search-form.js │ │ └── modernizr.min.js │ ├── lib │ │ ├── functions.php │ │ ├── posts-to-sdf.php │ │ ├── voce-error-logging │ │ │ └── voce-error-logging.php │ │ └── wp-asynch-events.php │ ├── lift-core.php │ ├── lift-search.php │ ├── package.json │ ├── peon-config.jst │ ├── readme.txt │ ├── sass │ │ ├── _grid.scss │ │ ├── _vars.scss │ │ ├── admin.scss │ │ └── style.scss │ ├── screenshot-1.jpg │ ├── screenshot-2.jpg │ ├── screenshot-3.jpg │ ├── screenshot-4.png │ ├── stylesheets │ │ └── style.css │ ├── templates │ │ ├── lift-loop.php │ │ └── search.php │ └── wp │ │ ├── domain-manager.php │ │ ├── field.php │ │ ├── form-controls.php │ │ ├── form-filters.php │ │ ├── lift-batch-handler.php │ │ ├── lift-health.php │ │ ├── lift-search-form.php │ │ ├── lift-update-queue.php │ │ ├── lift-wp-search.php │ │ └── update-watchers │ │ └── post.php ├── liveblog │ ├── .editorconfig │ ├── .gitignore │ ├── .jshintignore │ ├── .jshintrc │ ├── classes │ │ ├── class-wpcom-liveblog-entry-extend-feature-authors.php │ │ ├── class-wpcom-liveblog-entry-extend-feature-commands.php │ │ ├── class-wpcom-liveblog-entry-extend-feature-emojis.php │ │ ├── class-wpcom-liveblog-entry-extend-feature-hashtags.php │ │ ├── class-wpcom-liveblog-entry-extend-feature.php │ │ ├── class-wpcom-liveblog-entry-extend.php │ │ ├── class-wpcom-liveblog-entry-key-events.php │ │ ├── class-wpcom-liveblog-entry-query.php │ │ ├── class-wpcom-liveblog-entry.php │ │ ├── class-wpcom-liveblog-lazyloader.php │ │ └── class-wpcom-liveblog-wp-cli.php │ ├── css │ │ ├── jquery.textcomplete.css │ │ ├── liveblog-admin.css │ │ └── liveblog.css │ ├── images │ │ ├── icons-2x.png │ │ └── icons.png │ ├── js │ │ ├── jquery.ba-throttle-debounce.js │ │ ├── jquery.ba-throttle-debounce.min.js │ │ ├── jquery.caret.min.js │ │ ├── jquery.spin.js │ │ ├── jquery.textcomplete.min.js │ │ ├── liveblog-admin.js │ │ ├── liveblog-lazyloader.js │ │ ├── liveblog-publisher.js │ │ ├── liveblog.js │ │ ├── moment.js │ │ ├── moment.min.js │ │ ├── plupload.js │ │ └── spin.js │ ├── languages │ │ ├── liveblog-ca.mo │ │ ├── liveblog-ca.po │ │ ├── liveblog-da_DK.mo │ │ ├── liveblog-da_DK.po │ │ ├── liveblog-de_DE.mo │ │ ├── liveblog-de_DE.po │ │ ├── liveblog-es_ES.mo │ │ ├── liveblog-es_ES.po │ │ ├── liveblog-it_IT.mo │ │ ├── liveblog-it_IT.po │ │ ├── liveblog-nl_NL.mo │ │ ├── liveblog-nl_NL.po │ │ ├── liveblog-pt_BR.mo │ │ ├── liveblog-pt_BR.po │ │ ├── liveblog-pt_PT.mo │ │ ├── liveblog-pt_PT.po │ │ └── liveblog.pot │ ├── liveblog.php │ ├── readme.txt │ └── templates │ │ ├── lazyload-notice.php │ │ ├── liveblog-form.php │ │ ├── liveblog-key-admin.php │ │ ├── liveblog-key-events.php │ │ ├── liveblog-key-single-list.php │ │ ├── liveblog-key-single-timeline.php │ │ ├── liveblog-loop.php │ │ ├── liveblog-single-entry.php │ │ ├── meta-box.php │ │ ├── old-wp-notice.php │ │ └── restrict-manage-posts.php ├── livefyre-apps │ ├── Livefyre_Apps.php │ ├── Livefyre_Apps_Admin.php │ ├── apps │ │ ├── blog │ │ │ ├── LFAPPS_Blog.php │ │ │ ├── LFAPPS_Blog_Admin.php │ │ │ └── views │ │ │ │ ├── general.php │ │ │ │ └── script.php │ │ ├── chat │ │ │ ├── LFAPPS_Chat.php │ │ │ ├── LFAPPS_Chat_Admin.php │ │ │ └── views │ │ │ │ ├── comments-template.php │ │ │ │ ├── general.php │ │ │ │ └── script.php │ │ ├── comments │ │ │ ├── LFAPPS_Comments.php │ │ │ ├── LFAPPS_Comments_Activation.php │ │ │ ├── LFAPPS_Comments_Admin.php │ │ │ ├── LFAPPS_Comments_Core.php │ │ │ ├── LFAPPS_Comments_Display.php │ │ │ ├── LFAPPS_Comments_Extension.php │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ └── lfapps_comments.css │ │ │ │ └── img │ │ │ │ │ ├── gear1.png │ │ │ │ │ ├── gear2.png │ │ │ │ │ └── gear3.png │ │ │ ├── import │ │ │ │ ├── LFAPPS_Comments_Import.php │ │ │ │ └── LFAPPS_Comments_Import_Impl.php │ │ │ └── views │ │ │ │ ├── comments-template.php │ │ │ │ ├── general.php │ │ │ │ ├── import.php │ │ │ │ ├── import_script.php │ │ │ │ └── script.php │ │ └── sidenotes │ │ │ ├── LFAPPS_Sidenotes.php │ │ │ ├── LFAPPS_Sidenotes_Admin.php │ │ │ └── views │ │ │ ├── general.php │ │ │ └── script.php │ ├── assets │ │ ├── css │ │ │ └── lfapps.css │ │ ├── img │ │ │ ├── lf-blog-icon-grey.png │ │ │ ├── lf-blog-icon.png │ │ │ ├── lf-chat-icon-grey.png │ │ │ ├── lf-chat-icon.png │ │ │ ├── lf-comments-icon-grey.png │ │ │ ├── lf-comments-icon.png │ │ │ ├── lf-sidenotes-icon-grey.png │ │ │ ├── lf-sidenotes-icon.png │ │ │ ├── livefyre-icon_x16.png │ │ │ ├── livefyre-icon_x24.png │ │ │ ├── livefyre-icon_x256.png │ │ │ ├── livefyre-icon_x64.png │ │ │ └── livefyre-logo.png │ │ └── js │ │ │ ├── lfapps-admin.js │ │ │ └── lfapps.js │ ├── libs │ │ └── php │ │ │ ├── LFAPPS_Http_Extension.php │ │ │ ├── LFAPPS_JWT.php │ │ │ ├── LFAPPS_View.php │ │ │ └── Livefyre │ │ │ ├── Api │ │ │ ├── Domain.php │ │ │ └── PersonalizedStream.php │ │ │ ├── Core │ │ │ ├── Network.php │ │ │ └── Site.php │ │ │ ├── Entity │ │ │ ├── Subscription.php │ │ │ ├── SubscriptionType.php │ │ │ ├── TimelineCursor.php │ │ │ └── Topic.php │ │ │ ├── Factory │ │ │ └── CursorFactory.php │ │ │ ├── Livefyre.php │ │ │ ├── Routing │ │ │ └── Client.php │ │ │ └── Utils │ │ │ ├── BasicEnum.php │ │ │ ├── IDNA.php │ │ │ └── JWT.php │ ├── livefyre-apps.php │ ├── readme.txt │ └── views │ │ ├── footer.php │ │ ├── general.php │ │ ├── header.php │ │ ├── initial_modal.php │ │ ├── plugin_conflict.php │ │ └── script_auth.php ├── livepress │ ├── css │ │ ├── admin.css │ │ ├── border-radius.htc │ │ ├── collaboration.css │ │ ├── facebox.css │ │ ├── livepress.css │ │ ├── livepress_wordpress_override.css │ │ ├── post_edit.css │ │ ├── select2.css │ │ ├── select2.png │ │ ├── themes │ │ │ ├── ifeature.css │ │ │ ├── platform.css │ │ │ ├── scylla-lite.css │ │ │ ├── suffusion.css │ │ │ ├── twenty-eleven.css │ │ │ ├── twenty-ten.css │ │ │ ├── zbench.css │ │ │ └── zeesynergie.css │ │ ├── ui.css │ │ └── wp-admin.css │ ├── fonts │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ ├── icomoon.woff │ │ └── livepress-admin │ │ │ ├── Read Me.txt │ │ │ ├── demo-files │ │ │ ├── demo.css │ │ │ └── demo.js │ │ │ ├── demo.html │ │ │ ├── fonts │ │ │ ├── LivePress-Admin.eot │ │ │ ├── LivePress-Admin.svg │ │ │ ├── LivePress-Admin.ttf │ │ │ └── LivePress-Admin.woff │ │ │ ├── selection.json │ │ │ └── style.css │ ├── img │ │ ├── admin-bar-status-sprite-2x.png │ │ ├── admin-bar-status-sprite.png │ │ ├── admin-screen-icon-2x.png │ │ ├── admin-screen-icon.png │ │ ├── buttons.png │ │ ├── commentbubble_tail.png │ │ ├── comments.png │ │ ├── dashboard-off.png │ │ ├── dashboard-on.png │ │ ├── gear-2x.png │ │ ├── gear.png │ │ ├── h3-tile.png │ │ ├── icon-aim.png │ │ ├── icon-auth.png │ │ ├── icon-authenticated.png │ │ ├── icon-bot.png │ │ ├── icon-close.png │ │ ├── icon-google.png │ │ ├── icon-im.png │ │ ├── icon-msn.png │ │ ├── icon-remote.png │ │ ├── icon-security.png │ │ ├── icon-settings.png │ │ ├── icon-twitter.png │ │ ├── icon-yahoo.png │ │ ├── icon.png │ │ ├── icon_grey.png │ │ ├── live-status-2x.png │ │ ├── live-status.png │ │ ├── livepress-logo-large-2x.png │ │ ├── livepress-logo-large.png │ │ ├── logo.png │ │ ├── lp-balloon-tail.png │ │ ├── lp-bar-2x.png │ │ ├── lp-bar-bg.gif │ │ ├── lp-bar-bg.png │ │ ├── lp-bar-cogwheel.png │ │ ├── lp-bar-logo-2x.png │ │ ├── lp-bar-logo-green.png │ │ ├── lp-bar-logo.png │ │ ├── lp-bar.png │ │ ├── lp-button-grad-disabled.png │ │ ├── lp-settings-close.gif │ │ ├── lp-settings-close.png │ │ ├── lp-settings-logo.png │ │ ├── lp-settings-tail.png │ │ ├── lp-settings-top-bg.gif │ │ ├── lp-share-box-bg.gif │ │ ├── lp-sprite.png │ │ ├── lp-ui-sprite-ie.gif │ │ ├── lp-ui-sprite.png │ │ ├── lp_editor_tab_logo-2x.png │ │ ├── lp_editor_tab_logo.png │ │ ├── menu-bits.gif │ │ ├── online.png │ │ ├── player-graphics.gif │ │ ├── scroll-arrow-down.png │ │ ├── scroll-arrow-up.png │ │ ├── scroll-bar-bg.png │ │ ├── scroll-bar-bot.png │ │ ├── scroll-bar-top.png │ │ ├── scroll-pane-bot.png │ │ ├── scroll-pane-top.png │ │ ├── shadow_bottom.png │ │ ├── shadow_top.png │ │ ├── spin.gif │ │ ├── spinner-2x.gif │ │ ├── spinner.gif │ │ ├── twitter-player-pause.png │ │ ├── twitter-player-play2.png │ │ ├── updates.png │ │ ├── warning.png │ │ ├── warning_icon.png │ │ └── white_gradient.jpg │ ├── js │ │ ├── admin │ │ │ ├── livepress-admin.full.js │ │ │ ├── livepress-admin.min.js │ │ │ ├── livepress-pointer.full.js │ │ │ └── livepress-pointer.min.js │ │ ├── admin_ui.full.js │ │ ├── admin_ui.min.js │ │ ├── dashboard-dyn.full.js │ │ ├── dashboard-dyn.min.js │ │ ├── editor_plugin.js │ │ ├── editor_plugin_release.full.js │ │ ├── editor_plugin_release.min.js │ │ ├── livepress-admin-bar.full.js │ │ ├── livepress-admin-bar.min.js │ │ ├── livepress-release.full.js │ │ ├── livepress-release.min.js │ │ ├── livepress_loader.full.js │ │ ├── livepress_loader.min.js │ │ ├── locales │ │ │ ├── jquery.timeago.ar.js │ │ │ ├── jquery.timeago.bg.js │ │ │ ├── jquery.timeago.bs.js │ │ │ ├── jquery.timeago.ca.js │ │ │ ├── jquery.timeago.cs.js │ │ │ ├── jquery.timeago.cy.js │ │ │ ├── jquery.timeago.da.js │ │ │ ├── jquery.timeago.de.js │ │ │ ├── jquery.timeago.el.js │ │ │ ├── jquery.timeago.en-short.js │ │ │ ├── jquery.timeago.en.js │ │ │ ├── jquery.timeago.es-short.js │ │ │ ├── jquery.timeago.es.js │ │ │ ├── jquery.timeago.et.js │ │ │ ├── jquery.timeago.fa.js │ │ │ ├── jquery.timeago.fi.js │ │ │ ├── jquery.timeago.fr-short.js │ │ │ ├── jquery.timeago.fr.js │ │ │ ├── jquery.timeago.gl.js │ │ │ ├── jquery.timeago.he.js │ │ │ ├── jquery.timeago.hr.js │ │ │ ├── jquery.timeago.hu.js │ │ │ ├── jquery.timeago.hy.js │ │ │ ├── jquery.timeago.id.js │ │ │ ├── jquery.timeago.is.js │ │ │ ├── jquery.timeago.it.js │ │ │ ├── jquery.timeago.ja.js │ │ │ ├── jquery.timeago.jv.js │ │ │ ├── jquery.timeago.ko.js │ │ │ ├── jquery.timeago.lt.js │ │ │ ├── jquery.timeago.mk.js │ │ │ ├── jquery.timeago.nl.js │ │ │ ├── jquery.timeago.no.js │ │ │ ├── jquery.timeago.pl.js │ │ │ ├── jquery.timeago.pt-br.js │ │ │ ├── jquery.timeago.pt.js │ │ │ ├── jquery.timeago.ro.js │ │ │ ├── jquery.timeago.rs.js │ │ │ ├── jquery.timeago.ru.js │ │ │ ├── jquery.timeago.sk.js │ │ │ ├── jquery.timeago.sl.js │ │ │ ├── jquery.timeago.sv.js │ │ │ ├── jquery.timeago.th.js │ │ │ ├── jquery.timeago.tr.js │ │ │ ├── jquery.timeago.uk.js │ │ │ ├── jquery.timeago.uz.js │ │ │ ├── jquery.timeago.vi.js │ │ │ ├── jquery.timeago.zh-CN.js │ │ │ ├── jquery.timeago.zh-TW.js │ │ │ ├── select2_locale_ar.js │ │ │ ├── select2_locale_az.js │ │ │ ├── select2_locale_bg.js │ │ │ ├── select2_locale_ca.js │ │ │ ├── select2_locale_cs.js │ │ │ ├── select2_locale_da.js │ │ │ ├── select2_locale_de.js │ │ │ ├── select2_locale_el.js │ │ │ ├── select2_locale_es.js │ │ │ ├── select2_locale_et.js │ │ │ ├── select2_locale_eu.js │ │ │ ├── select2_locale_fa.js │ │ │ ├── select2_locale_fi.js │ │ │ ├── select2_locale_fr.js │ │ │ ├── select2_locale_gl.js │ │ │ ├── select2_locale_he.js │ │ │ ├── select2_locale_hr.js │ │ │ ├── select2_locale_hu.js │ │ │ ├── select2_locale_id.js │ │ │ ├── select2_locale_is.js │ │ │ ├── select2_locale_it.js │ │ │ ├── select2_locale_ja.js │ │ │ ├── select2_locale_ka.js │ │ │ ├── select2_locale_ko.js │ │ │ ├── select2_locale_lt.js │ │ │ ├── select2_locale_lv.js │ │ │ ├── select2_locale_mk.js │ │ │ ├── select2_locale_ms.js │ │ │ ├── select2_locale_nl.js │ │ │ ├── select2_locale_no.js │ │ │ ├── select2_locale_pl.js │ │ │ ├── select2_locale_pt-BR.js │ │ │ ├── select2_locale_pt-PT.js │ │ │ ├── select2_locale_ro.js │ │ │ ├── select2_locale_rs.js │ │ │ ├── select2_locale_ru.js │ │ │ ├── select2_locale_sk.js │ │ │ ├── select2_locale_sv.js │ │ │ ├── select2_locale_th.js │ │ │ ├── select2_locale_tr.js │ │ │ ├── select2_locale_ug-CN.js │ │ │ ├── select2_locale_uk.js │ │ │ ├── select2_locale_vi.js │ │ │ ├── select2_locale_zh-CN.js │ │ │ └── select2_locale_zh-TW.js │ │ ├── plugin_loader_release.full.js │ │ └── plugin_loader_release.min.js │ ├── languages │ │ ├── livepress-es_ES.mo │ │ ├── livepress-es_ES.po │ │ ├── livepress-fr_FR.mo │ │ ├── livepress-fr_FR.po │ │ └── livepress.pot │ ├── livepress.php │ ├── php │ │ ├── livepress-admin-bar-status-menu.php │ │ ├── livepress-admin-settings.php │ │ ├── livepress-administration.php │ │ ├── livepress-blogging-tools.php │ │ ├── livepress-boot.php │ │ ├── livepress-cli.php │ │ ├── livepress-collaboration.php │ │ ├── livepress-comment.php │ │ ├── livepress-communication.php │ │ ├── livepress-compatibility-fixes.php │ │ ├── livepress-config.php │ │ ├── livepress-feed.php │ │ ├── livepress-fix-twitter-oembed.php │ │ ├── livepress-javascript-config.php │ │ ├── livepress-live-update.php │ │ ├── livepress-post-format-controller.php │ │ ├── livepress-post.php │ │ ├── livepress-template.php │ │ ├── livepress-themes-helper.php │ │ ├── livepress-updater.php │ │ ├── livepress-user-settings.php │ │ ├── livepress-wp-utils.php │ │ ├── livepress-xmlrpc.php │ │ └── special_comments.php │ ├── readme.txt │ ├── screenshot-1.jpg │ ├── screenshot-2.jpg │ ├── sounds │ │ ├── piano_w-pad_01-16M_01-01.mp3 │ │ ├── piano_w-pad_01-17M_01.mp3 │ │ ├── vibes-short_09-08.mp3 │ │ └── vibes_04-04LR_02-01.mp3 │ └── tinymce │ │ ├── css │ │ ├── flick │ │ │ ├── images │ │ │ │ ├── lp_logo_small.png │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ │ ├── ui-bg_flat_55_ffffff_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_100_f6f6f6_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_25_0073ea_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_50_dddddd_1x100.png │ │ │ │ ├── ui-icons_0073ea_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_666666_256x240.png │ │ │ │ ├── ui-icons_ff0084_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ └── jquery-ui-1.7.2.custom.css │ │ ├── inside.css │ │ └── outside.css │ │ ├── img │ │ ├── arrow.gif │ │ ├── background.gif │ │ ├── bg-control-button.png │ │ ├── bg-control.png │ │ ├── bg-switch.png │ │ ├── control-logo-small.png │ │ ├── control-logo.png │ │ ├── ed.gif │ │ ├── example.gif │ │ ├── switch-button.png │ │ └── switch.png │ │ ├── js │ │ └── dialog.js │ │ └── langs │ │ ├── en.js │ │ └── en_dlg.js ├── ooyala │ ├── img │ │ ├── ooyala-logo-small.png │ │ └── ooyala-title.png │ ├── js │ │ ├── ooyala-models.js │ │ ├── ooyala-views.js │ │ ├── ooyala.js │ │ ├── plupload.js │ │ └── spin.js │ ├── ooyala-about-en-us.html │ ├── ooyala-templates.php │ ├── ooyala.css │ ├── ooyala.php │ ├── readme.txt │ └── wpcom-helper.php ├── optimizely │ ├── LICENSE │ ├── README.txt │ ├── admin.php │ ├── config.js │ ├── config.php │ ├── edit.js │ ├── edit.php │ ├── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── images │ │ ├── ajax-loader.gif │ │ ├── optimizely-icon.png │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_228ef1_256x240.png │ │ ├── ui-icons_ef8c08_256x240.png │ │ ├── ui-icons_ffd27a_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ ├── jquery-ui.css │ ├── optimizely.js │ ├── optimizely.php │ ├── results.js │ ├── screenshot-1.png │ ├── screenshot-2.png │ └── style.css ├── push-syndication │ ├── .gitignore │ ├── assets │ │ ├── banner-1544x500.png │ │ ├── banner-772x250.png │ │ ├── css │ │ │ ├── admin-edit-site.css │ │ │ └── admin-sites-list.css │ │ ├── icon-128x128.png │ │ ├── icon-256x256.png │ │ └── icon.svg │ ├── bin │ │ └── install-wp-tests.sh │ ├── composer.json │ ├── includes │ │ ├── admin │ │ │ ├── class-post-edit-screen.php │ │ │ ├── class-settings-screen.php │ │ │ ├── class-site-edit-screen.php │ │ │ └── class-site-list-screen.php │ │ ├── class-autoloader.php │ │ ├── class-bootstrap.php │ │ ├── class-client-manager.php │ │ ├── class-legacy-hooks.php │ │ ├── class-puller.php │ │ ├── class-pusher.php │ │ ├── class-site-manager.php │ │ ├── class-syndication-cli-command.php │ │ ├── class-syndication-event-counter.php │ │ ├── class-syndication-fail-auto-retry.php │ │ ├── class-syndication-logger-viewer.php │ │ ├── class-syndication-logger.php │ │ ├── class-syndication-runner.php │ │ ├── class-syndication-settings.php │ │ ├── class-syndication-site-failure-monitor.php │ │ ├── class-upgrade-tasks.php │ │ ├── clients │ │ │ ├── rest-push │ │ │ │ ├── class-bootstrap.php │ │ │ │ ├── class-client-options.php │ │ │ │ └── class-push-client.php │ │ │ ├── rss-pull │ │ │ │ ├── class-bootstrap.php │ │ │ │ ├── class-client-options.php │ │ │ │ └── class-pull-client.php │ │ │ ├── test │ │ │ │ ├── class-bootstrap.php │ │ │ │ ├── class-client-options.php │ │ │ │ ├── class-pull-client.php │ │ │ │ └── class-push-client.php │ │ │ ├── xml-pull │ │ │ │ ├── class-bootstrap.php │ │ │ │ ├── class-client-options.php │ │ │ │ └── class-pull-client.php │ │ │ └── xml-push │ │ │ │ ├── class-bootstrap.php │ │ │ │ ├── class-client-options.php │ │ │ │ └── class-push-client.php │ │ ├── functions-helpers.php │ │ └── types │ │ │ ├── class-post.php │ │ │ └── class-term.php │ ├── phpunit.xml │ ├── push-syndication.php │ ├── readme.txt │ └── tests │ │ └── bootstrap.php ├── roost │ ├── assets │ │ ├── banner-772x250.png │ │ ├── icon-128x128.png │ │ ├── icon-256x256.png │ │ ├── screenshot-1.jpg │ │ ├── screenshot-10.jpg │ │ ├── screenshot-11.jpg │ │ ├── screenshot-12.jpg │ │ ├── screenshot-2.jpg │ │ ├── screenshot-3.jpg │ │ ├── screenshot-4.jpg │ │ ├── screenshot-5.jpg │ │ ├── screenshot-6.jpg │ │ ├── screenshot-7.jpg │ │ ├── screenshot-8.jpg │ │ └── screenshot-9.jpg │ ├── includes │ │ ├── chrome │ │ │ ├── roost.php │ │ │ ├── roost_manifest.php │ │ │ └── roost_worker.php │ │ ├── class-roost-api.php │ │ └── class-roost-core.php │ ├── layout │ │ ├── admin.php │ │ ├── css │ │ │ └── rooststyle.css │ │ ├── images │ │ │ ├── roost-arrow-white.png │ │ │ ├── roost-arrow.png │ │ │ ├── roost-icon-25.png │ │ │ ├── roost-plugin-sprite.png │ │ │ ├── roost-red-logo.png │ │ │ ├── roost_logo.png │ │ │ └── roost_thumb.png │ │ └── js │ │ │ ├── roostGoogleFont.js │ │ │ └── roostscript.js │ ├── readme.txt │ ├── roost.php │ └── uninstall.php ├── sailthru │ ├── README.md │ ├── README.txt │ ├── classes │ │ ├── class-sailthru-concierge.php │ │ ├── class-sailthru-horizon.php │ │ ├── class-sailthru-scout.php │ │ └── class-wp-sailthru-client.php │ ├── css │ │ ├── admin.css │ │ ├── admin.widget.css │ │ ├── display.css │ │ ├── sass │ │ │ └── widget.subscribe.scss │ │ ├── widget.css │ │ ├── widget.subscribe.admin.css │ │ └── widget.subscribe.css │ ├── img │ │ ├── sailthru-header-icon.png │ │ ├── sailthru-logo │ │ ├── sailthru-logo.png │ │ ├── sailthru-menu-icon.png │ │ └── smart-data.png │ ├── js │ │ ├── admin-ck.js │ │ ├── admin.js │ │ ├── admin.widget.js │ │ ├── ajax.php │ │ ├── display.js │ │ ├── horizon.params.js │ │ ├── jquery-ui-sliderAccess.js │ │ ├── jquery-ui-timepicker-addon.js │ │ ├── scout.params.js │ │ ├── widget-ck.js │ │ ├── widget.js │ │ ├── widget.subscribe.admin.js │ │ └── widget.subscribe.js │ ├── lang │ │ └── plugin.po │ ├── lib │ │ ├── MIT-LICENSE.txt │ │ ├── Sailthru_Client.php │ │ ├── Sailthru_Client_Exception.php │ │ └── Sailthru_Util.php │ ├── plugin.php │ ├── sailthru.php │ ├── views │ │ ├── admin.functions.php │ │ ├── admin.php │ │ ├── display.php │ │ ├── settings.html.php │ │ ├── welcome.html.php │ │ ├── widget.scout.admin.php │ │ ├── widget.scout.display.php │ │ ├── widget.subscribe.admin.php │ │ └── widget.subscribe.display.php │ ├── widget.subscribe.php │ └── wpcom-helper.php ├── shortcode-ui │ ├── LICENSE │ ├── README.md │ ├── css │ │ ├── sass │ │ │ ├── _field-image.scss │ │ │ ├── shortcode-ui-editor-styles.scss │ │ │ └── shortcode-ui.scss │ │ ├── shortcode-ui-editor-styles.css │ │ ├── shortcode-ui-editor-styles.css.map │ │ ├── shortcode-ui.css │ │ └── shortcode-ui.css.map │ ├── dev.php │ ├── inc │ │ ├── class-shortcode-ui.php │ │ ├── fields │ │ │ ├── class-field-attachment.php │ │ │ ├── class-field-color.php │ │ │ ├── class-field-post-select.php │ │ │ └── class-shortcode-ui-fields.php │ │ └── templates │ │ │ ├── edit-form.tpl.php │ │ │ ├── list-item.tpl.php │ │ │ └── media-frame.tpl.php │ ├── js │ │ ├── build │ │ │ └── shortcode-ui.js │ │ └── src │ │ │ ├── collections │ │ │ ├── shortcode-attributes.js │ │ │ └── shortcodes.js │ │ │ ├── controllers │ │ │ └── media-controller.js │ │ │ ├── models │ │ │ ├── inner-content.js │ │ │ ├── shortcode-attribute.js │ │ │ └── shortcode.js │ │ │ ├── shortcode-ui.js │ │ │ ├── utils │ │ │ ├── fetcher.js │ │ │ ├── shortcode-view-constructor.js │ │ │ └── sui.js │ │ │ └── views │ │ │ ├── edit-attribute-field-attachment.js │ │ │ ├── edit-attribute-field-color.js │ │ │ ├── edit-attribute-field-post-select.js │ │ │ ├── edit-attribute-field.js │ │ │ ├── edit-shortcode-form.js │ │ │ ├── insert-shortcode-list-item.js │ │ │ ├── insert-shortcode-list.js │ │ │ ├── media-frame.js │ │ │ ├── media-toolbar.js │ │ │ ├── search-shortcode.js │ │ │ ├── shortcode-preview.js │ │ │ └── shortcode-ui.js │ ├── languages │ │ ├── shortcode-ui-da_DK.mo │ │ ├── shortcode-ui-da_DK.po │ │ ├── shortcode-ui-de_DE.mo │ │ ├── shortcode-ui-de_DE.po │ │ ├── shortcode-ui-es_ES.mo │ │ ├── shortcode-ui-es_ES.po │ │ ├── shortcode-ui-fr_FR.mo │ │ ├── shortcode-ui-fr_FR.po │ │ ├── shortcode-ui-it_IT.mo │ │ ├── shortcode-ui-it_IT.po │ │ ├── shortcode-ui-nl_NL.mo │ │ ├── shortcode-ui-nl_NL.po │ │ ├── shortcode-ui-pt_BR.mo │ │ ├── shortcode-ui-pt_BR.po │ │ ├── shortcode-ui-pt_PT.mo │ │ ├── shortcode-ui-pt_PT.po │ │ ├── shortcode-ui-ru_RU.mo │ │ ├── shortcode-ui-ru_RU.po │ │ ├── shortcode-ui-zh_CN.mo │ │ ├── shortcode-ui-zh_CN.po │ │ └── shortcode-ui.pot │ ├── lib │ │ ├── select2 │ │ │ ├── select2-spinner.gif │ │ │ ├── select2.css │ │ │ ├── select2.js │ │ │ ├── select2.min.js │ │ │ ├── select2.png │ │ │ └── select2x2.png │ │ └── wp-js-hooks │ │ │ ├── wp-js-hooks.js │ │ │ └── wp-js-hooks.min.js │ ├── readme.txt │ ├── screenshot-1.png │ ├── screenshot-2.png │ ├── screenshot-3.png │ ├── screenshot-4.png │ └── shortcode-ui.php ├── shoutem-api │ ├── controllers │ │ ├── class-shoutem-calendars-controller.php │ │ ├── class-shoutem-controller-view.php │ │ ├── class-shoutem-controller.php │ │ ├── class-shoutem-events-controller.php │ │ ├── class-shoutem-pages-controller.php │ │ ├── class-shoutem-photos-controller.php │ │ ├── class-shoutem-podcasts-comments-controller.php │ │ ├── class-shoutem-podcasts-controller.php │ │ ├── class-shoutem-posts-comments-controller.php │ │ ├── class-shoutem-posts-controller.php │ │ ├── class-shoutem-service-controller.php │ │ └── class-shoutem-users-controller.php │ ├── core │ │ ├── class-shoutem-api-authentication.php │ │ ├── class-shoutem-api-caching.php │ │ ├── class-shoutem-api-encryption.php │ │ ├── class-shoutem-api-exception.php │ │ ├── class-shoutem-api-options.php │ │ ├── class-shoutem-api-request.php │ │ ├── class-shoutem-api-response.php │ │ └── class-shoutem-api.php │ ├── library │ │ ├── JSON.php │ │ ├── aes128.php │ │ └── shoutem-sanitizer.php │ ├── model │ │ ├── class-shoutem-dao.php │ │ ├── class-shoutem-events-calendar-dao.php │ │ ├── class-shoutem-events-dao.php │ │ ├── class-shoutem-events-manager-dao.php │ │ ├── class-shoutem-flagallery-dao.php │ │ ├── class-shoutem-ngg-dao.php │ │ ├── class-shoutem-photos-dao.php │ │ ├── class-shoutem-podpress-dao.php │ │ ├── class-shoutem-posts-comments-dao.php │ │ ├── class-shoutem-posts-dao.php │ │ ├── class-shoutem-powerpress-dao.php │ │ ├── class-shoutem-standard-dao-factory.php │ │ ├── class-shoutem-users-dao.php │ │ ├── class-shoutem-viper-dao.php │ │ └── dao-util.php │ ├── readme.txt │ └── shoutem-api.php ├── socialflow │ ├── assets │ │ ├── css │ │ │ └── socialflow.css │ │ ├── images │ │ │ ├── error.gif │ │ │ ├── menu-icon.png │ │ │ ├── notice.gif │ │ │ ├── reload.png │ │ │ ├── socialflow.png │ │ │ ├── success.gif │ │ │ ├── thumb-nav.gif │ │ │ ├── thumb-nav.png │ │ │ └── wpspin.gif │ │ └── js │ │ │ ├── date.js │ │ │ ├── debug.js │ │ │ ├── jquery-ui-timepicker-addon.js │ │ │ ├── jquery.maxlength-min.js │ │ │ ├── jquery.maxlength.js │ │ │ ├── jquery.timepicker.js │ │ │ ├── sf-categories.js │ │ │ ├── socialflow.js │ │ │ ├── thumb-slider.js │ │ │ └── twitter-text.js │ ├── includes │ │ ├── class-plugin-options.php │ │ ├── class-plugin-view.php │ │ ├── class-socialflow-accounts.php │ │ ├── class-socialflow-admin.php │ │ ├── class-socialflow-methods.php │ │ ├── class-socialflow-post.php │ │ ├── class-socialflow-update.php │ │ ├── class-socialflow.php │ │ └── settings │ │ │ ├── accounts.php │ │ │ ├── categories.php │ │ │ ├── general.php │ │ │ ├── messages.php │ │ │ └── page.php │ ├── libs │ │ ├── OAuth.php │ │ └── class-wp-socialflow.php │ ├── readme.txt │ ├── screenshot-1.png │ ├── screenshot-2.png │ ├── screenshot-3.png │ ├── screenshot-4.png │ ├── screenshot-5.png │ ├── socialflow.php │ └── views │ │ ├── form │ │ ├── ajax.php │ │ ├── messages.php │ │ └── post.php │ │ ├── meta-box.php │ │ ├── notice │ │ ├── debug-send.php │ │ ├── not-authorized.php │ │ └── options-updated.php │ │ └── stats │ │ ├── compact.php │ │ └── full.php ├── subheading │ ├── admin.js │ ├── languages │ │ ├── subheading-default.po │ │ └── subheading-pt_BR.po │ ├── panel.php │ ├── readme.txt │ ├── screenshot-1.png │ ├── screenshot-2.png │ ├── subheading.php │ └── uninstall.php ├── thePlatform │ ├── LICENSE │ ├── README.md │ ├── assets │ │ ├── layout.xml │ │ ├── screenshot-1.png │ │ ├── screenshot-2.png │ │ ├── screenshot-3.png │ │ ├── screenshot-4.png │ │ └── screenshot-5.png │ ├── css │ │ ├── bootstrap_tp.min.css │ │ ├── fieldViews.css │ │ ├── nprogress.css │ │ ├── thePlatform-browser.css │ │ ├── thePlatform-edit-upload.css │ │ ├── thePlatform-file-uploader.css │ │ ├── thePlatform-options.css │ │ └── thePlatform.css │ ├── images │ │ ├── embed_button.png │ │ ├── loading.gif │ │ ├── logo.png │ │ └── pbar-ani.gif │ ├── js │ │ ├── bootstrap.min.js │ │ ├── fieldViews.js │ │ ├── handlebars-v1.3.0.js │ │ ├── holder.js │ │ ├── jquery.infinitescroll.min.js │ │ ├── mediaview.js │ │ ├── mpxHelper.js │ │ ├── nprogress.js │ │ ├── thePlatform-browser.js │ │ ├── thePlatform-edit-upload.js │ │ ├── thePlatform-media-button.js │ │ ├── thePlatform-options.js │ │ ├── theplatform-uploader.js │ │ ├── theplatform.js │ │ └── theplatform.tinymce.plugin.js │ ├── readme.txt │ ├── thePlatform-API.php │ ├── thePlatform-HTML.php │ ├── thePlatform-URLs.php │ ├── thePlatform-about.php │ ├── thePlatform-browser.php │ ├── thePlatform-constants.php │ ├── thePlatform-edit-upload.php │ ├── thePlatform-helper.php │ ├── thePlatform-media-browser.php │ ├── thePlatform-media.php │ ├── thePlatform-options.php │ ├── thePlatform-proxy.php │ ├── thePlatform-upload-window.php │ ├── thePlatform-upload.php │ └── thePlatform.php ├── tinypass │ ├── css │ │ ├── admin.css │ │ ├── debugger.css │ │ ├── frontend.css │ │ └── tinypass.css │ ├── images │ │ └── favicon.ico │ ├── include.php │ ├── include │ │ ├── TinypassBuildable.php │ │ ├── TinypassConfig.php │ │ ├── TinypassContentResult.php │ │ ├── TinypassContentSettings.php │ │ ├── TinypassInternal.php │ │ ├── TinypassResource.php │ │ ├── TinypassTerm.php │ │ ├── TinypassVX.php │ │ ├── TinypassWebhookResult.php │ │ ├── WPTinypass.php │ │ ├── WPTinypassAdmin.php │ │ ├── WPTinypassDebugger.php │ │ ├── WPTinypassFrontend.php │ │ ├── tpl │ │ │ ├── _js_header.php │ │ │ ├── _js_meter.php │ │ │ ├── _js_meter_tick.php │ │ │ ├── _js_offer.php │ │ │ ├── meter.php │ │ │ └── offer.php │ │ └── util │ │ │ ├── TPSecurityUtils.php │ │ │ └── TPUserRefBuilder.php │ ├── js │ │ ├── admin.js │ │ ├── tinypass_admin.js │ │ └── tp.js │ ├── readme.txt │ ├── tinymce │ │ └── editor_plugin.js │ ├── tinypass-admin.php │ ├── tinypass-form.php │ ├── tinypass-install.php │ ├── tinypass-mode-settings.php │ ├── tinypass-page-options.php │ ├── tinypass-site-settings.php │ ├── tinypass.php │ ├── util │ │ ├── TPPaySettings.php │ │ ├── TPSiteSettings.php │ │ ├── TPStorage.php │ │ └── TPValidate.php │ └── views │ │ ├── admin │ │ ├── _bulk_paywall.php │ │ ├── _bulk_subscription.php │ │ ├── _connection.php │ │ ├── _debug.php │ │ ├── _display_mode.php │ │ ├── _first_click_options.php │ │ ├── _metered_list_items.php │ │ ├── _my_account.php │ │ ├── _premium_tag.php │ │ ├── _subscription_list_items.php │ │ ├── _subscription_resources.php │ │ ├── _truncation_settings.php │ │ ├── businessModel.php │ │ ├── footer.php │ │ ├── header.php │ │ ├── metabox.php │ │ ├── metabox_metered.php │ │ ├── metabox_not_configured.php │ │ ├── paywall.php │ │ ├── reset.php │ │ ├── resources.php │ │ └── subscription.php │ │ ├── debugger │ │ ├── _array.php │ │ ├── _bool.php │ │ ├── _error.php │ │ ├── _footer.php │ │ ├── _header.php │ │ └── _string.php │ │ └── frontend │ │ └── my_account.php ├── wp-parsely │ ├── parsely-admin-header.php │ ├── parsely-javascript.php │ ├── parsely-parsely-page.php │ ├── parsely-settings.php │ ├── readme.txt │ ├── screenshot-1.png │ ├── screenshot-2.png │ ├── screenshot-3.png │ ├── screenshot-4.png │ └── wp-parsely.php ├── wp_enqueue_media_override │ ├── LICENSE │ ├── README.md │ └── wp_enqueue_media_override.php └── wpcom-thumbnail-editor │ ├── screenshot-1.png │ ├── screenshot-2.png │ └── wpcom-thumbnail-editor.php ├── responsive-images ├── images │ └── 1x1.trans.gif ├── js │ └── responsive-images.js └── responsive-images.php ├── roost ├── assets │ ├── banner-772x250.png │ ├── icon-128x128.png │ ├── icon-256x256.png │ ├── screenshot-1.jpg │ ├── screenshot-10.jpg │ ├── screenshot-11.jpg │ ├── screenshot-12.jpg │ ├── screenshot-2.jpg │ ├── screenshot-3.jpg │ ├── screenshot-4.jpg │ ├── screenshot-5.jpg │ ├── screenshot-6.jpg │ ├── screenshot-7.jpg │ ├── screenshot-8.jpg │ └── screenshot-9.jpg ├── includes │ ├── chrome │ │ ├── roost.php │ │ ├── roost_manifest.php │ │ └── roost_worker.php │ ├── class-roost-api.php │ └── class-roost-core.php ├── layout │ ├── admin.php │ ├── css │ │ └── rooststyle.css │ ├── images │ │ ├── roost-arrow-white.png │ │ ├── roost-arrow.png │ │ ├── roost-icon-25.png │ │ ├── roost-plugin-sprite.png │ │ ├── roost-red-logo.png │ │ ├── roost_logo.png │ │ └── roost_thumb.png │ └── js │ │ ├── roostGoogleFont.js │ │ └── roostscript.js ├── readme.txt ├── roost.php └── uninstall.php ├── safe-redirect-manager-1.9 ├── .travis.yml ├── README.md ├── bin │ └── install-wp-tests.sh ├── composer.json ├── composer.lock ├── inc │ ├── classes │ │ ├── class-srm-post-type.php │ │ ├── class-srm-redirect.php │ │ └── class-srm-wp-cli.php │ └── functions.php ├── lang │ ├── safe-redirect-manager-sk_SK.mo │ ├── safe-redirect-manager-sk_SK.po │ └── safe-redirect-manager.pot ├── package-lock.json ├── package.json ├── phpunit.xml.dist ├── readme.txt ├── safe-redirect-manager.php ├── tests │ ├── bootstrap.php │ └── test-core.php └── wpcom-helper.php ├── safe-redirect-manager ├── images │ └── icon32x32.png ├── inc │ └── wp-cli.php ├── languages │ ├── safe-redirect-manager-sk_SK.mo │ ├── safe-redirect-manager-sk_SK.po │ └── safe-redirect-manager.pot ├── readme.txt ├── safe-redirect-manager.php ├── screenshot-1.png ├── screenshot-2.png └── wpcom-helper.php ├── safe-report-comments ├── js │ └── ajax.js ├── readme.txt ├── safe-report-comments.php ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png └── screenshot-4.png ├── sailthru-3.1 ├── README.md ├── README.txt ├── assets │ ├── icon-128x128.png │ ├── icon-256x256.png │ ├── screenshot-1.png │ ├── screenshot-2.png │ ├── screenshot-4.png │ ├── screenshot-5.png │ └── scrrenshot-3.png ├── classes │ ├── class-sailthru-concierge.php │ ├── class-sailthru-horizon.php │ ├── class-sailthru-mailer.php │ ├── class-sailthru-scout.php │ ├── class-sailthru-subscribe-fields.php │ └── class-wp-sailthru-client.php ├── css │ ├── admin.css │ ├── admin.widget.css │ ├── display.css │ ├── sass │ │ └── widget.subscribe.scss │ ├── widget.css │ ├── widget.scout.css │ ├── widget.subscribe.admin.css │ └── widget.subscribe.css ├── img │ ├── icon-sort.png │ ├── sailthru-header-icon.png │ ├── sailthru-logo │ ├── sailthru-logo.png │ ├── sailthru-menu-icon.png │ └── smart-data.png ├── js │ ├── admin-ck.js │ ├── admin.js │ ├── admin.widget.js │ ├── ajax.php │ ├── display.js │ ├── horizon.js │ ├── horizon.params.js │ ├── jquery-ui-sliderAccess.js │ ├── jquery-ui-timepicker-addon.js │ ├── scout.params.js │ ├── tag.js │ ├── widget-ck.js │ ├── widget.js │ └── widget.subscribe.js ├── lang │ └── plugin.po ├── lib │ ├── MIT-LICENSE.txt │ ├── Sailthru_Client.php │ ├── Sailthru_Client_Exception.php │ └── Sailthru_Util.php ├── plugin.php ├── sailthru-wpmail.php ├── sailthru.php ├── sailthru_mail.php ├── views │ ├── admin.functions.concierge.options.php │ ├── admin.functions.php │ ├── admin.functions.scout.options.php │ ├── admin.functions.setup.options.php │ ├── admin.functions.subscribe.options.php │ ├── admin.php │ ├── display.php │ ├── settings.html.php │ ├── widget.scout.admin.php │ ├── widget.scout.display.php │ ├── widget.subscribe.admin.php │ └── widget.subscribe.display.php ├── widget.subscribe.php └── wpcom-helper.php ├── sailthru-3.2 ├── .gitignore ├── README.md ├── README.txt ├── assets │ ├── icon-128x128.png │ ├── icon-256x256.png │ ├── screenshot-1.png │ ├── screenshot-2.png │ ├── screenshot-4.png │ ├── screenshot-5.png │ └── scrrenshot-3.png ├── changelog.md ├── classes │ ├── class-sailthru-concierge.php │ ├── class-sailthru-horizon.php │ ├── class-sailthru-mailer.php │ ├── class-sailthru-scout.php │ ├── class-sailthru-subscribe-fields.php │ └── class-wp-sailthru-client.php ├── css │ ├── admin.css │ ├── admin.widget.css │ ├── display.css │ ├── sass │ │ └── widget.subscribe.scss │ ├── widget.css │ ├── widget.scout.css │ ├── widget.subscribe.admin.css │ └── widget.subscribe.css ├── img │ ├── icon-sort.png │ ├── sailthru-header-icon.png │ ├── sailthru-logo │ ├── sailthru-logo.png │ ├── sailthru-menu-icon.png │ └── smart-data.png ├── js │ ├── admin-ck.js │ ├── admin.js │ ├── admin.widget.js │ ├── ajax.php │ ├── display.js │ ├── horizon.js │ ├── horizon.params.js │ ├── jquery-ui-sliderAccess.js │ ├── jquery-ui-timepicker-addon.js │ ├── scout.params.js │ ├── tag.js │ ├── widget-ck.js │ ├── widget.js │ └── widget.subscribe.js ├── lang │ └── plugin.po ├── lib │ ├── MIT-LICENSE.txt │ ├── Sailthru_Client.php │ ├── Sailthru_Client_Exception.php │ └── Sailthru_Util.php ├── plugin.php ├── sailthru-wpmail.php ├── sailthru.php ├── sailthru_mail.php ├── views │ ├── admin.functions.concierge.options.php │ ├── admin.functions.php │ ├── admin.functions.scout.options.php │ ├── admin.functions.setup.options.php │ ├── admin.functions.subscribe.options.php │ ├── admin.php │ ├── display.php │ ├── settings.html.php │ ├── widget.scout.admin.php │ ├── widget.scout.display.php │ ├── widget.subscribe.admin.php │ └── widget.subscribe.display.php ├── widget.subscribe.php └── wpcom-helper.php ├── sailthru-test ├── README.md ├── README.txt ├── assets │ ├── icon-128x128.png │ ├── icon-256x256.png │ ├── screenshot-1.png │ ├── screenshot-2.png │ ├── screenshot-4.png │ ├── screenshot-5.png │ └── scrrenshot-3.png ├── changelog.md ├── classes │ ├── class-sailthru-concierge.php │ ├── class-sailthru-horizon.php │ ├── class-sailthru-mailer.php │ ├── class-sailthru-scout.php │ ├── class-sailthru-subscribe-fields.php │ └── class-wp-sailthru-client.php ├── css │ ├── admin.css │ ├── admin.widget.css │ ├── display.css │ ├── sass │ │ └── widget.subscribe.scss │ ├── widget.css │ ├── widget.scout.css │ ├── widget.subscribe.admin.css │ └── widget.subscribe.css ├── img │ ├── icon-sort.png │ ├── sailthru-header-icon.png │ ├── sailthru-logo │ ├── sailthru-logo.png │ ├── sailthru-menu-icon.png │ └── smart-data.png ├── js │ ├── admin-ck.js │ ├── admin.js │ ├── admin.widget.js │ ├── ajax.php │ ├── display.js │ ├── horizon.js │ ├── horizon.params.js │ ├── jquery-ui-sliderAccess.js │ ├── jquery-ui-timepicker-addon.js │ ├── scout.params.js │ ├── tag.js │ ├── widget-ck.js │ ├── widget.js │ └── widget.subscribe.js ├── lang │ └── plugin.po ├── lib │ ├── MIT-LICENSE.txt │ ├── Sailthru_Client.php │ ├── Sailthru_Client_Exception.php │ └── Sailthru_Util.php ├── plugin.php ├── sailthru-wpmail.php ├── sailthru.php ├── sailthru_mail.php ├── views │ ├── admin.functions.concierge.options.php │ ├── admin.functions.php │ ├── admin.functions.scout.options.php │ ├── admin.functions.setup.options.php │ ├── admin.functions.subscribe.options.php │ ├── admin.php │ ├── display.php │ ├── settings.html.php │ ├── widget.scout.admin.php │ ├── widget.scout.display.php │ ├── widget.subscribe.admin.php │ └── widget.subscribe.display.php ├── widget.subscribe.php └── wpcom-helper.php ├── sailthru ├── README.md ├── README.txt ├── classes │ ├── class-sailthru-concierge.php │ ├── class-sailthru-horizon.php │ ├── class-sailthru-scout.php │ └── class-wp-sailthru-client.php ├── css │ ├── admin.css │ ├── admin.widget.css │ ├── display.css │ ├── sass │ │ └── widget.subscribe.scss │ ├── widget.css │ ├── widget.subscribe.admin.css │ └── widget.subscribe.css ├── img │ ├── sailthru-header-icon.png │ ├── sailthru-logo │ ├── sailthru-logo.png │ ├── sailthru-menu-icon.png │ └── smart-data.png ├── js │ ├── admin-ck.js │ ├── admin.js │ ├── admin.widget.js │ ├── ajax.php │ ├── display.js │ ├── horizon.params.js │ ├── jquery-ui-sliderAccess.js │ ├── jquery-ui-timepicker-addon.js │ ├── scout.params.js │ ├── widget-ck.js │ ├── widget.js │ ├── widget.subscribe.admin.js │ └── widget.subscribe.js ├── lang │ └── plugin.po ├── lib │ ├── MIT-LICENSE.txt │ ├── Sailthru_Client.php │ ├── Sailthru_Client_Exception.php │ └── Sailthru_Util.php ├── plugin.php ├── sailthru.php ├── views │ ├── admin.functions.php │ ├── admin.php │ ├── display.php │ ├── settings.html.php │ ├── welcome.html.php │ ├── widget.scout.admin.php │ ├── widget.scout.display.php │ ├── widget.subscribe.admin.php │ └── widget.subscribe.display.php ├── widget.subscribe.php └── wpcom-helper.php ├── search-excerpt ├── search-excerpt.php └── ylsy_search_excerpt.php ├── sem-frame-buster ├── readme.txt ├── sem-frame-buster-info.php ├── sem-frame-buster.php └── sem-frame-buster.pot ├── seo-auto-linker ├── inc │ ├── admin.php │ ├── base.php │ ├── front.php │ └── post-type.php ├── lang │ └── seoal.pot ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── seo-auto-linker.php └── wpcom-helper.php ├── seo-friendly-images-mod └── seo-friendly-images-mod.php ├── share-this-classic-wpcom ├── bizz_buzz.gif ├── blinklist.gif ├── blogmarks.gif ├── delicious.gif ├── design_float.gif ├── digg.gif ├── facebook.gif ├── favoriting.gif ├── furl.gif ├── google_bmarks.gif ├── magnolia.gif ├── netscape.gif ├── newsvine.gif ├── page_back.gif ├── plugim.gif ├── powered-by.gif ├── propeller.gif ├── reddit.gif ├── share-icon-16x16.gif ├── share-this-classic-wpcom.php ├── share-this.php ├── simpy.gif ├── stumbleupon.gif ├── tailrank.gif ├── technorati.gif ├── twitter.gif ├── windows_live.gif ├── yahoo_myweb.gif └── yigg.gif ├── share-this-wpcom ├── README.txt ├── screenshot-1.gif ├── screenshot-2.png ├── screenshot-3.png ├── share-this-wpcom.php └── sharethis.php ├── shopify-store ├── class-assets.php ├── class-settings.php ├── class-shortcode.php ├── class-widget.php ├── css │ ├── settings.css │ └── widget.css ├── images │ ├── demo-product-image.jpg │ ├── embed-1.png │ ├── embed-2.png │ ├── embed-3.png │ ├── embed-4.png │ ├── embed-5.png │ ├── no-image-filled.png │ ├── no-image.png │ └── shopify-logo.png ├── javascripts │ ├── money.js │ ├── settings.js │ └── widget.js ├── readme.txt ├── shopify-store.php └── views │ ├── settings.php │ └── widget.php ├── shortcode-ui-0.7.2 ├── LICENSE ├── README.md ├── bin │ └── install-wp-tests.sh ├── css │ ├── sass │ │ ├── _field-image.scss │ │ ├── _select2-fields.scss │ │ ├── shortcode-ui-editor-styles.scss │ │ └── shortcode-ui.scss │ ├── shortcode-ui-editor-styles.css │ ├── shortcode-ui-editor-styles.css.map │ ├── shortcode-ui.css │ └── shortcode-ui.css.map ├── dev.php ├── inc │ ├── class-shortcode-ui.php │ ├── fields │ │ ├── class-shortcode-ui-field-attachment.php │ │ ├── class-shortcode-ui-field-color.php │ │ ├── class-shortcode-ui-field-post-select.php │ │ ├── class-shortcode-ui-field-term-select.php │ │ ├── class-shortcode-ui-field-user-select.php │ │ └── class-shortcode-ui-fields.php │ └── templates │ │ ├── edit-form.tpl.php │ │ ├── list-item.tpl.php │ │ └── media-frame.tpl.php ├── js-tests │ ├── build │ │ ├── helpers.js │ │ └── specs.js │ ├── src │ │ ├── helpers │ │ │ └── globalHelper.js │ │ ├── innerContentModelSpec.js │ │ ├── shortcodeAttributeModelSpec.js │ │ ├── shortcodeModelSpec.js │ │ ├── shortcodeViewConstructorSpec.js │ │ ├── utils │ │ │ ├── mceViewConstructorSpec.js │ │ │ └── suiSpec.js │ │ └── views │ │ │ └── editAttributeFieldSpec.js │ └── vendor │ │ ├── mock-ajax.js │ │ ├── wp-admin │ │ └── js │ │ │ └── editor.js │ │ └── wp-includes │ │ └── js │ │ ├── backbone.min.js │ │ ├── jquery │ │ └── jquery.js │ │ ├── shortcode.js │ │ ├── underscore.min.js │ │ └── wp-util.js ├── js │ ├── build │ │ └── shortcode-ui.js │ └── src │ │ ├── collections │ │ ├── shortcode-attributes.js │ │ └── shortcodes.js │ │ ├── controllers │ │ └── media-controller.js │ │ ├── models │ │ ├── inner-content.js │ │ ├── shortcode-attribute.js │ │ └── shortcode.js │ │ ├── shortcode-ui.js │ │ ├── utils │ │ ├── fetcher.js │ │ ├── shortcode-view-constructor.js │ │ └── sui.js │ │ └── views │ │ ├── edit-attribute-field-attachment.js │ │ ├── edit-attribute-field-color.js │ │ ├── edit-attribute-field-post-select.js │ │ ├── edit-attribute-field-term-select.js │ │ ├── edit-attribute-field-user-select.js │ │ ├── edit-attribute-field.js │ │ ├── edit-shortcode-form.js │ │ ├── insert-shortcode-list-item.js │ │ ├── insert-shortcode-list.js │ │ ├── media-frame.js │ │ ├── media-toolbar.js │ │ ├── search-shortcode.js │ │ ├── select2-field.js │ │ └── shortcode-ui.js ├── languages │ ├── shortcode-ui-da_DK.mo │ ├── shortcode-ui-da_DK.po │ ├── shortcode-ui-de_DE.mo │ ├── shortcode-ui-de_DE.po │ ├── shortcode-ui-es_ES.mo │ ├── shortcode-ui-es_ES.po │ ├── shortcode-ui-fi.mo │ ├── shortcode-ui-fi.po │ ├── shortcode-ui-fr_FR.mo │ ├── shortcode-ui-fr_FR.po │ ├── shortcode-ui-hu_HU.mo │ ├── shortcode-ui-hu_HU.po │ ├── shortcode-ui-it_IT.mo │ ├── shortcode-ui-it_IT.po │ ├── shortcode-ui-ja.mo │ ├── shortcode-ui-ja.po │ ├── shortcode-ui-nb_NO.mo │ ├── shortcode-ui-nb_NO.po │ ├── shortcode-ui-nl_NL.mo │ ├── shortcode-ui-nl_NL.po │ ├── shortcode-ui-pt_BR.mo │ ├── shortcode-ui-pt_BR.po │ ├── shortcode-ui-pt_PT.mo │ ├── shortcode-ui-pt_PT.po │ ├── shortcode-ui-ru_RU.mo │ ├── shortcode-ui-ru_RU.po │ ├── shortcode-ui-sv_SE.mo │ ├── shortcode-ui-sv_SE.po │ ├── shortcode-ui-tr_TR.mo │ ├── shortcode-ui-tr_TR.po │ ├── shortcode-ui-zh_CN.mo │ ├── shortcode-ui-zh_CN.po │ └── shortcode-ui.pot ├── lib │ ├── select2 │ │ ├── css │ │ │ ├── select2.css │ │ │ └── select2.min.css │ │ └── js │ │ │ ├── i18n │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ │ ├── select2.full.js │ │ │ ├── select2.full.min.js │ │ │ ├── select2.js │ │ │ └── select2.min.js │ └── wp-js-hooks │ │ ├── wp-js-hooks.js │ │ └── wp-js-hooks.min.js ├── package.json ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png └── shortcode-ui.php ├── shortcode-ui ├── Gruntfile.js ├── LICENSE ├── README.md ├── css │ ├── sass │ │ ├── _field-image.scss │ │ ├── shortcode-ui-editor-styles.scss │ │ └── shortcode-ui.scss │ ├── shortcode-ui-editor-styles.css │ ├── shortcode-ui-editor-styles.css.map │ ├── shortcode-ui.css │ └── shortcode-ui.css.map ├── dev.php ├── inc │ ├── class-shortcode-ui.php │ ├── fields │ │ ├── class-field-attachment.php │ │ ├── class-field-color.php │ │ ├── class-field-post-select.php │ │ └── class-shortcode-ui-fields.php │ └── templates │ │ ├── edit-form.tpl.php │ │ ├── list-item.tpl.php │ │ └── media-frame.tpl.php ├── js │ ├── build │ │ ├── field-attachment.js │ │ ├── field-color.js │ │ ├── field-post-select.js │ │ └── shortcode-ui.js │ └── src │ │ ├── collections │ │ ├── shortcode-attributes.js │ │ └── shortcodes.js │ │ ├── controllers │ │ └── media-controller.js │ │ ├── field-attachment.js │ │ ├── field-color.js │ │ ├── field-post-select.js │ │ ├── models │ │ ├── inner-content.js │ │ ├── shortcode-attribute.js │ │ └── shortcode.js │ │ ├── shortcode-ui.js │ │ ├── utils │ │ ├── shortcode-view-constructor.js │ │ └── sui.js │ │ └── views │ │ ├── edit-attribute-field-attachment.js │ │ ├── edit-attribute-field-color.js │ │ ├── edit-attribute-field-post-select.js │ │ ├── edit-attribute-field.js │ │ ├── edit-shortcode-form.js │ │ ├── insert-shortcode-list-item.js │ │ ├── insert-shortcode-list.js │ │ ├── media-frame.js │ │ ├── media-toolbar.js │ │ ├── search-shortcode.js │ │ ├── shortcode-preview.js │ │ ├── shortcode-ui.js │ │ └── tabbed-view.js ├── languages │ ├── shortcode-ui-es_ES.mo │ ├── shortcode-ui-es_ES.po │ ├── shortcode-ui-fr_FR.mo │ ├── shortcode-ui-fr_FR.po │ ├── shortcode-ui-nl_NL.mo │ ├── shortcode-ui-nl_NL.po │ ├── shortcode-ui-pt_BR.po │ ├── shortcode-ui-pt_PT.mo │ ├── shortcode-ui-pt_PT.po │ ├── shortcode-ui-ru_RU.po │ ├── shortcode-ui-zh_CN.mo │ ├── shortcode-ui-zh_CN.po │ └── shortcode-ui.pot ├── lib │ ├── select2 │ │ ├── select2-spinner.gif │ │ ├── select2.css │ │ ├── select2.js │ │ ├── select2.min.js │ │ ├── select2.png │ │ └── select2x2.png │ └── wp-js-hooks │ │ ├── wp-js-hooks.js │ │ └── wp-js-hooks.min.js ├── package.json ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png └── shortcode-ui.php ├── simple-page-ordering ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── simple-page-ordering.css ├── simple-page-ordering.dev.js ├── simple-page-ordering.js └── simple-page-ordering.php ├── simple-reach-analytics ├── javascripts │ └── sranalytics.js ├── languages │ ├── sranalytics-ko_KR.mo │ ├── sranalytics-ko_KR.po │ └── sranalytics.pot ├── readme.txt ├── simple-reach-analytics.php ├── sranalytics.php └── sranalytics_admin.php ├── simply-show-ids ├── readme.txt ├── screenshot-1.png └── simply-show-ids.php ├── skyword-2.4 ├── composer.json ├── css │ └── styles.css ├── js │ └── admin.js ├── php │ ├── .idea │ │ ├── modules.xml │ │ ├── php.iml │ │ └── workspace.xml │ ├── class-skyword-opengraph.php │ ├── class-skyword-publish.php │ ├── class-skyword-shortcode.php │ ├── class-skyword-sitemaps.php │ └── options.php ├── readme.txt └── skyword.php ├── skyword ├── css │ └── styles.css ├── php │ ├── class-skyword-opengraph.php │ ├── class-skyword-publish.php │ ├── class-skyword-shortcode.php │ └── options.php └── skyword.php ├── socialflow ├── assets │ ├── css │ │ └── socialflow.css │ ├── images │ │ ├── error.gif │ │ ├── menu-icon.png │ │ ├── notice.gif │ │ ├── reload.png │ │ ├── socialflow.png │ │ ├── success.gif │ │ ├── thumb-nav.gif │ │ ├── thumb-nav.png │ │ └── wpspin.gif │ └── js │ │ ├── date.js │ │ ├── debug.js │ │ ├── jquery-ui-timepicker-addon.js │ │ ├── jquery.maxlength-min.js │ │ ├── jquery.maxlength.js │ │ ├── jquery.timepicker.js │ │ ├── sf-categories.js │ │ ├── socialflow.js │ │ └── thumb-slider.js ├── includes │ ├── class-plugin-options.php │ ├── class-plugin-view.php │ ├── class-socialflow-accounts.php │ ├── class-socialflow-admin.php │ ├── class-socialflow-methods.php │ ├── class-socialflow-post.php │ ├── class-socialflow-update.php │ ├── class-socialflow.php │ └── settings │ │ ├── accounts.php │ │ ├── categories.php │ │ ├── general.php │ │ ├── messages.php │ │ └── page.php ├── libs │ ├── OAuth.php │ └── class-wp-socialflow.php ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png ├── screenshot-5.png ├── socialflow.php └── views │ ├── form │ ├── ajax.php │ ├── messages.php │ └── post.php │ ├── meta-box.php │ ├── notice │ ├── debug-send.php │ ├── not-authorized.php │ └── options-updated.php │ └── stats │ ├── compact.php │ └── full.php ├── speed-bumps ├── Gruntfile.js ├── README.md ├── inc │ ├── constraints │ │ ├── content │ │ │ └── class-injection.php │ │ ├── elements │ │ │ ├── class-blockquote.php │ │ │ ├── class-constraint-abstract.php │ │ │ ├── class-dummy.php │ │ │ ├── class-element-constraints.php │ │ │ ├── class-factory.php │ │ │ ├── class-header.php │ │ │ ├── class-iframe.php │ │ │ ├── class-image.php │ │ │ ├── class-oembed.php │ │ │ └── class-shortcode.php │ │ └── text │ │ │ └── class-minimum-text.php │ └── utils │ │ ├── class-comparison.php │ │ └── class-text.php ├── languages │ └── speed-bumps.pot ├── package.json ├── readme.txt └── speed-bumps.php ├── stackcommerce-connect ├── dist │ ├── images │ │ ├── connected.svg │ │ ├── connecting.svg │ │ ├── disconnected.svg │ │ ├── reload.svg │ │ └── stackcommerce.svg │ ├── scripts │ │ ├── stackcommerce-wp.js │ │ ├── stackcommerce-wp.min.js │ │ └── stackcommerce-wp.min.js.map │ └── styles │ │ └── stackcommerce-wp.css ├── includes │ ├── class-stackcommerce-wp-article.php │ ├── class-stackcommerce-wp-endpoint.php │ ├── class-stackcommerce-wp-loader.php │ ├── class-stackcommerce-wp-maintenance.php │ ├── class-stackcommerce-wp-media.php │ ├── class-stackcommerce-wp-module.php │ ├── class-stackcommerce-wp-settings.php │ ├── class-stackcommerce-wp.php │ └── index.php ├── readme.txt ├── stackcommerce-connect.php ├── uninstall.php └── views │ ├── stackcommerce-wp-activate.php │ ├── stackcommerce-wp-js.php │ ├── stackcommerce-wp-page-settings.php │ └── stackcommerce-wp-requirements-error.php ├── sticky-custom-post-types-1.3 ├── readme.txt └── sticky-custom-post-types.php ├── sticky-custom-post-types ├── readme.txt └── sticky-custom-post-types.php ├── stipple ├── LICENSE ├── js │ ├── async_init.js │ ├── full_loader.js │ └── simple_loader.js ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png ├── stipple.php └── stipple_config_html_page.php ├── storify ├── css │ └── storify.css ├── img │ ├── logo.png │ └── logo32.png ├── js │ ├── storify.dev.js │ ├── storify.js │ ├── storify.tinymce.dev.js │ └── storify.tinymce.js ├── languages │ ├── storify-fr_FR.mo │ ├── storify-fr_FR.po │ └── storify.pot ├── readme.md ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png ├── screenshot-5.png ├── screenshot-6.png ├── screenshot-7.png └── storify.php ├── subheading-1.8 ├── admin.js ├── languages │ ├── subheading-default.po │ └── subheading-pt_BR.po ├── panel.php ├── readme.txt ├── subheading.php └── uninstall.php ├── subheading ├── admin.js ├── panel.php ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── subheading.php └── uninstall.php ├── table-of-contents └── table-of-contents.php ├── taxonomy-images ├── CHANGELOG.md ├── README.md ├── blank.png ├── controls.png ├── css │ ├── admin.css │ └── style.css ├── default.png ├── deprecated.php ├── js │ ├── edit-tags.js │ ├── media-modal.js │ └── media-upload-popup.js ├── languages │ ├── taxonomy-images-es_ES.mo │ ├── taxonomy-images-es_ES.po │ └── taxonomy-images.pot ├── public-filters.php ├── readme.txt └── taxonomy-images.php ├── taxonomy-list-widget ├── readme.txt └── taxonomy-list-widget.php ├── term-management-tools ├── README.md ├── lang │ ├── term-management-tools-fa_IR.mo │ ├── term-management-tools-fa_IR.po │ ├── term-management-tools-ro_RO.mo │ ├── term-management-tools-ro_RO.po │ ├── term-management-tools-sk_SK.mo │ ├── term-management-tools-sk_SK.po │ └── term-management-tools.pot ├── script.dev.js ├── script.js └── term-management-tools.php ├── the-attached-image ├── att_docs.php ├── att_options.php ├── changelog.txt ├── readme.txt ├── screenshot-1.jpg └── the-attached-image.php ├── thePlatform-2.0.0 ├── LICENSE ├── README.md ├── assets │ ├── layout.xml │ ├── screenshot-1.png │ ├── screenshot-2.png │ ├── screenshot-3.png │ ├── screenshot-4.png │ └── screenshot-5.png ├── css │ ├── bootstrap_tp.min.css │ ├── fieldViews.css │ ├── nprogress.css │ ├── thePlatform-browser.css │ ├── thePlatform-edit-upload.css │ ├── thePlatform-file-uploader.css │ ├── thePlatform-options.css │ └── thePlatform.css ├── images │ ├── embed_button.png │ ├── loading.gif │ ├── logo.png │ └── pbar-ani.gif ├── js │ ├── bootstrap.min.js │ ├── fieldViews.js │ ├── handlebars-v1.3.0.js │ ├── holder.js │ ├── jquery.infinitescroll.min.js │ ├── mediaview.js │ ├── mpxHelper.js │ ├── nprogress.js │ ├── thePlatform-browser.js │ ├── thePlatform-edit-upload.js │ ├── thePlatform-media-button.js │ ├── thePlatform-options.js │ ├── theplatform-uploader.js │ ├── theplatform.js │ └── theplatform.tinymce.plugin.js ├── readme.txt ├── thePlatform-API.php ├── thePlatform-HTML.php ├── thePlatform-URLs.php ├── thePlatform-about.php ├── thePlatform-browser.php ├── thePlatform-constants.php ├── thePlatform-edit-upload.php ├── thePlatform-helper.php ├── thePlatform-media-browser.php ├── thePlatform-media.php ├── thePlatform-options.php ├── thePlatform-proxy.php ├── thePlatform-upload-window.php ├── thePlatform-upload.php └── thePlatform.php ├── thePlatform ├── LICENSE ├── README.md ├── assets │ ├── screenshot-1.png │ ├── screenshot-2.png │ ├── screenshot-3.png │ ├── screenshot-4.png │ └── screenshot-5.png ├── css │ ├── bootstrap_tp.min.css │ ├── fieldViews.css │ ├── nprogress.css │ └── thePlatform.css ├── images │ ├── embed_button.png │ ├── loading.gif │ ├── logo.png │ └── pbar-ani.gif ├── js │ ├── bootstrap.min.js │ ├── fieldViews.js │ ├── handlebars-v1.3.0.js │ ├── holder.js │ ├── jquery.infinitescroll.min.js │ ├── mediaview.js │ ├── mpxHelper.js │ ├── nprogress.js │ ├── theplatform-uploader.js │ ├── theplatform.js │ └── theplatform.tinymce.plugin.js ├── readme.txt ├── thePlatform-API.php ├── thePlatform-URLs.php ├── thePlatform-about.php ├── thePlatform-constants.php ├── thePlatform-helper.php ├── thePlatform-media-browser.php ├── thePlatform-media.php ├── thePlatform-options.php ├── thePlatform-proxy.php ├── thePlatform-upload-window.php ├── thePlatform-upload.php └── thePlatform.php ├── throttle-media-search-queries ├── LICENSE.md ├── README.md ├── js │ └── script.js └── throttle-media-search-queries.php ├── tidal └── tidal.php ├── tinypass ├── css │ ├── images │ │ ├── choice-bg.png │ │ ├── closer.png │ │ ├── gear.png │ │ ├── opener.png │ │ ├── section-header-point.png │ │ └── tag-remove.png │ └── tinypass.css ├── js │ ├── tinypass_admin.js │ └── tp.js ├── readme.txt ├── screenshot-1.png ├── tinypass-admin.php ├── tinypass-form.php ├── tinypass-install.php ├── tinypass-mode-settings.php ├── tinypass-page-options.php ├── tinypass-site-settings.php ├── tinypass.php └── util │ ├── TPPaySettings.php │ ├── TPSiteSettings.php │ ├── TPStorage.php │ └── TPValidate.php ├── tw-print ├── print.css ├── print.php └── tw-print.php ├── view-all-posts-pages ├── readme.txt ├── view-all-posts-pages.php └── wpcom-helper.php ├── vip-do-not-include-on-wpcom ├── is-mobile.php ├── readme.txt ├── vip-local-development-helper │ └── vip-local-development-helper.php ├── vip-media.php ├── vip-mods.php ├── vip-permastructs.php ├── vip-powered-wpcom │ ├── images │ │ ├── vip-powered-dark-long.png │ │ ├── vip-powered-dark-normal.png │ │ ├── vip-powered-dark-small.png │ │ ├── vip-powered-light-long.png │ │ ├── vip-powered-light-normal.png │ │ └── vip-powered-light-small.png │ └── vip-powered-wpcom.php ├── vip-roles.php ├── vip-simple-error-handler.php ├── vip-utils.php ├── vip-wp-cli.php ├── wpcom-caching.php ├── wpcom-functions.php ├── wpcom-plugins │ └── wpcom-sitemap.php ├── wpcom-shortcodes.php └── wpcom-vip-plugins-ui │ ├── class-wpcom-vip-plugins-list-tables.php │ ├── css │ └── wpcom-vip-plugins-ui.css │ ├── images │ └── featured-plugins │ │ ├── amp-1x.png │ │ ├── amp-2x.png │ │ ├── apester-interactive-content-1x.png │ │ ├── apester-interactive-content-2x.png │ │ ├── brightcove-video-connect-1x.png │ │ ├── brightcove-video-connect-2x.png │ │ ├── facebook-instant-articles-1x.png │ │ ├── facebook-instant-articles-2x.png │ │ ├── getty-images-1x.png │ │ ├── getty-images-2x.png │ │ ├── inform-video-match-1x.png │ │ ├── inform-video-match-2x.png │ │ ├── jwplayer-1x.png │ │ ├── jwplayer-2x.png │ │ ├── laterpay-1x.png │ │ ├── laterpay-2x.png │ │ ├── ooyala-1x.png │ │ ├── ooyala-2x.png │ │ ├── piano-1x.png │ │ ├── piano-2x.png │ │ ├── sailthru-1x.png │ │ ├── sailthru-2x.png │ │ ├── skyword-1x.png │ │ ├── skyword-2x.png │ │ ├── webdam-asset-chooser-1x.png │ │ └── webdam-asset-chooser-2x.png │ ├── js │ └── wpcom-vip-plugins-ui.js │ └── wpcom-vip-plugins-ui.php ├── vip-helper-stats-wpcom.php ├── vip-helper-wpcom.php ├── vip-helper.php ├── vip-init.php ├── vip-staging ├── js.cookie-2.0.3.min.js ├── readme.md ├── source │ ├── Gruntfile.js │ ├── assets │ │ ├── icon-warning.svg │ │ ├── index.html │ │ ├── js │ │ │ ├── app.js │ │ │ └── jquery-1.9.1.min.js │ │ └── scss │ │ │ ├── base.scss │ │ │ ├── staging.scss │ │ │ └── styles.scss │ └── package.json ├── vip-staging-script.js ├── vip-staging-style.css └── vip-staging.php ├── voce-settings-api ├── display-callbacks.php ├── sanitize-callbacks.php └── voce-settings-api.php ├── watermark-image-uploads └── watermark-image-uploads.php ├── webdam-asset-chooser ├── README.md ├── assets │ ├── webdam-admin-settings.css │ ├── webdam-asset-chooser.css │ ├── webdam-asset-chooser.js │ ├── webdam-icon.png │ ├── webdam-imported-asset.css │ └── webdam-set-cookie.js ├── includes │ ├── class-admin-settings.php │ ├── class-api.php │ ├── class-asset-chooser.php │ ├── class-core.php │ └── helpers.php ├── readme.txt └── webdam-asset-chooser.php ├── wordtwit-1.3-mod ├── css │ └── admin.css ├── html │ └── options.php ├── images │ ├── bird.png │ └── logo.png ├── load-news.php ├── readme.txt ├── screenshot-1.jpg ├── twitter_oauth │ ├── OAuth.php │ └── twitteroauth.php ├── wordtwit-1.3-mod.php ├── wordtwit.php ├── wpcom-helper.php └── xml.php ├── wp-discourse ├── comments.php ├── css │ └── style.css ├── js │ └── discourse.js └── wp-discourse.php ├── wp-frontend-uploader-1.1 ├── frontend-uploader.php ├── languages │ ├── frontend-uploader-de_DE.mo │ ├── frontend-uploader-de_DE.po │ ├── frontend-uploader-es_ES.mo │ ├── frontend-uploader-es_ES.po │ ├── frontend-uploader-fa_IR.mo │ ├── frontend-uploader-fa_IR.po │ ├── frontend-uploader-fr_CA.mo │ ├── frontend-uploader-fr_CA.po │ ├── frontend-uploader-fr_FR.mo │ ├── frontend-uploader-fr_FR.po │ ├── frontend-uploader-nb_NO.mo │ ├── frontend-uploader-nb_NO.po │ ├── frontend-uploader-nl_NL.mo │ ├── frontend-uploader-nl_NL.po │ ├── frontend-uploader-pt_BR.mo │ ├── frontend-uploader-pt_BR.po │ ├── frontend-uploader-ru_RU.mo │ ├── frontend-uploader-ru_RU.po │ ├── frontend-uploader.mo │ └── frontend-uploader.pot ├── lib │ ├── css │ │ └── frontend-uploader.css │ ├── js │ │ ├── frontend-uploader.js │ │ ├── underscore.string.js │ │ ├── underscore.string.min.js │ │ └── validate │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ └── localization │ │ │ ├── messages_ar.js │ │ │ ├── messages_ar.min.js │ │ │ ├── messages_bg.js │ │ │ ├── messages_bg.min.js │ │ │ ├── messages_bn_BD.js │ │ │ ├── messages_bn_BD.min.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_ca.min.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_cs.min.js │ │ │ ├── messages_da.js │ │ │ ├── messages_da.min.js │ │ │ ├── messages_de.js │ │ │ ├── messages_de.min.js │ │ │ ├── messages_el.js │ │ │ ├── messages_el.min.js │ │ │ ├── messages_es.js │ │ │ ├── messages_es.min.js │ │ │ ├── messages_es_AR.js │ │ │ ├── messages_es_AR.min.js │ │ │ ├── messages_es_PE.js │ │ │ ├── messages_es_PE.min.js │ │ │ ├── messages_et.js │ │ │ ├── messages_et.min.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_eu.min.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fa.min.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fi.min.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_fr.min.js │ │ │ ├── messages_ge.js │ │ │ ├── messages_ge.min.js │ │ │ ├── messages_gl.js │ │ │ ├── messages_gl.min.js │ │ │ ├── messages_he.js │ │ │ ├── messages_he.min.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hr.min.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_hu.min.js │ │ │ ├── messages_hy_AM.js │ │ │ ├── messages_hy_AM.min.js │ │ │ ├── messages_id.js │ │ │ ├── messages_id.min.js │ │ │ ├── messages_is.js │ │ │ ├── messages_is.min.js │ │ │ ├── messages_it.js │ │ │ ├── messages_it.min.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ja.min.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_ka.min.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_kk.min.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_ko.min.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lt.min.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_lv.min.js │ │ │ ├── messages_mk.js │ │ │ ├── messages_mk.min.js │ │ │ ├── messages_my.js │ │ │ ├── messages_my.min.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_nl.min.js │ │ │ ├── messages_no.js │ │ │ ├── messages_no.min.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pl.min.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_BR.min.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_pt_PT.min.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ro.min.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_ru.min.js │ │ │ ├── messages_si.js │ │ │ ├── messages_si.min.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sk.min.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sl.min.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sr.min.js │ │ │ ├── messages_sr_lat.js │ │ │ ├── messages_sr_lat.min.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_sv.min.js │ │ │ ├── messages_th.js │ │ │ ├── messages_th.min.js │ │ │ ├── messages_tj.js │ │ │ ├── messages_tj.min.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_tr.min.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_uk.min.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_vi.min.js │ │ │ ├── messages_zh.js │ │ │ ├── messages_zh.min.js │ │ │ ├── messages_zh_TW.js │ │ │ ├── messages_zh_TW.min.js │ │ │ ├── methods_de.js │ │ │ ├── methods_de.min.js │ │ │ ├── methods_es_CL.js │ │ │ ├── methods_es_CL.min.js │ │ │ ├── methods_fi.js │ │ │ ├── methods_fi.min.js │ │ │ ├── methods_nl.js │ │ │ ├── methods_nl.min.js │ │ │ ├── methods_pt.js │ │ │ └── methods_pt.min.js │ ├── php │ │ ├── akismet.php │ │ ├── class-frontend-uploader-wp-media-list-table.php │ │ ├── class-frontend-uploader-wp-posts-list-table.php │ │ ├── class-html-helper.php │ │ ├── frontend-uploader-settings.php │ │ ├── functions.php │ │ ├── recaptcha.php │ │ └── settings-api │ │ │ ├── .gitignore │ │ │ ├── class.settings-api.php │ │ │ ├── readme.md │ │ │ ├── readme.txt │ │ │ └── screenshot-1.png │ └── views │ │ ├── manage-ugc-media.tpl.php │ │ └── manage-ugc-posts.tpl.php ├── readme.txt ├── wp-frontend-uploader.php └── wpcom-helper.php ├── wp-frontend-uploader-1.3 ├── frontend-uploader.php ├── languages │ ├── frontend-uploader-de_DE.mo │ ├── frontend-uploader-de_DE.po │ ├── frontend-uploader-es_ES.mo │ ├── frontend-uploader-es_ES.po │ ├── frontend-uploader-fa_IR.mo │ ├── frontend-uploader-fa_IR.po │ ├── frontend-uploader-fr_CA.mo │ ├── frontend-uploader-fr_CA.po │ ├── frontend-uploader-fr_FR.mo │ ├── frontend-uploader-fr_FR.po │ ├── frontend-uploader-ja.mo │ ├── frontend-uploader-ja.po │ ├── frontend-uploader-nb_NO.mo │ ├── frontend-uploader-nb_NO.po │ ├── frontend-uploader-nl_NL.mo │ ├── frontend-uploader-nl_NL.po │ ├── frontend-uploader-pt_BR.mo │ ├── frontend-uploader-pt_BR.po │ ├── frontend-uploader-ru_RU.mo │ ├── frontend-uploader-ru_RU.po │ ├── frontend-uploader.mo │ └── frontend-uploader.pot ├── lib │ ├── css │ │ └── frontend-uploader.css │ ├── js │ │ ├── frontend-uploader.js │ │ ├── underscore.string.js │ │ ├── underscore.string.min.js │ │ └── validate │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.min.js │ │ │ └── localization │ │ │ ├── messages_ar.js │ │ │ ├── messages_ar.min.js │ │ │ ├── messages_bg.js │ │ │ ├── messages_bg.min.js │ │ │ ├── messages_bn_BD.js │ │ │ ├── messages_bn_BD.min.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_ca.min.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_cs.min.js │ │ │ ├── messages_da.js │ │ │ ├── messages_da.min.js │ │ │ ├── messages_de.js │ │ │ ├── messages_de.min.js │ │ │ ├── messages_el.js │ │ │ ├── messages_el.min.js │ │ │ ├── messages_es.js │ │ │ ├── messages_es.min.js │ │ │ ├── messages_es_AR.js │ │ │ ├── messages_es_AR.min.js │ │ │ ├── messages_es_PE.js │ │ │ ├── messages_es_PE.min.js │ │ │ ├── messages_et.js │ │ │ ├── messages_et.min.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_eu.min.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fa.min.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fi.min.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_fr.min.js │ │ │ ├── messages_ge.js │ │ │ ├── messages_ge.min.js │ │ │ ├── messages_gl.js │ │ │ ├── messages_gl.min.js │ │ │ ├── messages_he.js │ │ │ ├── messages_he.min.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hr.min.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_hu.min.js │ │ │ ├── messages_hy_AM.js │ │ │ ├── messages_hy_AM.min.js │ │ │ ├── messages_id.js │ │ │ ├── messages_id.min.js │ │ │ ├── messages_is.js │ │ │ ├── messages_is.min.js │ │ │ ├── messages_it.js │ │ │ ├── messages_it.min.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ja.min.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_ka.min.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_kk.min.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_ko.min.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lt.min.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_lv.min.js │ │ │ ├── messages_mk.js │ │ │ ├── messages_mk.min.js │ │ │ ├── messages_my.js │ │ │ ├── messages_my.min.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_nl.min.js │ │ │ ├── messages_no.js │ │ │ ├── messages_no.min.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pl.min.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_BR.min.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_pt_PT.min.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ro.min.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_ru.min.js │ │ │ ├── messages_si.js │ │ │ ├── messages_si.min.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sk.min.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sl.min.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sr.min.js │ │ │ ├── messages_sr_lat.js │ │ │ ├── messages_sr_lat.min.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_sv.min.js │ │ │ ├── messages_th.js │ │ │ ├── messages_th.min.js │ │ │ ├── messages_tj.js │ │ │ ├── messages_tj.min.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_tr.min.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_uk.min.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_vi.min.js │ │ │ ├── messages_zh.js │ │ │ ├── messages_zh.min.js │ │ │ ├── messages_zh_TW.js │ │ │ ├── messages_zh_TW.min.js │ │ │ ├── methods_de.js │ │ │ ├── methods_de.min.js │ │ │ ├── methods_es_CL.js │ │ │ ├── methods_es_CL.min.js │ │ │ ├── methods_fi.js │ │ │ ├── methods_fi.min.js │ │ │ ├── methods_nl.js │ │ │ ├── methods_nl.min.js │ │ │ ├── methods_pt.js │ │ │ └── methods_pt.min.js │ ├── php │ │ ├── akismet.php │ │ ├── class-frontend-uploader-wp-media-list-table.php │ │ ├── class-frontend-uploader-wp-posts-list-table.php │ │ ├── class-html-helper.php │ │ ├── frontend-uploader-settings.php │ │ ├── functions.php │ │ ├── recaptcha.php │ │ └── settings-api │ │ │ ├── .gitignore │ │ │ ├── class.settings-api.php │ │ │ ├── readme.md │ │ │ ├── readme.txt │ │ │ └── screenshot-1.png │ └── views │ │ ├── html-email.tpl.php │ │ ├── manage-ugc-media.tpl.php │ │ └── manage-ugc-posts.tpl.php ├── readme.md ├── readme.txt ├── wp-frontend-uploader.php └── wpcom-helper.php ├── wp-frontend-uploader ├── frontend-uploader.php ├── languages │ ├── frontend-uploader-de_DE.mo │ ├── frontend-uploader-de_DE.po │ ├── frontend-uploader-en_EN.pot │ ├── frontend-uploader-es_ES.mo │ ├── frontend-uploader-es_ES.po │ ├── frontend-uploader-fa_IR.mo │ ├── frontend-uploader-fa_IR.po │ ├── frontend-uploader-fr_CA.mo │ ├── frontend-uploader-fr_CA.po │ ├── frontend-uploader-fr_FR.mo │ ├── frontend-uploader-fr_FR.po │ ├── frontend-uploader-nb_NO.mo │ ├── frontend-uploader-nb_NO.po │ ├── frontend-uploader-nl_NL.mo │ ├── frontend-uploader-nl_NL.po │ ├── frontend-uploader-pt_BR.mo │ ├── frontend-uploader-pt_BR.po │ ├── frontend-uploader-ru_RU.mo │ ├── frontend-uploader-ru_RU.po │ ├── frontend-uploader.mo │ └── frontend-uploader.pot ├── lib │ ├── css │ │ └── frontend-uploader.css │ ├── js │ │ ├── frontend-uploader.js │ │ └── validate │ │ │ ├── jquery.validate.js │ │ │ └── localization │ │ │ ├── messages_ar.js │ │ │ ├── messages_bg.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_da.js │ │ │ ├── messages_de.js │ │ │ ├── messages_el.js │ │ │ ├── messages_es.js │ │ │ ├── messages_et.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_he.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_it.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_my.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_no.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_si.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_th.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_zh.js │ │ │ ├── messages_zh_TW.js │ │ │ ├── methods_de.js │ │ │ ├── methods_nl.js │ │ │ └── methods_pt.js │ ├── php │ │ ├── akismet.php │ │ ├── class-frontend-uploader-wp-media-list-table.php │ │ ├── class-frontend-uploader-wp-posts-list-table.php │ │ ├── class-html-helper.php │ │ ├── frontend-uploader-settings.php │ │ ├── functions.php │ │ └── settings-api │ │ │ ├── class.settings-api.php │ │ │ ├── readme.md │ │ │ ├── readme.txt │ │ │ └── screenshot-1.png │ └── views │ │ ├── manage-ugc-media.tpl.php │ │ └── manage-ugc-posts.tpl.php ├── phpunit.xml ├── readme.md ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png ├── wp-frontend-uploader.php └── wpcom-helper.php ├── wp-google-analytics ├── README.md ├── languages │ └── wp-google-analytics.pot ├── readme.txt ├── wp-google-analytics.js ├── wp-google-analytics.php └── wpcom-helper.php ├── wp-help ├── css │ ├── wp-help.css │ └── wp-help.min.css ├── images │ ├── icon-16.png │ ├── icon-32.png │ ├── loading.gif │ └── sort.png ├── js │ ├── wp-help.js │ └── wp-help.min.js ├── languages │ ├── wp-help-bg_BG.mo │ ├── wp-help-bg_BG.po │ ├── wp-help-de_DE.mo │ ├── wp-help-de_DE.po │ ├── wp-help-es_ES.mo │ ├── wp-help-es_ES.po │ ├── wp-help-es_MX.mo │ ├── wp-help-es_MX.po │ ├── wp-help-fr_FR.mo │ ├── wp-help-fr_FR.po │ ├── wp-help-gu_IN.mo │ ├── wp-help-gu_IN.po │ ├── wp-help-mk_MK.mo │ ├── wp-help-mk_MK.po │ ├── wp-help-nb_NO.mo │ ├── wp-help-nb_NO.po │ ├── wp-help-nl_NL.mo │ ├── wp-help-nl_NL.po │ ├── wp-help-pt_BR.mo │ ├── wp-help-pt_BR.po │ ├── wp-help-ru_RU.mo │ ├── wp-help-ru_RU.po │ ├── wp-help-sr_RS.mo │ ├── wp-help-sr_RS.po │ └── wp-help.pot ├── readme.md ├── readme.txt ├── screenshot-1.png ├── templates │ ├── list-documents.php │ └── settings.php └── wp-help.php ├── wp-large-options ├── README.md └── wp-large-options.php ├── wp-page-numbers ├── classic │ ├── preview.gif │ └── wp-page-numbers.css ├── default │ ├── preview.gif │ └── wp-page-numbers.css ├── panther │ ├── preview.gif │ └── wp-page-numbers.css ├── readme.txt ├── screenshot-1.gif ├── stylish │ ├── img │ │ ├── bkg.gif │ │ └── bkg_active.gif │ ├── preview.gif │ └── wp-page-numbers.css ├── tiny │ ├── preview.gif │ └── wp-page-numbers.css └── wp-page-numbers.php ├── wp-pagenavi ├── admin.php ├── core.php ├── lang │ ├── wp-pagenavi-ar.mo │ ├── wp-pagenavi-ar.po │ ├── wp-pagenavi-az_AZ.mo │ ├── wp-pagenavi-az_AZ.po │ ├── wp-pagenavi-be_BY.mo │ ├── wp-pagenavi-be_BY.po │ ├── wp-pagenavi-bg_BG.mo │ ├── wp-pagenavi-bg_BG.po │ ├── wp-pagenavi-ca_ES.mo │ ├── wp-pagenavi-ca_ES.po │ ├── wp-pagenavi-cs_CZ.mo │ ├── wp-pagenavi-cs_CZ.po │ ├── wp-pagenavi-de_DE.mo │ ├── wp-pagenavi-de_DE.po │ ├── wp-pagenavi-es_ES.mo │ ├── wp-pagenavi-es_ES.po │ ├── wp-pagenavi-et.mo │ ├── wp-pagenavi-et.po │ ├── wp-pagenavi-fa_IR.mo │ ├── wp-pagenavi-fa_IR.po │ ├── wp-pagenavi-fr_FR.mo │ ├── wp-pagenavi-fr_FR.po │ ├── wp-pagenavi-he_IL.mo │ ├── wp-pagenavi-he_IL.po │ ├── wp-pagenavi-id_ID.mo │ ├── wp-pagenavi-id_ID.po │ ├── wp-pagenavi-it_IT.mo │ ├── wp-pagenavi-it_IT.po │ ├── wp-pagenavi-ja.mo │ ├── wp-pagenavi-ja.po │ ├── wp-pagenavi-ka_GE.mo │ ├── wp-pagenavi-ka_GE.po │ ├── wp-pagenavi-ko_KR.mo │ ├── wp-pagenavi-ko_KR.po │ ├── wp-pagenavi-lt_LT.mo │ ├── wp-pagenavi-lt_LT.po │ ├── wp-pagenavi-nb_NO.mo │ ├── wp-pagenavi-nb_NO.po │ ├── wp-pagenavi-nl_NL.mo │ ├── wp-pagenavi-nl_NL.po │ ├── wp-pagenavi-pl_PL.mo │ ├── wp-pagenavi-pl_PL.po │ ├── wp-pagenavi-pt_BR.mo │ ├── wp-pagenavi-pt_BR.po │ ├── wp-pagenavi-ro_RO.mo │ ├── wp-pagenavi-ro_RO.po │ ├── wp-pagenavi-ru_RU.mo │ ├── wp-pagenavi-ru_RU.po │ ├── wp-pagenavi-sk.mo │ ├── wp-pagenavi-sk.po │ ├── wp-pagenavi-sq_AL.mo │ ├── wp-pagenavi-sq_AL.po │ ├── wp-pagenavi-sr_RS.mo │ ├── wp-pagenavi-sr_RS.po │ ├── wp-pagenavi-sv_SE.mo │ ├── wp-pagenavi-sv_SE.po │ ├── wp-pagenavi-tr_TR.mo │ ├── wp-pagenavi-tr_TR.po │ ├── wp-pagenavi-tt_RU.mo │ ├── wp-pagenavi-tt_RU.po │ ├── wp-pagenavi-ua_UA.mo │ ├── wp-pagenavi-ua_UA.po │ ├── wp-pagenavi-uk.mo │ ├── wp-pagenavi-uk.po │ ├── wp-pagenavi-zh_CN.mo │ ├── wp-pagenavi-zh_CN.po │ ├── wp-pagenavi-zh_TW.mo │ ├── wp-pagenavi-zh_TW.po │ └── wp-pagenavi.pot ├── pagenavi-css.css ├── readme.txt ├── scb │ ├── AdminPage.php │ ├── Forms.php │ ├── Options.php │ ├── Util.php │ └── load.php ├── screenshot-1.png ├── screenshot-2.png ├── wp-pagenavi.php └── wpcom-helper.php ├── wp-paginate ├── I18n │ ├── readme.txt │ └── wp-paginate.pot ├── license.txt ├── readme.txt ├── wp-paginate-rtl.css ├── wp-paginate.css └── wp-paginate.php ├── wp-parsely-1.10 ├── DEVELOP.md ├── README.md ├── parsely-admin-header.php ├── parsely-javascript.php ├── parsely-parsely-page.php ├── parsely-settings.php ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png └── wp-parsely.php ├── wp-parsely ├── class-parsely-recommended-widget.php ├── json-ld-screenshot.png ├── json-ld-section-screenshot.png ├── parsely-admin-header.php ├── parsely-javascript.php ├── parsely-parsely-page.php ├── parsely-settings.php ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png ├── wp-parsely.css └── wp-parsely.php ├── wp-seo ├── css │ └── wp-seo.css ├── js │ └── wp-seo.js ├── php │ ├── class-wp-seo-formatting-tag.php │ ├── class-wp-seo-settings.php │ ├── class-wp-seo.php │ └── default-formatting-tags.php ├── readme.txt └── wp-seo.php ├── wpcom-allow-contributors-to-upload └── wpcom-allow-contributors-to-upload.php ├── wpcom-elasticsearch-1.2 ├── class.es-wpcom-searchresult-posts-iterator.php ├── widget-facets.php └── wpcom-elasticsearch.php ├── wpcom-elasticsearch ├── class.es-wpcom-searchresult-posts-iterator.php ├── widget-facets.php └── wpcom-elasticsearch.php ├── wpcom-geo-uniques ├── js │ └── wpcom-geo.js ├── readme.txt ├── wpcom-geo-uniques.php └── wpcom-helper.php ├── wpcom-legacy-redirector-1.2.0 ├── includes │ └── wp-cli.php ├── readme.txt ├── wpcom-helper.php └── wpcom-legacy-redirector.php ├── wpcom-legacy-redirector-1.3.0 ├── includes │ └── wp-cli.php ├── readme.txt ├── wpcom-helper.php └── wpcom-legacy-redirector.php ├── wpcom-legacy-redirector ├── includes │ └── wp-cli.php ├── readme.txt ├── wpcom-helper.php └── wpcom-legacy-redirector.php ├── wpcom-related-posts ├── wpcom-helper.php └── wpcom-related-posts.php ├── wpcom-thumbnail-editor ├── screenshot-1.png ├── screenshot-2.png └── wpcom-thumbnail-editor.php ├── zemanta ├── img │ ├── logo.png │ └── menu_icon.png ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png ├── screenshot-5.png ├── views │ ├── assets.php │ ├── debug.php │ ├── message.php │ ├── options-input-apikey.php │ ├── options-input-checkbox.php │ ├── options-input-text.php │ ├── options.php │ ├── scripts.php │ └── stylesheet.php └── zemanta.php ├── zoninator-0.7 ├── css │ ├── images │ │ ├── drag.png │ │ ├── gray-grad.png │ │ └── wpspin_light.gif │ ├── jquery-ui │ │ └── smoothness │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ └── jquery-ui-zoninator.css │ └── zoninator.css ├── functions.php ├── js │ ├── jquery.ui.touch-punch.min.js │ └── zoninator.js ├── language │ ├── zoninator-he_IL.mo │ └── zoninator-he_IL.po ├── readme.txt ├── screenshot-1.png ├── widget.zone-posts.php └── zoninator.php ├── zoninator-0.8 ├── css │ ├── images │ │ ├── drag.png │ │ ├── gray-grad.png │ │ └── wpspin_light.gif │ ├── jquery-ui │ │ └── smoothness │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ └── jquery-ui-zoninator.css │ └── zoninator.css ├── functions.php ├── includes │ ├── class-zoninator-api-controller.php │ ├── class-zoninator-api-filter-search.php │ ├── class-zoninator-api-schema-converter.php │ └── class-zoninator-api.php ├── js │ ├── jquery.ui.touch-punch.min.js │ └── zoninator.js ├── language │ ├── zoninator-he_IL.mo │ └── zoninator-he_IL.po ├── lib │ └── zoninator_rest │ │ ├── class-zoninator-rest-bootstrap.php │ │ ├── class-zoninator-rest-classloader.php │ │ ├── class-zoninator-rest-controller.php │ │ ├── class-zoninator-rest-environment.php │ │ ├── class-zoninator-rest-exception.php │ │ ├── class-zoninator-rest-expect.php │ │ ├── class-zoninator-rest-model.php │ │ ├── class-zoninator-rest-type.php │ │ ├── controller │ │ ├── bundle │ │ │ └── class-zoninator-rest-controller-bundle-builder.php │ │ ├── class-zoninator-rest-controller-action.php │ │ ├── class-zoninator-rest-controller-bundle.php │ │ ├── class-zoninator-rest-controller-crud.php │ │ ├── class-zoninator-rest-controller-extension.php │ │ ├── class-zoninator-rest-controller-model.php │ │ ├── class-zoninator-rest-controller-route.php │ │ └── class-zoninator-rest-controller-settings.php │ │ ├── data │ │ ├── class-zoninator-rest-data-mapper.php │ │ ├── class-zoninator-rest-data-serializer.php │ │ └── store │ │ │ ├── class-zoninator-rest-data-store-abstract.php │ │ │ ├── class-zoninator-rest-data-store-builder.php │ │ │ ├── class-zoninator-rest-data-store-customposttype.php │ │ │ ├── class-zoninator-rest-data-store-nil.php │ │ │ └── class-zoninator-rest-data-store-option.php │ │ ├── field │ │ ├── class-zoninator-rest-field-declaration.php │ │ └── declaration │ │ │ └── class-zoninator-rest-field-declaration-builder.php │ │ ├── interfaces │ │ ├── class-zoninator-rest-interfaces-builder.php │ │ ├── class-zoninator-rest-interfaces-classloader.php │ │ ├── class-zoninator-rest-interfaces-controller.php │ │ ├── class-zoninator-rest-interfaces-model.php │ │ ├── class-zoninator-rest-interfaces-registrable.php │ │ ├── class-zoninator-rest-interfaces-type.php │ │ ├── controller │ │ │ └── class-zoninator-rest-interfaces-controller-bundle.php │ │ ├── data │ │ │ └── class-zoninator-rest-interfaces-data-store.php │ │ ├── model │ │ │ ├── class-zoninator-rest-interfaces-model-collection.php │ │ │ └── class-zoninator-rest-interfaces-model-declaration.php │ │ └── permissions │ │ │ └── class-zoninator-rest-interfaces-permissions-provider.php │ │ ├── model │ │ ├── class-zoninator-rest-model-collection.php │ │ ├── class-zoninator-rest-model-declaration.php │ │ ├── class-zoninator-rest-model-definition.php │ │ ├── class-zoninator-rest-model-settings.php │ │ ├── class-zoninator-rest-model-validationdata.php │ │ ├── declaration │ │ │ └── class-zoninator-rest-model-declaration-settings.php │ │ └── definition │ │ │ └── class-zoninator-rest-model-definition-builder.php │ │ ├── permissions │ │ └── class-zoninator-rest-permissions-any.php │ │ └── type │ │ ├── class-zoninator-rest-type-array.php │ │ ├── class-zoninator-rest-type-boolean.php │ │ ├── class-zoninator-rest-type-integer.php │ │ ├── class-zoninator-rest-type-nullable.php │ │ ├── class-zoninator-rest-type-number.php │ │ ├── class-zoninator-rest-type-registry.php │ │ ├── class-zoninator-rest-type-string.php │ │ └── class-zoninator-rest-type-typedarray.php ├── readme.txt ├── screenshot-1.png ├── widget.zone-posts.php └── zoninator.php └── zoninator ├── css ├── images │ ├── drag.png │ ├── gray-grad.png │ └── wpspin_light.gif ├── jquery-ui │ └── smoothness │ │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ │ └── jquery-ui-zoninator.css └── zoninator.css ├── functions.php ├── js ├── jquery.ui.touch-punch.min.js └── zoninator.js ├── language ├── zoninator-he_IL.mo └── zoninator-he_IL.po ├── readme.txt ├── screenshot-1.png ├── widget.zone-posts.php └── zoninator.php /WP-API-2.0-beta13/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | readme.txt 3 | composer.lock 4 | node_modules 5 | vendor 6 | -------------------------------------------------------------------------------- /WP-API-2.0-beta13/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WP-API-2.0-beta13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/WP-API-2.0-beta13/README.md -------------------------------------------------------------------------------- /WP-API-2.0-beta13/wp-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/WP-API-2.0-beta13/wp-api.js -------------------------------------------------------------------------------- /ad-code-manager/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/ad-code-manager/readme.txt -------------------------------------------------------------------------------- /adbusters/adbusters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/adbusters/adbusters.php -------------------------------------------------------------------------------- /adbusters/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/adbusters/index.php -------------------------------------------------------------------------------- /adbusters/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/adbusters/license.txt -------------------------------------------------------------------------------- /adbusters/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/adbusters/readme.md -------------------------------------------------------------------------------- /adbusters/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/adbusters/readme.txt -------------------------------------------------------------------------------- /add-meta-tags-mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/add-meta-tags-mod/LICENSE -------------------------------------------------------------------------------- /add-meta-tags-mod/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/add-meta-tags-mod/NOTICE -------------------------------------------------------------------------------- /add-meta-tags-mod/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/add-meta-tags-mod/README -------------------------------------------------------------------------------- /add-meta-tags-mod/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/add-meta-tags-mod/THANKS -------------------------------------------------------------------------------- /angellist/angellist.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /liveblog-1.8/assets/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/liveblog-1.8/assets/app.css -------------------------------------------------------------------------------- /liveblog-1.8/assets/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/liveblog-1.8/assets/app.js -------------------------------------------------------------------------------- /liveblog-1.8/liveblog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/liveblog-1.8/liveblog.php -------------------------------------------------------------------------------- /liveblog-1.8/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/liveblog-1.8/readme.txt -------------------------------------------------------------------------------- /liveblog-1.8/templates/liveblog-key-events.php: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /liveblog-1.9/assets/amp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/liveblog-1.9/assets/amp.css -------------------------------------------------------------------------------- /liveblog-1.9/assets/amp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/liveblog-1.9/assets/amp.js -------------------------------------------------------------------------------- /liveblog-1.9/assets/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/liveblog-1.9/assets/app.css -------------------------------------------------------------------------------- /liveblog-1.9/assets/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/liveblog-1.9/assets/app.js -------------------------------------------------------------------------------- /liveblog-1.9/liveblog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/liveblog-1.9/liveblog.php -------------------------------------------------------------------------------- /liveblog-1.9/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/liveblog-1.9/readme.txt -------------------------------------------------------------------------------- /livefyre-apps/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/livefyre-apps/readme.txt -------------------------------------------------------------------------------- /livefyre-apps/views/footer.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /livefyre3/livefyre-api/libs/php/Livefyre.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /livefyre3/livefyre.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/livefyre3/livefyre.php -------------------------------------------------------------------------------- /livefyre3/livefyre3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/livefyre3/livefyre3.php -------------------------------------------------------------------------------- /livefyre3/livefyre_core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/livefyre3/livefyre_core.php -------------------------------------------------------------------------------- /livefyre3/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/livefyre3/readme.txt -------------------------------------------------------------------------------- /localtime/localtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/localtime/localtime.js -------------------------------------------------------------------------------- /localtime/localtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/localtime/localtime.php -------------------------------------------------------------------------------- /localtime/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/localtime/readme.txt -------------------------------------------------------------------------------- /mce-table-buttons/mce-table-buttons.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release-candidates/livepress/css/themes/ifeature.css: -------------------------------------------------------------------------------- 1 | #lp-update-box .lp-balloon { 2 | z-index: 2001; 3 | } 4 | -------------------------------------------------------------------------------- /release-candidates/livepress/css/themes/twenty-eleven.css: -------------------------------------------------------------------------------- 1 | #oortle-comment-status { 2 | margin-left: 50px; 3 | } 4 | -------------------------------------------------------------------------------- /release-candidates/livepress/css/themes/twenty-ten.css: -------------------------------------------------------------------------------- 1 | #lp-update-box { 2 | margin-top: 10px; 3 | } 4 | -------------------------------------------------------------------------------- /release-candidates/livepress/css/themes/zbench.css: -------------------------------------------------------------------------------- 1 | #post_content_livepress { 2 | padding-top: 5px; 3 | } 4 | -------------------------------------------------------------------------------- /release-candidates/push-syndication/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /release-candidates/sailthru/css/admin.widget.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release-candidates/sailthru/css/widget.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release-candidates/sailthru/js/admin.widget.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release-candidates/sailthru/js/widget.subscribe.admin.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release-candidates/thePlatform/assets/layout.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release-candidates/thePlatform/css/bootstrap_tp.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release-candidates/thePlatform/css/fieldViews.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release-candidates/thePlatform/css/thePlatform.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release-candidates/thePlatform/js/bootstrap.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release-candidates/thePlatform/js/fieldViews.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release-candidates/thePlatform/js/handlebars-v1.3.0.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release-candidates/thePlatform/js/jquery.infinitescroll.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release-candidates/thePlatform/js/mediaview.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release-candidates/thePlatform/js/mpxHelper.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release-candidates/thePlatform/js/theplatform.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release-candidates/thePlatform/thePlatform-helper.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release-candidates/thePlatform/thePlatform-media-browser.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release-candidates/thePlatform/thePlatform-media.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release-candidates/thePlatform/thePlatform-upload.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release-candidates/tinypass/views/debugger/_footer.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /roost/layout/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/roost/layout/admin.php -------------------------------------------------------------------------------- /roost/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/roost/readme.txt -------------------------------------------------------------------------------- /roost/roost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/roost/roost.php -------------------------------------------------------------------------------- /roost/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/roost/uninstall.php -------------------------------------------------------------------------------- /sailthru-3.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.1/README.md -------------------------------------------------------------------------------- /sailthru-3.1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.1/README.txt -------------------------------------------------------------------------------- /sailthru-3.1/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.1/css/admin.css -------------------------------------------------------------------------------- /sailthru-3.1/css/admin.widget.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sailthru-3.1/css/widget.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sailthru-3.1/js/admin-ck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.1/js/admin-ck.js -------------------------------------------------------------------------------- /sailthru-3.1/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.1/js/admin.js -------------------------------------------------------------------------------- /sailthru-3.1/js/admin.widget.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sailthru-3.1/js/ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.1/js/ajax.php -------------------------------------------------------------------------------- /sailthru-3.1/js/display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.1/js/display.js -------------------------------------------------------------------------------- /sailthru-3.1/js/horizon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.1/js/horizon.js -------------------------------------------------------------------------------- /sailthru-3.1/js/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.1/js/tag.js -------------------------------------------------------------------------------- /sailthru-3.1/js/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.1/js/widget.js -------------------------------------------------------------------------------- /sailthru-3.1/lang/plugin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.1/lang/plugin.po -------------------------------------------------------------------------------- /sailthru-3.1/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.1/plugin.php -------------------------------------------------------------------------------- /sailthru-3.1/sailthru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.1/sailthru.php -------------------------------------------------------------------------------- /sailthru-3.2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.2/.gitignore -------------------------------------------------------------------------------- /sailthru-3.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.2/README.md -------------------------------------------------------------------------------- /sailthru-3.2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.2/README.txt -------------------------------------------------------------------------------- /sailthru-3.2/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.2/changelog.md -------------------------------------------------------------------------------- /sailthru-3.2/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.2/css/admin.css -------------------------------------------------------------------------------- /sailthru-3.2/css/admin.widget.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sailthru-3.2/css/widget.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sailthru-3.2/js/admin-ck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.2/js/admin-ck.js -------------------------------------------------------------------------------- /sailthru-3.2/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.2/js/admin.js -------------------------------------------------------------------------------- /sailthru-3.2/js/admin.widget.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sailthru-3.2/js/ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.2/js/ajax.php -------------------------------------------------------------------------------- /sailthru-3.2/js/display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.2/js/display.js -------------------------------------------------------------------------------- /sailthru-3.2/js/horizon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.2/js/horizon.js -------------------------------------------------------------------------------- /sailthru-3.2/js/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.2/js/tag.js -------------------------------------------------------------------------------- /sailthru-3.2/js/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.2/js/widget.js -------------------------------------------------------------------------------- /sailthru-3.2/lang/plugin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.2/lang/plugin.po -------------------------------------------------------------------------------- /sailthru-3.2/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.2/plugin.php -------------------------------------------------------------------------------- /sailthru-3.2/sailthru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-3.2/sailthru.php -------------------------------------------------------------------------------- /sailthru-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-test/README.md -------------------------------------------------------------------------------- /sailthru-test/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-test/README.txt -------------------------------------------------------------------------------- /sailthru-test/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-test/changelog.md -------------------------------------------------------------------------------- /sailthru-test/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-test/css/admin.css -------------------------------------------------------------------------------- /sailthru-test/css/admin.widget.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sailthru-test/css/widget.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sailthru-test/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-test/js/admin.js -------------------------------------------------------------------------------- /sailthru-test/js/admin.widget.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sailthru-test/js/ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-test/js/ajax.php -------------------------------------------------------------------------------- /sailthru-test/js/display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-test/js/display.js -------------------------------------------------------------------------------- /sailthru-test/js/horizon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-test/js/horizon.js -------------------------------------------------------------------------------- /sailthru-test/js/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-test/js/tag.js -------------------------------------------------------------------------------- /sailthru-test/js/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-test/js/widget.js -------------------------------------------------------------------------------- /sailthru-test/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-test/plugin.php -------------------------------------------------------------------------------- /sailthru-test/sailthru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru-test/sailthru.php -------------------------------------------------------------------------------- /sailthru/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru/README.md -------------------------------------------------------------------------------- /sailthru/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru/README.txt -------------------------------------------------------------------------------- /sailthru/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru/css/admin.css -------------------------------------------------------------------------------- /sailthru/css/admin.widget.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sailthru/css/display.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru/css/display.css -------------------------------------------------------------------------------- /sailthru/css/widget.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sailthru/img/sailthru-logo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru/img/sailthru-logo -------------------------------------------------------------------------------- /sailthru/img/smart-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru/img/smart-data.png -------------------------------------------------------------------------------- /sailthru/js/admin-ck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru/js/admin-ck.js -------------------------------------------------------------------------------- /sailthru/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru/js/admin.js -------------------------------------------------------------------------------- /sailthru/js/admin.widget.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sailthru/js/ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru/js/ajax.php -------------------------------------------------------------------------------- /sailthru/js/display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru/js/display.js -------------------------------------------------------------------------------- /sailthru/js/scout.params.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru/js/scout.params.js -------------------------------------------------------------------------------- /sailthru/js/widget-ck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru/js/widget-ck.js -------------------------------------------------------------------------------- /sailthru/js/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru/js/widget.js -------------------------------------------------------------------------------- /sailthru/js/widget.subscribe.admin.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sailthru/lang/plugin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru/lang/plugin.po -------------------------------------------------------------------------------- /sailthru/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru/plugin.php -------------------------------------------------------------------------------- /sailthru/sailthru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru/sailthru.php -------------------------------------------------------------------------------- /sailthru/views/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru/views/admin.php -------------------------------------------------------------------------------- /sailthru/views/display.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru/views/display.php -------------------------------------------------------------------------------- /sailthru/wpcom-helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sailthru/wpcom-helper.php -------------------------------------------------------------------------------- /sem-frame-buster/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/sem-frame-buster/readme.txt -------------------------------------------------------------------------------- /shopify-store/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/shopify-store/readme.txt -------------------------------------------------------------------------------- /shortcode-ui/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/shortcode-ui/Gruntfile.js -------------------------------------------------------------------------------- /shortcode-ui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/shortcode-ui/LICENSE -------------------------------------------------------------------------------- /shortcode-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/shortcode-ui/README.md -------------------------------------------------------------------------------- /shortcode-ui/dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/shortcode-ui/dev.php -------------------------------------------------------------------------------- /shortcode-ui/js/build/field-attachment.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shortcode-ui/js/build/field-color.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shortcode-ui/js/build/field-post-select.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shortcode-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/shortcode-ui/package.json -------------------------------------------------------------------------------- /shortcode-ui/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/shortcode-ui/readme.txt -------------------------------------------------------------------------------- /skyword-2.4/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/skyword-2.4/composer.json -------------------------------------------------------------------------------- /skyword-2.4/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/skyword-2.4/js/admin.js -------------------------------------------------------------------------------- /skyword-2.4/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/skyword-2.4/readme.txt -------------------------------------------------------------------------------- /skyword-2.4/skyword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/skyword-2.4/skyword.php -------------------------------------------------------------------------------- /skyword/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/skyword/css/styles.css -------------------------------------------------------------------------------- /skyword/php/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/skyword/php/options.php -------------------------------------------------------------------------------- /skyword/skyword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/skyword/skyword.php -------------------------------------------------------------------------------- /socialflow/libs/OAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/socialflow/libs/OAuth.php -------------------------------------------------------------------------------- /socialflow/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/socialflow/readme.txt -------------------------------------------------------------------------------- /socialflow/socialflow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/socialflow/socialflow.php -------------------------------------------------------------------------------- /speed-bumps/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/speed-bumps/Gruntfile.js -------------------------------------------------------------------------------- /speed-bumps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/speed-bumps/README.md -------------------------------------------------------------------------------- /speed-bumps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/speed-bumps/package.json -------------------------------------------------------------------------------- /speed-bumps/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/wordpress-vip-plugins/HEAD/speed-bumps/readme.txt -------------------------------------------------------------------------------- /stackcommerce-connect/includes/index.php: -------------------------------------------------------------------------------- 1 |