├── .editorconfig ├── .env ├── .eslintignore ├── .eslintrc-jsdoc.js ├── .github ├── codecov.yml ├── pull_request_template.md └── workflows │ ├── coding-standards.yml │ ├── end-to-end-tests.yml │ ├── javascript-tests.yml │ ├── php-compatibility.yml │ ├── phpunit-tests.yml │ ├── slack-notifications.yml │ ├── test-coverage.yml │ ├── test-npm.yml │ ├── test-old-branches.yml │ └── welcome-new-contributors.yml ├── .gitignore ├── .jshintrc ├── .npmrc ├── .nvmrc ├── CONTRIBUTING.md ├── Gruntfile.js ├── README.md ├── SECURITY.md ├── composer.json ├── docker-compose.yml ├── jsdoc.conf.json ├── package.json ├── phpcompat.xml.dist ├── phpcs.xml.dist ├── phpunit.xml.dist ├── src ├── _index.php ├── index.php ├── js │ ├── _enqueues │ │ ├── admin │ │ │ ├── application-passwords.js │ │ │ ├── auth-app.js │ │ │ ├── comment.js │ │ │ ├── common.js │ │ │ ├── custom-background.js │ │ │ ├── custom-header.js │ │ │ ├── edit-comments.js │ │ │ ├── inline-edit-post.js │ │ │ ├── inline-edit-tax.js │ │ │ ├── link.js │ │ │ ├── media-upload.js │ │ │ ├── media.js │ │ │ ├── plugin-install.js │ │ │ ├── post.js │ │ │ ├── postbox.js │ │ │ ├── privacy-tools.js │ │ │ ├── set-post-thumbnail.js │ │ │ ├── site-health.js │ │ │ ├── tags-box.js │ │ │ ├── tags-suggest.js │ │ │ ├── tags.js │ │ │ ├── user-profile.js │ │ │ ├── widgets.js │ │ │ └── xfn.js │ │ ├── deprecated │ │ │ └── media-gallery.js │ │ ├── lib │ │ │ ├── accordion.js │ │ │ ├── admin-bar.js │ │ │ ├── ajax-response.js │ │ │ ├── auth-check.js │ │ │ ├── color-picker.js │ │ │ ├── comment-reply.js │ │ │ ├── cookies.js │ │ │ ├── dialog.js │ │ │ ├── embed-template.js │ │ │ ├── emoji-loader.js │ │ │ ├── gallery.js │ │ │ ├── image-edit.js │ │ │ ├── language-chooser.js │ │ │ ├── link.js │ │ │ ├── list-revisions.js │ │ │ ├── lists.js │ │ │ ├── nav-menu.js │ │ │ ├── pointer.js │ │ │ ├── quicktags.js │ │ │ ├── user-suggest.js │ │ │ └── zxcvbn-async.js │ │ ├── vendor │ │ │ ├── README.md │ │ │ ├── codemirror │ │ │ │ ├── codemirror.min.css │ │ │ │ ├── codemirror.min.js │ │ │ │ ├── csslint.js │ │ │ │ ├── esprima.js │ │ │ │ ├── fakejshint.js │ │ │ │ ├── htmlhint-kses.js │ │ │ │ ├── htmlhint.js │ │ │ │ └── jsonlint.js │ │ │ ├── colorpicker.js │ │ │ ├── crop │ │ │ │ ├── cropper.css │ │ │ │ ├── cropper.js │ │ │ │ ├── marqueeHoriz.gif │ │ │ │ └── marqueeVert.gif │ │ │ ├── deprecated │ │ │ │ ├── suggest.js │ │ │ │ └── suggest.min.js │ │ │ ├── farbtastic.js │ │ │ ├── imgareaselect │ │ │ │ ├── border-anim-h.gif │ │ │ │ ├── border-anim-v.gif │ │ │ │ ├── imgareaselect.css │ │ │ │ ├── jquery.imgareaselect.js │ │ │ │ └── jquery.imgareaselect.min.js │ │ │ ├── iris.min.js │ │ │ ├── jcrop │ │ │ │ ├── Jcrop.gif │ │ │ │ ├── jquery.Jcrop.min.css │ │ │ │ └── jquery.Jcrop.min.js │ │ │ ├── jquery │ │ │ │ ├── jquery-migrate.js │ │ │ │ ├── jquery-migrate.min.js │ │ │ │ ├── jquery.color.min.js │ │ │ │ ├── jquery.hotkeys.js │ │ │ │ ├── jquery.hotkeys.min.js │ │ │ │ ├── jquery.masonry.js │ │ │ │ ├── jquery.masonry.min.js │ │ │ │ ├── jquery.query.js │ │ │ │ ├── jquery.schedule.js │ │ │ │ ├── jquery.serialize-object.js │ │ │ │ ├── jquery.table-hotkeys.js │ │ │ │ ├── jquery.table-hotkeys.min.js │ │ │ │ ├── jquery.ui.touch-punch.js │ │ │ │ └── ui │ │ │ │ │ ├── accordion.js │ │ │ │ │ ├── autocomplete.js │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkboxradio.js │ │ │ │ │ ├── controlgroup.js │ │ │ │ │ ├── core.js │ │ │ │ │ ├── datepicker.js │ │ │ │ │ ├── dialog.js │ │ │ │ │ ├── draggable.js │ │ │ │ │ ├── droppable.js │ │ │ │ │ ├── effect-blind.js │ │ │ │ │ ├── effect-bounce.js │ │ │ │ │ ├── effect-clip.js │ │ │ │ │ ├── effect-drop.js │ │ │ │ │ ├── effect-explode.js │ │ │ │ │ ├── effect-fade.js │ │ │ │ │ ├── effect-fold.js │ │ │ │ │ ├── effect-highlight.js │ │ │ │ │ ├── effect-puff.js │ │ │ │ │ ├── effect-pulsate.js │ │ │ │ │ ├── effect-scale.js │ │ │ │ │ ├── effect-shake.js │ │ │ │ │ ├── effect-size.js │ │ │ │ │ ├── effect-slide.js │ │ │ │ │ ├── effect-transfer.js │ │ │ │ │ ├── effect.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── mouse.js │ │ │ │ │ ├── progressbar.js │ │ │ │ │ ├── resizable.js │ │ │ │ │ ├── selectable.js │ │ │ │ │ ├── selectmenu.js │ │ │ │ │ ├── slider.js │ │ │ │ │ ├── sortable.js │ │ │ │ │ ├── spinner.js │ │ │ │ │ ├── tabs.js │ │ │ │ │ └── tooltip.js │ │ │ ├── json2.js │ │ │ ├── mediaelement │ │ │ │ ├── mediaelement-and-player.js │ │ │ │ ├── mediaelement-and-player.min.js │ │ │ │ ├── mediaelement-migrate.js │ │ │ │ ├── mediaelement.js │ │ │ │ ├── mediaelement.min.js │ │ │ │ ├── mediaelementplayer-legacy.css │ │ │ │ ├── mediaelementplayer-legacy.min.css │ │ │ │ ├── mediaelementplayer.css │ │ │ │ ├── mediaelementplayer.min.css │ │ │ │ ├── mejs-controls.png │ │ │ │ ├── mejs-controls.svg │ │ │ │ ├── renderers │ │ │ │ │ ├── vimeo.js │ │ │ │ │ └── vimeo.min.js │ │ │ │ ├── wp-mediaelement.css │ │ │ │ ├── wp-mediaelement.js │ │ │ │ └── wp-playlist.js │ │ │ ├── plupload │ │ │ │ ├── handlers.js │ │ │ │ ├── license.txt │ │ │ │ ├── moxie.js │ │ │ │ ├── plupload.js │ │ │ │ └── wp-plupload.js │ │ │ ├── swfobject.js │ │ │ ├── swfupload │ │ │ │ ├── handlers.js │ │ │ │ ├── handlers.min.js │ │ │ │ ├── license.txt │ │ │ │ └── swfupload.js │ │ │ ├── thickbox │ │ │ │ ├── loadingAnimation.gif │ │ │ │ ├── macFFBgHack.png │ │ │ │ ├── thickbox.css │ │ │ │ └── thickbox.js │ │ │ ├── tinymce │ │ │ │ ├── langs │ │ │ │ │ └── wp-langs-en.js │ │ │ │ ├── license.txt │ │ │ │ ├── plugins │ │ │ │ │ ├── charmap │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── colorpicker │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── compat3x │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── dialog.css │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── directionality │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── fullscreen │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── hr │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── image │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── link │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── lists │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── media │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── paste │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── tabfocus │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── textcolor │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── wordpress │ │ │ │ │ │ └── plugin.js │ │ │ │ │ ├── wpautoresize │ │ │ │ │ │ └── plugin.js │ │ │ │ │ ├── wpdialogs │ │ │ │ │ │ └── plugin.js │ │ │ │ │ ├── wpeditimage │ │ │ │ │ │ └── plugin.js │ │ │ │ │ ├── wpemoji │ │ │ │ │ │ └── plugin.js │ │ │ │ │ ├── wpgallery │ │ │ │ │ │ └── plugin.js │ │ │ │ │ ├── wplink │ │ │ │ │ │ └── plugin.js │ │ │ │ │ ├── wptextpattern │ │ │ │ │ │ └── plugin.js │ │ │ │ │ └── wpview │ │ │ │ │ │ └── plugin.js │ │ │ │ ├── skins │ │ │ │ │ ├── lightgray │ │ │ │ │ │ ├── content.inline.min.css │ │ │ │ │ │ ├── content.min.css │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── tinymce-small.eot │ │ │ │ │ │ │ ├── tinymce-small.svg │ │ │ │ │ │ │ ├── tinymce-small.ttf │ │ │ │ │ │ │ ├── tinymce-small.woff │ │ │ │ │ │ │ ├── tinymce.eot │ │ │ │ │ │ │ ├── tinymce.svg │ │ │ │ │ │ │ ├── tinymce.ttf │ │ │ │ │ │ │ └── tinymce.woff │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── anchor.gif │ │ │ │ │ │ │ ├── loader.gif │ │ │ │ │ │ │ ├── object.gif │ │ │ │ │ │ │ └── trans.gif │ │ │ │ │ │ └── skin.min.css │ │ │ │ │ └── wordpress │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── audio.png │ │ │ │ │ │ ├── dashicon-edit.png │ │ │ │ │ │ ├── dashicon-no.png │ │ │ │ │ │ ├── embedded.png │ │ │ │ │ │ ├── gallery-2x.png │ │ │ │ │ │ ├── gallery.png │ │ │ │ │ │ ├── more-2x.png │ │ │ │ │ │ ├── more.png │ │ │ │ │ │ ├── pagebreak-2x.png │ │ │ │ │ │ ├── pagebreak.png │ │ │ │ │ │ ├── playlist-audio.png │ │ │ │ │ │ ├── playlist-video.png │ │ │ │ │ │ └── video.png │ │ │ │ │ │ └── wp-content.css │ │ │ │ ├── themes │ │ │ │ │ ├── inlite │ │ │ │ │ │ ├── theme.js │ │ │ │ │ │ └── theme.min.js │ │ │ │ │ └── modern │ │ │ │ │ │ ├── theme.js │ │ │ │ │ │ └── theme.min.js │ │ │ │ ├── tiny_mce_popup.js │ │ │ │ ├── tinymce.js │ │ │ │ ├── tinymce.min.js │ │ │ │ ├── utils │ │ │ │ │ ├── editable_selects.js │ │ │ │ │ ├── form_utils.js │ │ │ │ │ ├── mctabs.js │ │ │ │ │ └── validate.js │ │ │ │ └── wp-tinymce.php │ │ │ ├── tw-sack.js │ │ │ └── zxcvbn.min.js │ │ └── wp │ │ │ ├── api-request.js │ │ │ ├── api.js │ │ │ ├── autosave.js │ │ │ ├── backbone.js │ │ │ ├── code-editor.js │ │ │ ├── custom-header.js │ │ │ ├── customize │ │ │ ├── base.js │ │ │ ├── controls.js │ │ │ ├── loader.js │ │ │ ├── models.js │ │ │ ├── nav-menus.js │ │ │ ├── preview-nav-menus.js │ │ │ ├── preview-widgets.js │ │ │ ├── preview.js │ │ │ ├── selective-refresh.js │ │ │ ├── views.js │ │ │ └── widgets.js │ │ │ ├── dashboard.js │ │ │ ├── editor │ │ │ ├── base.js │ │ │ └── dfw.js │ │ │ ├── embed.js │ │ │ ├── emoji.js │ │ │ ├── heartbeat.js │ │ │ ├── mce-view.js │ │ │ ├── media │ │ │ ├── audiovideo.js │ │ │ ├── editor.js │ │ │ ├── grid.js │ │ │ ├── models.js │ │ │ └── views.js │ │ │ ├── password-strength-meter.js │ │ │ ├── revisions.js │ │ │ ├── sanitize.js │ │ │ ├── shortcode.js │ │ │ ├── svg-painter.js │ │ │ ├── theme-plugin-editor.js │ │ │ ├── theme.js │ │ │ ├── updates.js │ │ │ ├── util.js │ │ │ ├── utils │ │ │ └── word-count.js │ │ │ └── widgets │ │ │ ├── custom-html.js │ │ │ ├── media-audio.js │ │ │ ├── media-gallery.js │ │ │ ├── media-image.js │ │ │ ├── media-video.js │ │ │ ├── media.js │ │ │ └── text.js │ └── media │ │ ├── controllers │ │ ├── audio-details.js │ │ ├── collection-add.js │ │ ├── collection-edit.js │ │ ├── cropper.js │ │ ├── customize-image-cropper.js │ │ ├── edit-attachment-metadata.js │ │ ├── edit-image.js │ │ ├── embed.js │ │ ├── featured-image.js │ │ ├── gallery-add.js │ │ ├── gallery-edit.js │ │ ├── image-details.js │ │ ├── library.js │ │ ├── media-library.js │ │ ├── region.js │ │ ├── replace-image.js │ │ ├── site-icon-cropper.js │ │ ├── state-machine.js │ │ ├── state.js │ │ └── video-details.js │ │ ├── models │ │ ├── attachment.js │ │ ├── attachments.js │ │ ├── post-image.js │ │ ├── post-media.js │ │ ├── query.js │ │ └── selection.js │ │ ├── routers │ │ └── manage.js │ │ ├── utils │ │ └── selection-sync.js │ │ └── views │ │ ├── attachment-compat.js │ │ ├── attachment-filters.js │ │ ├── attachment-filters │ │ ├── all.js │ │ ├── date.js │ │ └── uploaded.js │ │ ├── attachment.js │ │ ├── attachment │ │ ├── details-two-column.js │ │ ├── details.js │ │ ├── edit-library.js │ │ ├── edit-selection.js │ │ ├── library.js │ │ └── selection.js │ │ ├── attachments.js │ │ ├── attachments │ │ ├── browser.js │ │ └── selection.js │ │ ├── audio-details.js │ │ ├── button-group.js │ │ ├── button.js │ │ ├── button │ │ ├── delete-selected-permanently.js │ │ ├── delete-selected.js │ │ └── select-mode-toggle.js │ │ ├── cropper.js │ │ ├── edit-image-details.js │ │ ├── edit-image.js │ │ ├── embed.js │ │ ├── embed │ │ ├── image.js │ │ ├── link.js │ │ └── url.js │ │ ├── focus-manager.js │ │ ├── frame.js │ │ ├── frame │ │ ├── audio-details.js │ │ ├── edit-attachments.js │ │ ├── image-details.js │ │ ├── manage.js │ │ ├── media-details.js │ │ ├── post.js │ │ ├── select.js │ │ └── video-details.js │ │ ├── heading.js │ │ ├── iframe.js │ │ ├── image-details.js │ │ ├── label.js │ │ ├── media-details.js │ │ ├── media-frame.js │ │ ├── menu-item.js │ │ ├── menu.js │ │ ├── modal.js │ │ ├── priority-list.js │ │ ├── router-item.js │ │ ├── router.js │ │ ├── search.js │ │ ├── selection.js │ │ ├── settings.js │ │ ├── settings │ │ ├── attachment-display.js │ │ ├── gallery.js │ │ └── playlist.js │ │ ├── sidebar.js │ │ ├── site-icon-cropper.js │ │ ├── site-icon-preview.js │ │ ├── spinner.js │ │ ├── toolbar.js │ │ ├── toolbar │ │ ├── embed.js │ │ └── select.js │ │ ├── uploader │ │ ├── editor.js │ │ ├── inline.js │ │ ├── status-error.js │ │ ├── status.js │ │ └── window.js │ │ ├── video-details.js │ │ └── view.js ├── license.txt ├── readme.html ├── wp-activate.php ├── wp-admin │ ├── _index.php │ ├── about.php │ ├── admin-ajax.php │ ├── admin-footer.php │ ├── admin-functions.php │ ├── admin-header.php │ ├── admin-post.php │ ├── admin.php │ ├── async-upload.php │ ├── authorize-application.php │ ├── comment.php │ ├── credits.php │ ├── css │ │ ├── about.css │ │ ├── admin-menu.css │ │ ├── code-editor.css │ │ ├── color-picker.css │ │ ├── colors │ │ │ ├── _admin.scss │ │ │ ├── _mixins.scss │ │ │ ├── _variables.scss │ │ │ ├── blue │ │ │ │ └── colors.scss │ │ │ ├── coffee │ │ │ │ └── colors.scss │ │ │ ├── ectoplasm │ │ │ │ └── colors.scss │ │ │ ├── light │ │ │ │ └── colors.scss │ │ │ ├── midnight │ │ │ │ └── colors.scss │ │ │ ├── modern │ │ │ │ └── colors.scss │ │ │ ├── ocean │ │ │ │ └── colors.scss │ │ │ └── sunrise │ │ │ │ └── colors.scss │ │ ├── common.css │ │ ├── customize-controls.css │ │ ├── customize-nav-menus.css │ │ ├── customize-widgets.css │ │ ├── dashboard.css │ │ ├── deprecated-media.css │ │ ├── edit.css │ │ ├── farbtastic.css │ │ ├── forms.css │ │ ├── install.css │ │ ├── l10n.css │ │ ├── list-tables.css │ │ ├── login.css │ │ ├── media.css │ │ ├── nav-menus.css │ │ ├── revisions.css │ │ ├── site-health.css │ │ ├── site-icon.css │ │ ├── themes.css │ │ ├── widgets.css │ │ └── wp-admin.css │ ├── custom-background.php │ ├── custom-header.php │ ├── customize.php │ ├── edit-comments.php │ ├── edit-form-advanced.php │ ├── edit-form-blocks.php │ ├── edit-form-comment.php │ ├── edit-link-form.php │ ├── edit-tag-form.php │ ├── edit-tags.php │ ├── edit.php │ ├── erase-personal-data.php │ ├── export-personal-data.php │ ├── export.php │ ├── freedoms.php │ ├── images │ │ ├── about-header-about.svg │ │ ├── about-header-credits.svg │ │ ├── about-header-freedoms.svg │ │ ├── about-header-privacy.svg │ │ ├── align-center-2x.png │ │ ├── align-center.png │ │ ├── align-left-2x.png │ │ ├── align-left.png │ │ ├── align-none-2x.png │ │ ├── align-none.png │ │ ├── align-right-2x.png │ │ ├── align-right.png │ │ ├── arrows-2x.png │ │ ├── arrows.png │ │ ├── browser-rtl.png │ │ ├── browser.png │ │ ├── bubble_bg-2x.gif │ │ ├── bubble_bg.gif │ │ ├── comment-grey-bubble-2x.png │ │ ├── comment-grey-bubble.png │ │ ├── date-button-2x.gif │ │ ├── date-button.gif │ │ ├── freedom-1.svg │ │ ├── freedom-2.svg │ │ ├── freedom-3.svg │ │ ├── freedom-4.svg │ │ ├── generic.png │ │ ├── icons32-2x.png │ │ ├── icons32-vs-2x.png │ │ ├── icons32-vs.png │ │ ├── icons32.png │ │ ├── imgedit-icons-2x.png │ │ ├── imgedit-icons.png │ │ ├── list-2x.png │ │ ├── list.png │ │ ├── loading.gif │ │ ├── marker.png │ │ ├── mask.png │ │ ├── media-button-2x.png │ │ ├── media-button-image.gif │ │ ├── media-button-music.gif │ │ ├── media-button-other.gif │ │ ├── media-button-video.gif │ │ ├── media-button.png │ │ ├── menu-2x.png │ │ ├── menu-vs-2x.png │ │ ├── menu-vs.png │ │ ├── menu.png │ │ ├── no.png │ │ ├── post-formats-vs.png │ │ ├── post-formats.png │ │ ├── post-formats32-vs.png │ │ ├── post-formats32.png │ │ ├── privacy.svg │ │ ├── resize-2x.gif │ │ ├── resize-rtl-2x.gif │ │ ├── resize-rtl.gif │ │ ├── resize.gif │ │ ├── se.png │ │ ├── sort-2x.gif │ │ ├── sort.gif │ │ ├── spinner-2x.gif │ │ ├── spinner.gif │ │ ├── stars-2x.png │ │ ├── stars.png │ │ ├── w-logo-blue.png │ │ ├── w-logo-white.png │ │ ├── wheel.png │ │ ├── wordpress-logo-white.svg │ │ ├── wordpress-logo.png │ │ ├── wordpress-logo.svg │ │ ├── wpspin_light-2x.gif │ │ ├── wpspin_light.gif │ │ ├── xit-2x.gif │ │ ├── xit.gif │ │ └── yes.png │ ├── import.php │ ├── includes │ │ ├── admin-filters.php │ │ ├── admin.php │ │ ├── ajax-actions.php │ │ ├── bookmark.php │ │ ├── class-automatic-upgrader-skin.php │ │ ├── class-bulk-plugin-upgrader-skin.php │ │ ├── class-bulk-theme-upgrader-skin.php │ │ ├── class-bulk-upgrader-skin.php │ │ ├── class-core-upgrader.php │ │ ├── class-custom-background.php │ │ ├── class-custom-image-header.php │ │ ├── class-file-upload-upgrader.php │ │ ├── class-ftp-pure.php │ │ ├── class-ftp-sockets.php │ │ ├── class-ftp.php │ │ ├── class-language-pack-upgrader-skin.php │ │ ├── class-language-pack-upgrader.php │ │ ├── class-pclzip.php │ │ ├── class-plugin-installer-skin.php │ │ ├── class-plugin-upgrader-skin.php │ │ ├── class-plugin-upgrader.php │ │ ├── class-theme-installer-skin.php │ │ ├── class-theme-upgrader-skin.php │ │ ├── class-theme-upgrader.php │ │ ├── class-walker-category-checklist.php │ │ ├── class-walker-nav-menu-checklist.php │ │ ├── class-walker-nav-menu-edit.php │ │ ├── class-wp-ajax-upgrader-skin.php │ │ ├── class-wp-application-passwords-list-table.php │ │ ├── class-wp-automatic-updater.php │ │ ├── class-wp-comments-list-table.php │ │ ├── class-wp-community-events.php │ │ ├── class-wp-debug-data.php │ │ ├── class-wp-filesystem-base.php │ │ ├── class-wp-filesystem-direct.php │ │ ├── class-wp-filesystem-ftpext.php │ │ ├── class-wp-filesystem-ftpsockets.php │ │ ├── class-wp-filesystem-ssh2.php │ │ ├── class-wp-importer.php │ │ ├── class-wp-internal-pointers.php │ │ ├── class-wp-links-list-table.php │ │ ├── class-wp-list-table-compat.php │ │ ├── class-wp-list-table.php │ │ ├── class-wp-media-list-table.php │ │ ├── class-wp-ms-sites-list-table.php │ │ ├── class-wp-ms-themes-list-table.php │ │ ├── class-wp-ms-users-list-table.php │ │ ├── class-wp-plugin-install-list-table.php │ │ ├── class-wp-plugins-list-table.php │ │ ├── class-wp-post-comments-list-table.php │ │ ├── class-wp-posts-list-table.php │ │ ├── class-wp-privacy-data-export-requests-list-table.php │ │ ├── class-wp-privacy-data-removal-requests-list-table.php │ │ ├── class-wp-privacy-policy-content.php │ │ ├── class-wp-privacy-requests-table.php │ │ ├── class-wp-screen.php │ │ ├── class-wp-site-health-auto-updates.php │ │ ├── class-wp-site-health.php │ │ ├── class-wp-site-icon.php │ │ ├── class-wp-terms-list-table.php │ │ ├── class-wp-theme-install-list-table.php │ │ ├── class-wp-themes-list-table.php │ │ ├── class-wp-upgrader-skin.php │ │ ├── class-wp-upgrader-skins.php │ │ ├── class-wp-upgrader.php │ │ ├── class-wp-users-list-table.php │ │ ├── comment.php │ │ ├── continents-cities.php │ │ ├── credits.php │ │ ├── dashboard.php │ │ ├── deprecated.php │ │ ├── edit-tag-messages.php │ │ ├── export.php │ │ ├── file.php │ │ ├── image-edit.php │ │ ├── image.php │ │ ├── import.php │ │ ├── list-table.php │ │ ├── media.php │ │ ├── menu.php │ │ ├── meta-boxes.php │ │ ├── misc.php │ │ ├── ms-admin-filters.php │ │ ├── ms-deprecated.php │ │ ├── ms.php │ │ ├── nav-menu.php │ │ ├── network.php │ │ ├── noop.php │ │ ├── options.php │ │ ├── plugin-install.php │ │ ├── plugin.php │ │ ├── post.php │ │ ├── privacy-tools.php │ │ ├── revision.php │ │ ├── schema.php │ │ ├── screen.php │ │ ├── taxonomy.php │ │ ├── template.php │ │ ├── theme-install.php │ │ ├── theme.php │ │ ├── translation-install.php │ │ ├── update-core.php │ │ ├── update.php │ │ ├── upgrade.php │ │ ├── user.php │ │ └── widgets.php │ ├── index.php │ ├── install-helper.php │ ├── install.php │ ├── link-add.php │ ├── link-manager.php │ ├── link-parse-opml.php │ ├── link.php │ ├── load-scripts.php │ ├── load-styles.php │ ├── maint │ │ └── repair.php │ ├── media-new.php │ ├── media-upload.php │ ├── media.php │ ├── menu-header.php │ ├── menu.php │ ├── moderation.php │ ├── ms-admin.php │ ├── ms-delete-site.php │ ├── ms-edit.php │ ├── ms-options.php │ ├── ms-sites.php │ ├── ms-themes.php │ ├── ms-upgrade-network.php │ ├── ms-users.php │ ├── my-sites.php │ ├── nav-menus.php │ ├── network.php │ ├── network │ │ ├── about.php │ │ ├── admin.php │ │ ├── credits.php │ │ ├── edit.php │ │ ├── freedoms.php │ │ ├── index.php │ │ ├── menu.php │ │ ├── plugin-editor.php │ │ ├── plugin-install.php │ │ ├── plugins.php │ │ ├── privacy.php │ │ ├── profile.php │ │ ├── settings.php │ │ ├── setup.php │ │ ├── site-info.php │ │ ├── site-new.php │ │ ├── site-settings.php │ │ ├── site-themes.php │ │ ├── site-users.php │ │ ├── sites.php │ │ ├── theme-editor.php │ │ ├── theme-install.php │ │ ├── themes.php │ │ ├── update-core.php │ │ ├── update.php │ │ ├── upgrade.php │ │ ├── user-edit.php │ │ ├── user-new.php │ │ └── users.php │ ├── options-discussion.php │ ├── options-general.php │ ├── options-head.php │ ├── options-media.php │ ├── options-permalink.php │ ├── options-privacy.php │ ├── options-reading.php │ ├── options-writing.php │ ├── options.php │ ├── plugin-editor.php │ ├── plugin-install.php │ ├── plugins.php │ ├── post-new.php │ ├── post.php │ ├── press-this.php │ ├── privacy-policy-guide.php │ ├── privacy.php │ ├── profile.php │ ├── revision.php │ ├── setup-config.php │ ├── site-health-info.php │ ├── site-health.php │ ├── term.php │ ├── theme-editor.php │ ├── theme-install.php │ ├── themes.php │ ├── tools.php │ ├── update-core.php │ ├── update.php │ ├── upgrade-functions.php │ ├── upgrade.php │ ├── upload.php │ ├── user-edit.php │ ├── user-new.php │ ├── user │ │ ├── about.php │ │ ├── admin.php │ │ ├── credits.php │ │ ├── freedoms.php │ │ ├── index.php │ │ ├── menu.php │ │ ├── privacy.php │ │ ├── profile.php │ │ └── user-edit.php │ ├── users.php │ ├── widgets-form-blocks.php │ ├── widgets-form.php │ └── widgets.php ├── wp-blog-header.php ├── wp-comments-post.php ├── wp-content │ ├── index.php │ ├── plugins │ │ ├── hello.php │ │ └── index.php │ └── themes │ │ ├── index.php │ │ ├── twentyeleven │ │ ├── 404.php │ │ ├── archive.php │ │ ├── author.php │ │ ├── blocks.css │ │ ├── category.php │ │ ├── colors │ │ │ └── dark.css │ │ ├── comments.php │ │ ├── content-aside.php │ │ ├── content-featured.php │ │ ├── content-gallery.php │ │ ├── content-image.php │ │ ├── content-intro.php │ │ ├── content-link.php │ │ ├── content-page.php │ │ ├── content-quote.php │ │ ├── content-single.php │ │ ├── content-status.php │ │ ├── content.php │ │ ├── editor-blocks.css │ │ ├── editor-style-rtl.css │ │ ├── editor-style.css │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── image.php │ │ ├── images │ │ │ ├── comment-arrow-bypostauthor-dark-rtl.png │ │ │ ├── comment-arrow-bypostauthor-dark.png │ │ │ ├── comment-arrow-bypostauthor-rtl.png │ │ │ ├── comment-arrow-bypostauthor.png │ │ │ ├── comment-arrow-dark-rtl.png │ │ │ ├── comment-arrow-dark.png │ │ │ ├── comment-arrow-rtl.png │ │ │ ├── comment-arrow.png │ │ │ ├── comment-bubble-dark-rtl.png │ │ │ ├── comment-bubble-dark.png │ │ │ ├── comment-bubble-rtl.png │ │ │ ├── comment-bubble.png │ │ │ ├── headers │ │ │ │ ├── chessboard-thumbnail.jpg │ │ │ │ ├── chessboard.jpg │ │ │ │ ├── hanoi-thumbnail.jpg │ │ │ │ ├── hanoi.jpg │ │ │ │ ├── lanterns-thumbnail.jpg │ │ │ │ ├── lanterns.jpg │ │ │ │ ├── pine-cone-thumbnail.jpg │ │ │ │ ├── pine-cone.jpg │ │ │ │ ├── shore-thumbnail.jpg │ │ │ │ ├── shore.jpg │ │ │ │ ├── trolley-thumbnail.jpg │ │ │ │ ├── trolley.jpg │ │ │ │ ├── wheel-thumbnail.jpg │ │ │ │ ├── wheel.jpg │ │ │ │ ├── willow-thumbnail.jpg │ │ │ │ └── willow.jpg │ │ │ ├── patterns │ │ │ │ ├── pattern-flower.jpg │ │ │ │ └── pattern-woman.jpg │ │ │ ├── search.png │ │ │ └── wordpress.png │ │ ├── inc │ │ │ ├── block-patterns.php │ │ │ ├── images │ │ │ │ ├── content-sidebar.png │ │ │ │ ├── content.png │ │ │ │ ├── dark.png │ │ │ │ ├── light.png │ │ │ │ └── sidebar-content.png │ │ │ ├── theme-customizer.js │ │ │ ├── theme-options.css │ │ │ ├── theme-options.js │ │ │ ├── theme-options.php │ │ │ └── widgets.php │ │ ├── index.php │ │ ├── js │ │ │ ├── html5.js │ │ │ └── showcase.js │ │ ├── languages │ │ │ └── twentyeleven.pot │ │ ├── license.txt │ │ ├── page.php │ │ ├── readme.txt │ │ ├── rtl.css │ │ ├── screenshot.png │ │ ├── search.php │ │ ├── searchform.php │ │ ├── showcase.php │ │ ├── sidebar-footer.php │ │ ├── sidebar-page.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── tag.php │ │ ├── twentyfifteen │ │ ├── 404.php │ │ ├── archive.php │ │ ├── assets │ │ │ ├── pier-seagull.jpg │ │ │ ├── pier-seagulls.jpg │ │ │ └── pier-sunset.jpg │ │ ├── author-bio.php │ │ ├── comments.php │ │ ├── content-link.php │ │ ├── content-none.php │ │ ├── content-page.php │ │ ├── content-search.php │ │ ├── content.php │ │ ├── css │ │ │ ├── blocks.css │ │ │ ├── editor-blocks.css │ │ │ ├── editor-style.css │ │ │ ├── ie.css │ │ │ └── ie7.css │ │ ├── footer.php │ │ ├── functions.php │ │ ├── genericons │ │ │ ├── COPYING.txt │ │ │ ├── Genericons.eot │ │ │ ├── Genericons.svg │ │ │ ├── Genericons.ttf │ │ │ ├── Genericons.woff │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ └── genericons.css │ │ ├── header.php │ │ ├── image.php │ │ ├── inc │ │ │ ├── back-compat.php │ │ │ ├── block-patterns.php │ │ │ ├── custom-header.php │ │ │ ├── customizer.php │ │ │ └── template-tags.php │ │ ├── index.php │ │ ├── js │ │ │ ├── color-scheme-control.js │ │ │ ├── customize-preview.js │ │ │ ├── functions.js │ │ │ ├── html5.js │ │ │ ├── keyboard-image-navigation.js │ │ │ └── skip-link-focus-fix.js │ │ ├── page.php │ │ ├── readme.txt │ │ ├── rtl.css │ │ ├── screenshot.png │ │ ├── search.php │ │ ├── sidebar.php │ │ ├── single.php │ │ └── style.css │ │ ├── twentyfourteen │ │ ├── 404.php │ │ ├── archive.php │ │ ├── author.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── content-aside.php │ │ ├── content-audio.php │ │ ├── content-featured-post.php │ │ ├── content-gallery.php │ │ ├── content-image.php │ │ ├── content-link.php │ │ ├── content-none.php │ │ ├── content-page.php │ │ ├── content-quote.php │ │ ├── content-video.php │ │ ├── content.php │ │ ├── css │ │ │ ├── blocks.css │ │ │ ├── editor-blocks.css │ │ │ ├── editor-style.css │ │ │ └── ie.css │ │ ├── featured-content.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── genericons │ │ │ ├── COPYING.txt │ │ │ ├── Genericons-Regular.otf │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── font │ │ │ │ ├── genericons-regular-webfont.eot │ │ │ │ ├── genericons-regular-webfont.svg │ │ │ │ ├── genericons-regular-webfont.ttf │ │ │ │ └── genericons-regular-webfont.woff │ │ │ └── genericons.css │ │ ├── header.php │ │ ├── image.php │ │ ├── images │ │ │ ├── bridge.jpg │ │ │ ├── clouds.jpg │ │ │ ├── pattern-dark.svg │ │ │ ├── pattern-light.svg │ │ │ ├── person.jpg │ │ │ ├── street.jpg │ │ │ └── sunset.jpg │ │ ├── inc │ │ │ ├── back-compat.php │ │ │ ├── block-patterns.php │ │ │ ├── custom-header.php │ │ │ ├── customizer.php │ │ │ ├── featured-content.php │ │ │ ├── template-tags.php │ │ │ └── widgets.php │ │ ├── index.php │ │ ├── js │ │ │ ├── customizer.js │ │ │ ├── featured-content-admin.js │ │ │ ├── functions.js │ │ │ ├── html5.js │ │ │ ├── keyboard-image-navigation.js │ │ │ └── slider.js │ │ ├── page-templates │ │ │ ├── contributors.php │ │ │ └── full-width.php │ │ ├── page.php │ │ ├── readme.txt │ │ ├── rtl.css │ │ ├── screenshot.png │ │ ├── search.php │ │ ├── sidebar-content.php │ │ ├── sidebar-footer.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ ├── tag.php │ │ └── taxonomy-post_format.php │ │ ├── twentynineteen │ │ ├── 404.php │ │ ├── archive.php │ │ ├── classes │ │ │ ├── class-twentynineteen-svg-icons.php │ │ │ └── class-twentynineteen-walker-comment.php │ │ ├── comments.php │ │ ├── fonts │ │ │ ├── NonBreakingSpaceOverride.woff │ │ │ └── NonBreakingSpaceOverride.woff2 │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── image.php │ │ ├── images │ │ │ ├── pattern_01.jpg │ │ │ ├── pattern_02.jpg │ │ │ ├── pattern_03.jpg │ │ │ └── pattern_04.jpg │ │ ├── inc │ │ │ ├── back-compat.php │ │ │ ├── block-patterns.php │ │ │ ├── color-patterns.php │ │ │ ├── customizer.php │ │ │ ├── helper-functions.php │ │ │ ├── icon-functions.php │ │ │ ├── template-functions.php │ │ │ └── template-tags.php │ │ ├── index.php │ │ ├── js │ │ │ ├── customize-controls.js │ │ │ ├── customize-preview.js │ │ │ ├── priority-menu.js │ │ │ ├── skip-link-focus-fix.js │ │ │ └── touch-keyboard-navigation.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── page.php │ │ ├── postcss.config.js │ │ ├── print.css │ │ ├── print.scss │ │ ├── readme.txt │ │ ├── sass │ │ │ ├── _normalize.scss │ │ │ ├── blocks │ │ │ │ └── _blocks.scss │ │ │ ├── elements │ │ │ │ ├── _elements.scss │ │ │ │ ├── _lists.scss │ │ │ │ └── _tables.scss │ │ │ ├── forms │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _fields.scss │ │ │ │ └── _forms.scss │ │ │ ├── layout │ │ │ │ └── _layout.scss │ │ │ ├── media │ │ │ │ ├── _captions.scss │ │ │ │ ├── _galleries.scss │ │ │ │ └── _media.scss │ │ │ ├── mixins │ │ │ │ ├── _mixins-master.scss │ │ │ │ └── _utilities.scss │ │ │ ├── modules │ │ │ │ ├── _accessibility.scss │ │ │ │ ├── _alignments.scss │ │ │ │ └── _clearings.scss │ │ │ ├── navigation │ │ │ │ ├── _links.scss │ │ │ │ ├── _menu-footer-navigation.scss │ │ │ │ ├── _menu-main-navigation.scss │ │ │ │ ├── _menu-social-navigation.scss │ │ │ │ ├── _navigation.scss │ │ │ │ └── _next-previous.scss │ │ │ ├── site │ │ │ │ ├── _site.scss │ │ │ │ ├── footer │ │ │ │ │ └── _site-footer.scss │ │ │ │ ├── header │ │ │ │ │ ├── _site-featured-image.scss │ │ │ │ │ └── _site-header.scss │ │ │ │ ├── primary │ │ │ │ │ ├── _archives.scss │ │ │ │ │ ├── _comments.scss │ │ │ │ │ └── _posts-and-pages.scss │ │ │ │ └── secondary │ │ │ │ │ └── _widgets.scss │ │ │ ├── typography │ │ │ │ ├── _copy.scss │ │ │ │ ├── _headings.scss │ │ │ │ └── _typography.scss │ │ │ └── variables-site │ │ │ │ ├── _colors.scss │ │ │ │ ├── _columns.scss │ │ │ │ ├── _fonts.scss │ │ │ │ ├── _structure.scss │ │ │ │ ├── _transitions.scss │ │ │ │ └── _variables-site.scss │ │ ├── screenshot.png │ │ ├── search.php │ │ ├── single.php │ │ ├── style-editor-customizer.css │ │ ├── style-editor-customizer.scss │ │ ├── style-editor.css │ │ ├── style-editor.scss │ │ ├── style-rtl.css │ │ ├── style.css │ │ ├── style.css.map │ │ ├── style.scss │ │ └── template-parts │ │ │ ├── content │ │ │ ├── content-excerpt.php │ │ │ ├── content-none.php │ │ │ ├── content-page.php │ │ │ ├── content-single.php │ │ │ └── content.php │ │ │ ├── footer │ │ │ └── footer-widgets.php │ │ │ ├── header │ │ │ ├── entry-header.php │ │ │ └── site-branding.php │ │ │ └── post │ │ │ ├── author-bio.php │ │ │ └── discussion-meta.php │ │ ├── twentyseventeen │ │ ├── 404.php │ │ ├── archive.php │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── blocks.css │ │ │ │ ├── colors-dark.css │ │ │ │ ├── editor-blocks.css │ │ │ │ ├── editor-style.css │ │ │ │ ├── ie8.css │ │ │ │ └── ie9.css │ │ │ ├── images │ │ │ │ ├── coffee.jpg │ │ │ │ ├── direct-light.jpg │ │ │ │ ├── espresso.jpg │ │ │ │ ├── header.jpg │ │ │ │ ├── sandwich.jpg │ │ │ │ ├── stripes.jpg │ │ │ │ ├── svg-icons.svg │ │ │ │ └── white-border.jpg │ │ │ └── js │ │ │ │ ├── customize-controls.js │ │ │ │ ├── customize-preview.js │ │ │ │ ├── global.js │ │ │ │ ├── html5.js │ │ │ │ ├── jquery.scrollTo.js │ │ │ │ ├── navigation.js │ │ │ │ └── skip-link-focus-fix.js │ │ ├── comments.php │ │ ├── footer.php │ │ ├── front-page.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── inc │ │ │ ├── back-compat.php │ │ │ ├── block-patterns.php │ │ │ ├── color-patterns.php │ │ │ ├── custom-header.php │ │ │ ├── customizer.php │ │ │ ├── icon-functions.php │ │ │ ├── template-functions.php │ │ │ └── template-tags.php │ │ ├── index.php │ │ ├── page.php │ │ ├── readme.txt │ │ ├── rtl.css │ │ ├── screenshot.png │ │ ├── search.php │ │ ├── searchform.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts │ │ │ ├── footer │ │ │ ├── footer-widgets.php │ │ │ └── site-info.php │ │ │ ├── header │ │ │ ├── header-image.php │ │ │ └── site-branding.php │ │ │ ├── navigation │ │ │ └── navigation-top.php │ │ │ ├── page │ │ │ ├── content-front-page-panels.php │ │ │ ├── content-front-page.php │ │ │ └── content-page.php │ │ │ └── post │ │ │ ├── content-audio.php │ │ │ ├── content-excerpt.php │ │ │ ├── content-gallery.php │ │ │ ├── content-image.php │ │ │ ├── content-none.php │ │ │ ├── content-video.php │ │ │ └── content.php │ │ ├── twentysixteen │ │ ├── 404.php │ │ ├── archive.php │ │ ├── comments.php │ │ ├── css │ │ │ ├── blocks.css │ │ │ ├── editor-blocks.css │ │ │ ├── editor-style.css │ │ │ ├── ie.css │ │ │ ├── ie7.css │ │ │ └── ie8.css │ │ ├── footer.php │ │ ├── functions.php │ │ ├── genericons │ │ │ ├── COPYING.txt │ │ │ ├── Genericons.eot │ │ │ ├── Genericons.svg │ │ │ ├── Genericons.ttf │ │ │ ├── Genericons.woff │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ └── genericons.css │ │ ├── header.php │ │ ├── image.php │ │ ├── inc │ │ │ ├── back-compat.php │ │ │ ├── block-patterns.php │ │ │ ├── customizer.php │ │ │ └── template-tags.php │ │ ├── index.php │ │ ├── js │ │ │ ├── color-scheme-control.js │ │ │ ├── customize-preview.js │ │ │ ├── functions.js │ │ │ ├── html5.js │ │ │ ├── keyboard-image-navigation.js │ │ │ └── skip-link-focus-fix.js │ │ ├── page.php │ │ ├── readme.txt │ │ ├── rtl.css │ │ ├── screenshot.png │ │ ├── search.php │ │ ├── searchform.php │ │ ├── sidebar-content-bottom.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── template-parts │ │ │ ├── biography.php │ │ │ ├── content-none.php │ │ │ ├── content-page.php │ │ │ ├── content-search.php │ │ │ ├── content-single.php │ │ │ └── content.php │ │ ├── twentyten │ │ ├── 404.php │ │ ├── archive.php │ │ ├── attachment.php │ │ ├── author.php │ │ ├── block-patterns.php │ │ ├── blocks.css │ │ ├── category.php │ │ ├── comments.php │ │ ├── editor-blocks.css │ │ ├── editor-style-rtl.css │ │ ├── editor-style.css │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── images │ │ │ ├── headers │ │ │ │ ├── berries-thumbnail.jpg │ │ │ │ ├── berries.jpg │ │ │ │ ├── cherryblossoms-thumbnail.jpg │ │ │ │ ├── cherryblossoms.jpg │ │ │ │ ├── concave-thumbnail.jpg │ │ │ │ ├── concave.jpg │ │ │ │ ├── fern-thumbnail.jpg │ │ │ │ ├── fern.jpg │ │ │ │ ├── forestfloor-thumbnail.jpg │ │ │ │ ├── forestfloor.jpg │ │ │ │ ├── inkwell-thumbnail.jpg │ │ │ │ ├── inkwell.jpg │ │ │ │ ├── path-thumbnail.jpg │ │ │ │ ├── path.jpg │ │ │ │ ├── sunset-thumbnail.jpg │ │ │ │ └── sunset.jpg │ │ │ ├── patterns │ │ │ │ ├── pattern-barn.jpg │ │ │ │ ├── pattern-dock.jpg │ │ │ │ └── pattern-lake.jpg │ │ │ └── wordpress.png │ │ ├── index.php │ │ ├── languages │ │ │ └── twentyten.pot │ │ ├── license.txt │ │ ├── loop-attachment.php │ │ ├── loop-page.php │ │ ├── loop-single.php │ │ ├── loop.php │ │ ├── onecolumn-page.php │ │ ├── page.php │ │ ├── readme.txt │ │ ├── rtl.css │ │ ├── screenshot.png │ │ ├── search.php │ │ ├── sidebar-footer.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── tag.php │ │ ├── twentythirteen │ │ ├── 404.php │ │ ├── archive.php │ │ ├── author-bio.php │ │ ├── author.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── content-aside.php │ │ ├── content-audio.php │ │ ├── content-chat.php │ │ ├── content-gallery.php │ │ ├── content-image.php │ │ ├── content-link.php │ │ ├── content-none.php │ │ ├── content-quote.php │ │ ├── content-status.php │ │ ├── content-video.php │ │ ├── content.php │ │ ├── css │ │ │ ├── blocks.css │ │ │ ├── editor-blocks.css │ │ │ ├── editor-style.css │ │ │ └── ie.css │ │ ├── footer.php │ │ ├── functions.php │ │ ├── genericons │ │ │ ├── COPYING.txt │ │ │ ├── Genericons-Regular.otf │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── font │ │ │ │ ├── genericons-regular-webfont.eot │ │ │ │ ├── genericons-regular-webfont.svg │ │ │ │ ├── genericons-regular-webfont.ttf │ │ │ │ └── genericons-regular-webfont.woff │ │ │ └── genericons.css │ │ ├── header.php │ │ ├── image.php │ │ ├── images │ │ │ ├── block-patterns │ │ │ │ ├── bernal-cutaway.jpg │ │ │ │ ├── cylinder-interior.jpg │ │ │ │ ├── dark-red.jpg │ │ │ │ ├── orange.jpg │ │ │ │ ├── toroidal-colony.jpg │ │ │ │ └── torus-interior.jpg │ │ │ ├── dotted-line-2x.png │ │ │ ├── dotted-line-light-2x.png │ │ │ ├── dotted-line-light.png │ │ │ ├── dotted-line.png │ │ │ ├── headers │ │ │ │ ├── circle-thumbnail.png │ │ │ │ ├── circle.png │ │ │ │ ├── diamond-thumbnail.png │ │ │ │ ├── diamond.png │ │ │ │ ├── star-thumbnail.png │ │ │ │ └── star.png │ │ │ ├── search-icon-2x.png │ │ │ └── search-icon.png │ │ ├── inc │ │ │ ├── back-compat.php │ │ │ ├── block-patterns.php │ │ │ └── custom-header.php │ │ ├── index.php │ │ ├── js │ │ │ ├── functions.js │ │ │ ├── html5.js │ │ │ └── theme-customizer.js │ │ ├── page.php │ │ ├── readme.txt │ │ ├── rtl.css │ │ ├── screenshot.png │ │ ├── search.php │ │ ├── sidebar-main.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ ├── tag.php │ │ └── taxonomy-post_format.php │ │ ├── twentytwelve │ │ ├── 404.php │ │ ├── archive.php │ │ ├── author.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── content-aside.php │ │ ├── content-image.php │ │ ├── content-link.php │ │ ├── content-none.php │ │ ├── content-page.php │ │ ├── content-quote.php │ │ ├── content-status.php │ │ ├── content.php │ │ ├── css │ │ │ ├── blocks.css │ │ │ ├── editor-blocks.css │ │ │ └── ie.css │ │ ├── editor-style-rtl.css │ │ ├── editor-style.css │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── image.php │ │ ├── images │ │ │ ├── pattern-jumble-1.jpg │ │ │ ├── pattern-jumble-2.jpg │ │ │ ├── pattern-jumble-3.jpg │ │ │ └── pattern-jumble-4.jpg │ │ ├── inc │ │ │ ├── block-patterns.php │ │ │ └── custom-header.php │ │ ├── index.php │ │ ├── js │ │ │ ├── html5.js │ │ │ ├── navigation.js │ │ │ └── theme-customizer.js │ │ ├── page-templates │ │ │ ├── front-page.php │ │ │ └── full-width.php │ │ ├── page.php │ │ ├── readme.txt │ │ ├── rtl.css │ │ ├── screenshot.png │ │ ├── search.php │ │ ├── sidebar-front.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ └── tag.php │ │ ├── twentytwenty │ │ ├── .stylelintrc.json │ │ ├── 404.php │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── editor-style-block-rtl.css │ │ │ │ ├── editor-style-block.css │ │ │ │ ├── editor-style-classic-rtl.css │ │ │ │ └── editor-style-classic.css │ │ │ ├── fonts │ │ │ │ └── inter │ │ │ │ │ ├── Inter-italic-var.woff2 │ │ │ │ │ └── Inter-upright-var.woff2 │ │ │ ├── images │ │ │ │ ├── 2020-landscape-1.png │ │ │ │ ├── 2020-landscape-2.png │ │ │ │ ├── 2020-square-1.png │ │ │ │ ├── 2020-square-2.png │ │ │ │ ├── 2020-three-quarters-1.png │ │ │ │ ├── 2020-three-quarters-2.png │ │ │ │ ├── 2020-three-quarters-3.png │ │ │ │ └── 2020-three-quarters-4.png │ │ │ └── js │ │ │ │ ├── color-calculations.js │ │ │ │ ├── customize-controls.js │ │ │ │ ├── customize-preview.js │ │ │ │ ├── customize.js │ │ │ │ ├── editor-script-block.js │ │ │ │ ├── index.js │ │ │ │ └── skip-link-focus-fix.js │ │ ├── classes │ │ │ ├── class-twentytwenty-customize.php │ │ │ ├── class-twentytwenty-non-latin-languages.php │ │ │ ├── class-twentytwenty-script-loader.php │ │ │ ├── class-twentytwenty-separator-control.php │ │ │ ├── class-twentytwenty-svg-icons.php │ │ │ ├── class-twentytwenty-walker-comment.php │ │ │ └── class-twentytwenty-walker-page.php │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── inc │ │ │ ├── block-patterns.php │ │ │ ├── custom-css.php │ │ │ ├── starter-content.php │ │ │ ├── svg-icons.php │ │ │ └── template-tags.php │ │ ├── index.php │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── print.css │ │ ├── readme.txt │ │ ├── screenshot.png │ │ ├── searchform.php │ │ ├── singular.php │ │ ├── style-rtl.css │ │ ├── style.css │ │ ├── template-parts │ │ │ ├── content-cover.php │ │ │ ├── content.php │ │ │ ├── entry-author-bio.php │ │ │ ├── entry-header.php │ │ │ ├── featured-image.php │ │ │ ├── footer-menus-widgets.php │ │ │ ├── modal-menu.php │ │ │ ├── modal-search.php │ │ │ ├── navigation.php │ │ │ └── pagination.php │ │ └── templates │ │ │ ├── template-cover.php │ │ │ └── template-full-width.php │ │ └── twentytwentyone │ │ ├── .stylelintignore │ │ ├── .stylelintrc-css.json │ │ ├── .stylelintrc.json │ │ ├── 404.php │ │ ├── archive.php │ │ ├── assets │ │ ├── css │ │ │ ├── custom-color-overrides.css │ │ │ ├── ie-editor.css │ │ │ ├── ie-editor.css.map │ │ │ ├── ie.css │ │ │ ├── ie.css.map │ │ │ ├── print.css │ │ │ ├── print.css.map │ │ │ ├── style-dark-mode-rtl.css │ │ │ ├── style-dark-mode.css │ │ │ ├── style-dark-mode.css.map │ │ │ ├── style-editor-customizer.css │ │ │ ├── style-editor.css │ │ │ └── style-editor.css.map │ │ ├── images │ │ │ ├── Daffodils.jpg │ │ │ ├── Reading.jpg │ │ │ ├── in-the-bois-de-boulogne.jpg │ │ │ ├── playing-in-the-sand.jpg │ │ │ ├── roses-tremieres-hollyhocks-1884.jpg │ │ │ ├── self-portrait-1885.jpg │ │ │ ├── the-garden-at-bougival-1884.jpg │ │ │ ├── villa-with-orange-trees-nice.jpg │ │ │ └── young-woman-in-mauve.jpg │ │ ├── js │ │ │ ├── customize-helpers.js │ │ │ ├── customize-preview.js │ │ │ ├── customize.js │ │ │ ├── dark-mode-toggler.js │ │ │ ├── editor-dark-mode-support.js │ │ │ ├── editor.js │ │ │ ├── palette-colorpicker.js │ │ │ ├── polyfills.js │ │ │ ├── primary-navigation.js │ │ │ ├── responsive-embeds.js │ │ │ └── skip-link-focus-fix.js │ │ └── sass │ │ │ ├── 01-settings │ │ │ ├── file-header.scss │ │ │ ├── fonts.scss │ │ │ └── global.scss │ │ │ ├── 02-tools │ │ │ ├── functions.scss │ │ │ └── mixins.scss │ │ │ ├── 03-generic │ │ │ ├── breakpoints.scss │ │ │ ├── clearings.scss │ │ │ ├── normalize.scss │ │ │ ├── reset.scss │ │ │ └── vertical-margins.scss │ │ │ ├── 04-elements │ │ │ ├── blockquote.scss │ │ │ ├── forms-editor.scss │ │ │ ├── forms.scss │ │ │ ├── links.scss │ │ │ ├── media.scss │ │ │ └── misc.scss │ │ │ ├── 05-blocks │ │ │ ├── _config.scss │ │ │ ├── audio │ │ │ │ └── _style.scss │ │ │ ├── blocks-editor.scss │ │ │ ├── blocks.scss │ │ │ ├── button │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── code │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── columns │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── cover │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── file │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── gallery │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── group │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── heading │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── html │ │ │ │ └── _editor.scss │ │ │ ├── image │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── latest-comments │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── latest-posts │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── legacy │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── list │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── media-text │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── navigation │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── paragraph │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── preformatted │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── pullquote │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── query-loop │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── quote │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── rss │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── search │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── separator │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── social-icons │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── spacer │ │ │ │ └── _style.scss │ │ │ ├── table │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── tag-clould │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ ├── utilities │ │ │ │ ├── _editor.scss │ │ │ │ ├── _font-sizes.scss │ │ │ │ └── _style.scss │ │ │ ├── verse │ │ │ │ ├── _editor.scss │ │ │ │ └── _style.scss │ │ │ └── video │ │ │ │ └── _style.scss │ │ │ ├── 06-components │ │ │ ├── 404.scss │ │ │ ├── archives.scss │ │ │ ├── comments.scss │ │ │ ├── editor.scss │ │ │ ├── entry.scss │ │ │ ├── footer-navigation.scss │ │ │ ├── footer.scss │ │ │ ├── header.scss │ │ │ ├── navigation.scss │ │ │ ├── pagination.scss │ │ │ ├── posts-and-pages.scss │ │ │ ├── search.scss │ │ │ ├── single.scss │ │ │ └── widgets.scss │ │ │ ├── 07-utilities │ │ │ ├── a11y.scss │ │ │ ├── color-palette.scss │ │ │ ├── ie.scss │ │ │ ├── measure.scss │ │ │ └── print.scss │ │ │ ├── style-dark-mode.scss │ │ │ ├── style-editor.scss │ │ │ └── style.scss │ │ ├── classes │ │ ├── class-twenty-twenty-one-custom-colors.php │ │ ├── class-twenty-twenty-one-customize-color-control.php │ │ ├── class-twenty-twenty-one-customize-notice-control.php │ │ ├── class-twenty-twenty-one-customize.php │ │ ├── class-twenty-twenty-one-dark-mode.php │ │ └── class-twenty-twenty-one-svg-icons.php │ │ ├── comments.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── header.php │ │ ├── image.php │ │ ├── inc │ │ ├── back-compat.php │ │ ├── block-patterns.php │ │ ├── block-styles.php │ │ ├── custom-css.php │ │ ├── menu-functions.php │ │ ├── starter-content.php │ │ ├── template-functions.php │ │ └── template-tags.php │ │ ├── index.php │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── page.php │ │ ├── postcss.config.js │ │ ├── readme.txt │ │ ├── screenshot.png │ │ ├── search.php │ │ ├── searchform.php │ │ ├── single.php │ │ ├── style-rtl.css │ │ ├── style.css │ │ ├── style.css.map │ │ └── template-parts │ │ ├── content │ │ ├── content-excerpt.php │ │ ├── content-none.php │ │ ├── content-page.php │ │ ├── content-single.php │ │ └── content.php │ │ ├── excerpt │ │ ├── excerpt-aside.php │ │ ├── excerpt-audio.php │ │ ├── excerpt-chat.php │ │ ├── excerpt-gallery.php │ │ ├── excerpt-image.php │ │ ├── excerpt-link.php │ │ ├── excerpt-quote.php │ │ ├── excerpt-status.php │ │ ├── excerpt-video.php │ │ └── excerpt.php │ │ ├── footer │ │ └── footer-widgets.php │ │ ├── header │ │ ├── entry-header.php │ │ ├── excerpt-header.php │ │ ├── site-branding.php │ │ ├── site-header.php │ │ └── site-nav.php │ │ └── post │ │ └── author-bio.php ├── wp-cron.php ├── wp-includes │ ├── ID3 │ │ ├── getid3.lib.php │ │ ├── getid3.php │ │ ├── license.commercial.txt │ │ ├── license.txt │ │ ├── module.audio-video.asf.php │ │ ├── module.audio-video.flv.php │ │ ├── module.audio-video.matroska.php │ │ ├── module.audio-video.quicktime.php │ │ ├── module.audio-video.riff.php │ │ ├── module.audio.ac3.php │ │ ├── module.audio.dts.php │ │ ├── module.audio.flac.php │ │ ├── module.audio.mp3.php │ │ ├── module.audio.ogg.php │ │ ├── module.tag.apetag.php │ │ ├── module.tag.id3v1.php │ │ ├── module.tag.id3v2.php │ │ ├── module.tag.lyrics3.php │ │ └── readme.txt │ ├── IXR │ │ ├── class-IXR-base64.php │ │ ├── class-IXR-client.php │ │ ├── class-IXR-clientmulticall.php │ │ ├── class-IXR-date.php │ │ ├── class-IXR-error.php │ │ ├── class-IXR-introspectionserver.php │ │ ├── class-IXR-message.php │ │ ├── class-IXR-request.php │ │ ├── class-IXR-server.php │ │ └── class-IXR-value.php │ ├── PHPMailer │ │ ├── Exception.php │ │ ├── PHPMailer.php │ │ └── SMTP.php │ ├── Requests │ │ ├── Auth.php │ │ ├── Auth │ │ │ └── Basic.php │ │ ├── Cookie.php │ │ ├── Cookie │ │ │ └── Jar.php │ │ ├── Exception.php │ │ ├── Exception │ │ │ ├── HTTP.php │ │ │ ├── HTTP │ │ │ │ ├── 304.php │ │ │ │ ├── 305.php │ │ │ │ ├── 306.php │ │ │ │ ├── 400.php │ │ │ │ ├── 401.php │ │ │ │ ├── 402.php │ │ │ │ ├── 403.php │ │ │ │ ├── 404.php │ │ │ │ ├── 405.php │ │ │ │ ├── 406.php │ │ │ │ ├── 407.php │ │ │ │ ├── 408.php │ │ │ │ ├── 409.php │ │ │ │ ├── 410.php │ │ │ │ ├── 411.php │ │ │ │ ├── 412.php │ │ │ │ ├── 413.php │ │ │ │ ├── 414.php │ │ │ │ ├── 415.php │ │ │ │ ├── 416.php │ │ │ │ ├── 417.php │ │ │ │ ├── 418.php │ │ │ │ ├── 428.php │ │ │ │ ├── 429.php │ │ │ │ ├── 431.php │ │ │ │ ├── 500.php │ │ │ │ ├── 501.php │ │ │ │ ├── 502.php │ │ │ │ ├── 503.php │ │ │ │ ├── 504.php │ │ │ │ ├── 505.php │ │ │ │ ├── 511.php │ │ │ │ └── Unknown.php │ │ │ ├── Transport.php │ │ │ └── Transport │ │ │ │ └── cURL.php │ │ ├── Hooker.php │ │ ├── Hooks.php │ │ ├── IDNAEncoder.php │ │ ├── IPv6.php │ │ ├── IRI.php │ │ ├── Proxy.php │ │ ├── Proxy │ │ │ └── HTTP.php │ │ ├── Response.php │ │ ├── Response │ │ │ └── Headers.php │ │ ├── SSL.php │ │ ├── Session.php │ │ ├── Transport.php │ │ ├── Transport │ │ │ ├── cURL.php │ │ │ └── fsockopen.php │ │ └── Utility │ │ │ ├── CaseInsensitiveDictionary.php │ │ │ └── FilteredIterator.php │ ├── SimplePie │ │ ├── Author.php │ │ ├── Cache.php │ │ ├── Cache │ │ │ ├── Base.php │ │ │ ├── DB.php │ │ │ ├── File.php │ │ │ ├── Memcache.php │ │ │ ├── Memcached.php │ │ │ ├── MySQL.php │ │ │ └── Redis.php │ │ ├── Caption.php │ │ ├── Category.php │ │ ├── Content │ │ │ └── Type │ │ │ │ └── Sniffer.php │ │ ├── Copyright.php │ │ ├── Core.php │ │ ├── Credit.php │ │ ├── Decode │ │ │ └── HTML │ │ │ │ └── Entities.php │ │ ├── Enclosure.php │ │ ├── Exception.php │ │ ├── File.php │ │ ├── HTTP │ │ │ └── Parser.php │ │ ├── IRI.php │ │ ├── Item.php │ │ ├── Locator.php │ │ ├── Misc.php │ │ ├── Net │ │ │ └── IPv6.php │ │ ├── Parse │ │ │ └── Date.php │ │ ├── Parser.php │ │ ├── Rating.php │ │ ├── Registry.php │ │ ├── Restriction.php │ │ ├── Sanitize.php │ │ ├── Source.php │ │ ├── XML │ │ │ └── Declaration │ │ │ │ └── Parser.php │ │ └── gzdecode.php │ ├── Text │ │ ├── Diff.php │ │ └── Diff │ │ │ ├── Engine │ │ │ ├── native.php │ │ │ ├── shell.php │ │ │ ├── string.php │ │ │ └── xdiff.php │ │ │ ├── Renderer.php │ │ │ └── Renderer │ │ │ └── inline.php │ ├── admin-bar.php │ ├── assets │ │ └── script-loader-packages.php │ ├── atomlib.php │ ├── author-template.php │ ├── block-editor.php │ ├── block-i18n.json │ ├── block-patterns.php │ ├── block-patterns │ │ ├── query-grid-posts.php │ │ ├── query-large-title-posts.php │ │ ├── query-medium-posts.php │ │ ├── query-offset-posts.php │ │ ├── query-small-posts.php │ │ ├── query-standard-posts.php │ │ └── social-links-shared-background-color.php │ ├── block-supports │ │ ├── align.php │ │ ├── border.php │ │ ├── colors.php │ │ ├── custom-classname.php │ │ ├── duotone.php │ │ ├── elements.php │ │ ├── generated-classname.php │ │ ├── layout.php │ │ ├── spacing.php │ │ └── typography.php │ ├── block-template-utils.php │ ├── block-template.php │ ├── blocks.php │ ├── blocks │ │ ├── archives.php │ │ ├── archives │ │ │ └── block.json │ │ ├── audio │ │ │ └── block.json │ │ ├── block.php │ │ ├── block │ │ │ └── block.json │ │ ├── button │ │ │ └── block.json │ │ ├── buttons │ │ │ └── block.json │ │ ├── calendar.php │ │ ├── calendar │ │ │ └── block.json │ │ ├── categories.php │ │ ├── categories │ │ │ └── block.json │ │ ├── code │ │ │ └── block.json │ │ ├── column │ │ │ └── block.json │ │ ├── columns │ │ │ └── block.json │ │ ├── cover │ │ │ └── block.json │ │ ├── embed │ │ │ └── block.json │ │ ├── file.php │ │ ├── file │ │ │ ├── block.json │ │ │ ├── view.asset.php │ │ │ └── view.min.asset.php │ │ ├── freeform │ │ │ └── block.json │ │ ├── gallery │ │ │ └── block.json │ │ ├── group │ │ │ └── block.json │ │ ├── heading │ │ │ └── block.json │ │ ├── html │ │ │ └── block.json │ │ ├── image │ │ │ └── block.json │ │ ├── index.php │ │ ├── latest-comments.php │ │ ├── latest-comments │ │ │ └── block.json │ │ ├── latest-posts.php │ │ ├── latest-posts │ │ │ └── block.json │ │ ├── legacy-widget.php │ │ ├── legacy-widget │ │ │ └── block.json │ │ ├── list │ │ │ └── block.json │ │ ├── loginout.php │ │ ├── loginout │ │ │ └── block.json │ │ ├── media-text │ │ │ └── block.json │ │ ├── missing │ │ │ └── block.json │ │ ├── more │ │ │ └── block.json │ │ ├── nextpage │ │ │ └── block.json │ │ ├── page-list.php │ │ ├── page-list │ │ │ └── block.json │ │ ├── paragraph │ │ │ └── block.json │ │ ├── post-content.php │ │ ├── post-content │ │ │ └── block.json │ │ ├── post-date.php │ │ ├── post-date │ │ │ └── block.json │ │ ├── post-excerpt.php │ │ ├── post-excerpt │ │ │ └── block.json │ │ ├── post-featured-image.php │ │ ├── post-featured-image │ │ │ └── block.json │ │ ├── post-template.php │ │ ├── post-template │ │ │ └── block.json │ │ ├── post-terms.php │ │ ├── post-terms │ │ │ └── block.json │ │ ├── post-title.php │ │ ├── post-title │ │ │ └── block.json │ │ ├── preformatted │ │ │ └── block.json │ │ ├── pullquote │ │ │ └── block.json │ │ ├── query-pagination-next.php │ │ ├── query-pagination-next │ │ │ └── block.json │ │ ├── query-pagination-numbers.php │ │ ├── query-pagination-numbers │ │ │ └── block.json │ │ ├── query-pagination-previous.php │ │ ├── query-pagination-previous │ │ │ └── block.json │ │ ├── query-pagination.php │ │ ├── query-pagination │ │ │ └── block.json │ │ ├── query-title.php │ │ ├── query-title │ │ │ └── block.json │ │ ├── query.php │ │ ├── query │ │ │ └── block.json │ │ ├── quote │ │ │ └── block.json │ │ ├── rss.php │ │ ├── rss │ │ │ └── block.json │ │ ├── search.php │ │ ├── search │ │ │ └── block.json │ │ ├── separator │ │ │ └── block.json │ │ ├── shortcode.php │ │ ├── shortcode │ │ │ └── block.json │ │ ├── site-logo.php │ │ ├── site-logo │ │ │ ├── block.json │ │ │ ├── editor-rtl.css │ │ │ ├── editor-rtl.min.css │ │ │ ├── editor.css │ │ │ ├── editor.min.css │ │ │ ├── style-rtl.css │ │ │ ├── style-rtl.min.css │ │ │ ├── style.css │ │ │ └── style.min.css │ │ ├── site-tagline.php │ │ ├── site-tagline │ │ │ └── block.json │ │ ├── site-title.php │ │ ├── site-title │ │ │ └── block.json │ │ ├── social-link.php │ │ ├── social-link │ │ │ └── block.json │ │ ├── social-links │ │ │ └── block.json │ │ ├── spacer │ │ │ └── block.json │ │ ├── table │ │ │ └── block.json │ │ ├── tag-cloud.php │ │ ├── tag-cloud │ │ │ └── block.json │ │ ├── text-columns │ │ │ └── block.json │ │ ├── verse │ │ │ └── block.json │ │ └── video │ │ │ └── block.json │ ├── bookmark-template.php │ ├── bookmark.php │ ├── cache-compat.php │ ├── cache.php │ ├── canonical.php │ ├── capabilities.php │ ├── category-template.php │ ├── category.php │ ├── certificates │ │ └── ca-bundle.crt │ ├── class-IXR.php │ ├── class-feed.php │ ├── class-http.php │ ├── class-json.php │ ├── class-oembed.php │ ├── class-phpass.php │ ├── class-phpmailer.php │ ├── class-pop3.php │ ├── class-requests.php │ ├── class-simplepie.php │ ├── class-smtp.php │ ├── class-snoopy.php │ ├── class-walker-category-dropdown.php │ ├── class-walker-category.php │ ├── class-walker-comment.php │ ├── class-walker-nav-menu.php │ ├── class-walker-page-dropdown.php │ ├── class-walker-page.php │ ├── class-wp-admin-bar.php │ ├── class-wp-ajax-response.php │ ├── class-wp-application-passwords.php │ ├── class-wp-block-editor-context.php │ ├── class-wp-block-list.php │ ├── class-wp-block-parser.php │ ├── class-wp-block-pattern-categories-registry.php │ ├── class-wp-block-patterns-registry.php │ ├── class-wp-block-styles-registry.php │ ├── class-wp-block-supports.php │ ├── class-wp-block-template.php │ ├── class-wp-block-type-registry.php │ ├── class-wp-block-type.php │ ├── class-wp-block.php │ ├── class-wp-comment-query.php │ ├── class-wp-comment.php │ ├── class-wp-customize-control.php │ ├── class-wp-customize-manager.php │ ├── class-wp-customize-nav-menus.php │ ├── class-wp-customize-panel.php │ ├── class-wp-customize-section.php │ ├── class-wp-customize-setting.php │ ├── class-wp-customize-widgets.php │ ├── class-wp-date-query.php │ ├── class-wp-dependency.php │ ├── class-wp-editor.php │ ├── class-wp-embed.php │ ├── class-wp-error.php │ ├── class-wp-fatal-error-handler.php │ ├── class-wp-feed-cache-transient.php │ ├── class-wp-feed-cache.php │ ├── class-wp-hook.php │ ├── class-wp-http-cookie.php │ ├── class-wp-http-curl.php │ ├── class-wp-http-encoding.php │ ├── class-wp-http-ixr-client.php │ ├── class-wp-http-proxy.php │ ├── class-wp-http-requests-hooks.php │ ├── class-wp-http-requests-response.php │ ├── class-wp-http-response.php │ ├── class-wp-http-streams.php │ ├── class-wp-http.php │ ├── class-wp-image-editor-gd.php │ ├── class-wp-image-editor-imagick.php │ ├── class-wp-image-editor.php │ ├── class-wp-list-util.php │ ├── class-wp-locale-switcher.php │ ├── class-wp-locale.php │ ├── class-wp-matchesmapregex.php │ ├── class-wp-meta-query.php │ ├── class-wp-metadata-lazyloader.php │ ├── class-wp-network-query.php │ ├── class-wp-network.php │ ├── class-wp-object-cache.php │ ├── class-wp-oembed-controller.php │ ├── class-wp-oembed.php │ ├── class-wp-paused-extensions-storage.php │ ├── class-wp-post-type.php │ ├── class-wp-post.php │ ├── class-wp-query.php │ ├── class-wp-recovery-mode-cookie-service.php │ ├── class-wp-recovery-mode-email-service.php │ ├── class-wp-recovery-mode-key-service.php │ ├── class-wp-recovery-mode-link-service.php │ ├── class-wp-recovery-mode.php │ ├── class-wp-rewrite.php │ ├── class-wp-role.php │ ├── class-wp-roles.php │ ├── class-wp-session-tokens.php │ ├── class-wp-simplepie-file.php │ ├── class-wp-simplepie-sanitize-kses.php │ ├── class-wp-site-query.php │ ├── class-wp-site.php │ ├── class-wp-tax-query.php │ ├── class-wp-taxonomy.php │ ├── class-wp-term-query.php │ ├── class-wp-term.php │ ├── class-wp-text-diff-renderer-inline.php │ ├── class-wp-text-diff-renderer-table.php │ ├── class-wp-theme-json-resolver.php │ ├── class-wp-theme-json.php │ ├── class-wp-theme.php │ ├── class-wp-user-meta-session-tokens.php │ ├── class-wp-user-query.php │ ├── class-wp-user-request.php │ ├── class-wp-user.php │ ├── class-wp-walker.php │ ├── class-wp-widget-factory.php │ ├── class-wp-widget.php │ ├── class-wp-xmlrpc-server.php │ ├── class-wp.php │ ├── class.wp-dependencies.php │ ├── class.wp-scripts.php │ ├── class.wp-styles.php │ ├── comment-template.php │ ├── comment.php │ ├── compat.php │ ├── cron.php │ ├── css │ │ ├── admin-bar.css │ │ ├── buttons.css │ │ ├── customize-preview.css │ │ ├── dashicons.css │ │ ├── editor.css │ │ ├── jquery-ui-dialog.css │ │ ├── media-views.css │ │ ├── wp-auth-check.css │ │ ├── wp-embed-template-ie.css │ │ ├── wp-embed-template.css │ │ └── wp-pointer.css │ ├── customize │ │ ├── class-wp-customize-background-image-control.php │ │ ├── class-wp-customize-background-image-setting.php │ │ ├── class-wp-customize-background-position-control.php │ │ ├── class-wp-customize-code-editor-control.php │ │ ├── class-wp-customize-color-control.php │ │ ├── class-wp-customize-cropped-image-control.php │ │ ├── class-wp-customize-custom-css-setting.php │ │ ├── class-wp-customize-date-time-control.php │ │ ├── class-wp-customize-filter-setting.php │ │ ├── class-wp-customize-header-image-control.php │ │ ├── class-wp-customize-header-image-setting.php │ │ ├── class-wp-customize-image-control.php │ │ ├── class-wp-customize-media-control.php │ │ ├── class-wp-customize-nav-menu-auto-add-control.php │ │ ├── class-wp-customize-nav-menu-control.php │ │ ├── class-wp-customize-nav-menu-item-control.php │ │ ├── class-wp-customize-nav-menu-item-setting.php │ │ ├── class-wp-customize-nav-menu-location-control.php │ │ ├── class-wp-customize-nav-menu-locations-control.php │ │ ├── class-wp-customize-nav-menu-name-control.php │ │ ├── class-wp-customize-nav-menu-section.php │ │ ├── class-wp-customize-nav-menu-setting.php │ │ ├── class-wp-customize-nav-menus-panel.php │ │ ├── class-wp-customize-new-menu-control.php │ │ ├── class-wp-customize-new-menu-section.php │ │ ├── class-wp-customize-partial.php │ │ ├── class-wp-customize-selective-refresh.php │ │ ├── class-wp-customize-sidebar-section.php │ │ ├── class-wp-customize-site-icon-control.php │ │ ├── class-wp-customize-theme-control.php │ │ ├── class-wp-customize-themes-panel.php │ │ ├── class-wp-customize-themes-section.php │ │ ├── class-wp-customize-upload-control.php │ │ ├── class-wp-sidebar-block-editor-control.php │ │ ├── class-wp-widget-area-customize-control.php │ │ └── class-wp-widget-form-customize-control.php │ ├── date.php │ ├── default-constants.php │ ├── default-filters.php │ ├── default-widgets.php │ ├── deprecated.php │ ├── embed-template.php │ ├── embed.php │ ├── error-protection.php │ ├── feed-atom-comments.php │ ├── feed-atom.php │ ├── feed-rdf.php │ ├── feed-rss.php │ ├── feed-rss2-comments.php │ ├── feed-rss2.php │ ├── feed.php │ ├── fonts │ │ ├── dashicons.eot │ │ ├── dashicons.svg │ │ ├── dashicons.ttf │ │ ├── dashicons.woff │ │ └── dashicons.woff2 │ ├── formatting.php │ ├── functions.php │ ├── functions.wp-scripts.php │ ├── functions.wp-styles.php │ ├── general-template.php │ ├── http.php │ ├── https-detection.php │ ├── https-migration.php │ ├── images │ │ ├── admin-bar-sprite-2x.png │ │ ├── admin-bar-sprite.png │ │ ├── arrow-pointer-blue-2x.png │ │ ├── arrow-pointer-blue.png │ │ ├── blank.gif │ │ ├── crystal │ │ │ ├── archive.png │ │ │ ├── audio.png │ │ │ ├── code.png │ │ │ ├── default.png │ │ │ ├── document.png │ │ │ ├── interactive.png │ │ │ ├── license.txt │ │ │ ├── spreadsheet.png │ │ │ ├── text.png │ │ │ └── video.png │ │ ├── down_arrow-2x.gif │ │ ├── down_arrow.gif │ │ ├── icon-pointer-flag-2x.png │ │ ├── icon-pointer-flag.png │ │ ├── media │ │ │ ├── archive.png │ │ │ ├── audio.png │ │ │ ├── code.png │ │ │ ├── default.png │ │ │ ├── document.png │ │ │ ├── interactive.png │ │ │ ├── spreadsheet.png │ │ │ ├── text.png │ │ │ └── video.png │ │ ├── rss-2x.png │ │ ├── rss.png │ │ ├── smilies │ │ │ ├── frownie.png │ │ │ ├── icon_arrow.gif │ │ │ ├── icon_biggrin.gif │ │ │ ├── icon_confused.gif │ │ │ ├── icon_cool.gif │ │ │ ├── icon_cry.gif │ │ │ ├── icon_eek.gif │ │ │ ├── icon_evil.gif │ │ │ ├── icon_exclaim.gif │ │ │ ├── icon_idea.gif │ │ │ ├── icon_lol.gif │ │ │ ├── icon_mad.gif │ │ │ ├── icon_mrgreen.gif │ │ │ ├── icon_neutral.gif │ │ │ ├── icon_question.gif │ │ │ ├── icon_razz.gif │ │ │ ├── icon_redface.gif │ │ │ ├── icon_rolleyes.gif │ │ │ ├── icon_sad.gif │ │ │ ├── icon_smile.gif │ │ │ ├── icon_surprised.gif │ │ │ ├── icon_twisted.gif │ │ │ ├── icon_wink.gif │ │ │ ├── mrgreen.png │ │ │ ├── rolleyes.png │ │ │ └── simple-smile.png │ │ ├── spinner-2x.gif │ │ ├── spinner.gif │ │ ├── toggle-arrow-2x.png │ │ ├── toggle-arrow.png │ │ ├── uploader-icons-2x.png │ │ ├── uploader-icons.png │ │ ├── w-logo-blue-white-bg.png │ │ ├── w-logo-blue.png │ │ ├── wlw │ │ │ ├── wp-comments.png │ │ │ ├── wp-icon.png │ │ │ └── wp-watermark.png │ │ ├── wpicons-2x.png │ │ ├── wpicons.png │ │ ├── wpspin-2x.gif │ │ ├── wpspin.gif │ │ ├── xit-2x.gif │ │ └── xit.gif │ ├── kses.php │ ├── l10n.php │ ├── link-template.php │ ├── load.php │ ├── locale.php │ ├── media-template.php │ ├── media.php │ ├── meta.php │ ├── ms-blogs.php │ ├── ms-default-constants.php │ ├── ms-default-filters.php │ ├── ms-deprecated.php │ ├── ms-files.php │ ├── ms-functions.php │ ├── ms-load.php │ ├── ms-network.php │ ├── ms-settings.php │ ├── ms-site.php │ ├── nav-menu-template.php │ ├── nav-menu.php │ ├── option.php │ ├── php-compat │ │ └── readonly.php │ ├── pluggable-deprecated.php │ ├── pluggable.php │ ├── plugin.php │ ├── pomo │ │ ├── entry.php │ │ ├── mo.php │ │ ├── plural-forms.php │ │ ├── po.php │ │ ├── streams.php │ │ └── translations.php │ ├── post-formats.php │ ├── post-template.php │ ├── post-thumbnail-template.php │ ├── post.php │ ├── query.php │ ├── random_compat │ │ ├── byte_safe_strings.php │ │ ├── cast_to_int.php │ │ ├── error_polyfill.php │ │ ├── random.php │ │ ├── random_bytes_com_dotnet.php │ │ ├── random_bytes_dev_urandom.php │ │ ├── random_bytes_libsodium.php │ │ ├── random_bytes_libsodium_legacy.php │ │ ├── random_bytes_mcrypt.php │ │ └── random_int.php │ ├── registration-functions.php │ ├── registration.php │ ├── rest-api.php │ ├── rest-api │ │ ├── class-wp-rest-request.php │ │ ├── class-wp-rest-response.php │ │ ├── class-wp-rest-server.php │ │ ├── endpoints │ │ │ ├── class-wp-rest-application-passwords-controller.php │ │ │ ├── class-wp-rest-attachments-controller.php │ │ │ ├── class-wp-rest-autosaves-controller.php │ │ │ ├── class-wp-rest-block-directory-controller.php │ │ │ ├── class-wp-rest-block-renderer-controller.php │ │ │ ├── class-wp-rest-block-types-controller.php │ │ │ ├── class-wp-rest-blocks-controller.php │ │ │ ├── class-wp-rest-comments-controller.php │ │ │ ├── class-wp-rest-controller.php │ │ │ ├── class-wp-rest-pattern-directory-controller.php │ │ │ ├── class-wp-rest-plugins-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-search-controller.php │ │ │ ├── class-wp-rest-settings-controller.php │ │ │ ├── class-wp-rest-sidebars-controller.php │ │ │ ├── class-wp-rest-site-health-controller.php │ │ │ ├── class-wp-rest-taxonomies-controller.php │ │ │ ├── class-wp-rest-templates-controller.php │ │ │ ├── class-wp-rest-terms-controller.php │ │ │ ├── class-wp-rest-themes-controller.php │ │ │ ├── class-wp-rest-url-details-controller.php │ │ │ ├── class-wp-rest-users-controller.php │ │ │ ├── class-wp-rest-widget-types-controller.php │ │ │ └── class-wp-rest-widgets-controller.php │ │ ├── fields │ │ │ ├── class-wp-rest-comment-meta-fields.php │ │ │ ├── class-wp-rest-meta-fields.php │ │ │ ├── class-wp-rest-post-meta-fields.php │ │ │ ├── class-wp-rest-term-meta-fields.php │ │ │ └── class-wp-rest-user-meta-fields.php │ │ └── search │ │ │ ├── class-wp-rest-post-format-search-handler.php │ │ │ ├── class-wp-rest-post-search-handler.php │ │ │ ├── class-wp-rest-search-handler.php │ │ │ └── class-wp-rest-term-search-handler.php │ ├── revision.php │ ├── rewrite.php │ ├── robots-template.php │ ├── rss-functions.php │ ├── rss.php │ ├── script-loader.php │ ├── session.php │ ├── shortcodes.php │ ├── sitemaps.php │ ├── sitemaps │ │ ├── class-wp-sitemaps-index.php │ │ ├── class-wp-sitemaps-provider.php │ │ ├── class-wp-sitemaps-registry.php │ │ ├── class-wp-sitemaps-renderer.php │ │ ├── class-wp-sitemaps-stylesheet.php │ │ ├── class-wp-sitemaps.php │ │ └── providers │ │ │ ├── class-wp-sitemaps-posts.php │ │ │ ├── class-wp-sitemaps-taxonomies.php │ │ │ └── class-wp-sitemaps-users.php │ ├── sodium_compat │ │ ├── LICENSE │ │ ├── autoload-php7.php │ │ ├── autoload.php │ │ ├── composer.json │ │ ├── lib │ │ │ ├── constants.php │ │ │ ├── namespaced.php │ │ │ ├── php72compat.php │ │ │ ├── php72compat_const.php │ │ │ ├── ristretto255.php │ │ │ ├── sodium_compat.php │ │ │ └── stream-xchacha20.php │ │ ├── namespaced │ │ │ ├── Compat.php │ │ │ ├── Core │ │ │ │ ├── BLAKE2b.php │ │ │ │ ├── ChaCha20.php │ │ │ │ ├── ChaCha20 │ │ │ │ │ ├── Ctx.php │ │ │ │ │ └── IetfCtx.php │ │ │ │ ├── Curve25519.php │ │ │ │ ├── Curve25519 │ │ │ │ │ ├── Fe.php │ │ │ │ │ ├── Ge │ │ │ │ │ │ ├── Cached.php │ │ │ │ │ │ ├── P1p1.php │ │ │ │ │ │ ├── P2.php │ │ │ │ │ │ ├── P3.php │ │ │ │ │ │ └── Precomp.php │ │ │ │ │ └── H.php │ │ │ │ ├── Ed25519.php │ │ │ │ ├── HChaCha20.php │ │ │ │ ├── HSalsa20.php │ │ │ │ ├── Poly1305.php │ │ │ │ ├── Poly1305 │ │ │ │ │ └── State.php │ │ │ │ ├── Salsa20.php │ │ │ │ ├── SipHash.php │ │ │ │ ├── Util.php │ │ │ │ ├── X25519.php │ │ │ │ ├── XChaCha20.php │ │ │ │ └── Xsalsa20.php │ │ │ ├── Crypto.php │ │ │ └── File.php │ │ └── src │ │ │ ├── Compat.php │ │ │ ├── Core │ │ │ ├── BLAKE2b.php │ │ │ ├── Base64 │ │ │ │ ├── Common.php │ │ │ │ ├── Original.php │ │ │ │ └── UrlSafe.php │ │ │ ├── ChaCha20.php │ │ │ ├── ChaCha20 │ │ │ │ ├── Ctx.php │ │ │ │ └── IetfCtx.php │ │ │ ├── Curve25519.php │ │ │ ├── Curve25519 │ │ │ │ ├── Fe.php │ │ │ │ ├── Ge │ │ │ │ │ ├── Cached.php │ │ │ │ │ ├── P1p1.php │ │ │ │ │ ├── P2.php │ │ │ │ │ ├── P3.php │ │ │ │ │ └── Precomp.php │ │ │ │ ├── H.php │ │ │ │ └── README.md │ │ │ ├── Ed25519.php │ │ │ ├── HChaCha20.php │ │ │ ├── HSalsa20.php │ │ │ ├── Poly1305.php │ │ │ ├── Poly1305 │ │ │ │ └── State.php │ │ │ ├── Ristretto255.php │ │ │ ├── Salsa20.php │ │ │ ├── SecretStream │ │ │ │ └── State.php │ │ │ ├── SipHash.php │ │ │ ├── Util.php │ │ │ ├── X25519.php │ │ │ ├── XChaCha20.php │ │ │ └── XSalsa20.php │ │ │ ├── Core32 │ │ │ ├── BLAKE2b.php │ │ │ ├── ChaCha20.php │ │ │ ├── ChaCha20 │ │ │ │ ├── Ctx.php │ │ │ │ └── IetfCtx.php │ │ │ ├── Curve25519.php │ │ │ ├── Curve25519 │ │ │ │ ├── Fe.php │ │ │ │ ├── Ge │ │ │ │ │ ├── Cached.php │ │ │ │ │ ├── P1p1.php │ │ │ │ │ ├── P2.php │ │ │ │ │ ├── P3.php │ │ │ │ │ └── Precomp.php │ │ │ │ ├── H.php │ │ │ │ └── README.md │ │ │ ├── Ed25519.php │ │ │ ├── HChaCha20.php │ │ │ ├── HSalsa20.php │ │ │ ├── Int32.php │ │ │ ├── Int64.php │ │ │ ├── Poly1305.php │ │ │ ├── Poly1305 │ │ │ │ └── State.php │ │ │ ├── Salsa20.php │ │ │ ├── SecretStream │ │ │ │ └── State.php │ │ │ ├── SipHash.php │ │ │ ├── Util.php │ │ │ ├── X25519.php │ │ │ ├── XChaCha20.php │ │ │ └── XSalsa20.php │ │ │ ├── Crypto.php │ │ │ ├── Crypto32.php │ │ │ ├── File.php │ │ │ ├── PHP52 │ │ │ └── SplFixedArray.php │ │ │ └── SodiumException.php │ ├── spl-autoload-compat.php │ ├── taxonomy.php │ ├── template-canvas.php │ ├── template-loader.php │ ├── template.php │ ├── theme-compat │ │ ├── comments.php │ │ ├── embed-404.php │ │ ├── embed-content.php │ │ ├── embed.php │ │ ├── footer-embed.php │ │ ├── footer.php │ │ ├── header-embed.php │ │ ├── header.php │ │ └── sidebar.php │ ├── theme-i18n.json │ ├── theme-templates.php │ ├── theme.json │ ├── theme.php │ ├── update.php │ ├── user.php │ ├── vars.php │ ├── version.php │ ├── widgets.php │ ├── widgets │ │ ├── class-wp-nav-menu-widget.php │ │ ├── class-wp-widget-archives.php │ │ ├── class-wp-widget-block.php │ │ ├── class-wp-widget-calendar.php │ │ ├── class-wp-widget-categories.php │ │ ├── class-wp-widget-custom-html.php │ │ ├── class-wp-widget-links.php │ │ ├── class-wp-widget-media-audio.php │ │ ├── class-wp-widget-media-gallery.php │ │ ├── class-wp-widget-media-image.php │ │ ├── class-wp-widget-media-video.php │ │ ├── class-wp-widget-media.php │ │ ├── class-wp-widget-meta.php │ │ ├── class-wp-widget-pages.php │ │ ├── class-wp-widget-recent-comments.php │ │ ├── class-wp-widget-recent-posts.php │ │ ├── class-wp-widget-rss.php │ │ ├── class-wp-widget-search.php │ │ ├── class-wp-widget-tag-cloud.php │ │ └── class-wp-widget-text.php │ ├── wlwmanifest.xml │ ├── wp-db.php │ └── wp-diff.php ├── wp-links-opml.php ├── wp-load.php ├── wp-login.php ├── wp-mail.php ├── wp-settings.php ├── wp-signup.php ├── wp-trackback.php └── xmlrpc.php ├── tests ├── e2e │ ├── README.md │ ├── config │ │ └── bootstrap.js │ ├── jest.config.js │ ├── run-tests.js │ └── specs │ │ ├── dashboard.test.js │ │ ├── edit-posts.test.js │ │ ├── hello.test.js │ │ └── profile │ │ └── applications-passwords.test.js ├── gutenberg │ ├── .wp-env.sample.json │ └── run.js ├── phpunit │ ├── README.txt │ ├── build.xml │ ├── data │ │ ├── WPHTTP-testcase-redirection-script.php │ │ ├── blocks │ │ │ ├── do-blocks-expected.html │ │ │ ├── do-blocks-original.html │ │ │ ├── fixtures │ │ │ │ ├── core__4-invalid-starting-letter.html │ │ │ │ ├── core__4-invalid-starting-letter.json │ │ │ │ ├── core__4-invalid-starting-letter.parsed.json │ │ │ │ ├── core__4-invalid-starting-letter.serialized.html │ │ │ │ ├── core__4-invalid-starting-letter.server.html │ │ │ │ ├── core__archives.html │ │ │ │ ├── core__archives.json │ │ │ │ ├── core__archives.parsed.json │ │ │ │ ├── core__archives.serialized.html │ │ │ │ ├── core__archives.server.html │ │ │ │ ├── core__archives__showPostCounts.html │ │ │ │ ├── core__archives__showPostCounts.json │ │ │ │ ├── core__archives__showPostCounts.parsed.json │ │ │ │ ├── core__archives__showPostCounts.serialized.html │ │ │ │ ├── core__archives__showPostCounts.server.html │ │ │ │ ├── core__audio.html │ │ │ │ ├── core__audio.json │ │ │ │ ├── core__audio.parsed.json │ │ │ │ ├── core__audio.serialized.html │ │ │ │ ├── core__audio.server.html │ │ │ │ ├── core__block.html │ │ │ │ ├── core__block.json │ │ │ │ ├── core__block.parsed.json │ │ │ │ ├── core__block.serialized.html │ │ │ │ ├── core__block.server.html │ │ │ │ ├── core__button__center.html │ │ │ │ ├── core__button__center.json │ │ │ │ ├── core__button__center.parsed.json │ │ │ │ ├── core__button__center.serialized.html │ │ │ │ ├── core__button__center.server.html │ │ │ │ ├── core__categories.html │ │ │ │ ├── core__categories.json │ │ │ │ ├── core__categories.parsed.json │ │ │ │ ├── core__categories.serialized.html │ │ │ │ ├── core__categories.server.html │ │ │ │ ├── core__code.html │ │ │ │ ├── core__code.json │ │ │ │ ├── core__code.parsed.json │ │ │ │ ├── core__code.serialized.html │ │ │ │ ├── core__code.server.html │ │ │ │ ├── core__column.html │ │ │ │ ├── core__column.json │ │ │ │ ├── core__column.parsed.json │ │ │ │ ├── core__column.serialized.html │ │ │ │ ├── core__column.server.html │ │ │ │ ├── core__columns.html │ │ │ │ ├── core__columns.json │ │ │ │ ├── core__columns.parsed.json │ │ │ │ ├── core__columns.serialized.html │ │ │ │ ├── core__columns.server.html │ │ │ │ ├── core__columns__deprecated.html │ │ │ │ ├── core__columns__deprecated.json │ │ │ │ ├── core__columns__deprecated.parsed.json │ │ │ │ ├── core__columns__deprecated.serialized.html │ │ │ │ ├── core__columns__deprecated.server.html │ │ │ │ ├── core__cover-image.html │ │ │ │ ├── core__cover-image.json │ │ │ │ ├── core__cover-image.parsed.json │ │ │ │ ├── core__cover-image.serialized.html │ │ │ │ ├── core__cover-image.server.html │ │ │ │ ├── core__cover.html │ │ │ │ ├── core__cover.json │ │ │ │ ├── core__cover.parsed.json │ │ │ │ ├── core__cover.serialized.html │ │ │ │ ├── core__cover.server.html │ │ │ │ ├── core__cover__video-overlay.html │ │ │ │ ├── core__cover__video-overlay.json │ │ │ │ ├── core__cover__video-overlay.parsed.json │ │ │ │ ├── core__cover__video-overlay.serialized.html │ │ │ │ ├── core__cover__video-overlay.server.html │ │ │ │ ├── core__cover__video.html │ │ │ │ ├── core__cover__video.json │ │ │ │ ├── core__cover__video.parsed.json │ │ │ │ ├── core__cover__video.serialized.html │ │ │ │ ├── core__cover__video.server.html │ │ │ │ ├── core__embed.html │ │ │ │ ├── core__embed.json │ │ │ │ ├── core__embed.parsed.json │ │ │ │ ├── core__embed.serialized.html │ │ │ │ ├── core__embed.server.html │ │ │ │ ├── core__file__new-window.html │ │ │ │ ├── core__file__new-window.json │ │ │ │ ├── core__file__new-window.parsed.json │ │ │ │ ├── core__file__new-window.serialized.html │ │ │ │ ├── core__file__new-window.server.html │ │ │ │ ├── core__file__no-download-button.html │ │ │ │ ├── core__file__no-download-button.json │ │ │ │ ├── core__file__no-download-button.parsed.json │ │ │ │ ├── core__file__no-download-button.serialized.html │ │ │ │ ├── core__file__no-download-button.server.html │ │ │ │ ├── core__file__no-text-link.html │ │ │ │ ├── core__file__no-text-link.json │ │ │ │ ├── core__file__no-text-link.parsed.json │ │ │ │ ├── core__file__no-text-link.serialized.html │ │ │ │ ├── core__file__no-text-link.server.html │ │ │ │ ├── core__freeform.html │ │ │ │ ├── core__freeform.json │ │ │ │ ├── core__freeform.parsed.json │ │ │ │ ├── core__freeform.serialized.html │ │ │ │ ├── core__freeform.server.html │ │ │ │ ├── core__freeform__undelimited.html │ │ │ │ ├── core__freeform__undelimited.json │ │ │ │ ├── core__freeform__undelimited.parsed.json │ │ │ │ ├── core__freeform__undelimited.serialized.html │ │ │ │ ├── core__freeform__undelimited.server.html │ │ │ │ ├── core__gallery.html │ │ │ │ ├── core__gallery.json │ │ │ │ ├── core__gallery.parsed.json │ │ │ │ ├── core__gallery.serialized.html │ │ │ │ ├── core__gallery.server.html │ │ │ │ ├── core__gallery__columns.html │ │ │ │ ├── core__gallery__columns.json │ │ │ │ ├── core__gallery__columns.parsed.json │ │ │ │ ├── core__gallery__columns.serialized.html │ │ │ │ ├── core__gallery__columns.server.html │ │ │ │ ├── core__heading__h2-em.html │ │ │ │ ├── core__heading__h2-em.json │ │ │ │ ├── core__heading__h2-em.parsed.json │ │ │ │ ├── core__heading__h2-em.serialized.html │ │ │ │ ├── core__heading__h2-em.server.html │ │ │ │ ├── core__heading__h2.html │ │ │ │ ├── core__heading__h2.json │ │ │ │ ├── core__heading__h2.parsed.json │ │ │ │ ├── core__heading__h2.serialized.html │ │ │ │ ├── core__heading__h2.server.html │ │ │ │ ├── core__html.html │ │ │ │ ├── core__html.json │ │ │ │ ├── core__html.parsed.json │ │ │ │ ├── core__html.serialized.html │ │ │ │ ├── core__html.server.html │ │ │ │ ├── core__image.html │ │ │ │ ├── core__image.json │ │ │ │ ├── core__image.parsed.json │ │ │ │ ├── core__image.serialized.html │ │ │ │ ├── core__image.server.html │ │ │ │ ├── core__image__attachment-link.html │ │ │ │ ├── core__image__attachment-link.json │ │ │ │ ├── core__image__attachment-link.parsed.json │ │ │ │ ├── core__image__attachment-link.serialized.html │ │ │ │ ├── core__image__attachment-link.server.html │ │ │ │ ├── core__image__center-caption.html │ │ │ │ ├── core__image__center-caption.json │ │ │ │ ├── core__image__center-caption.parsed.json │ │ │ │ ├── core__image__center-caption.serialized.html │ │ │ │ ├── core__image__center-caption.server.html │ │ │ │ ├── core__image__custom-link.html │ │ │ │ ├── core__image__custom-link.json │ │ │ │ ├── core__image__custom-link.parsed.json │ │ │ │ ├── core__image__custom-link.serialized.html │ │ │ │ ├── core__image__custom-link.server.html │ │ │ │ ├── core__image__media-link.html │ │ │ │ ├── core__image__media-link.json │ │ │ │ ├── core__image__media-link.parsed.json │ │ │ │ ├── core__image__media-link.serialized.html │ │ │ │ ├── core__image__media-link.server.html │ │ │ │ ├── core__invalid-Capitals.html │ │ │ │ ├── core__invalid-Capitals.json │ │ │ │ ├── core__invalid-Capitals.parsed.json │ │ │ │ ├── core__invalid-Capitals.serialized.html │ │ │ │ ├── core__invalid-Capitals.server.html │ │ │ │ ├── core__invalid-special.html │ │ │ │ ├── core__invalid-special.json │ │ │ │ ├── core__invalid-special.parsed.json │ │ │ │ ├── core__invalid-special.serialized.html │ │ │ │ ├── core__invalid-special.server.html │ │ │ │ ├── core__latest-comments.html │ │ │ │ ├── core__latest-comments.json │ │ │ │ ├── core__latest-comments.parsed.json │ │ │ │ ├── core__latest-comments.serialized.html │ │ │ │ ├── core__latest-comments.server.html │ │ │ │ ├── core__latest-posts.html │ │ │ │ ├── core__latest-posts.json │ │ │ │ ├── core__latest-posts.parsed.json │ │ │ │ ├── core__latest-posts.serialized.html │ │ │ │ ├── core__latest-posts.server.html │ │ │ │ ├── core__latest-posts__displayPostDate.html │ │ │ │ ├── core__latest-posts__displayPostDate.json │ │ │ │ ├── core__latest-posts__displayPostDate.parsed.json │ │ │ │ ├── core__latest-posts__displayPostDate.serialized.html │ │ │ │ ├── core__latest-posts__displayPostDate.server.html │ │ │ │ ├── core__list__ul.html │ │ │ │ ├── core__list__ul.json │ │ │ │ ├── core__list__ul.parsed.json │ │ │ │ ├── core__list__ul.serialized.html │ │ │ │ ├── core__list__ul.server.html │ │ │ │ ├── core__media-text.html │ │ │ │ ├── core__media-text.json │ │ │ │ ├── core__media-text.parsed.json │ │ │ │ ├── core__media-text.serialized.html │ │ │ │ ├── core__media-text.server.html │ │ │ │ ├── core__media-text__image-alt-no-align.html │ │ │ │ ├── core__media-text__image-alt-no-align.json │ │ │ │ ├── core__media-text__image-alt-no-align.parsed.json │ │ │ │ ├── core__media-text__image-alt-no-align.serialized.html │ │ │ │ ├── core__media-text__image-alt-no-align.server.html │ │ │ │ ├── core__media-text__is-stacked-on-mobile.html │ │ │ │ ├── core__media-text__is-stacked-on-mobile.json │ │ │ │ ├── core__media-text__is-stacked-on-mobile.parsed.json │ │ │ │ ├── core__media-text__is-stacked-on-mobile.serialized.html │ │ │ │ ├── core__media-text__is-stacked-on-mobile.server.html │ │ │ │ ├── core__media-text__media-right-custom-width.html │ │ │ │ ├── core__media-text__media-right-custom-width.json │ │ │ │ ├── core__media-text__media-right-custom-width.parsed.json │ │ │ │ ├── core__media-text__media-right-custom-width.serialized.html │ │ │ │ ├── core__media-text__media-right-custom-width.server.html │ │ │ │ ├── core__media-text__video.html │ │ │ │ ├── core__media-text__video.json │ │ │ │ ├── core__media-text__video.parsed.json │ │ │ │ ├── core__media-text__video.serialized.html │ │ │ │ ├── core__media-text__video.server.html │ │ │ │ ├── core__missing.html │ │ │ │ ├── core__missing.json │ │ │ │ ├── core__missing.parsed.json │ │ │ │ ├── core__missing.serialized.html │ │ │ │ ├── core__missing.server.html │ │ │ │ ├── core__more.html │ │ │ │ ├── core__more.json │ │ │ │ ├── core__more.parsed.json │ │ │ │ ├── core__more.serialized.html │ │ │ │ ├── core__more.server.html │ │ │ │ ├── core__more__custom-text-teaser.html │ │ │ │ ├── core__more__custom-text-teaser.json │ │ │ │ ├── core__more__custom-text-teaser.parsed.json │ │ │ │ ├── core__more__custom-text-teaser.serialized.html │ │ │ │ ├── core__more__custom-text-teaser.server.html │ │ │ │ ├── core__nextpage.html │ │ │ │ ├── core__nextpage.json │ │ │ │ ├── core__nextpage.parsed.json │ │ │ │ ├── core__nextpage.serialized.html │ │ │ │ ├── core__nextpage.server.html │ │ │ │ ├── core__paragraph__align-right.html │ │ │ │ ├── core__paragraph__align-right.json │ │ │ │ ├── core__paragraph__align-right.parsed.json │ │ │ │ ├── core__paragraph__align-right.serialized.html │ │ │ │ ├── core__paragraph__align-right.server.html │ │ │ │ ├── core__paragraph__deprecated.html │ │ │ │ ├── core__paragraph__deprecated.json │ │ │ │ ├── core__paragraph__deprecated.parsed.json │ │ │ │ ├── core__paragraph__deprecated.serialized.html │ │ │ │ ├── core__paragraph__deprecated.server.html │ │ │ │ ├── core__preformatted.html │ │ │ │ ├── core__preformatted.json │ │ │ │ ├── core__preformatted.parsed.json │ │ │ │ ├── core__preformatted.serialized.html │ │ │ │ ├── core__preformatted.server.html │ │ │ │ ├── core__pullquote.html │ │ │ │ ├── core__pullquote.json │ │ │ │ ├── core__pullquote.parsed.json │ │ │ │ ├── core__pullquote.serialized.html │ │ │ │ ├── core__pullquote.server.html │ │ │ │ ├── core__pullquote__multi-paragraph.html │ │ │ │ ├── core__pullquote__multi-paragraph.json │ │ │ │ ├── core__pullquote__multi-paragraph.parsed.json │ │ │ │ ├── core__pullquote__multi-paragraph.serialized.html │ │ │ │ ├── core__pullquote__multi-paragraph.server.html │ │ │ │ ├── core__quote__style-1.html │ │ │ │ ├── core__quote__style-1.json │ │ │ │ ├── core__quote__style-1.parsed.json │ │ │ │ ├── core__quote__style-1.serialized.html │ │ │ │ ├── core__quote__style-1.server.html │ │ │ │ ├── core__quote__style-2.html │ │ │ │ ├── core__quote__style-2.json │ │ │ │ ├── core__quote__style-2.parsed.json │ │ │ │ ├── core__quote__style-2.serialized.html │ │ │ │ ├── core__quote__style-2.server.html │ │ │ │ ├── core__separator.html │ │ │ │ ├── core__separator.json │ │ │ │ ├── core__separator.parsed.json │ │ │ │ ├── core__separator.serialized.html │ │ │ │ ├── core__separator.server.html │ │ │ │ ├── core__shortcode.html │ │ │ │ ├── core__shortcode.json │ │ │ │ ├── core__shortcode.parsed.json │ │ │ │ ├── core__shortcode.serialized.html │ │ │ │ ├── core__shortcode.server.html │ │ │ │ ├── core__spacer.html │ │ │ │ ├── core__spacer.json │ │ │ │ ├── core__spacer.parsed.json │ │ │ │ ├── core__spacer.serialized.html │ │ │ │ ├── core__spacer.server.html │ │ │ │ ├── core__subhead.html │ │ │ │ ├── core__subhead.json │ │ │ │ ├── core__subhead.parsed.json │ │ │ │ ├── core__subhead.serialized.html │ │ │ │ ├── core__subhead.server.html │ │ │ │ ├── core__table.html │ │ │ │ ├── core__table.json │ │ │ │ ├── core__table.parsed.json │ │ │ │ ├── core__table.serialized.html │ │ │ │ ├── core__table.server.html │ │ │ │ ├── core__text-columns.html │ │ │ │ ├── core__text-columns.json │ │ │ │ ├── core__text-columns.parsed.json │ │ │ │ ├── core__text-columns.serialized.html │ │ │ │ ├── core__text-columns.server.html │ │ │ │ ├── core__text__converts-to-paragraph.html │ │ │ │ ├── core__text__converts-to-paragraph.json │ │ │ │ ├── core__text__converts-to-paragraph.parsed.json │ │ │ │ ├── core__text__converts-to-paragraph.serialized.html │ │ │ │ ├── core__text__converts-to-paragraph.server.html │ │ │ │ ├── core__verse.html │ │ │ │ ├── core__verse.json │ │ │ │ ├── core__verse.parsed.json │ │ │ │ ├── core__verse.serialized.html │ │ │ │ ├── core__verse.server.html │ │ │ │ ├── core__video.html │ │ │ │ ├── core__video.json │ │ │ │ ├── core__video.parsed.json │ │ │ │ ├── core__video.serialized.html │ │ │ │ └── core__video.server.html │ │ │ ├── notice │ │ │ │ ├── block-rtl.css │ │ │ │ ├── block.asset.php │ │ │ │ ├── block.css │ │ │ │ ├── block.js │ │ │ │ └── block.json │ │ │ └── pattern-directory │ │ │ │ ├── browse-all.json │ │ │ │ ├── browse-category-2.json │ │ │ │ ├── browse-keyword-11.json │ │ │ │ └── search-button.json │ │ ├── export │ │ │ ├── crazy-cdata-escaped.xml │ │ │ ├── crazy-cdata.xml │ │ │ ├── invalid-version-tag.xml │ │ │ ├── malformed.xml │ │ │ ├── missing-version-tag.xml │ │ │ ├── slashes.xml │ │ │ ├── small-export.xml │ │ │ ├── test-serialized-postmeta-no-cdata.xml │ │ │ ├── test-serialized-postmeta-with-cdata.xml │ │ │ ├── test-utw-post-meta-import.xml │ │ │ ├── valid-wxr-1.0.xml │ │ │ └── valid-wxr-1.1.xml │ │ ├── feed │ │ │ └── wordpress-org-news.xml │ │ ├── formatting │ │ │ ├── big5.txt │ │ │ ├── entities.txt │ │ │ ├── file-header-cr-line-endings.php │ │ │ ├── file-header-php-open-tag-prefix.php │ │ │ ├── remove_accents.01.input.txt │ │ │ ├── sizzle.js │ │ │ ├── utf-8 │ │ │ │ ├── README │ │ │ │ ├── urlencode.py │ │ │ │ ├── urlencoded.txt │ │ │ │ └── utf-8.txt │ │ │ ├── whole-posts.php │ │ │ ├── windows1252.py │ │ │ └── xssAttacks.xml │ │ ├── functions │ │ │ └── dummy.txt │ │ ├── images │ │ │ ├── 2004-07-22-DSC_0007.jpg │ │ │ ├── 2004-07-22-DSC_0008.jpg │ │ │ ├── 2007-06-17DSC_4173.JPG │ │ │ ├── 33772.jpg │ │ │ ├── a2-small.jpg │ │ │ ├── canola.jpg │ │ │ ├── codeispoetry.png │ │ │ ├── gradient-square.jpg │ │ │ ├── one-blue-pixel-1-100x100.png │ │ │ ├── one-blue-pixel-100x100.png │ │ │ ├── test-image-1-100x100.jpg │ │ │ ├── test-image-2.gif │ │ │ ├── test-image-3.jpg │ │ │ ├── test-image-4.png │ │ │ ├── test-image-cmyk.jpg │ │ │ ├── test-image-grayscale.jpg │ │ │ ├── test-image-iptc.jpg │ │ │ ├── test-image-large.jpg │ │ │ ├── test-image-lzw.tiff │ │ │ ├── test-image-mime-jpg.png │ │ │ ├── test-image-no-extension │ │ │ ├── test-image-upside-down.jpg │ │ │ ├── test-image-zip.tiff │ │ │ ├── test-image.bmp │ │ │ ├── test-image.gif │ │ │ ├── test-image.ico │ │ │ ├── test-image.jp2 │ │ │ ├── test-image.jpg │ │ │ ├── test-image.pct │ │ │ ├── test-image.png │ │ │ ├── test-image.psd │ │ │ ├── test-image.sgi │ │ │ ├── test-image.tga │ │ │ ├── test-image.tiff │ │ │ ├── test-image.webp │ │ │ ├── transparent.png │ │ │ ├── waffles.jpg │ │ │ ├── webp-animated.webp │ │ │ ├── webp-lossless.webp │ │ │ ├── webp-lossy.webp │ │ │ ├── webp-transparent.webp │ │ │ └── wordpress-gsoc-flyer.pdf │ │ ├── languages │ │ │ ├── admin-en_GB.mo │ │ │ ├── admin-en_GB.po │ │ │ ├── admin-en_US-script-handle.json │ │ │ ├── admin-es_ES.mo │ │ │ ├── admin-es_ES.po │ │ │ ├── admin-network-en_GB.mo │ │ │ ├── admin-network-en_GB.po │ │ │ ├── admin-network-es_ES.mo │ │ │ ├── admin-network-es_ES.po │ │ │ ├── continents-cities-es_ES.mo │ │ │ ├── continents-cities-es_ES.po │ │ │ ├── de_DE.mo │ │ │ ├── de_DE.po │ │ │ ├── en_GB.mo │ │ │ ├── en_GB.po │ │ │ ├── en_US-813e104eb47e13dd4cc5af844c618754.json │ │ │ ├── es_ES.mo │ │ │ ├── es_ES.po │ │ │ ├── ja_JP.mo │ │ │ ├── ja_JP.po │ │ │ ├── plugins │ │ │ │ ├── internationalized-plugin-de_DE.mo │ │ │ │ ├── internationalized-plugin-de_DE.po │ │ │ │ ├── internationalized-plugin-en_US-2f86cb96a0233e7cb3b6f03ad573be0b.json │ │ │ │ ├── notice-pl_PL.mo │ │ │ │ └── notice-pl_PL.po │ │ │ └── themes │ │ │ │ ├── block-theme-pl_PL.mo │ │ │ │ ├── block-theme-pl_PL.po │ │ │ │ ├── internationalized-theme-de_DE.mo │ │ │ │ ├── internationalized-theme-de_DE.po │ │ │ │ └── internationalized-theme-en_US-2f86cb96a0233e7cb3b6f03ad573be0b.json │ │ ├── plugins │ │ │ ├── hello.php │ │ │ ├── internationalized-plugin.php │ │ │ └── link-manager.zip │ │ ├── pomo │ │ │ ├── bad_nplurals.mo │ │ │ ├── bad_nplurals.po │ │ │ ├── context.mo │ │ │ ├── de_DE-2.8.mo │ │ │ ├── empty.po │ │ │ ├── mo.pot │ │ │ ├── overload.mo │ │ │ ├── plural.mo │ │ │ ├── simple.mo │ │ │ ├── simple.po │ │ │ └── windows-line-endings.po │ │ ├── theme-file-child │ │ │ ├── child-only.php │ │ │ ├── parent-and-child.php │ │ │ └── style.css │ │ ├── theme-file-parent │ │ │ ├── parent-and-child.php │ │ │ ├── parent-only.php │ │ │ └── style.css │ │ ├── themedir1 │ │ │ ├── block-theme │ │ │ │ ├── index.php │ │ │ │ ├── style.css │ │ │ │ └── theme.json │ │ │ ├── broken-theme │ │ │ │ └── .nodelete │ │ │ ├── camelCase │ │ │ │ ├── index.php │ │ │ │ └── style.css │ │ │ ├── child-parent-itself │ │ │ │ └── style.css │ │ │ ├── default │ │ │ │ ├── comments.php │ │ │ │ ├── footer.php │ │ │ │ ├── functions.php │ │ │ │ ├── header.php │ │ │ │ ├── index.php │ │ │ │ ├── sidebar.php │ │ │ │ ├── style.css │ │ │ │ └── template-part.php │ │ │ ├── internationalized-theme │ │ │ │ ├── functions.php │ │ │ │ ├── index.php │ │ │ │ └── style.css │ │ │ ├── page-templates-child │ │ │ │ ├── style.css │ │ │ │ ├── subdir │ │ │ │ │ └── template-sub-dir-post-types-child.php │ │ │ │ └── template-top-level-post-types-child.php │ │ │ ├── page-templates │ │ │ │ ├── 38766 │ │ │ │ │ ├── no-trailing-period-post-types.php │ │ │ │ │ ├── tilde-post-types.php │ │ │ │ │ ├── trailing-comma-post-types.php │ │ │ │ │ ├── trailing-period-post-types.php │ │ │ │ │ ├── trailing-period-whitespace-post-types.php │ │ │ │ │ └── trailing-whitespace-period-post-types.php │ │ │ │ ├── index.php │ │ │ │ ├── style.css │ │ │ │ ├── subdir │ │ │ │ │ ├── template-sub-dir-post-types.php │ │ │ │ │ └── template-sub-dir.php │ │ │ │ ├── template-header.php │ │ │ │ ├── template-top-level-post-types.php │ │ │ │ └── template-top-level.php │ │ │ ├── rest-api │ │ │ │ └── style.css │ │ │ ├── sandbox │ │ │ │ ├── functions.php │ │ │ │ ├── index.php │ │ │ │ └── style.css │ │ │ ├── stylesheetonly │ │ │ │ └── style.css │ │ │ ├── subdir │ │ │ │ ├── theme with spaces │ │ │ │ │ ├── index.php │ │ │ │ │ └── style.css │ │ │ │ └── theme2 │ │ │ │ │ ├── functions.php │ │ │ │ │ ├── index.php │ │ │ │ │ └── style.css │ │ │ ├── theme1-dupe │ │ │ │ ├── functions.php │ │ │ │ ├── index.php │ │ │ │ └── style.css │ │ │ └── theme1 │ │ │ │ ├── functions.php │ │ │ │ ├── index.php │ │ │ │ └── style.css │ │ ├── uploads │ │ │ ├── dashicons.woff │ │ │ ├── pages-to-word.docx │ │ │ ├── small-audio.flac │ │ │ ├── small-audio.mp3 │ │ │ ├── small-video.mkv │ │ │ ├── small-video.mov │ │ │ ├── small-video.mp4 │ │ │ ├── small-video.webm │ │ │ ├── test.csv │ │ │ ├── test.dfxp │ │ │ ├── test.rtf │ │ │ ├── test.tsv │ │ │ ├── test.vtt │ │ │ └── video-play.svg │ │ └── widgets │ │ │ └── custom-widget-classes.php │ ├── includes │ │ ├── abstract-testcase.php │ │ ├── bootstrap.php │ │ ├── class-basic-object.php │ │ ├── class-basic-subclass.php │ │ ├── class-jsonserializable-object.php │ │ ├── class-wp-fake-block-type.php │ │ ├── class-wp-rest-test-configurable-controller.php │ │ ├── class-wp-rest-test-search-handler.php │ │ ├── class-wp-sitemaps-empty-test-provider.php │ │ ├── class-wp-sitemaps-large-test-provider.php │ │ ├── class-wp-sitemaps-test-provider.php │ │ ├── class-wp-test-stream.php │ │ ├── exceptions.php │ │ ├── factory.php │ │ ├── factory │ │ │ ├── class-wp-unittest-factory-callback-after-create.php │ │ │ ├── class-wp-unittest-factory-for-attachment.php │ │ │ ├── class-wp-unittest-factory-for-blog.php │ │ │ ├── class-wp-unittest-factory-for-bookmark.php │ │ │ ├── class-wp-unittest-factory-for-comment.php │ │ │ ├── class-wp-unittest-factory-for-network.php │ │ │ ├── class-wp-unittest-factory-for-post.php │ │ │ ├── class-wp-unittest-factory-for-term.php │ │ │ ├── class-wp-unittest-factory-for-thing.php │ │ │ ├── class-wp-unittest-factory-for-user.php │ │ │ ├── class-wp-unittest-factory.php │ │ │ └── class-wp-unittest-generator-sequence.php │ │ ├── functions.php │ │ ├── install.php │ │ ├── mock-fs.php │ │ ├── mock-image-editor.php │ │ ├── mock-mailer.php │ │ ├── normalize-xml.xsl │ │ ├── object-cache.php │ │ ├── phpunit-adapter-testcase.php │ │ ├── phpunit6 │ │ │ └── compat.php │ │ ├── plural-form-function.php │ │ ├── spy-rest-server.php │ │ ├── testcase-ajax.php │ │ ├── testcase-canonical.php │ │ ├── testcase-rest-api.php │ │ ├── testcase-rest-controller.php │ │ ├── testcase-rest-post-type-controller.php │ │ ├── testcase-xml.php │ │ ├── testcase-xmlrpc.php │ │ ├── testcase.php │ │ ├── trac.php │ │ ├── utils.php │ │ └── wp-profiler.php │ ├── multisite.xml │ ├── tests │ │ ├── actions.php │ │ ├── actions │ │ │ ├── callbacks.php │ │ │ └── closures.php │ │ ├── admin │ │ │ ├── includesComment.php │ │ │ ├── includesFile.php │ │ │ ├── includesMisc.php │ │ │ ├── includesPlugin.php │ │ │ ├── includesPost.php │ │ │ ├── includesSchema.php │ │ │ ├── includesScreen.php │ │ │ ├── includesTemplate.php │ │ │ ├── includesTheme.php │ │ │ ├── includesUser.php │ │ │ ├── wpCommentsListTable.php │ │ │ ├── wpCommunityEvents.php │ │ │ ├── wpMediaListTable.php │ │ │ ├── wpPostsListTable.php │ │ │ └── wpPrivacyRequestsTable.php │ │ ├── adminbar.php │ │ ├── ajax │ │ │ ├── AddMeta.php │ │ │ ├── Attachments.php │ │ │ ├── Autosave.php │ │ │ ├── Compression.php │ │ │ ├── CustomizeManager.php │ │ │ ├── CustomizeMenus.php │ │ │ ├── DeleteComment.php │ │ │ ├── DeletePlugin.php │ │ │ ├── DimComment.php │ │ │ ├── EditComment.php │ │ │ ├── GetComments.php │ │ │ ├── ManageThemes.php │ │ │ ├── MediaEdit.php │ │ │ ├── PrivacyErasePersonalData.php │ │ │ ├── PrivacyExportPersonalData.php │ │ │ ├── QuickEdit.php │ │ │ ├── ReplytoComment.php │ │ │ ├── Response.php │ │ │ ├── TagSearch.php │ │ │ └── UpdatePlugin.php │ │ ├── attachment │ │ │ └── slashes.php │ │ ├── auth.php │ │ ├── avatar.php │ │ ├── basic.php │ │ ├── block-template-utils.php │ │ ├── block-template.php │ │ ├── blocks │ │ │ ├── context.php │ │ │ ├── editor.php │ │ │ ├── register.php │ │ │ ├── render.php │ │ │ ├── renderReusable.php │ │ │ ├── serialize.php │ │ │ ├── supportedStyles.php │ │ │ ├── wpBlock.php │ │ │ ├── wpBlockList.php │ │ │ ├── wpBlockParser.php │ │ │ ├── wpBlockType.php │ │ │ └── wpBlockTypeRegistry.php │ │ ├── bookmark │ │ │ ├── getBookmark.php │ │ │ └── getBookmarks.php │ │ ├── cache.php │ │ ├── canonical.php │ │ ├── canonical │ │ │ ├── category.php │ │ │ ├── customRules.php │ │ │ ├── https.php │ │ │ ├── noRewrite.php │ │ │ ├── pageOnFront.php │ │ │ ├── paged.php │ │ │ ├── postStatus.php │ │ │ ├── robots.php │ │ │ └── sitemaps.php │ │ ├── category.php │ │ ├── category │ │ │ ├── categoryDescription.php │ │ │ ├── getCategories.php │ │ │ ├── getCategoryLink.php │ │ │ ├── getCategoryParents.php │ │ │ ├── getTheCategoryById.php │ │ │ ├── walkerCategory.php │ │ │ ├── wpDropdownCategories.php │ │ │ └── wpListCategories.php │ │ ├── comment-submission.php │ │ ├── comment.php │ │ ├── comment │ │ │ ├── checkComment.php │ │ │ ├── commentForm.php │ │ │ ├── commentsTemplate.php │ │ │ ├── dateQuery.php │ │ │ ├── getCommentAuthorEmailLink.php │ │ │ ├── getCommentAuthorUrl.php │ │ │ ├── getCommentAuthorUrlLink.php │ │ │ ├── getCommentClass.php │ │ │ ├── getCommentCount.php │ │ │ ├── getCommentExcerpt.php │ │ │ ├── getCommentLink.php │ │ │ ├── getCommentReplyLink.php │ │ │ ├── getCommentsPagesCount.php │ │ │ ├── getPageOfComment.php │ │ │ ├── isAvatarCommentType.php │ │ │ ├── lastCommentModified.php │ │ │ ├── metaCache.php │ │ │ ├── query.php │ │ │ ├── slashes.php │ │ │ ├── template.php │ │ │ ├── walker.php │ │ │ ├── wpAllowComment.php │ │ │ ├── wpBatchUpdateCommentType.php │ │ │ ├── wpBlacklistCheck.php │ │ │ ├── wpComment.php │ │ │ ├── wpCountComments.php │ │ │ ├── wpListComments.php │ │ │ └── wpUpdateCommentCountNow.php │ │ ├── compat │ │ │ ├── hashHmac.php │ │ │ ├── isCountable.php │ │ │ ├── isIterable.php │ │ │ ├── jsonEncodeDecode.php │ │ │ ├── mbStrlen.php │ │ │ └── mbSubstr.php │ │ ├── cron.php │ │ ├── cron │ │ │ └── setCronArray.php │ │ ├── customize │ │ │ ├── control.php │ │ │ ├── custom-css-setting.php │ │ │ ├── manager.php │ │ │ ├── nav-menu-item-setting.php │ │ │ ├── nav-menu-setting.php │ │ │ ├── nav-menus.php │ │ │ ├── panel.php │ │ │ ├── partial.php │ │ │ ├── section.php │ │ │ ├── selective-refresh-ajax.php │ │ │ ├── selective-refresh.php │ │ │ ├── setting.php │ │ │ └── widgets.php │ │ ├── date │ │ │ ├── currentTime.php │ │ │ ├── dateI18n.php │ │ │ ├── getCommentDate.php │ │ │ ├── getFeedBuildDate.php │ │ │ ├── getPermalink.php │ │ │ ├── getPostTime.php │ │ │ ├── getTheDate.php │ │ │ ├── getTheModifiedDate.php │ │ │ ├── maybeDeclineDate.php │ │ │ ├── mysql2date.php │ │ │ ├── query.php │ │ │ ├── theDate.php │ │ │ ├── wpDate.php │ │ │ ├── wpTimezone.php │ │ │ └── xmlrpc.php │ │ ├── db.php │ │ ├── db │ │ │ ├── charset.php │ │ │ └── realEscape.php │ │ ├── dbdelta.php │ │ ├── dependencies.php │ │ ├── dependencies │ │ │ ├── jquery.php │ │ │ ├── scripts.php │ │ │ ├── styles.php │ │ │ ├── wpInlineScriptTag.php │ │ │ ├── wpSanitizeScriptAttributes.php │ │ │ └── wpScriptTag.php │ │ ├── editor │ │ │ └── wpEditors.php │ │ ├── error-protection │ │ │ ├── wpRecoveryModeCookieService.php │ │ │ └── wpRecoveryModeKeyService.php │ │ ├── external-http │ │ │ └── basic.php │ │ ├── feed │ │ │ ├── atom.php │ │ │ ├── rss2.php │ │ │ └── wpSimplePieFile.php │ │ ├── file.php │ │ ├── filesystem │ │ │ ├── base.php │ │ │ └── findFolder.php │ │ ├── filters.php │ │ ├── formatting │ │ │ ├── balanceTags.php │ │ │ ├── capitalPDangit.php │ │ │ ├── cleanPre.php │ │ │ ├── convertInvalidEntries.php │ │ │ ├── convertSmilies.php │ │ │ ├── date.php │ │ │ ├── emoji.php │ │ │ ├── ent2ncr.php │ │ │ ├── escAttr.php │ │ │ ├── escHtml.php │ │ │ ├── escJs.php │ │ │ ├── escTextarea.php │ │ │ ├── escUrl.php │ │ │ ├── escXml.php │ │ │ ├── excerptRemoveBlocks.php │ │ │ ├── getBloginfo.php │ │ │ ├── getUrlInContent.php │ │ │ ├── humanTimeDiff.php │ │ │ ├── isEmail.php │ │ │ ├── likeEscape.php │ │ │ ├── linksAddTarget.php │ │ │ ├── makeClickable.php │ │ │ ├── mapDeep.php │ │ │ ├── normalizeWhitespace.php │ │ │ ├── redirect.php │ │ │ ├── removeAccents.php │ │ │ ├── sanitizeFileName.php │ │ │ ├── sanitizeMimeType.php │ │ │ ├── sanitizeOrderby.php │ │ │ ├── sanitizePost.php │ │ │ ├── sanitizeTextField.php │ │ │ ├── sanitizeTitle.php │ │ │ ├── sanitizeTitleWithDashes.php │ │ │ ├── sanitizeTrackbackUrls.php │ │ │ ├── sanitizeUser.php │ │ │ ├── seemsUtf8.php │ │ │ ├── slashit.php │ │ │ ├── stripslashesDeep.php │ │ │ ├── urlShorten.php │ │ │ ├── urlencodeDeep.php │ │ │ ├── utf8UriEncode.php │ │ │ ├── wpAutop.php │ │ │ ├── wpBasename.php │ │ │ ├── wpHtmlExcerpt.php │ │ │ ├── wpHtmlSplit.php │ │ │ ├── wpHtmleditPre.php │ │ │ ├── wpIsoDescrambler.php │ │ │ ├── wpMakeLinkRelative.php │ │ │ ├── wpParseStr.php │ │ │ ├── wpRelNofollow.php │ │ │ ├── wpRelUgc.php │ │ │ ├── wpReplaceInHtmlTags.php │ │ │ ├── wpRicheditPre.php │ │ │ ├── wpSlash.php │ │ │ ├── wpSpecialchars.php │ │ │ ├── wpStripAllTags.php │ │ │ ├── wpTargetedLinkRel.php │ │ │ ├── wpTexturize.php │ │ │ ├── wpTrimExcerpt.php │ │ │ ├── wpTrimWords.php │ │ │ └── zeroise.php │ │ ├── functions.php │ │ ├── functions │ │ │ ├── addMagicQuotes.php │ │ │ ├── allowedProtocols.php │ │ │ ├── anonymization.php │ │ │ ├── canonicalCharset.php │ │ │ ├── cleanDirsizeCache.php │ │ │ ├── cleanupHeaderComment.php │ │ │ ├── deprecated.php │ │ │ ├── doEnclose.php │ │ │ ├── getStatusHeaderDesc.php │ │ │ ├── getWeekstartend.php │ │ │ ├── isNewDay.php │ │ │ ├── isSerializedString.php │ │ │ ├── listFiles.php │ │ │ ├── numberFormatI18n.php │ │ │ ├── pluginBasename.php │ │ │ ├── referer.php │ │ │ ├── removeQueryArg.php │ │ │ ├── sizeFormat.php │ │ │ ├── underscoreReturn.php │ │ │ ├── wp.php │ │ │ ├── wpArrayGet.php │ │ │ ├── wpArraySet.php │ │ │ ├── wpArraySliceAssoc.php │ │ │ ├── wpAuthCheck.php │ │ │ ├── wpFilterObjectList.php │ │ │ ├── wpGetArchives.php │ │ │ ├── wpGetMimeTypes.php │ │ │ ├── wpListFilter.php │ │ │ ├── wpListPluck.php │ │ │ ├── wpListSort.php │ │ │ ├── wpListUtil.php │ │ │ ├── wpNonceAys.php │ │ │ ├── wpRemoteFopen.php │ │ │ ├── wpToKebabCase.php │ │ │ └── wpValidateBoolean.php │ │ ├── general │ │ │ ├── paginateLinks.php │ │ │ ├── template.php │ │ │ ├── template_CheckedSelectedHelper.php │ │ │ ├── wpError.php │ │ │ ├── wpGetArchives.php │ │ │ ├── wpGetDocumentTitle.php │ │ │ └── wpResourceHints.php │ │ ├── hooks │ │ │ ├── addFilter.php │ │ │ ├── applyFilters.php │ │ │ ├── doAction.php │ │ │ ├── doAllHook.php │ │ │ ├── hasFilter.php │ │ │ ├── hasFilters.php │ │ │ ├── iterator.php │ │ │ ├── preinitHooks.php │ │ │ ├── removeAllFilters.php │ │ │ └── removeFilter.php │ │ ├── http │ │ │ ├── base.php │ │ │ ├── curl.php │ │ │ ├── functions.php │ │ │ ├── http.php │ │ │ ├── streams.php │ │ │ ├── wpGetHttpHeaders.php │ │ │ └── wpRemoteRetrieveHeaders.php │ │ ├── https-detection.php │ │ ├── https-migration.php │ │ ├── image │ │ │ ├── base.php │ │ │ ├── dimensions.php │ │ │ ├── editor.php │ │ │ ├── editorGd.php │ │ │ ├── editorImagick.php │ │ │ ├── functions.php │ │ │ ├── header.php │ │ │ ├── intermediateSize.php │ │ │ ├── meta.php │ │ │ ├── resize.php │ │ │ ├── resizeGd.php │ │ │ ├── resizeImagick.php │ │ │ ├── siteIcon.php │ │ │ └── size.php │ │ ├── import │ │ │ ├── base.php │ │ │ ├── import.php │ │ │ ├── parser.php │ │ │ └── postmeta.php │ │ ├── includes │ │ │ ├── factory.php │ │ │ └── helpers.php │ │ ├── kses.php │ │ ├── l10n.php │ │ ├── l10n │ │ │ ├── getLocale.php │ │ │ ├── getUserLocale.php │ │ │ ├── loadScriptTextdomain.php │ │ │ ├── loadTextdomain.php │ │ │ ├── loadTextdomainJustInTime.php │ │ │ ├── translateSettingsUsingI18nSchema.php │ │ │ └── wpLocaleSwitcher.php │ │ ├── link.php │ │ ├── link │ │ │ ├── getAdjacentPost.php │ │ │ ├── getAdjacentPostLink.php │ │ │ ├── getDashboardUrl.php │ │ │ ├── getFeedLink.php │ │ │ ├── getNextCommentsLink.php │ │ │ ├── getPostCommentsFeedLink.php │ │ │ ├── getPostTypeArchiveLink.php │ │ │ ├── getPreviewPostLink.php │ │ │ ├── getPreviousCommentsLink.php │ │ │ ├── getThePrivacyPolicyLink.php │ │ │ ├── selfAdminUrl.php │ │ │ ├── themeFile.php │ │ │ └── wpGetCanonicalUrl.php │ │ ├── load │ │ │ ├── wpConvertHrToBytes.php │ │ │ ├── wpDebugMode.php │ │ │ └── wpIsIniValueChangeable.php │ │ ├── locale.php │ │ ├── mail.php │ │ ├── media.php │ │ ├── media │ │ │ ├── getAdjacentImageLink.php │ │ │ ├── getAttachmentTaxonomies.php │ │ │ ├── getNextImageLink.php │ │ │ ├── getPreviousImageLink.php │ │ │ ├── nextImageLink.php │ │ │ ├── previousImageLink.php │ │ │ └── testcase-adjacent-image-link.php │ │ ├── menu │ │ │ ├── nav-menu.php │ │ │ ├── walker-nav-menu-edit.php │ │ │ ├── walker-nav-menu.php │ │ │ ├── wpAjaxMenuQuickSearch.php │ │ │ └── wpExpandNavMenuPostData.php │ │ ├── meta.php │ │ ├── meta │ │ │ ├── deleteMetadata.php │ │ │ ├── isProtectedMeta.php │ │ │ ├── query.php │ │ │ ├── registerMeta.php │ │ │ ├── slashes.php │ │ │ └── updateMetadata.php │ │ ├── multisite.php │ │ ├── multisite │ │ │ ├── avoidBlogPagePermalinkCollision.php │ │ │ ├── bootstrap.php │ │ │ ├── cleanDirsizeCache.php │ │ │ ├── getBlogDetails.php │ │ │ ├── getIdFromBlogname.php │ │ │ ├── getMainSiteId.php │ │ │ ├── getSite.php │ │ │ ├── getSpaceAllowed.php │ │ │ ├── getSpaceUsed.php │ │ │ ├── isEmailAddressUnsafe.php │ │ │ ├── isUploadSpaceAvailable.php │ │ │ ├── msFilesRewriting.php │ │ │ ├── network.php │ │ │ ├── site.php │ │ │ ├── siteDetails.php │ │ │ ├── siteMeta.php │ │ │ ├── updateBlogDetails.php │ │ │ ├── uploadIsUserOverQuota.php │ │ │ ├── wpGetSites.php │ │ │ ├── wpInstallDefaults.php │ │ │ ├── wpMsSitesListTable.php │ │ │ ├── wpNetworkQuery.php │ │ │ ├── wpSiteQuery.php │ │ │ ├── wpmuValidateBlogSignup.php │ │ │ └── wpmuValidateUserSignup.php │ │ ├── oembed │ │ │ ├── WpEmbed.php │ │ │ ├── controller.php │ │ │ ├── discovery.php │ │ │ ├── filterResult.php │ │ │ ├── filterTitleAttributes.php │ │ │ ├── getResponseData.php │ │ │ ├── headers.php │ │ │ ├── postEmbedUrl.php │ │ │ ├── template.php │ │ │ └── wpOembed.php │ │ ├── option │ │ │ ├── multisite.php │ │ │ ├── networkOption.php │ │ │ ├── option.php │ │ │ ├── registration.php │ │ │ ├── sanitize-option.php │ │ │ ├── siteOption.php │ │ │ ├── siteTransient.php │ │ │ ├── slashes.php │ │ │ ├── themeMods.php │ │ │ ├── transient.php │ │ │ ├── updateOption.php │ │ │ ├── userSettings.php │ │ │ └── wpLoadAllOptions.php │ │ ├── pluggable.php │ │ ├── pomo │ │ │ ├── mo.php │ │ │ ├── noopTranslations.php │ │ │ ├── pluralForms.php │ │ │ ├── po.php │ │ │ ├── translationEntry.php │ │ │ └── translations.php │ │ ├── post.php │ │ ├── post │ │ │ ├── attachments.php │ │ │ ├── bodyClass.php │ │ │ ├── filtering.php │ │ │ ├── formats.php │ │ │ ├── getBodyClass.php │ │ │ ├── getLastPostDate.php │ │ │ ├── getLastPostModified.php │ │ │ ├── getPageByPath.php │ │ │ ├── getPageChildren.php │ │ │ ├── getPageUri.php │ │ │ ├── getPages.php │ │ │ ├── getPostClass.php │ │ │ ├── getPostStatus.php │ │ │ ├── getPostTypeLabels.php │ │ │ ├── getPosts.php │ │ │ ├── getPostsByAuthorSql.php │ │ │ ├── getTheContent.php │ │ │ ├── getTheExcerpt.php │ │ │ ├── isPostPubliclyViewable.php │ │ │ ├── isPostStatusViewable.php │ │ │ ├── isPostTypeViewable.php │ │ │ ├── meta.php │ │ │ ├── nav-menu.php │ │ │ ├── objects.php │ │ │ ├── output.php │ │ │ ├── pings.php │ │ │ ├── postClass.php │ │ │ ├── query.php │ │ │ ├── revisions.php │ │ │ ├── slashes.php │ │ │ ├── template.php │ │ │ ├── thumbnails.php │ │ │ ├── types.php │ │ │ ├── walkerPage.php │ │ │ ├── wpAfterInsertPost.php │ │ │ ├── wpGetPostParentId.php │ │ │ ├── wpInsertPost.php │ │ │ ├── wpListPages.php │ │ │ ├── wpPost.php │ │ │ ├── wpPostType.php │ │ │ ├── wpPublishPost.php │ │ │ └── wpUniquePostSlug.php │ │ ├── privacy │ │ │ ├── wpCreateUserRequest.php │ │ │ ├── wpPrivacyCompletedRequest.php │ │ │ ├── wpPrivacyDeleteOldExportFiles.php │ │ │ ├── wpPrivacyGeneratePersonalDataExportFile.php │ │ │ ├── wpPrivacyGeneratePersonalDataExportGroupHtml.php │ │ │ ├── wpPrivacyProcessPersonalDataExportPage.php │ │ │ ├── wpPrivacySendErasureFulfillmentNotification.php │ │ │ ├── wpPrivacySendPersonalDataExportEmail.php │ │ │ └── wpPrivacySendRequestConfirmationNotification.php │ │ ├── query.php │ │ ├── query │ │ │ ├── commentCount.php │ │ │ ├── conditionals.php │ │ │ ├── date.php │ │ │ ├── dateQuery.php │ │ │ ├── generatePostdata.php │ │ │ ├── invalidQueries.php │ │ │ ├── isTerm.php │ │ │ ├── metaQuery.php │ │ │ ├── noFoundRows.php │ │ │ ├── parseQuery.php │ │ │ ├── postStatus.php │ │ │ ├── results.php │ │ │ ├── search.php │ │ │ ├── setupPostdata.php │ │ │ ├── stickies.php │ │ │ ├── taxQuery.php │ │ │ ├── vars.php │ │ │ └── verboseRewriteRules.php │ │ ├── rest-api.php │ │ ├── rest-api │ │ │ ├── application-passwords.php │ │ │ ├── json_schema_test_suite │ │ │ │ ├── anyof.json │ │ │ │ ├── oneof.json │ │ │ │ └── uniqueitems.json │ │ │ ├── rest-application-passwords-controller.php │ │ │ ├── rest-attachments-controller.php │ │ │ ├── rest-autosaves-controller.php │ │ │ ├── rest-block-directory-controller.php │ │ │ ├── rest-block-renderer-controller.php │ │ │ ├── rest-block-type-controller.php │ │ │ ├── rest-blocks-controller.php │ │ │ ├── rest-categories-controller.php │ │ │ ├── rest-comments-controller.php │ │ │ ├── rest-controller.php │ │ │ ├── rest-pages-controller.php │ │ │ ├── rest-pattern-directory-controller.php │ │ │ ├── rest-plugins-controller.php │ │ │ ├── rest-post-meta-fields.php │ │ │ ├── rest-post-statuses-controller.php │ │ │ ├── rest-post-types-controller.php │ │ │ ├── rest-posts-controller.php │ │ │ ├── rest-request-validation.php │ │ │ ├── rest-request.php │ │ │ ├── rest-revisions-controller.php │ │ │ ├── rest-schema-sanitization.php │ │ │ ├── rest-schema-setup.php │ │ │ ├── rest-schema-validation.php │ │ │ ├── rest-search-controller.php │ │ │ ├── rest-server.php │ │ │ ├── rest-settings-controller.php │ │ │ ├── rest-sidebars-controller.php │ │ │ ├── rest-site-health-controller.php │ │ │ ├── rest-tags-controller.php │ │ │ ├── rest-taxonomies-controller.php │ │ │ ├── rest-templates-controller.php │ │ │ ├── rest-term-meta-fields.php │ │ │ ├── rest-test-controller.php │ │ │ ├── rest-themes-controller.php │ │ │ ├── rest-users-controller.php │ │ │ ├── rest-widget-types-controller.php │ │ │ ├── rest-widgets-controller.php │ │ │ └── wpRestUrlDetailsController.php │ │ ├── rewrite.php │ │ ├── rewrite │ │ │ ├── addRewriteEndpoint.php │ │ │ ├── addRewriteRule.php │ │ │ ├── numericSlugs.php │ │ │ ├── oldDateRedirect.php │ │ │ ├── oldSlugRedirect.php │ │ │ ├── permastructs.php │ │ │ └── rewriteTags.php │ │ ├── robots.php │ │ ├── shortcode.php │ │ ├── site-health.php │ │ ├── sitemaps │ │ │ ├── functions.php │ │ │ ├── sitemaps.php │ │ │ ├── wpSitemapsIndex.php │ │ │ ├── wpSitemapsPosts.php │ │ │ ├── wpSitemapsRegistry.php │ │ │ ├── wpSitemapsRenderer.php │ │ │ ├── wpSitemapsStylesheet.php │ │ │ ├── wpSitemapsTaxonomies.php │ │ │ └── wpSitemapsUsers.php │ │ ├── taxonomy.php │ │ ├── taxonomy │ │ │ ├── getObjectTaxonomies.php │ │ │ └── isTaxonomyViewable.php │ │ ├── template.php │ │ ├── term.php │ │ ├── term │ │ │ ├── cache.php │ │ │ ├── categoryExists.php │ │ │ ├── getEditTermLink.php │ │ │ ├── getTagLink.php │ │ │ ├── getTerm.php │ │ │ ├── getTermBy.php │ │ │ ├── getTermField.php │ │ │ ├── getTermLink.php │ │ │ ├── getTermParentsList.php │ │ │ ├── getTerms.php │ │ │ ├── getTheTerms.php │ │ │ ├── isObjectInTerm.php │ │ │ ├── meta.php │ │ │ ├── query.php │ │ │ ├── slashes.php │ │ │ ├── splitSharedTerm.php │ │ │ ├── taxQuery.php │ │ │ ├── termCounts.php │ │ │ ├── termExists.php │ │ │ ├── wpDeleteObjectTermRelationships.php │ │ │ ├── wpDeleteTerm.php │ │ │ ├── wpGenerateTagCloud.php │ │ │ ├── wpGetObjectTerms.php │ │ │ ├── wpInsertTerm.php │ │ │ ├── wpRemoveObjectTerms.php │ │ │ ├── wpSetObjectTerms.php │ │ │ ├── wpTaxonomy.php │ │ │ ├── wpTerm.php │ │ │ ├── wpUniqueTermSlug.php │ │ │ └── wpUpdateTerm.php │ │ ├── theme.php │ │ ├── theme │ │ │ ├── customHeader.php │ │ │ ├── getThemeStarterContent.php │ │ │ ├── support.php │ │ │ ├── themeDir.php │ │ │ ├── wpTheme.php │ │ │ ├── wpThemeGetAllowedFilters.php │ │ │ ├── wpThemeJson.php │ │ │ └── wpThemeJsonResolver.php │ │ ├── upload.php │ │ ├── url.php │ │ ├── url │ │ │ └── getPrivacyPolicyUrl.php │ │ ├── user.php │ │ ├── user │ │ │ ├── author.php │ │ │ ├── capabilities.php │ │ │ ├── countUserPosts.php │ │ │ ├── countUsers.php │ │ │ ├── dateQuery.php │ │ │ ├── getActiveBlogForUser.php │ │ │ ├── listAuthors.php │ │ │ ├── mapMetaCap.php │ │ │ ├── multisite.php │ │ │ ├── query.php │ │ │ ├── session.php │ │ │ ├── slashes.php │ │ │ ├── updateUserCaches.php │ │ │ ├── wpAuthenticateSpamCheck.php │ │ │ ├── wpDeleteUser.php │ │ │ ├── wpDropdownUsers.php │ │ │ ├── wpGetUsersWithNoRole.php │ │ │ ├── wpSendUserRequest.php │ │ │ └── wpSetCurrentUser.php │ │ ├── walker.php │ │ ├── widgets.php │ │ ├── widgets │ │ │ ├── wpWidgetCustomHtml.php │ │ │ ├── wpWidgetMedia.php │ │ │ ├── wpWidgetMediaAudio.php │ │ │ ├── wpWidgetMediaGallery.php │ │ │ ├── wpWidgetMediaImage.php │ │ │ ├── wpWidgetMediaVideo.php │ │ │ ├── wpWidgetRss.php │ │ │ └── wpWidgetText.php │ │ ├── wp.php │ │ ├── wp │ │ │ └── parseRequest.php │ │ └── xmlrpc │ │ │ ├── basic.php │ │ │ ├── client.php │ │ │ ├── mt │ │ │ └── getRecentPostTitles.php │ │ │ ├── mw │ │ │ ├── editPost.php │ │ │ ├── getPost.php │ │ │ ├── getRecentPosts.php │ │ │ └── newPost.php │ │ │ └── wp │ │ │ ├── deletePost.php │ │ │ ├── deleteTerm.php │ │ │ ├── editComment.php │ │ │ ├── editPost.php │ │ │ ├── editProfile.php │ │ │ ├── editTerm.php │ │ │ ├── getComment.php │ │ │ ├── getComments.php │ │ │ ├── getMediaItem.php │ │ │ ├── getOptions.php │ │ │ ├── getPage.php │ │ │ ├── getPageList.php │ │ │ ├── getPages.php │ │ │ ├── getPost.php │ │ │ ├── getPostType.php │ │ │ ├── getPostTypes.php │ │ │ ├── getPosts.php │ │ │ ├── getProfile.php │ │ │ ├── getRevisions.php │ │ │ ├── getTaxonomies.php │ │ │ ├── getTaxonomy.php │ │ │ ├── getTerm.php │ │ │ ├── getTerms.php │ │ │ ├── getUser.php │ │ │ ├── getUsers.php │ │ │ ├── newComment.php │ │ │ ├── newPost.php │ │ │ ├── newTerm.php │ │ │ ├── restoreRevision.php │ │ │ ├── setOptions.php │ │ │ └── uploadFile.php │ └── wp-mail-real-test.php ├── qunit │ ├── .jshintrc │ ├── fixtures │ │ ├── common.js │ │ ├── customize-header.js │ │ ├── customize-menus.js │ │ ├── customize-settings.js │ │ ├── customize-widgets.js │ │ ├── js-widgets-endpoint.js │ │ ├── updates.js │ │ ├── wp-api-generated.js │ │ └── wp-api.js │ ├── index.html │ ├── wp-admin │ │ └── js │ │ │ ├── customize-base.js │ │ │ ├── customize-controls-utils.js │ │ │ ├── customize-controls.js │ │ │ ├── customize-header.js │ │ │ ├── customize-nav-menus.js │ │ │ ├── customize-widgets.js │ │ │ ├── dashboard.js │ │ │ ├── nav-menu.js │ │ │ ├── password-strength-meter.js │ │ │ ├── updates.js │ │ │ ├── widgets │ │ │ ├── test-media-gallery-widget.js │ │ │ ├── test-media-image-widget.js │ │ │ ├── test-media-video-widget.js │ │ │ └── test-media-widgets.js │ │ │ └── word-count.js │ └── wp-includes │ │ └── js │ │ ├── api-request.js │ │ ├── jquery.js │ │ ├── shortcode.js │ │ ├── tinymce │ │ ├── plugins │ │ │ └── wptextpattern │ │ │ │ └── plugin.js │ │ └── tinymce-obsolete.js │ │ └── wp-api.js └── visual-regression │ ├── README.md │ ├── config │ └── bootstrap.js │ ├── jest.config.js │ ├── run-tests.js │ └── specs │ └── visual-snapshots.test.js ├── tools ├── local-env │ ├── default.template │ ├── mysql-init.sql │ ├── php-config.ini │ ├── phpunit-config.ini │ └── scripts │ │ ├── docker.js │ │ ├── install.js │ │ └── start.js └── webpack │ ├── blocks.js │ ├── media.js │ └── packages.js ├── webpack.config.js ├── wp-cli.yml ├── wp-config-sample.php └── wp-tests-config-sample.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/.env -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc-jsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/.eslintrc-jsdoc.js -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- 1 | comment: false 2 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/coding-standards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/.github/workflows/coding-standards.yml -------------------------------------------------------------------------------- /.github/workflows/end-to-end-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/.github/workflows/end-to-end-tests.yml -------------------------------------------------------------------------------- /.github/workflows/javascript-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/.github/workflows/javascript-tests.yml -------------------------------------------------------------------------------- /.github/workflows/php-compatibility.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/.github/workflows/php-compatibility.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/.github/workflows/phpunit-tests.yml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/.github/workflows/test-coverage.yml -------------------------------------------------------------------------------- /.github/workflows/test-npm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/.github/workflows/test-npm.yml -------------------------------------------------------------------------------- /.github/workflows/test-old-branches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/.github/workflows/test-old-branches.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact = true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/SECURITY.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/composer.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /jsdoc.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/jsdoc.conf.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/package.json -------------------------------------------------------------------------------- /phpcompat.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/phpcompat.xml.dist -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/_index.php -------------------------------------------------------------------------------- /src/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/index.php -------------------------------------------------------------------------------- /src/js/_enqueues/admin/auth-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/admin/auth-app.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/admin/comment.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/admin/common.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/custom-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/admin/custom-header.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/edit-comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/admin/edit-comments.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/admin/link.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/media-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/admin/media-upload.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/admin/media.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/admin/post.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/postbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/admin/postbox.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/privacy-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/admin/privacy-tools.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/site-health.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/admin/site-health.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/tags-box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/admin/tags-box.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/tags-suggest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/admin/tags-suggest.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/admin/tags.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/admin/widgets.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/xfn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/admin/xfn.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/lib/accordion.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/admin-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/lib/admin-bar.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/ajax-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/lib/ajax-response.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/auth-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/lib/auth-check.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/color-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/lib/color-picker.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/comment-reply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/lib/comment-reply.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/lib/cookies.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/lib/dialog.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/emoji-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/lib/emoji-loader.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/lib/gallery.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/image-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/lib/image-edit.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/lib/link.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/lib/lists.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/nav-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/lib/nav-menu.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/pointer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/lib/pointer.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/quicktags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/lib/quicktags.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/user-suggest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/lib/user-suggest.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/zxcvbn-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/lib/zxcvbn-async.js -------------------------------------------------------------------------------- /src/js/_enqueues/vendor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/vendor/README.md -------------------------------------------------------------------------------- /src/js/_enqueues/vendor/farbtastic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/vendor/farbtastic.js -------------------------------------------------------------------------------- /src/js/_enqueues/vendor/iris.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/vendor/iris.min.js -------------------------------------------------------------------------------- /src/js/_enqueues/vendor/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/vendor/json2.js -------------------------------------------------------------------------------- /src/js/_enqueues/vendor/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/vendor/swfobject.js -------------------------------------------------------------------------------- /src/js/_enqueues/vendor/tw-sack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/vendor/tw-sack.js -------------------------------------------------------------------------------- /src/js/_enqueues/vendor/zxcvbn.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/vendor/zxcvbn.min.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/api-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/api-request.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/api.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/autosave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/autosave.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/backbone.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/code-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/code-editor.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/custom-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/custom-header.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/customize/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/customize/base.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/dashboard.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/editor/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/editor/base.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/editor/dfw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/editor/dfw.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/embed.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/emoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/emoji.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/heartbeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/heartbeat.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/mce-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/mce-view.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/media/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/media/editor.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/media/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/media/grid.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/media/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/media/models.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/media/views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/media/views.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/revisions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/revisions.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/sanitize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/sanitize.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/shortcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/shortcode.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/svg-painter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/svg-painter.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/theme.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/updates.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/util.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/widgets/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/widgets/media.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/widgets/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/_enqueues/wp/widgets/text.js -------------------------------------------------------------------------------- /src/js/media/controllers/cropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/controllers/cropper.js -------------------------------------------------------------------------------- /src/js/media/controllers/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/controllers/embed.js -------------------------------------------------------------------------------- /src/js/media/controllers/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/controllers/library.js -------------------------------------------------------------------------------- /src/js/media/controllers/region.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/controllers/region.js -------------------------------------------------------------------------------- /src/js/media/controllers/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/controllers/state.js -------------------------------------------------------------------------------- /src/js/media/models/attachment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/models/attachment.js -------------------------------------------------------------------------------- /src/js/media/models/attachments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/models/attachments.js -------------------------------------------------------------------------------- /src/js/media/models/post-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/models/post-image.js -------------------------------------------------------------------------------- /src/js/media/models/post-media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/models/post-media.js -------------------------------------------------------------------------------- /src/js/media/models/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/models/query.js -------------------------------------------------------------------------------- /src/js/media/models/selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/models/selection.js -------------------------------------------------------------------------------- /src/js/media/routers/manage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/routers/manage.js -------------------------------------------------------------------------------- /src/js/media/utils/selection-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/utils/selection-sync.js -------------------------------------------------------------------------------- /src/js/media/views/attachment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/attachment.js -------------------------------------------------------------------------------- /src/js/media/views/attachments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/attachments.js -------------------------------------------------------------------------------- /src/js/media/views/audio-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/audio-details.js -------------------------------------------------------------------------------- /src/js/media/views/button-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/button-group.js -------------------------------------------------------------------------------- /src/js/media/views/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/button.js -------------------------------------------------------------------------------- /src/js/media/views/cropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/cropper.js -------------------------------------------------------------------------------- /src/js/media/views/edit-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/edit-image.js -------------------------------------------------------------------------------- /src/js/media/views/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/embed.js -------------------------------------------------------------------------------- /src/js/media/views/embed/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/embed/image.js -------------------------------------------------------------------------------- /src/js/media/views/embed/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/embed/link.js -------------------------------------------------------------------------------- /src/js/media/views/embed/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/embed/url.js -------------------------------------------------------------------------------- /src/js/media/views/focus-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/focus-manager.js -------------------------------------------------------------------------------- /src/js/media/views/frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/frame.js -------------------------------------------------------------------------------- /src/js/media/views/frame/manage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/frame/manage.js -------------------------------------------------------------------------------- /src/js/media/views/frame/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/frame/post.js -------------------------------------------------------------------------------- /src/js/media/views/frame/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/frame/select.js -------------------------------------------------------------------------------- /src/js/media/views/heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/heading.js -------------------------------------------------------------------------------- /src/js/media/views/iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/iframe.js -------------------------------------------------------------------------------- /src/js/media/views/image-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/image-details.js -------------------------------------------------------------------------------- /src/js/media/views/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/label.js -------------------------------------------------------------------------------- /src/js/media/views/media-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/media-details.js -------------------------------------------------------------------------------- /src/js/media/views/media-frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/media-frame.js -------------------------------------------------------------------------------- /src/js/media/views/menu-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/menu-item.js -------------------------------------------------------------------------------- /src/js/media/views/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/menu.js -------------------------------------------------------------------------------- /src/js/media/views/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/modal.js -------------------------------------------------------------------------------- /src/js/media/views/priority-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/priority-list.js -------------------------------------------------------------------------------- /src/js/media/views/router-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/router-item.js -------------------------------------------------------------------------------- /src/js/media/views/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/router.js -------------------------------------------------------------------------------- /src/js/media/views/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/search.js -------------------------------------------------------------------------------- /src/js/media/views/selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/selection.js -------------------------------------------------------------------------------- /src/js/media/views/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/settings.js -------------------------------------------------------------------------------- /src/js/media/views/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/sidebar.js -------------------------------------------------------------------------------- /src/js/media/views/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/spinner.js -------------------------------------------------------------------------------- /src/js/media/views/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/toolbar.js -------------------------------------------------------------------------------- /src/js/media/views/toolbar/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/toolbar/embed.js -------------------------------------------------------------------------------- /src/js/media/views/toolbar/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/toolbar/select.js -------------------------------------------------------------------------------- /src/js/media/views/uploader/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/uploader/editor.js -------------------------------------------------------------------------------- /src/js/media/views/uploader/inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/uploader/inline.js -------------------------------------------------------------------------------- /src/js/media/views/uploader/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/uploader/status.js -------------------------------------------------------------------------------- /src/js/media/views/uploader/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/uploader/window.js -------------------------------------------------------------------------------- /src/js/media/views/video-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/video-details.js -------------------------------------------------------------------------------- /src/js/media/views/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/js/media/views/view.js -------------------------------------------------------------------------------- /src/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/license.txt -------------------------------------------------------------------------------- /src/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/readme.html -------------------------------------------------------------------------------- /src/wp-activate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-activate.php -------------------------------------------------------------------------------- /src/wp-admin/_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/_index.php -------------------------------------------------------------------------------- /src/wp-admin/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/about.php -------------------------------------------------------------------------------- /src/wp-admin/admin-ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/admin-ajax.php -------------------------------------------------------------------------------- /src/wp-admin/admin-footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/admin-footer.php -------------------------------------------------------------------------------- /src/wp-admin/admin-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/admin-functions.php -------------------------------------------------------------------------------- /src/wp-admin/admin-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/admin-header.php -------------------------------------------------------------------------------- /src/wp-admin/admin-post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/admin-post.php -------------------------------------------------------------------------------- /src/wp-admin/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/admin.php -------------------------------------------------------------------------------- /src/wp-admin/async-upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/async-upload.php -------------------------------------------------------------------------------- /src/wp-admin/comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/comment.php -------------------------------------------------------------------------------- /src/wp-admin/credits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/credits.php -------------------------------------------------------------------------------- /src/wp-admin/css/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/about.css -------------------------------------------------------------------------------- /src/wp-admin/css/admin-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/admin-menu.css -------------------------------------------------------------------------------- /src/wp-admin/css/code-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/code-editor.css -------------------------------------------------------------------------------- /src/wp-admin/css/color-picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/color-picker.css -------------------------------------------------------------------------------- /src/wp-admin/css/colors/_admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/colors/_admin.scss -------------------------------------------------------------------------------- /src/wp-admin/css/colors/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/colors/_mixins.scss -------------------------------------------------------------------------------- /src/wp-admin/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/common.css -------------------------------------------------------------------------------- /src/wp-admin/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/dashboard.css -------------------------------------------------------------------------------- /src/wp-admin/css/deprecated-media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/deprecated-media.css -------------------------------------------------------------------------------- /src/wp-admin/css/edit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/edit.css -------------------------------------------------------------------------------- /src/wp-admin/css/farbtastic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/farbtastic.css -------------------------------------------------------------------------------- /src/wp-admin/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/forms.css -------------------------------------------------------------------------------- /src/wp-admin/css/install.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/install.css -------------------------------------------------------------------------------- /src/wp-admin/css/l10n.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/l10n.css -------------------------------------------------------------------------------- /src/wp-admin/css/list-tables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/list-tables.css -------------------------------------------------------------------------------- /src/wp-admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/login.css -------------------------------------------------------------------------------- /src/wp-admin/css/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/media.css -------------------------------------------------------------------------------- /src/wp-admin/css/nav-menus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/nav-menus.css -------------------------------------------------------------------------------- /src/wp-admin/css/revisions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/revisions.css -------------------------------------------------------------------------------- /src/wp-admin/css/site-health.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/site-health.css -------------------------------------------------------------------------------- /src/wp-admin/css/site-icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/site-icon.css -------------------------------------------------------------------------------- /src/wp-admin/css/themes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/themes.css -------------------------------------------------------------------------------- /src/wp-admin/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/widgets.css -------------------------------------------------------------------------------- /src/wp-admin/css/wp-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/css/wp-admin.css -------------------------------------------------------------------------------- /src/wp-admin/custom-background.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/custom-background.php -------------------------------------------------------------------------------- /src/wp-admin/custom-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/custom-header.php -------------------------------------------------------------------------------- /src/wp-admin/customize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/customize.php -------------------------------------------------------------------------------- /src/wp-admin/edit-comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/edit-comments.php -------------------------------------------------------------------------------- /src/wp-admin/edit-form-advanced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/edit-form-advanced.php -------------------------------------------------------------------------------- /src/wp-admin/edit-form-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/edit-form-blocks.php -------------------------------------------------------------------------------- /src/wp-admin/edit-form-comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/edit-form-comment.php -------------------------------------------------------------------------------- /src/wp-admin/edit-link-form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/edit-link-form.php -------------------------------------------------------------------------------- /src/wp-admin/edit-tag-form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/edit-tag-form.php -------------------------------------------------------------------------------- /src/wp-admin/edit-tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/edit-tags.php -------------------------------------------------------------------------------- /src/wp-admin/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/edit.php -------------------------------------------------------------------------------- /src/wp-admin/erase-personal-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/erase-personal-data.php -------------------------------------------------------------------------------- /src/wp-admin/export-personal-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/export-personal-data.php -------------------------------------------------------------------------------- /src/wp-admin/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/export.php -------------------------------------------------------------------------------- /src/wp-admin/freedoms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/freedoms.php -------------------------------------------------------------------------------- /src/wp-admin/images/align-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/align-center.png -------------------------------------------------------------------------------- /src/wp-admin/images/align-left-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/align-left-2x.png -------------------------------------------------------------------------------- /src/wp-admin/images/align-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/align-left.png -------------------------------------------------------------------------------- /src/wp-admin/images/align-none-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/align-none-2x.png -------------------------------------------------------------------------------- /src/wp-admin/images/align-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/align-none.png -------------------------------------------------------------------------------- /src/wp-admin/images/align-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/align-right.png -------------------------------------------------------------------------------- /src/wp-admin/images/arrows-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/arrows-2x.png -------------------------------------------------------------------------------- /src/wp-admin/images/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/arrows.png -------------------------------------------------------------------------------- /src/wp-admin/images/browser-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/browser-rtl.png -------------------------------------------------------------------------------- /src/wp-admin/images/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/browser.png -------------------------------------------------------------------------------- /src/wp-admin/images/bubble_bg-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/bubble_bg-2x.gif -------------------------------------------------------------------------------- /src/wp-admin/images/bubble_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/bubble_bg.gif -------------------------------------------------------------------------------- /src/wp-admin/images/date-button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/date-button.gif -------------------------------------------------------------------------------- /src/wp-admin/images/freedom-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/freedom-1.svg -------------------------------------------------------------------------------- /src/wp-admin/images/freedom-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/freedom-2.svg -------------------------------------------------------------------------------- /src/wp-admin/images/freedom-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/freedom-3.svg -------------------------------------------------------------------------------- /src/wp-admin/images/freedom-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/freedom-4.svg -------------------------------------------------------------------------------- /src/wp-admin/images/generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/generic.png -------------------------------------------------------------------------------- /src/wp-admin/images/icons32-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/icons32-2x.png -------------------------------------------------------------------------------- /src/wp-admin/images/icons32-vs-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/icons32-vs-2x.png -------------------------------------------------------------------------------- /src/wp-admin/images/icons32-vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/icons32-vs.png -------------------------------------------------------------------------------- /src/wp-admin/images/icons32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/icons32.png -------------------------------------------------------------------------------- /src/wp-admin/images/imgedit-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/imgedit-icons.png -------------------------------------------------------------------------------- /src/wp-admin/images/list-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/list-2x.png -------------------------------------------------------------------------------- /src/wp-admin/images/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/list.png -------------------------------------------------------------------------------- /src/wp-admin/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/loading.gif -------------------------------------------------------------------------------- /src/wp-admin/images/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/marker.png -------------------------------------------------------------------------------- /src/wp-admin/images/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/mask.png -------------------------------------------------------------------------------- /src/wp-admin/images/media-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/media-button.png -------------------------------------------------------------------------------- /src/wp-admin/images/menu-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/menu-2x.png -------------------------------------------------------------------------------- /src/wp-admin/images/menu-vs-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/menu-vs-2x.png -------------------------------------------------------------------------------- /src/wp-admin/images/menu-vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/menu-vs.png -------------------------------------------------------------------------------- /src/wp-admin/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/menu.png -------------------------------------------------------------------------------- /src/wp-admin/images/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/no.png -------------------------------------------------------------------------------- /src/wp-admin/images/post-formats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/post-formats.png -------------------------------------------------------------------------------- /src/wp-admin/images/privacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/privacy.svg -------------------------------------------------------------------------------- /src/wp-admin/images/resize-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/resize-2x.gif -------------------------------------------------------------------------------- /src/wp-admin/images/resize-rtl-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/resize-rtl-2x.gif -------------------------------------------------------------------------------- /src/wp-admin/images/resize-rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/resize-rtl.gif -------------------------------------------------------------------------------- /src/wp-admin/images/resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/resize.gif -------------------------------------------------------------------------------- /src/wp-admin/images/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/se.png -------------------------------------------------------------------------------- /src/wp-admin/images/sort-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/sort-2x.gif -------------------------------------------------------------------------------- /src/wp-admin/images/sort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/sort.gif -------------------------------------------------------------------------------- /src/wp-admin/images/spinner-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/spinner-2x.gif -------------------------------------------------------------------------------- /src/wp-admin/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/spinner.gif -------------------------------------------------------------------------------- /src/wp-admin/images/stars-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/stars-2x.png -------------------------------------------------------------------------------- /src/wp-admin/images/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/stars.png -------------------------------------------------------------------------------- /src/wp-admin/images/w-logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/w-logo-blue.png -------------------------------------------------------------------------------- /src/wp-admin/images/w-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/w-logo-white.png -------------------------------------------------------------------------------- /src/wp-admin/images/wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/wheel.png -------------------------------------------------------------------------------- /src/wp-admin/images/wpspin_light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/wpspin_light.gif -------------------------------------------------------------------------------- /src/wp-admin/images/xit-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/xit-2x.gif -------------------------------------------------------------------------------- /src/wp-admin/images/xit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/xit.gif -------------------------------------------------------------------------------- /src/wp-admin/images/yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/images/yes.png -------------------------------------------------------------------------------- /src/wp-admin/import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/import.php -------------------------------------------------------------------------------- /src/wp-admin/includes/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/admin.php -------------------------------------------------------------------------------- /src/wp-admin/includes/bookmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/bookmark.php -------------------------------------------------------------------------------- /src/wp-admin/includes/class-ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/class-ftp.php -------------------------------------------------------------------------------- /src/wp-admin/includes/comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/comment.php -------------------------------------------------------------------------------- /src/wp-admin/includes/credits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/credits.php -------------------------------------------------------------------------------- /src/wp-admin/includes/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/dashboard.php -------------------------------------------------------------------------------- /src/wp-admin/includes/deprecated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/deprecated.php -------------------------------------------------------------------------------- /src/wp-admin/includes/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/export.php -------------------------------------------------------------------------------- /src/wp-admin/includes/file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/file.php -------------------------------------------------------------------------------- /src/wp-admin/includes/image-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/image-edit.php -------------------------------------------------------------------------------- /src/wp-admin/includes/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/image.php -------------------------------------------------------------------------------- /src/wp-admin/includes/import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/import.php -------------------------------------------------------------------------------- /src/wp-admin/includes/list-table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/list-table.php -------------------------------------------------------------------------------- /src/wp-admin/includes/media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/media.php -------------------------------------------------------------------------------- /src/wp-admin/includes/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/menu.php -------------------------------------------------------------------------------- /src/wp-admin/includes/meta-boxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/meta-boxes.php -------------------------------------------------------------------------------- /src/wp-admin/includes/misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/misc.php -------------------------------------------------------------------------------- /src/wp-admin/includes/ms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/ms.php -------------------------------------------------------------------------------- /src/wp-admin/includes/nav-menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/nav-menu.php -------------------------------------------------------------------------------- /src/wp-admin/includes/network.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/network.php -------------------------------------------------------------------------------- /src/wp-admin/includes/noop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/noop.php -------------------------------------------------------------------------------- /src/wp-admin/includes/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/options.php -------------------------------------------------------------------------------- /src/wp-admin/includes/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/plugin.php -------------------------------------------------------------------------------- /src/wp-admin/includes/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/post.php -------------------------------------------------------------------------------- /src/wp-admin/includes/revision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/revision.php -------------------------------------------------------------------------------- /src/wp-admin/includes/schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/schema.php -------------------------------------------------------------------------------- /src/wp-admin/includes/screen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/screen.php -------------------------------------------------------------------------------- /src/wp-admin/includes/taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/taxonomy.php -------------------------------------------------------------------------------- /src/wp-admin/includes/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/template.php -------------------------------------------------------------------------------- /src/wp-admin/includes/theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/theme.php -------------------------------------------------------------------------------- /src/wp-admin/includes/update-core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/update-core.php -------------------------------------------------------------------------------- /src/wp-admin/includes/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/update.php -------------------------------------------------------------------------------- /src/wp-admin/includes/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/upgrade.php -------------------------------------------------------------------------------- /src/wp-admin/includes/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/user.php -------------------------------------------------------------------------------- /src/wp-admin/includes/widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/includes/widgets.php -------------------------------------------------------------------------------- /src/wp-admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/index.php -------------------------------------------------------------------------------- /src/wp-admin/install-helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/install-helper.php -------------------------------------------------------------------------------- /src/wp-admin/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/install.php -------------------------------------------------------------------------------- /src/wp-admin/link-add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/link-add.php -------------------------------------------------------------------------------- /src/wp-admin/link-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/link-manager.php -------------------------------------------------------------------------------- /src/wp-admin/link-parse-opml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/link-parse-opml.php -------------------------------------------------------------------------------- /src/wp-admin/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/link.php -------------------------------------------------------------------------------- /src/wp-admin/load-scripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/load-scripts.php -------------------------------------------------------------------------------- /src/wp-admin/load-styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/load-styles.php -------------------------------------------------------------------------------- /src/wp-admin/maint/repair.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/maint/repair.php -------------------------------------------------------------------------------- /src/wp-admin/media-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/media-new.php -------------------------------------------------------------------------------- /src/wp-admin/media-upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/media-upload.php -------------------------------------------------------------------------------- /src/wp-admin/media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/media.php -------------------------------------------------------------------------------- /src/wp-admin/menu-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/menu-header.php -------------------------------------------------------------------------------- /src/wp-admin/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/menu.php -------------------------------------------------------------------------------- /src/wp-admin/moderation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/moderation.php -------------------------------------------------------------------------------- /src/wp-admin/ms-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/ms-admin.php -------------------------------------------------------------------------------- /src/wp-admin/ms-delete-site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/ms-delete-site.php -------------------------------------------------------------------------------- /src/wp-admin/ms-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/ms-edit.php -------------------------------------------------------------------------------- /src/wp-admin/ms-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/ms-options.php -------------------------------------------------------------------------------- /src/wp-admin/ms-sites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/ms-sites.php -------------------------------------------------------------------------------- /src/wp-admin/ms-themes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/ms-themes.php -------------------------------------------------------------------------------- /src/wp-admin/ms-upgrade-network.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/ms-upgrade-network.php -------------------------------------------------------------------------------- /src/wp-admin/ms-users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/ms-users.php -------------------------------------------------------------------------------- /src/wp-admin/my-sites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/my-sites.php -------------------------------------------------------------------------------- /src/wp-admin/nav-menus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/nav-menus.php -------------------------------------------------------------------------------- /src/wp-admin/network.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network.php -------------------------------------------------------------------------------- /src/wp-admin/network/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/about.php -------------------------------------------------------------------------------- /src/wp-admin/network/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/admin.php -------------------------------------------------------------------------------- /src/wp-admin/network/credits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/credits.php -------------------------------------------------------------------------------- /src/wp-admin/network/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/edit.php -------------------------------------------------------------------------------- /src/wp-admin/network/freedoms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/freedoms.php -------------------------------------------------------------------------------- /src/wp-admin/network/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/index.php -------------------------------------------------------------------------------- /src/wp-admin/network/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/menu.php -------------------------------------------------------------------------------- /src/wp-admin/network/plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/plugins.php -------------------------------------------------------------------------------- /src/wp-admin/network/privacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/privacy.php -------------------------------------------------------------------------------- /src/wp-admin/network/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/profile.php -------------------------------------------------------------------------------- /src/wp-admin/network/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/settings.php -------------------------------------------------------------------------------- /src/wp-admin/network/setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/setup.php -------------------------------------------------------------------------------- /src/wp-admin/network/site-info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/site-info.php -------------------------------------------------------------------------------- /src/wp-admin/network/site-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/site-new.php -------------------------------------------------------------------------------- /src/wp-admin/network/site-themes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/site-themes.php -------------------------------------------------------------------------------- /src/wp-admin/network/site-users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/site-users.php -------------------------------------------------------------------------------- /src/wp-admin/network/sites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/sites.php -------------------------------------------------------------------------------- /src/wp-admin/network/theme-editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/theme-editor.php -------------------------------------------------------------------------------- /src/wp-admin/network/themes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/themes.php -------------------------------------------------------------------------------- /src/wp-admin/network/update-core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/update-core.php -------------------------------------------------------------------------------- /src/wp-admin/network/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/update.php -------------------------------------------------------------------------------- /src/wp-admin/network/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/upgrade.php -------------------------------------------------------------------------------- /src/wp-admin/network/user-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/user-edit.php -------------------------------------------------------------------------------- /src/wp-admin/network/user-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/user-new.php -------------------------------------------------------------------------------- /src/wp-admin/network/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/network/users.php -------------------------------------------------------------------------------- /src/wp-admin/options-discussion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/options-discussion.php -------------------------------------------------------------------------------- /src/wp-admin/options-general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/options-general.php -------------------------------------------------------------------------------- /src/wp-admin/options-head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/options-head.php -------------------------------------------------------------------------------- /src/wp-admin/options-media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/options-media.php -------------------------------------------------------------------------------- /src/wp-admin/options-permalink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/options-permalink.php -------------------------------------------------------------------------------- /src/wp-admin/options-privacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/options-privacy.php -------------------------------------------------------------------------------- /src/wp-admin/options-reading.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/options-reading.php -------------------------------------------------------------------------------- /src/wp-admin/options-writing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/options-writing.php -------------------------------------------------------------------------------- /src/wp-admin/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/options.php -------------------------------------------------------------------------------- /src/wp-admin/plugin-editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/plugin-editor.php -------------------------------------------------------------------------------- /src/wp-admin/plugin-install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/plugin-install.php -------------------------------------------------------------------------------- /src/wp-admin/plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/plugins.php -------------------------------------------------------------------------------- /src/wp-admin/post-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/post-new.php -------------------------------------------------------------------------------- /src/wp-admin/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/post.php -------------------------------------------------------------------------------- /src/wp-admin/press-this.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/press-this.php -------------------------------------------------------------------------------- /src/wp-admin/privacy-policy-guide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/privacy-policy-guide.php -------------------------------------------------------------------------------- /src/wp-admin/privacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/privacy.php -------------------------------------------------------------------------------- /src/wp-admin/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/profile.php -------------------------------------------------------------------------------- /src/wp-admin/revision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/revision.php -------------------------------------------------------------------------------- /src/wp-admin/setup-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/setup-config.php -------------------------------------------------------------------------------- /src/wp-admin/site-health-info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/site-health-info.php -------------------------------------------------------------------------------- /src/wp-admin/site-health.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/site-health.php -------------------------------------------------------------------------------- /src/wp-admin/term.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/term.php -------------------------------------------------------------------------------- /src/wp-admin/theme-editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/theme-editor.php -------------------------------------------------------------------------------- /src/wp-admin/theme-install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/theme-install.php -------------------------------------------------------------------------------- /src/wp-admin/themes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/themes.php -------------------------------------------------------------------------------- /src/wp-admin/tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/tools.php -------------------------------------------------------------------------------- /src/wp-admin/update-core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/update-core.php -------------------------------------------------------------------------------- /src/wp-admin/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/update.php -------------------------------------------------------------------------------- /src/wp-admin/upgrade-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/upgrade-functions.php -------------------------------------------------------------------------------- /src/wp-admin/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/upgrade.php -------------------------------------------------------------------------------- /src/wp-admin/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/upload.php -------------------------------------------------------------------------------- /src/wp-admin/user-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/user-edit.php -------------------------------------------------------------------------------- /src/wp-admin/user-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/user-new.php -------------------------------------------------------------------------------- /src/wp-admin/user/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/user/about.php -------------------------------------------------------------------------------- /src/wp-admin/user/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/user/admin.php -------------------------------------------------------------------------------- /src/wp-admin/user/credits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/user/credits.php -------------------------------------------------------------------------------- /src/wp-admin/user/freedoms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/user/freedoms.php -------------------------------------------------------------------------------- /src/wp-admin/user/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/user/index.php -------------------------------------------------------------------------------- /src/wp-admin/user/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/user/menu.php -------------------------------------------------------------------------------- /src/wp-admin/user/privacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/user/privacy.php -------------------------------------------------------------------------------- /src/wp-admin/user/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/user/profile.php -------------------------------------------------------------------------------- /src/wp-admin/user/user-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/user/user-edit.php -------------------------------------------------------------------------------- /src/wp-admin/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/users.php -------------------------------------------------------------------------------- /src/wp-admin/widgets-form-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/widgets-form-blocks.php -------------------------------------------------------------------------------- /src/wp-admin/widgets-form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/widgets-form.php -------------------------------------------------------------------------------- /src/wp-admin/widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-admin/widgets.php -------------------------------------------------------------------------------- /src/wp-blog-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-blog-header.php -------------------------------------------------------------------------------- /src/wp-comments-post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/src/wp-comments-post.php -------------------------------------------------------------------------------- /src/wp-content/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/fixtures/core__4-invalid-starting-letter.serialized.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/fixtures/core__4-invalid-starting-letter.server.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/fixtures/core__archives.serialized.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/fixtures/core__archives__showPostCounts.serialized.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/fixtures/core__block.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/fixtures/core__block.serialized.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/fixtures/core__block.server.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/fixtures/core__categories.serialized.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/fixtures/core__invalid-Capitals.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/fixtures/core__invalid-Capitals.serialized.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/fixtures/core__invalid-Capitals.server.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/fixtures/core__invalid-special.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/fixtures/core__invalid-special.serialized.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/fixtures/core__invalid-special.server.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/fixtures/core__latest-comments.serialized.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/fixtures/core__latest-posts.serialized.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/fixtures/core__more.server.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/fixtures/core__nextpage.server.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/fixtures/core__paragraph__deprecated.server.html: -------------------------------------------------------------------------------- 1 | 2 | Unwrapped is still valid. 3 | 4 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/fixtures/core__separator.server.html: -------------------------------------------------------------------------------- 1 | 2 |[gallery ids="238,338"]
2 | 3 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/notice/block-rtl.css: -------------------------------------------------------------------------------- 1 | /* Test CSS file - RTL version */ 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/notice/block.css: -------------------------------------------------------------------------------- 1 | /* Test CSS file */ 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/blocks/notice/block.js: -------------------------------------------------------------------------------- 1 | /* Test JavaScript file. */ 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/export/slashes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/export/slashes.xml -------------------------------------------------------------------------------- /tests/phpunit/data/formatting/file-header-php-open-tag-prefix.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/formatting/utf-8/utf-8.txt: -------------------------------------------------------------------------------- 1 | 章子怡 2 | François Truffaut 3 | საქართველო 4 | Björk Guðmundsdóttir 5 | 宮崎 駿 6 | 👍 7 | -------------------------------------------------------------------------------- /tests/phpunit/data/images/33772.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/images/33772.jpg -------------------------------------------------------------------------------- /tests/phpunit/data/images/canola.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/images/canola.jpg -------------------------------------------------------------------------------- /tests/phpunit/data/images/waffles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/images/waffles.jpg -------------------------------------------------------------------------------- /tests/phpunit/data/languages/de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/languages/de_DE.mo -------------------------------------------------------------------------------- /tests/phpunit/data/languages/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/languages/de_DE.po -------------------------------------------------------------------------------- /tests/phpunit/data/languages/en_GB.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/languages/en_GB.mo -------------------------------------------------------------------------------- /tests/phpunit/data/languages/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/languages/en_GB.po -------------------------------------------------------------------------------- /tests/phpunit/data/languages/es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/languages/es_ES.mo -------------------------------------------------------------------------------- /tests/phpunit/data/languages/es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/languages/es_ES.po -------------------------------------------------------------------------------- /tests/phpunit/data/languages/ja_JP.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/languages/ja_JP.mo -------------------------------------------------------------------------------- /tests/phpunit/data/languages/ja_JP.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/languages/ja_JP.po -------------------------------------------------------------------------------- /tests/phpunit/data/plugins/hello.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/plugins/hello.php -------------------------------------------------------------------------------- /tests/phpunit/data/pomo/context.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/pomo/context.mo -------------------------------------------------------------------------------- /tests/phpunit/data/pomo/de_DE-2.8.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/pomo/de_DE-2.8.mo -------------------------------------------------------------------------------- /tests/phpunit/data/pomo/empty.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/phpunit/data/pomo/mo.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/pomo/mo.pot -------------------------------------------------------------------------------- /tests/phpunit/data/pomo/overload.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/pomo/overload.mo -------------------------------------------------------------------------------- /tests/phpunit/data/pomo/plural.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/pomo/plural.mo -------------------------------------------------------------------------------- /tests/phpunit/data/pomo/simple.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/pomo/simple.mo -------------------------------------------------------------------------------- /tests/phpunit/data/pomo/simple.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/pomo/simple.po -------------------------------------------------------------------------------- /tests/phpunit/data/theme-file-child/child-only.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/theme-file-child/parent-and-child.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/theme-file-parent/parent-and-child.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/theme-file-parent/parent-only.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/themedir1/block-theme/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /tests/phpunit/data/themedir1/internationalized-theme/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/phpunit/data/themedir1/page-templates/subdir/template-sub-dir.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/phpunit/data/themedir1/page-templates/template-top-level.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/phpunit/data/themedir1/subdir/theme with spaces/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/phpunit/data/themedir1/subdir/theme2/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/phpunit/data/uploads/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/uploads/test.csv -------------------------------------------------------------------------------- /tests/phpunit/data/uploads/test.dfxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/uploads/test.dfxp -------------------------------------------------------------------------------- /tests/phpunit/data/uploads/test.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/uploads/test.rtf -------------------------------------------------------------------------------- /tests/phpunit/data/uploads/test.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/uploads/test.tsv -------------------------------------------------------------------------------- /tests/phpunit/data/uploads/test.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/data/uploads/test.vtt -------------------------------------------------------------------------------- /tests/phpunit/includes/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/includes/bootstrap.php -------------------------------------------------------------------------------- /tests/phpunit/includes/exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/includes/exceptions.php -------------------------------------------------------------------------------- /tests/phpunit/includes/factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/includes/factory.php -------------------------------------------------------------------------------- /tests/phpunit/includes/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/includes/functions.php -------------------------------------------------------------------------------- /tests/phpunit/includes/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/includes/install.php -------------------------------------------------------------------------------- /tests/phpunit/includes/mock-fs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/includes/mock-fs.php -------------------------------------------------------------------------------- /tests/phpunit/includes/testcase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/includes/testcase.php -------------------------------------------------------------------------------- /tests/phpunit/includes/trac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/includes/trac.php -------------------------------------------------------------------------------- /tests/phpunit/includes/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/includes/utils.php -------------------------------------------------------------------------------- /tests/phpunit/multisite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/multisite.xml -------------------------------------------------------------------------------- /tests/phpunit/tests/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/actions.php -------------------------------------------------------------------------------- /tests/phpunit/tests/adminbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/adminbar.php -------------------------------------------------------------------------------- /tests/phpunit/tests/ajax/AddMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/ajax/AddMeta.php -------------------------------------------------------------------------------- /tests/phpunit/tests/ajax/Autosave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/ajax/Autosave.php -------------------------------------------------------------------------------- /tests/phpunit/tests/ajax/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/ajax/Response.php -------------------------------------------------------------------------------- /tests/phpunit/tests/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/auth.php -------------------------------------------------------------------------------- /tests/phpunit/tests/avatar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/avatar.php -------------------------------------------------------------------------------- /tests/phpunit/tests/basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/basic.php -------------------------------------------------------------------------------- /tests/phpunit/tests/blocks/editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/blocks/editor.php -------------------------------------------------------------------------------- /tests/phpunit/tests/blocks/render.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/blocks/render.php -------------------------------------------------------------------------------- /tests/phpunit/tests/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/cache.php -------------------------------------------------------------------------------- /tests/phpunit/tests/canonical.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/canonical.php -------------------------------------------------------------------------------- /tests/phpunit/tests/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/category.php -------------------------------------------------------------------------------- /tests/phpunit/tests/comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/comment.php -------------------------------------------------------------------------------- /tests/phpunit/tests/comment/query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/comment/query.php -------------------------------------------------------------------------------- /tests/phpunit/tests/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/cron.php -------------------------------------------------------------------------------- /tests/phpunit/tests/date/dateI18n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/date/dateI18n.php -------------------------------------------------------------------------------- /tests/phpunit/tests/date/query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/date/query.php -------------------------------------------------------------------------------- /tests/phpunit/tests/date/theDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/date/theDate.php -------------------------------------------------------------------------------- /tests/phpunit/tests/date/wpDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/date/wpDate.php -------------------------------------------------------------------------------- /tests/phpunit/tests/date/xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/date/xmlrpc.php -------------------------------------------------------------------------------- /tests/phpunit/tests/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/db.php -------------------------------------------------------------------------------- /tests/phpunit/tests/db/charset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/db/charset.php -------------------------------------------------------------------------------- /tests/phpunit/tests/db/realEscape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/db/realEscape.php -------------------------------------------------------------------------------- /tests/phpunit/tests/dbdelta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/dbdelta.php -------------------------------------------------------------------------------- /tests/phpunit/tests/dependencies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/dependencies.php -------------------------------------------------------------------------------- /tests/phpunit/tests/feed/atom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/feed/atom.php -------------------------------------------------------------------------------- /tests/phpunit/tests/feed/rss2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/feed/rss2.php -------------------------------------------------------------------------------- /tests/phpunit/tests/file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/file.php -------------------------------------------------------------------------------- /tests/phpunit/tests/filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/filters.php -------------------------------------------------------------------------------- /tests/phpunit/tests/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/functions.php -------------------------------------------------------------------------------- /tests/phpunit/tests/functions/wp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/functions/wp.php -------------------------------------------------------------------------------- /tests/phpunit/tests/http/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/http/base.php -------------------------------------------------------------------------------- /tests/phpunit/tests/http/curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/http/curl.php -------------------------------------------------------------------------------- /tests/phpunit/tests/http/http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/http/http.php -------------------------------------------------------------------------------- /tests/phpunit/tests/http/streams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/http/streams.php -------------------------------------------------------------------------------- /tests/phpunit/tests/image/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/image/base.php -------------------------------------------------------------------------------- /tests/phpunit/tests/image/editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/image/editor.php -------------------------------------------------------------------------------- /tests/phpunit/tests/image/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/image/header.php -------------------------------------------------------------------------------- /tests/phpunit/tests/image/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/image/meta.php -------------------------------------------------------------------------------- /tests/phpunit/tests/image/resize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/image/resize.php -------------------------------------------------------------------------------- /tests/phpunit/tests/image/size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/image/size.php -------------------------------------------------------------------------------- /tests/phpunit/tests/import/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/import/base.php -------------------------------------------------------------------------------- /tests/phpunit/tests/import/import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/import/import.php -------------------------------------------------------------------------------- /tests/phpunit/tests/import/parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/import/parser.php -------------------------------------------------------------------------------- /tests/phpunit/tests/kses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/kses.php -------------------------------------------------------------------------------- /tests/phpunit/tests/l10n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/l10n.php -------------------------------------------------------------------------------- /tests/phpunit/tests/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/link.php -------------------------------------------------------------------------------- /tests/phpunit/tests/locale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/locale.php -------------------------------------------------------------------------------- /tests/phpunit/tests/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/mail.php -------------------------------------------------------------------------------- /tests/phpunit/tests/media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/media.php -------------------------------------------------------------------------------- /tests/phpunit/tests/menu/nav-menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/menu/nav-menu.php -------------------------------------------------------------------------------- /tests/phpunit/tests/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/meta.php -------------------------------------------------------------------------------- /tests/phpunit/tests/meta/query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/meta/query.php -------------------------------------------------------------------------------- /tests/phpunit/tests/meta/slashes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/meta/slashes.php -------------------------------------------------------------------------------- /tests/phpunit/tests/multisite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/multisite.php -------------------------------------------------------------------------------- /tests/phpunit/tests/option/option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/option/option.php -------------------------------------------------------------------------------- /tests/phpunit/tests/pluggable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/pluggable.php -------------------------------------------------------------------------------- /tests/phpunit/tests/pomo/mo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/pomo/mo.php -------------------------------------------------------------------------------- /tests/phpunit/tests/pomo/po.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/pomo/po.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/post.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/formats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/post/formats.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/getPages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/post/getPages.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/getPosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/post/getPosts.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/post/meta.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/nav-menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/post/nav-menu.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/objects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/post/objects.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/post/output.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/pings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/post/pings.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/post/query.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/slashes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/post/slashes.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/post/template.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/post/types.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/wpPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/post/wpPost.php -------------------------------------------------------------------------------- /tests/phpunit/tests/query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/query.php -------------------------------------------------------------------------------- /tests/phpunit/tests/query/date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/query/date.php -------------------------------------------------------------------------------- /tests/phpunit/tests/query/isTerm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/query/isTerm.php -------------------------------------------------------------------------------- /tests/phpunit/tests/query/results.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/query/results.php -------------------------------------------------------------------------------- /tests/phpunit/tests/query/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/query/search.php -------------------------------------------------------------------------------- /tests/phpunit/tests/query/vars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/query/vars.php -------------------------------------------------------------------------------- /tests/phpunit/tests/rest-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/rest-api.php -------------------------------------------------------------------------------- /tests/phpunit/tests/rewrite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/rewrite.php -------------------------------------------------------------------------------- /tests/phpunit/tests/robots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/robots.php -------------------------------------------------------------------------------- /tests/phpunit/tests/shortcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/shortcode.php -------------------------------------------------------------------------------- /tests/phpunit/tests/site-health.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/site-health.php -------------------------------------------------------------------------------- /tests/phpunit/tests/taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/taxonomy.php -------------------------------------------------------------------------------- /tests/phpunit/tests/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/template.php -------------------------------------------------------------------------------- /tests/phpunit/tests/term.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/term.php -------------------------------------------------------------------------------- /tests/phpunit/tests/term/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/term/cache.php -------------------------------------------------------------------------------- /tests/phpunit/tests/term/getTerm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/term/getTerm.php -------------------------------------------------------------------------------- /tests/phpunit/tests/term/getTerms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/term/getTerms.php -------------------------------------------------------------------------------- /tests/phpunit/tests/term/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/term/meta.php -------------------------------------------------------------------------------- /tests/phpunit/tests/term/query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/term/query.php -------------------------------------------------------------------------------- /tests/phpunit/tests/term/slashes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/term/slashes.php -------------------------------------------------------------------------------- /tests/phpunit/tests/term/taxQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/term/taxQuery.php -------------------------------------------------------------------------------- /tests/phpunit/tests/term/wpTerm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/term/wpTerm.php -------------------------------------------------------------------------------- /tests/phpunit/tests/theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/theme.php -------------------------------------------------------------------------------- /tests/phpunit/tests/theme/support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/theme/support.php -------------------------------------------------------------------------------- /tests/phpunit/tests/theme/wpTheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/theme/wpTheme.php -------------------------------------------------------------------------------- /tests/phpunit/tests/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/upload.php -------------------------------------------------------------------------------- /tests/phpunit/tests/url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/url.php -------------------------------------------------------------------------------- /tests/phpunit/tests/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/user.php -------------------------------------------------------------------------------- /tests/phpunit/tests/user/author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/user/author.php -------------------------------------------------------------------------------- /tests/phpunit/tests/user/query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/user/query.php -------------------------------------------------------------------------------- /tests/phpunit/tests/user/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/user/session.php -------------------------------------------------------------------------------- /tests/phpunit/tests/user/slashes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/user/slashes.php -------------------------------------------------------------------------------- /tests/phpunit/tests/walker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/walker.php -------------------------------------------------------------------------------- /tests/phpunit/tests/widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/widgets.php -------------------------------------------------------------------------------- /tests/phpunit/tests/wp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/wp.php -------------------------------------------------------------------------------- /tests/phpunit/tests/xmlrpc/basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/xmlrpc/basic.php -------------------------------------------------------------------------------- /tests/phpunit/tests/xmlrpc/client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/tests/xmlrpc/client.php -------------------------------------------------------------------------------- /tests/phpunit/wp-mail-real-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/phpunit/wp-mail-real-test.php -------------------------------------------------------------------------------- /tests/qunit/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/qunit/.jshintrc -------------------------------------------------------------------------------- /tests/qunit/fixtures/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/qunit/fixtures/common.js -------------------------------------------------------------------------------- /tests/qunit/fixtures/updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/qunit/fixtures/updates.js -------------------------------------------------------------------------------- /tests/qunit/fixtures/wp-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/qunit/fixtures/wp-api.js -------------------------------------------------------------------------------- /tests/qunit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/qunit/index.html -------------------------------------------------------------------------------- /tests/qunit/wp-admin/js/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/qunit/wp-admin/js/dashboard.js -------------------------------------------------------------------------------- /tests/qunit/wp-admin/js/nav-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/qunit/wp-admin/js/nav-menu.js -------------------------------------------------------------------------------- /tests/qunit/wp-admin/js/updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/qunit/wp-admin/js/updates.js -------------------------------------------------------------------------------- /tests/qunit/wp-admin/js/word-count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/qunit/wp-admin/js/word-count.js -------------------------------------------------------------------------------- /tests/qunit/wp-includes/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/qunit/wp-includes/js/jquery.js -------------------------------------------------------------------------------- /tests/qunit/wp-includes/js/wp-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/qunit/wp-includes/js/wp-api.js -------------------------------------------------------------------------------- /tests/visual-regression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/visual-regression/README.md -------------------------------------------------------------------------------- /tests/visual-regression/run-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tests/visual-regression/run-tests.js -------------------------------------------------------------------------------- /tools/local-env/default.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tools/local-env/default.template -------------------------------------------------------------------------------- /tools/local-env/mysql-init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tools/local-env/mysql-init.sql -------------------------------------------------------------------------------- /tools/local-env/php-config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tools/local-env/php-config.ini -------------------------------------------------------------------------------- /tools/local-env/phpunit-config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tools/local-env/phpunit-config.ini -------------------------------------------------------------------------------- /tools/local-env/scripts/docker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tools/local-env/scripts/docker.js -------------------------------------------------------------------------------- /tools/local-env/scripts/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tools/local-env/scripts/install.js -------------------------------------------------------------------------------- /tools/local-env/scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tools/local-env/scripts/start.js -------------------------------------------------------------------------------- /tools/webpack/blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tools/webpack/blocks.js -------------------------------------------------------------------------------- /tools/webpack/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tools/webpack/media.js -------------------------------------------------------------------------------- /tools/webpack/packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/tools/webpack/packages.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/webpack.config.js -------------------------------------------------------------------------------- /wp-cli.yml: -------------------------------------------------------------------------------- 1 | path: src/ 2 | -------------------------------------------------------------------------------- /wp-config-sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/wp-config-sample.php -------------------------------------------------------------------------------- /wp-tests-config-sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rarst/wordpress-develop/HEAD/wp-tests-config-sample.php --------------------------------------------------------------------------------