├── .cache └── .gitkeep ├── .editorconfig ├── .env ├── .eslintignore ├── .eslintrc-jsdoc.js ├── .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 ├── .htaccess ├── _index.php ├── index.php ├── js │ ├── _enqueues │ │ ├── admin │ │ │ ├── application-passwords.js │ │ │ ├── auth-app.js │ │ │ ├── author.js │ │ │ ├── backup.js │ │ │ ├── comment.js │ │ │ ├── common.js │ │ │ ├── custom-background.js │ │ │ ├── custom-header.js │ │ │ ├── edit-comments.js │ │ │ ├── form-validate.js │ │ │ ├── inline-edit-post.js │ │ │ ├── inline-edit-tax.js │ │ │ ├── media-upload.js │ │ │ ├── media.js │ │ │ ├── options-email.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 │ │ ├── cp │ │ │ ├── login.js │ │ │ ├── notice.js │ │ │ ├── reauth.js │ │ │ ├── utils.js │ │ │ └── webauthn.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 │ │ │ ├── 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 │ │ │ ├── imgareaselect │ │ │ │ ├── border-anim-h.gif │ │ │ │ ├── border-anim-v.gif │ │ │ │ ├── imgareaselect.css │ │ │ │ ├── jquery.imgareaselect.js │ │ │ │ └── jquery.imgareaselect.min.js │ │ │ ├── iris.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ ├── 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.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 │ │ └── 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 │ ├── admin-ajax.php │ ├── admin-footer.php │ ├── admin-header.php │ ├── admin-post.php │ ├── admin.php │ ├── apcu.php │ ├── async-upload.php │ ├── authorize-application.php │ ├── backup-details.php │ ├── backup-new.php │ ├── backups.php │ ├── comment.php │ ├── css │ │ ├── admin-menu.css │ │ ├── code-editor.css │ │ ├── color-picker.css │ │ ├── colors │ │ │ ├── _admin.scss │ │ │ ├── _mixins.scss │ │ │ └── _variables.scss │ │ ├── common.css │ │ ├── cp-webauthn.css │ │ ├── customize-controls.css │ │ ├── customize-nav-menus.css │ │ ├── customize-widgets.css │ │ ├── dashboard.css │ │ ├── edit.css │ │ ├── forms.css │ │ ├── install.css │ │ ├── l10n.css │ │ ├── list-tables.css │ │ ├── login.css │ │ ├── maintenance-mode.css │ │ ├── media.css │ │ ├── nav-menus.css │ │ ├── revisions.css │ │ ├── site-health.css │ │ ├── site-icon.css │ │ ├── themes.css │ │ ├── widgets.css │ │ └── wp-admin.css │ ├── customize.php │ ├── edit-comments.php │ ├── edit-form-advanced.php │ ├── edit-form-comment.php │ ├── edit-tag-form.php │ ├── edit-tags.php │ ├── edit.php │ ├── erase-personal-data.php │ ├── export-personal-data.php │ ├── images │ │ ├── about-header-about.svg │ │ ├── about-header-credits.svg │ │ ├── about-header-freedoms.svg │ │ ├── about-header-privacy.svg │ │ ├── about-texture.png │ │ ├── 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 │ │ ├── calmpressfulllogo.png │ │ ├── calmpresslogo-white.png │ │ ├── calmpresslogo-white.svg │ │ ├── calmpresslogo.png │ │ ├── calmpresslogo.svg │ │ ├── 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 │ │ ├── wheel.png │ │ ├── wpspin_light-2x.gif │ │ ├── wpspin_light.gif │ │ ├── xit-2x.gif │ │ ├── xit.gif │ │ └── yes.png │ ├── includes │ │ ├── admin-filters.php │ │ ├── admin.php │ │ ├── ajax-actions.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-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-comments-list-table.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-internal-pointers.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-requests-table.php │ │ ├── class-wp-screen.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.php │ │ ├── class-wp-users-list-table.php │ │ ├── comment.php │ │ ├── continents-cities.php │ │ ├── dashboard.php │ │ ├── deprecated.php │ │ ├── edit-tag-messages.php │ │ ├── file.php │ │ ├── image.php │ │ ├── list-table.php │ │ ├── media.php │ │ ├── menu.php │ │ ├── meta-boxes.php │ │ ├── misc.php │ │ ├── ms-admin-filters.php │ │ ├── ms.php │ │ ├── nav-menu.php │ │ ├── network.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 │ ├── maint │ │ └── repair.php │ ├── maintenance-mode.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 │ │ ├── admin.php │ │ ├── edit.php │ │ ├── index.php │ │ ├── menu.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-install.php │ │ ├── themes.php │ │ ├── update-core.php │ │ ├── update.php │ │ ├── upgrade.php │ │ ├── user-edit.php │ │ ├── user-new.php │ │ └── users.php │ ├── object-cache.php │ ├── opcache.php │ ├── options-discussion.php │ ├── options-email.php │ ├── options-general.php │ ├── options-head.php │ ├── options-htaccess.php │ ├── options-media.php │ ├── options-permalink.php │ ├── options-reading.php │ ├── options-robots-txt.php │ ├── options-wp-config.php │ ├── options-writing.php │ ├── options.php │ ├── plugin-install.php │ ├── plugins.php │ ├── post-new.php │ ├── post.php │ ├── privacy.php │ ├── profile.php │ ├── restore.php │ ├── revision.php │ ├── safe-mode.php │ ├── setup-config.php │ ├── site-health-info.php │ ├── site-health.php │ ├── switch-user.php │ ├── term.php │ ├── test-email-delivery.php │ ├── theme-install.php │ ├── themes.php │ ├── update-core.php │ ├── update.php │ ├── upgrade.php │ ├── upload.php │ ├── user-edit.php │ ├── user-new.php │ ├── user │ │ ├── admin.php │ │ ├── index.php │ │ ├── menu.php │ │ ├── privacy.php │ │ ├── profile.php │ │ └── user-edit.php │ ├── users.php │ ├── webauthn.php │ ├── widgets-form.php │ └── widgets.php ├── wp-blog-header.php ├── wp-comments-post.php ├── wp-content │ ├── index.php │ ├── plugins │ │ └── index.php │ └── themes │ │ ├── calmseventeen │ │ ├── 404.php │ │ ├── README.txt │ │ ├── archive.php │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── colors-dark.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 │ │ │ ├── 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 │ │ └── index.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 │ ├── PHPMailer │ │ ├── Exception.php │ │ ├── PHPMailer.php │ │ └── SMTP.php │ ├── Psr │ │ └── SimpleCache │ │ │ ├── CacheException.php │ │ │ ├── CacheInterface.php │ │ │ └── InvalidArgumentException.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 │ ├── 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 │ ├── author-template.php │ ├── block-i18n.json │ ├── blocks.php │ ├── cache-compat.php │ ├── cache.php │ ├── calmpress │ │ ├── admin-post-handlers.php │ │ ├── admin │ │ │ ├── class-admin-notices-handler.php │ │ │ └── class-admin-notices.php │ │ ├── apcu │ │ │ └── class-apcu.php │ │ ├── autoloader.php │ │ ├── avatar │ │ │ ├── class-avatar.php │ │ │ ├── class-blank-avatar-attributes-mutator.php │ │ │ ├── class-blank-avatar.php │ │ │ ├── class-has-avatar.php │ │ │ ├── class-image-based-avatar-attributes-mutator.php │ │ │ ├── class-image-based-avatar.php │ │ │ ├── class-text-based-avatar-attributes-mutator.php │ │ │ ├── class-text-based-avatar.php │ │ │ └── trait-html-generation-helper.php │ │ ├── backup │ │ │ ├── class-backup-container.php │ │ │ ├── class-backup-internal-file.php │ │ │ ├── class-backup-manager.php │ │ │ ├── class-backup-storage.php │ │ │ ├── class-backup.php │ │ │ ├── class-core-backup-engine.php │ │ │ ├── class-engine-specific-backup.php │ │ │ ├── class-local-backup-storage.php │ │ │ ├── class-local-storage-temporary-backup-storage.php │ │ │ ├── class-managed-backup.php │ │ │ ├── class-restore-exception.php │ │ │ ├── class-temporary-backup-storage.php │ │ │ ├── class-unknown-backup-engine.php │ │ │ └── class-utils.php │ │ ├── calmpress │ │ │ ├── class-maintenance-mode.php │ │ │ ├── class-paths.php │ │ │ ├── class-safe-mode.php │ │ │ └── class-timeout-exception.php │ │ ├── credentials │ │ │ ├── class-credentials.php │ │ │ ├── class-file-credentials.php │ │ │ └── class-ftp-credentials.php │ │ ├── email │ │ │ ├── class-abort-send-exception.php │ │ │ ├── class-email-address.php │ │ │ ├── class-email-attachment-attachment.php │ │ │ ├── class-email-attachment-file.php │ │ │ ├── class-email-attachment.php │ │ │ ├── class-email-mutator.php │ │ │ ├── class-email-send-abort-mutator.php │ │ │ ├── class-email.php │ │ │ ├── class-installer-email-verification-email-mutator.php │ │ │ ├── class-installer-email-verification-email.php │ │ │ ├── class-user-activation-verification-email-mutator.php │ │ │ ├── class-user-activation-verification-email.php │ │ │ ├── class-user-email-change-undo-email-mutator.php │ │ │ ├── class-user-email-change-undo-email.php │ │ │ ├── class-user-email-change-verification-email.php │ │ │ ├── class-user-email-change-verifification-email-mutator.php │ │ │ ├── class-user-one-time-password-email-mutator.php │ │ │ ├── class-user-one-time-password-email.php │ │ │ └── trait-email-to-user.php │ │ ├── filesystem │ │ │ └── class-path-lock.php │ │ ├── logger │ │ │ ├── class-controller.php │ │ │ ├── class-file-logger.php │ │ │ ├── class-log-emails.php │ │ │ └── class-logger.php │ │ ├── markdown │ │ │ ├── Parsedown.php │ │ │ └── class-utils.php │ │ ├── object-cache │ │ │ ├── class-apcu.php │ │ │ ├── class-chained-caches.php │ │ │ ├── class-file.php │ │ │ ├── class-invalid-argument-exception.php │ │ │ ├── class-null-cache.php │ │ │ ├── class-php-file.php │ │ │ ├── class-session-memory.php │ │ │ ├── class-utils.php │ │ │ └── trait-psr16-parameter-utils.php │ │ ├── observer │ │ │ ├── class-no-parameters-progress-observer.php │ │ │ ├── class-observer-collection.php │ │ │ ├── class-observer.php │ │ │ ├── trait-no-parameters-progress-observer-collection.php │ │ │ ├── trait-static-mutation-by-ref-observer-collection.php │ │ │ ├── trait-static-mutation-observer-collection.php │ │ │ ├── trait-static-observer-collection.php │ │ │ └── trait-static-progress-observer-collection.php │ │ ├── opcache │ │ │ ├── class-opcache.php │ │ │ └── class-stats.php │ │ ├── plugin │ │ │ ├── class-activation-exception.php │ │ │ ├── class-core-plugins.php │ │ │ ├── class-ini-based-version.php │ │ │ ├── class-installed-plugin.php │ │ │ ├── class-installed-plugins.php │ │ │ ├── class-plugin.php │ │ │ ├── class-repository.php │ │ │ ├── class-trivial-version.php │ │ │ └── class-version.php │ │ ├── post_authors │ │ │ ├── class-post-author.php │ │ │ ├── class-post-authors-as-taxonomy-db-upgrade.php │ │ │ ├── class-post-authors-as-taxonomy.php │ │ │ └── class-taxonomy-based-post-author.php │ │ ├── qr │ │ │ ├── class-utils.php │ │ │ ├── rest-endpoints.php │ │ │ └── vendor │ │ │ │ ├── autoload.php │ │ │ │ ├── chillerlan │ │ │ │ ├── php-qrcode │ │ │ │ │ ├── LICENSE-ASL-2.0 │ │ │ │ │ ├── LICENSE-MIT │ │ │ │ │ ├── NOTICE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── composer.json │ │ │ │ │ └── src │ │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── BitBuffer.php │ │ │ │ │ │ ├── ECICharset.php │ │ │ │ │ │ ├── EccLevel.php │ │ │ │ │ │ ├── GDLuminanceSource.php │ │ │ │ │ │ ├── GF256.php │ │ │ │ │ │ ├── GenericGFPoly.php │ │ │ │ │ │ ├── IMagickLuminanceSource.php │ │ │ │ │ │ ├── LuminanceSourceAbstract.php │ │ │ │ │ │ ├── LuminanceSourceInterface.php │ │ │ │ │ │ ├── MaskPattern.php │ │ │ │ │ │ ├── Mode.php │ │ │ │ │ │ └── Version.php │ │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── AlphaNum.php │ │ │ │ │ │ ├── Byte.php │ │ │ │ │ │ ├── ECI.php │ │ │ │ │ │ ├── Hanzi.php │ │ │ │ │ │ ├── Kanji.php │ │ │ │ │ │ ├── Number.php │ │ │ │ │ │ ├── QRCodeDataException.php │ │ │ │ │ │ ├── QRData.php │ │ │ │ │ │ ├── QRDataModeAbstract.php │ │ │ │ │ │ ├── QRDataModeInterface.php │ │ │ │ │ │ ├── QRMatrix.php │ │ │ │ │ │ └── ReedSolomonEncoder.php │ │ │ │ │ │ ├── Decoder │ │ │ │ │ │ ├── Binarizer.php │ │ │ │ │ │ ├── BitMatrix.php │ │ │ │ │ │ ├── Decoder.php │ │ │ │ │ │ ├── DecoderResult.php │ │ │ │ │ │ ├── QRCodeDecoderException.php │ │ │ │ │ │ └── ReedSolomonDecoder.php │ │ │ │ │ │ ├── Detector │ │ │ │ │ │ ├── AlignmentPattern.php │ │ │ │ │ │ ├── AlignmentPatternFinder.php │ │ │ │ │ │ ├── Detector.php │ │ │ │ │ │ ├── FinderPattern.php │ │ │ │ │ │ ├── FinderPatternFinder.php │ │ │ │ │ │ ├── GridSampler.php │ │ │ │ │ │ ├── PerspectiveTransform.php │ │ │ │ │ │ ├── QRCodeDetectorException.php │ │ │ │ │ │ └── ResultPoint.php │ │ │ │ │ │ ├── Output │ │ │ │ │ │ ├── QRCodeOutputException.php │ │ │ │ │ │ ├── QREps.php │ │ │ │ │ │ ├── QRFpdf.php │ │ │ │ │ │ ├── QRGdImage.php │ │ │ │ │ │ ├── QRGdImageBMP.php │ │ │ │ │ │ ├── QRGdImageGIF.php │ │ │ │ │ │ ├── QRGdImageJPEG.php │ │ │ │ │ │ ├── QRGdImagePNG.php │ │ │ │ │ │ ├── QRGdImageWEBP.php │ │ │ │ │ │ ├── QRImage.php │ │ │ │ │ │ ├── QRImagick.php │ │ │ │ │ │ ├── QRMarkup.php │ │ │ │ │ │ ├── QRMarkupHTML.php │ │ │ │ │ │ ├── QRMarkupSVG.php │ │ │ │ │ │ ├── QROutputAbstract.php │ │ │ │ │ │ ├── QROutputInterface.php │ │ │ │ │ │ ├── QRString.php │ │ │ │ │ │ ├── QRStringJSON.php │ │ │ │ │ │ └── QRStringText.php │ │ │ │ │ │ ├── QRCode.php │ │ │ │ │ │ ├── QRCodeException.php │ │ │ │ │ │ ├── QROptions.php │ │ │ │ │ │ └── QROptionsTrait.php │ │ │ │ └── php-settings-container │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── rules-magic-access.neon │ │ │ │ │ └── src │ │ │ │ │ ├── SettingsContainerAbstract.php │ │ │ │ │ └── SettingsContainerInterface.php │ │ │ │ └── composer │ │ │ │ ├── ClassLoader.php │ │ │ │ ├── InstalledVersions.php │ │ │ │ ├── LICENSE │ │ │ │ ├── autoload_classmap.php │ │ │ │ ├── autoload_namespaces.php │ │ │ │ ├── autoload_psr4.php │ │ │ │ ├── autoload_real.php │ │ │ │ ├── autoload_static.php │ │ │ │ ├── installed.json │ │ │ │ ├── installed.php │ │ │ │ └── platform_check.php │ │ ├── rest-endpoints.php │ │ ├── user │ │ │ ├── class-installer-email-verification.php │ │ │ └── class-switch-user.php │ │ ├── utils.php │ │ ├── utils │ │ │ ├── class-decryption-result.php │ │ │ └── class-one-time-password.php │ │ ├── webauthn │ │ │ ├── class-devices-of-user.php │ │ │ ├── class-user-of-device.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── rest-endpoints.php │ │ │ └── vendor │ │ │ │ ├── autoload.php │ │ │ │ ├── brick │ │ │ │ └── math │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── composer.json │ │ │ │ │ └── src │ │ │ │ │ ├── BigDecimal.php │ │ │ │ │ ├── BigInteger.php │ │ │ │ │ ├── BigNumber.php │ │ │ │ │ ├── BigRational.php │ │ │ │ │ ├── Exception │ │ │ │ │ ├── DivisionByZeroException.php │ │ │ │ │ ├── IntegerOverflowException.php │ │ │ │ │ ├── MathException.php │ │ │ │ │ ├── NegativeNumberException.php │ │ │ │ │ ├── NumberFormatException.php │ │ │ │ │ └── RoundingNecessaryException.php │ │ │ │ │ ├── Internal │ │ │ │ │ ├── Calculator.php │ │ │ │ │ └── Calculator │ │ │ │ │ │ ├── BcMathCalculator.php │ │ │ │ │ │ ├── GmpCalculator.php │ │ │ │ │ │ └── NativeCalculator.php │ │ │ │ │ └── RoundingMode.php │ │ │ │ ├── composer │ │ │ │ ├── ClassLoader.php │ │ │ │ ├── InstalledVersions.php │ │ │ │ ├── LICENSE │ │ │ │ ├── autoload_classmap.php │ │ │ │ ├── autoload_files.php │ │ │ │ ├── autoload_namespaces.php │ │ │ │ ├── autoload_psr4.php │ │ │ │ ├── autoload_real.php │ │ │ │ ├── autoload_static.php │ │ │ │ ├── installed.json │ │ │ │ ├── installed.php │ │ │ │ └── platform_check.php │ │ │ │ ├── lcobucci │ │ │ │ └── clock │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── renovate.json │ │ │ │ │ └── src │ │ │ │ │ ├── Clock.php │ │ │ │ │ ├── FrozenClock.php │ │ │ │ │ └── SystemClock.php │ │ │ │ ├── paragonie │ │ │ │ └── constant_time_encoding │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── composer.json │ │ │ │ │ └── src │ │ │ │ │ ├── Base32.php │ │ │ │ │ ├── Base32Hex.php │ │ │ │ │ ├── Base64.php │ │ │ │ │ ├── Base64DotSlash.php │ │ │ │ │ ├── Base64DotSlashOrdered.php │ │ │ │ │ ├── Base64UrlSafe.php │ │ │ │ │ ├── Binary.php │ │ │ │ │ ├── EncoderInterface.php │ │ │ │ │ ├── Encoding.php │ │ │ │ │ ├── Hex.php │ │ │ │ │ └── RFC4648.php │ │ │ │ ├── psr │ │ │ │ ├── clock │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── composer.json │ │ │ │ │ └── src │ │ │ │ │ │ └── ClockInterface.php │ │ │ │ ├── event-dispatcher │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── composer.json │ │ │ │ │ └── src │ │ │ │ │ │ ├── EventDispatcherInterface.php │ │ │ │ │ │ ├── ListenerProviderInterface.php │ │ │ │ │ │ └── StoppableEventInterface.php │ │ │ │ ├── http-client │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── composer.json │ │ │ │ │ └── src │ │ │ │ │ │ ├── ClientExceptionInterface.php │ │ │ │ │ │ ├── ClientInterface.php │ │ │ │ │ │ ├── NetworkExceptionInterface.php │ │ │ │ │ │ └── RequestExceptionInterface.php │ │ │ │ ├── http-factory │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── composer.json │ │ │ │ │ └── src │ │ │ │ │ │ ├── RequestFactoryInterface.php │ │ │ │ │ │ ├── ResponseFactoryInterface.php │ │ │ │ │ │ ├── ServerRequestFactoryInterface.php │ │ │ │ │ │ ├── StreamFactoryInterface.php │ │ │ │ │ │ ├── UploadedFileFactoryInterface.php │ │ │ │ │ │ └── UriFactoryInterface.php │ │ │ │ ├── http-message │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── PSR7-Interfaces.md │ │ │ │ │ │ └── PSR7-Usage.md │ │ │ │ │ └── src │ │ │ │ │ │ ├── MessageInterface.php │ │ │ │ │ │ ├── RequestInterface.php │ │ │ │ │ │ ├── ResponseInterface.php │ │ │ │ │ │ ├── ServerRequestInterface.php │ │ │ │ │ │ ├── StreamInterface.php │ │ │ │ │ │ ├── UploadedFileInterface.php │ │ │ │ │ │ └── UriInterface.php │ │ │ │ └── log │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── composer.json │ │ │ │ │ └── src │ │ │ │ │ ├── AbstractLogger.php │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ ├── LogLevel.php │ │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ │ ├── LoggerInterface.php │ │ │ │ │ ├── LoggerTrait.php │ │ │ │ │ └── NullLogger.php │ │ │ │ ├── spomky-labs │ │ │ │ ├── cbor-php │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── SECURITY.md │ │ │ │ │ ├── composer.json │ │ │ │ │ └── src │ │ │ │ │ │ ├── AbstractCBORObject.php │ │ │ │ │ │ ├── ByteStringObject.php │ │ │ │ │ │ ├── CBORObject.php │ │ │ │ │ │ ├── Decoder.php │ │ │ │ │ │ ├── DecoderInterface.php │ │ │ │ │ │ ├── IndefiniteLengthByteStringObject.php │ │ │ │ │ │ ├── IndefiniteLengthListObject.php │ │ │ │ │ │ ├── IndefiniteLengthMapObject.php │ │ │ │ │ │ ├── IndefiniteLengthTextStringObject.php │ │ │ │ │ │ ├── LengthCalculator.php │ │ │ │ │ │ ├── ListObject.php │ │ │ │ │ │ ├── MapItem.php │ │ │ │ │ │ ├── MapObject.php │ │ │ │ │ │ ├── NegativeIntegerObject.php │ │ │ │ │ │ ├── Normalizable.php │ │ │ │ │ │ ├── OtherObject.php │ │ │ │ │ │ ├── OtherObject │ │ │ │ │ │ ├── BreakObject.php │ │ │ │ │ │ ├── DoublePrecisionFloatObject.php │ │ │ │ │ │ ├── FalseObject.php │ │ │ │ │ │ ├── GenericObject.php │ │ │ │ │ │ ├── HalfPrecisionFloatObject.php │ │ │ │ │ │ ├── NullObject.php │ │ │ │ │ │ ├── OtherObjectInterface.php │ │ │ │ │ │ ├── OtherObjectManager.php │ │ │ │ │ │ ├── OtherObjectManagerInterface.php │ │ │ │ │ │ ├── SimpleObject.php │ │ │ │ │ │ ├── SinglePrecisionFloatObject.php │ │ │ │ │ │ ├── TrueObject.php │ │ │ │ │ │ └── UndefinedObject.php │ │ │ │ │ │ ├── Stream.php │ │ │ │ │ │ ├── StringStream.php │ │ │ │ │ │ ├── Tag.php │ │ │ │ │ │ ├── Tag │ │ │ │ │ │ ├── Base16EncodingTag.php │ │ │ │ │ │ ├── Base64EncodingTag.php │ │ │ │ │ │ ├── Base64Tag.php │ │ │ │ │ │ ├── Base64UrlEncodingTag.php │ │ │ │ │ │ ├── Base64UrlTag.php │ │ │ │ │ │ ├── BigFloatTag.php │ │ │ │ │ │ ├── CBOREncodingTag.php │ │ │ │ │ │ ├── CBORTag.php │ │ │ │ │ │ ├── DatetimeTag.php │ │ │ │ │ │ ├── DecimalFractionTag.php │ │ │ │ │ │ ├── GenericTag.php │ │ │ │ │ │ ├── MimeTag.php │ │ │ │ │ │ ├── NegativeBigIntegerTag.php │ │ │ │ │ │ ├── TagInterface.php │ │ │ │ │ │ ├── TagManager.php │ │ │ │ │ │ ├── TagManagerInterface.php │ │ │ │ │ │ ├── TimestampTag.php │ │ │ │ │ │ ├── UnsignedBigIntegerTag.php │ │ │ │ │ │ └── UriTag.php │ │ │ │ │ │ ├── TextStringObject.php │ │ │ │ │ │ ├── UnsignedIntegerObject.php │ │ │ │ │ │ └── Utils.php │ │ │ │ └── pki-framework │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── SECURITY.md │ │ │ │ │ ├── composer.json │ │ │ │ │ └── src │ │ │ │ │ ├── ASN1 │ │ │ │ │ ├── Component │ │ │ │ │ │ ├── Identifier.php │ │ │ │ │ │ └── Length.php │ │ │ │ │ ├── DERData.php │ │ │ │ │ ├── Element.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── DecodeException.php │ │ │ │ │ ├── Feature │ │ │ │ │ │ ├── ElementBase.php │ │ │ │ │ │ ├── Encodable.php │ │ │ │ │ │ └── Stringable.php │ │ │ │ │ ├── Type │ │ │ │ │ │ ├── BaseString.php │ │ │ │ │ │ ├── BaseTime.php │ │ │ │ │ │ ├── Constructed │ │ │ │ │ │ │ ├── ConstructedString.php │ │ │ │ │ │ │ ├── Sequence.php │ │ │ │ │ │ │ └── Set.php │ │ │ │ │ │ ├── Primitive │ │ │ │ │ │ │ ├── BMPString.php │ │ │ │ │ │ │ ├── BitString.php │ │ │ │ │ │ │ ├── Boolean.php │ │ │ │ │ │ │ ├── CharacterString.php │ │ │ │ │ │ │ ├── EOC.php │ │ │ │ │ │ │ ├── Enumerated.php │ │ │ │ │ │ │ ├── GeneralString.php │ │ │ │ │ │ │ ├── GeneralizedTime.php │ │ │ │ │ │ │ ├── GraphicString.php │ │ │ │ │ │ │ ├── IA5String.php │ │ │ │ │ │ │ ├── Integer.php │ │ │ │ │ │ │ ├── NullType.php │ │ │ │ │ │ │ ├── Number.php │ │ │ │ │ │ │ ├── NumericString.php │ │ │ │ │ │ │ ├── ObjectDescriptor.php │ │ │ │ │ │ │ ├── ObjectIdentifier.php │ │ │ │ │ │ │ ├── OctetString.php │ │ │ │ │ │ │ ├── PrintableString.php │ │ │ │ │ │ │ ├── Real.php │ │ │ │ │ │ │ ├── RelativeOID.php │ │ │ │ │ │ │ ├── T61String.php │ │ │ │ │ │ │ ├── UTCTime.php │ │ │ │ │ │ │ ├── UTF8String.php │ │ │ │ │ │ │ ├── UniversalString.php │ │ │ │ │ │ │ ├── VideotexString.php │ │ │ │ │ │ │ └── VisibleString.php │ │ │ │ │ │ ├── PrimitiveString.php │ │ │ │ │ │ ├── PrimitiveType.php │ │ │ │ │ │ ├── StringType.php │ │ │ │ │ │ ├── Structure.php │ │ │ │ │ │ ├── Tagged │ │ │ │ │ │ │ ├── ApplicationType.php │ │ │ │ │ │ │ ├── ContextSpecificType.php │ │ │ │ │ │ │ ├── DERTaggedType.php │ │ │ │ │ │ │ ├── ExplicitTagging.php │ │ │ │ │ │ │ ├── ExplicitlyTaggedType.php │ │ │ │ │ │ │ ├── ImplicitTagging.php │ │ │ │ │ │ │ ├── ImplicitlyTaggedType.php │ │ │ │ │ │ │ ├── PrivateType.php │ │ │ │ │ │ │ └── TaggedTypeWrap.php │ │ │ │ │ │ ├── TaggedType.php │ │ │ │ │ │ ├── TimeType.php │ │ │ │ │ │ ├── UniversalClass.php │ │ │ │ │ │ └── UnspecifiedType.php │ │ │ │ │ └── Util │ │ │ │ │ │ ├── BigInt.php │ │ │ │ │ │ └── Flags.php │ │ │ │ │ ├── CryptoBridge │ │ │ │ │ ├── Crypto.php │ │ │ │ │ └── Crypto │ │ │ │ │ │ └── OpenSSLCrypto.php │ │ │ │ │ ├── CryptoEncoding │ │ │ │ │ ├── PEM.php │ │ │ │ │ └── PEMBundle.php │ │ │ │ │ ├── CryptoTypes │ │ │ │ │ ├── AlgorithmIdentifier │ │ │ │ │ │ ├── AlgorithmIdentifier.php │ │ │ │ │ │ ├── AlgorithmIdentifierFactory.php │ │ │ │ │ │ ├── AlgorithmIdentifierProvider.php │ │ │ │ │ │ ├── Asymmetric │ │ │ │ │ │ │ ├── ECPublicKeyAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── Ed25519AlgorithmIdentifier.php │ │ │ │ │ │ │ ├── Ed448AlgorithmIdentifier.php │ │ │ │ │ │ │ ├── RFC8410EdAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── RFC8410XAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── RSAEncryptionAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── RSAPSSSSAEncryptionAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── X25519AlgorithmIdentifier.php │ │ │ │ │ │ │ └── X448AlgorithmIdentifier.php │ │ │ │ │ │ ├── Cipher │ │ │ │ │ │ │ ├── AES128CBCAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── AES192CBCAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── AES256CBCAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── AESCBCAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── BlockCipherAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── CipherAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── DESCBCAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── DESEDE3CBCAlgorithmIdentifier.php │ │ │ │ │ │ │ └── RC2CBCAlgorithmIdentifier.php │ │ │ │ │ │ ├── Feature │ │ │ │ │ │ │ ├── AlgorithmIdentifierType.php │ │ │ │ │ │ │ ├── AsymmetricCryptoAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── EncryptionAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── HashAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── PRFAlgorithmIdentifier.php │ │ │ │ │ │ │ └── SignatureAlgorithmIdentifier.php │ │ │ │ │ │ ├── GenericAlgorithmIdentifier.php │ │ │ │ │ │ ├── Hash │ │ │ │ │ │ │ ├── HMACWithSHA1AlgorithmIdentifier.php │ │ │ │ │ │ │ ├── HMACWithSHA224AlgorithmIdentifier.php │ │ │ │ │ │ │ ├── HMACWithSHA256AlgorithmIdentifier.php │ │ │ │ │ │ │ ├── HMACWithSHA384AlgorithmIdentifier.php │ │ │ │ │ │ │ ├── HMACWithSHA512AlgorithmIdentifier.php │ │ │ │ │ │ │ ├── MD5AlgorithmIdentifier.php │ │ │ │ │ │ │ ├── RFC4231HMACAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── SHA1AlgorithmIdentifier.php │ │ │ │ │ │ │ ├── SHA224AlgorithmIdentifier.php │ │ │ │ │ │ │ ├── SHA256AlgorithmIdentifier.php │ │ │ │ │ │ │ ├── SHA2AlgorithmIdentifier.php │ │ │ │ │ │ │ ├── SHA384AlgorithmIdentifier.php │ │ │ │ │ │ │ └── SHA512AlgorithmIdentifier.php │ │ │ │ │ │ ├── Signature │ │ │ │ │ │ │ ├── ECDSAWithSHA1AlgorithmIdentifier.php │ │ │ │ │ │ │ ├── ECDSAWithSHA224AlgorithmIdentifier.php │ │ │ │ │ │ │ ├── ECDSAWithSHA256AlgorithmIdentifier.php │ │ │ │ │ │ │ ├── ECDSAWithSHA384AlgorithmIdentifier.php │ │ │ │ │ │ │ ├── ECDSAWithSHA512AlgorithmIdentifier.php │ │ │ │ │ │ │ ├── ECSignatureAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── MD2WithRSAEncryptionAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── MD4WithRSAEncryptionAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── MD5WithRSAEncryptionAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── RFC3279RSASignatureAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── RFC4055RSASignatureAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── RSASignatureAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── SHA1WithRSAEncryptionAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── SHA224WithRSAEncryptionAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── SHA256WithRSAEncryptionAlgorithmIdentifier.php │ │ │ │ │ │ │ ├── SHA384WithRSAEncryptionAlgorithmIdentifier.php │ │ │ │ │ │ │ └── SHA512WithRSAEncryptionAlgorithmIdentifier.php │ │ │ │ │ │ └── SpecificAlgorithmIdentifier.php │ │ │ │ │ ├── Asymmetric │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ └── OneAsymmetricKeyAttributes.php │ │ │ │ │ │ ├── EC │ │ │ │ │ │ │ ├── ECConversion.php │ │ │ │ │ │ │ ├── ECPrivateKey.php │ │ │ │ │ │ │ └── ECPublicKey.php │ │ │ │ │ │ ├── OneAsymmetricKey.php │ │ │ │ │ │ ├── PrivateKey.php │ │ │ │ │ │ ├── PrivateKeyInfo.php │ │ │ │ │ │ ├── PublicKey.php │ │ │ │ │ │ ├── PublicKeyInfo.php │ │ │ │ │ │ ├── RFC8410 │ │ │ │ │ │ │ ├── Curve25519 │ │ │ │ │ │ │ │ ├── Curve25519PrivateKey.php │ │ │ │ │ │ │ │ ├── Curve25519PublicKey.php │ │ │ │ │ │ │ │ ├── Ed25519PrivateKey.php │ │ │ │ │ │ │ │ ├── Ed25519PublicKey.php │ │ │ │ │ │ │ │ ├── X25519PrivateKey.php │ │ │ │ │ │ │ │ └── X25519PublicKey.php │ │ │ │ │ │ │ ├── Curve448 │ │ │ │ │ │ │ │ ├── Ed448PrivateKey.php │ │ │ │ │ │ │ │ ├── Ed448PublicKey.php │ │ │ │ │ │ │ │ ├── X448PrivateKey.php │ │ │ │ │ │ │ │ └── X448PublicKey.php │ │ │ │ │ │ │ ├── RFC8410PrivateKey.php │ │ │ │ │ │ │ └── RFC8410PublicKey.php │ │ │ │ │ │ └── RSA │ │ │ │ │ │ │ ├── RSAPrivateKey.php │ │ │ │ │ │ │ ├── RSAPublicKey.php │ │ │ │ │ │ │ └── RSASSAPSSPrivateKey.php │ │ │ │ │ └── Signature │ │ │ │ │ │ ├── ECSignature.php │ │ │ │ │ │ ├── Ed25519Signature.php │ │ │ │ │ │ ├── Ed448Signature.php │ │ │ │ │ │ ├── GenericSignature.php │ │ │ │ │ │ ├── RSASignature.php │ │ │ │ │ │ └── Signature.php │ │ │ │ │ ├── X501 │ │ │ │ │ ├── ASN1 │ │ │ │ │ │ ├── Attribute.php │ │ │ │ │ │ ├── AttributeType.php │ │ │ │ │ │ ├── AttributeTypeAndValue.php │ │ │ │ │ │ ├── AttributeValue │ │ │ │ │ │ │ ├── AttributeValue.php │ │ │ │ │ │ │ ├── CommonNameValue.php │ │ │ │ │ │ │ ├── CountryNameValue.php │ │ │ │ │ │ │ ├── DescriptionValue.php │ │ │ │ │ │ │ ├── Feature │ │ │ │ │ │ │ │ ├── DirectoryString.php │ │ │ │ │ │ │ │ └── PrintableStringValue.php │ │ │ │ │ │ │ ├── GivenNameValue.php │ │ │ │ │ │ │ ├── LocalityNameValue.php │ │ │ │ │ │ │ ├── NameValue.php │ │ │ │ │ │ │ ├── OrganizationNameValue.php │ │ │ │ │ │ │ ├── OrganizationalUnitNameValue.php │ │ │ │ │ │ │ ├── PseudonymValue.php │ │ │ │ │ │ │ ├── SerialNumberValue.php │ │ │ │ │ │ │ ├── StateOrProvinceNameValue.php │ │ │ │ │ │ │ ├── SurnameValue.php │ │ │ │ │ │ │ ├── TitleValue.php │ │ │ │ │ │ │ └── UnknownAttributeValue.php │ │ │ │ │ │ ├── Collection │ │ │ │ │ │ │ ├── AttributeCollection.php │ │ │ │ │ │ │ ├── SequenceOfAttributes.php │ │ │ │ │ │ │ └── SetOfAttributes.php │ │ │ │ │ │ ├── Name.php │ │ │ │ │ │ └── RDN.php │ │ │ │ │ ├── DN │ │ │ │ │ │ └── DNParser.php │ │ │ │ │ ├── MatchingRule │ │ │ │ │ │ ├── BinaryMatch.php │ │ │ │ │ │ ├── CaseExactMatch.php │ │ │ │ │ │ ├── CaseIgnoreMatch.php │ │ │ │ │ │ ├── MatchingRule.php │ │ │ │ │ │ └── StringPrepMatchingRule.php │ │ │ │ │ └── StringPrep │ │ │ │ │ │ ├── CheckBidiStep.php │ │ │ │ │ │ ├── InsignificantNonSubstringSpaceStep.php │ │ │ │ │ │ ├── MapStep.php │ │ │ │ │ │ ├── NormalizeStep.php │ │ │ │ │ │ ├── PrepareStep.php │ │ │ │ │ │ ├── ProhibitStep.php │ │ │ │ │ │ ├── StringPreparer.php │ │ │ │ │ │ └── TranscodeStep.php │ │ │ │ │ └── X509 │ │ │ │ │ ├── AttributeCertificate │ │ │ │ │ ├── AttCertIssuer.php │ │ │ │ │ ├── AttCertValidityPeriod.php │ │ │ │ │ ├── Attribute │ │ │ │ │ │ ├── AccessIdentityAttributeValue.php │ │ │ │ │ │ ├── AuthenticationInfoAttributeValue.php │ │ │ │ │ │ ├── ChargingIdentityAttributeValue.php │ │ │ │ │ │ ├── GroupAttributeValue.php │ │ │ │ │ │ ├── IetfAttrSyntax.php │ │ │ │ │ │ ├── IetfAttrValue.php │ │ │ │ │ │ ├── RoleAttributeValue.php │ │ │ │ │ │ └── SvceAuthInfo.php │ │ │ │ │ ├── AttributeCertificate.php │ │ │ │ │ ├── AttributeCertificateInfo.php │ │ │ │ │ ├── Attributes.php │ │ │ │ │ ├── Holder.php │ │ │ │ │ ├── IssuerSerial.php │ │ │ │ │ ├── ObjectDigestInfo.php │ │ │ │ │ ├── V2Form.php │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── ACValidationConfig.php │ │ │ │ │ │ ├── ACValidator.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ └── ACValidationException.php │ │ │ │ │ ├── Certificate │ │ │ │ │ ├── Certificate.php │ │ │ │ │ ├── CertificateBundle.php │ │ │ │ │ ├── CertificateChain.php │ │ │ │ │ ├── Extension │ │ │ │ │ │ ├── AAControlsExtension.php │ │ │ │ │ │ ├── AccessDescription │ │ │ │ │ │ │ ├── AccessDescription.php │ │ │ │ │ │ │ ├── AuthorityAccessDescription.php │ │ │ │ │ │ │ └── SubjectAccessDescription.php │ │ │ │ │ │ ├── AuthorityInformationAccessExtension.php │ │ │ │ │ │ ├── AuthorityKeyIdentifierExtension.php │ │ │ │ │ │ ├── BasicConstraintsExtension.php │ │ │ │ │ │ ├── CRLDistributionPointsExtension.php │ │ │ │ │ │ ├── CertificatePoliciesExtension.php │ │ │ │ │ │ ├── CertificatePolicy │ │ │ │ │ │ │ ├── CPSQualifier.php │ │ │ │ │ │ │ ├── DisplayText.php │ │ │ │ │ │ │ ├── NoticeReference.php │ │ │ │ │ │ │ ├── PolicyInformation.php │ │ │ │ │ │ │ ├── PolicyQualifierInfo.php │ │ │ │ │ │ │ └── UserNoticeQualifier.php │ │ │ │ │ │ ├── DistributionPoint │ │ │ │ │ │ │ ├── DistributionPoint.php │ │ │ │ │ │ │ ├── DistributionPointName.php │ │ │ │ │ │ │ ├── FullName.php │ │ │ │ │ │ │ ├── ReasonFlags.php │ │ │ │ │ │ │ └── RelativeName.php │ │ │ │ │ │ ├── ExtendedKeyUsageExtension.php │ │ │ │ │ │ ├── Extension.php │ │ │ │ │ │ ├── FreshestCRLExtension.php │ │ │ │ │ │ ├── InhibitAnyPolicyExtension.php │ │ │ │ │ │ ├── IssuerAlternativeNameExtension.php │ │ │ │ │ │ ├── KeyUsageExtension.php │ │ │ │ │ │ ├── NameConstraints │ │ │ │ │ │ │ ├── GeneralSubtree.php │ │ │ │ │ │ │ └── GeneralSubtrees.php │ │ │ │ │ │ ├── NameConstraintsExtension.php │ │ │ │ │ │ ├── NoRevocationAvailableExtension.php │ │ │ │ │ │ ├── PolicyConstraintsExtension.php │ │ │ │ │ │ ├── PolicyMappings │ │ │ │ │ │ │ └── PolicyMapping.php │ │ │ │ │ │ ├── PolicyMappingsExtension.php │ │ │ │ │ │ ├── SubjectAlternativeNameExtension.php │ │ │ │ │ │ ├── SubjectDirectoryAttributesExtension.php │ │ │ │ │ │ ├── SubjectInformationAccessExtension.php │ │ │ │ │ │ ├── SubjectKeyIdentifierExtension.php │ │ │ │ │ │ ├── Target │ │ │ │ │ │ │ ├── Target.php │ │ │ │ │ │ │ ├── TargetGroup.php │ │ │ │ │ │ │ ├── TargetName.php │ │ │ │ │ │ │ └── Targets.php │ │ │ │ │ │ ├── TargetInformationExtension.php │ │ │ │ │ │ └── UnknownExtension.php │ │ │ │ │ ├── Extensions.php │ │ │ │ │ ├── TBSCertificate.php │ │ │ │ │ ├── Time.php │ │ │ │ │ ├── UniqueIdentifier.php │ │ │ │ │ └── Validity.php │ │ │ │ │ ├── CertificationPath │ │ │ │ │ ├── CertificationPath.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── PathBuildingException.php │ │ │ │ │ │ └── PathValidationException.php │ │ │ │ │ ├── PathBuilding │ │ │ │ │ │ └── CertificationPathBuilder.php │ │ │ │ │ ├── PathValidation │ │ │ │ │ │ ├── PathValidationConfig.php │ │ │ │ │ │ ├── PathValidationResult.php │ │ │ │ │ │ ├── PathValidator.php │ │ │ │ │ │ └── ValidatorState.php │ │ │ │ │ └── Policy │ │ │ │ │ │ ├── PolicyNode.php │ │ │ │ │ │ └── PolicyTree.php │ │ │ │ │ ├── CertificationRequest │ │ │ │ │ ├── Attribute │ │ │ │ │ │ └── ExtensionRequestValue.php │ │ │ │ │ ├── Attributes.php │ │ │ │ │ ├── CertificationRequest.php │ │ │ │ │ └── CertificationRequestInfo.php │ │ │ │ │ ├── Exception │ │ │ │ │ └── X509ValidationException.php │ │ │ │ │ ├── Feature │ │ │ │ │ └── DateTimeHelper.php │ │ │ │ │ └── GeneralName │ │ │ │ │ ├── DNSName.php │ │ │ │ │ ├── DirectoryName.php │ │ │ │ │ ├── EDIPartyName.php │ │ │ │ │ ├── GeneralName.php │ │ │ │ │ ├── GeneralNames.php │ │ │ │ │ ├── IPAddress.php │ │ │ │ │ ├── IPv4Address.php │ │ │ │ │ ├── IPv6Address.php │ │ │ │ │ ├── OtherName.php │ │ │ │ │ ├── RFC822Name.php │ │ │ │ │ ├── RegisteredID.php │ │ │ │ │ ├── UniformResourceIdentifier.php │ │ │ │ │ └── X400Address.php │ │ │ │ ├── symfony │ │ │ │ ├── deprecation-contracts │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── composer.json │ │ │ │ │ └── function.php │ │ │ │ ├── polyfill-uuid │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Uuid.php │ │ │ │ │ ├── bootstrap.php │ │ │ │ │ ├── bootstrap80.php │ │ │ │ │ └── composer.json │ │ │ │ └── uid │ │ │ │ │ ├── AbstractUid.php │ │ │ │ │ ├── BinaryUtil.php │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── Command │ │ │ │ │ ├── GenerateUlidCommand.php │ │ │ │ │ ├── GenerateUuidCommand.php │ │ │ │ │ ├── InspectUlidCommand.php │ │ │ │ │ └── InspectUuidCommand.php │ │ │ │ │ ├── Factory │ │ │ │ │ ├── NameBasedUuidFactory.php │ │ │ │ │ ├── RandomBasedUuidFactory.php │ │ │ │ │ ├── TimeBasedUuidFactory.php │ │ │ │ │ ├── UlidFactory.php │ │ │ │ │ └── UuidFactory.php │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── MaxUlid.php │ │ │ │ │ ├── MaxUuid.php │ │ │ │ │ ├── NilUlid.php │ │ │ │ │ ├── NilUuid.php │ │ │ │ │ ├── README.md │ │ │ │ │ ├── TimeBasedUidInterface.php │ │ │ │ │ ├── Ulid.php │ │ │ │ │ ├── Uuid.php │ │ │ │ │ ├── UuidV1.php │ │ │ │ │ ├── UuidV3.php │ │ │ │ │ ├── UuidV4.php │ │ │ │ │ ├── UuidV5.php │ │ │ │ │ ├── UuidV6.php │ │ │ │ │ ├── UuidV7.php │ │ │ │ │ ├── UuidV8.php │ │ │ │ │ └── composer.json │ │ │ │ └── web-auth │ │ │ │ ├── cose-lib │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── Algorithm │ │ │ │ │ ├── Algorithm.php │ │ │ │ │ ├── Mac │ │ │ │ │ │ ├── HS256.php │ │ │ │ │ │ ├── HS256Truncated64.php │ │ │ │ │ │ ├── HS384.php │ │ │ │ │ │ ├── HS512.php │ │ │ │ │ │ ├── Hmac.php │ │ │ │ │ │ └── Mac.php │ │ │ │ │ ├── Manager.php │ │ │ │ │ ├── ManagerFactory.php │ │ │ │ │ └── Signature │ │ │ │ │ │ ├── ECDSA │ │ │ │ │ │ ├── ECDSA.php │ │ │ │ │ │ ├── ECSignature.php │ │ │ │ │ │ ├── ES256.php │ │ │ │ │ │ ├── ES256K.php │ │ │ │ │ │ ├── ES384.php │ │ │ │ │ │ └── ES512.php │ │ │ │ │ │ ├── EdDSA │ │ │ │ │ │ ├── Ed25519.php │ │ │ │ │ │ ├── Ed256.php │ │ │ │ │ │ ├── Ed512.php │ │ │ │ │ │ └── EdDSA.php │ │ │ │ │ │ ├── RSA │ │ │ │ │ │ ├── PS256.php │ │ │ │ │ │ ├── PS384.php │ │ │ │ │ │ ├── PS512.php │ │ │ │ │ │ ├── PSSRSA.php │ │ │ │ │ │ ├── RS1.php │ │ │ │ │ │ ├── RS256.php │ │ │ │ │ │ ├── RS384.php │ │ │ │ │ │ ├── RS512.php │ │ │ │ │ │ └── RSA.php │ │ │ │ │ │ └── Signature.php │ │ │ │ │ ├── Algorithms.php │ │ │ │ │ ├── BigInteger.php │ │ │ │ │ ├── Hash.php │ │ │ │ │ └── Key │ │ │ │ │ ├── Ec2Key.php │ │ │ │ │ ├── Key.php │ │ │ │ │ ├── OkpKey.php │ │ │ │ │ ├── RsaKey.php │ │ │ │ │ └── SymmetricKey.php │ │ │ │ └── webauthn-lib │ │ │ │ ├── LICENSE │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ ├── AttestationStatement │ │ │ │ ├── AndroidKeyAttestationStatementSupport.php │ │ │ │ ├── AndroidSafetyNetAttestationStatementSupport.php │ │ │ │ ├── AppleAttestationStatementSupport.php │ │ │ │ ├── AttestationObject.php │ │ │ │ ├── AttestationObjectLoader.php │ │ │ │ ├── AttestationStatement.php │ │ │ │ ├── AttestationStatementSupport.php │ │ │ │ ├── AttestationStatementSupportManager.php │ │ │ │ ├── FidoU2FAttestationStatementSupport.php │ │ │ │ ├── NoneAttestationStatementSupport.php │ │ │ │ ├── PackedAttestationStatementSupport.php │ │ │ │ └── TPMAttestationStatementSupport.php │ │ │ │ ├── AttestedCredentialData.php │ │ │ │ ├── AuthenticationExtensions │ │ │ │ ├── AuthenticationExtension.php │ │ │ │ ├── AuthenticationExtensions.php │ │ │ │ ├── AuthenticationExtensionsClientInputs.php │ │ │ │ ├── AuthenticationExtensionsClientOutputs.php │ │ │ │ ├── AuthenticationExtensionsClientOutputsLoader.php │ │ │ │ ├── ExtensionOutputChecker.php │ │ │ │ ├── ExtensionOutputCheckerHandler.php │ │ │ │ └── ExtensionOutputError.php │ │ │ │ ├── AuthenticatorAssertionResponse.php │ │ │ │ ├── AuthenticatorAssertionResponseValidator.php │ │ │ │ ├── AuthenticatorAttestationResponse.php │ │ │ │ ├── AuthenticatorAttestationResponseValidator.php │ │ │ │ ├── AuthenticatorData.php │ │ │ │ ├── AuthenticatorDataLoader.php │ │ │ │ ├── AuthenticatorResponse.php │ │ │ │ ├── AuthenticatorSelectionCriteria.php │ │ │ │ ├── CeremonyStep │ │ │ │ ├── CeremonyStep.php │ │ │ │ ├── CeremonyStepManager.php │ │ │ │ ├── CeremonyStepManagerFactory.php │ │ │ │ ├── CheckAlgorithm.php │ │ │ │ ├── CheckAllowedCredentialList.php │ │ │ │ ├── CheckAttestationFormatIsKnownAndValid.php │ │ │ │ ├── CheckBackupBitsAreConsistent.php │ │ │ │ ├── CheckChallenge.php │ │ │ │ ├── CheckClientDataCollectorType.php │ │ │ │ ├── CheckCounter.php │ │ │ │ ├── CheckCredentialId.php │ │ │ │ ├── CheckExtensions.php │ │ │ │ ├── CheckHasAttestedCredentialData.php │ │ │ │ ├── CheckMetadataStatement.php │ │ │ │ ├── CheckOrigin.php │ │ │ │ ├── CheckRelyingPartyIdIdHash.php │ │ │ │ ├── CheckSignature.php │ │ │ │ ├── CheckTopOrigin.php │ │ │ │ ├── CheckUserHandle.php │ │ │ │ ├── CheckUserVerification.php │ │ │ │ ├── CheckUserWasPresent.php │ │ │ │ ├── HostTopOriginValidator.php │ │ │ │ └── TopOriginValidator.php │ │ │ │ ├── CertificateChainChecker │ │ │ │ ├── CertificateChainChecker.php │ │ │ │ └── PhpCertificateChainChecker.php │ │ │ │ ├── CertificateToolbox.php │ │ │ │ ├── ClientDataCollector │ │ │ │ ├── ClientDataCollector.php │ │ │ │ ├── ClientDataCollectorManager.php │ │ │ │ └── WebauthnAuthenticationCollector.php │ │ │ │ ├── CollectedClientData.php │ │ │ │ ├── Counter │ │ │ │ ├── CounterChecker.php │ │ │ │ └── ThrowExceptionIfInvalid.php │ │ │ │ ├── Credential.php │ │ │ │ ├── Denormalizer │ │ │ │ ├── AttestationObjectDenormalizer.php │ │ │ │ ├── AttestationStatementDenormalizer.php │ │ │ │ ├── AttestedCredentialDataNormalizer.php │ │ │ │ ├── AuthenticationExtensionNormalizer.php │ │ │ │ ├── AuthenticationExtensionsDenormalizer.php │ │ │ │ ├── AuthenticatorAssertionResponseDenormalizer.php │ │ │ │ ├── AuthenticatorAttestationResponseDenormalizer.php │ │ │ │ ├── AuthenticatorDataDenormalizer.php │ │ │ │ ├── AuthenticatorResponseDenormalizer.php │ │ │ │ ├── CollectedClientDataDenormalizer.php │ │ │ │ ├── ExtensionDescriptorDenormalizer.php │ │ │ │ ├── PublicKeyCredentialDenormalizer.php │ │ │ │ ├── PublicKeyCredentialDescriptorNormalizer.php │ │ │ │ ├── PublicKeyCredentialOptionsDenormalizer.php │ │ │ │ ├── PublicKeyCredentialParametersDenormalizer.php │ │ │ │ ├── PublicKeyCredentialSourceDenormalizer.php │ │ │ │ ├── PublicKeyCredentialUserEntityDenormalizer.php │ │ │ │ ├── TrustPathDenormalizer.php │ │ │ │ ├── VerificationMethodANDCombinationsDenormalizer.php │ │ │ │ └── WebauthnSerializerFactory.php │ │ │ │ ├── Event │ │ │ │ ├── AttestationObjectLoaded.php │ │ │ │ ├── AttestationStatementLoaded.php │ │ │ │ ├── AuthenticatorAssertionResponseValidationFailedEvent.php │ │ │ │ ├── AuthenticatorAssertionResponseValidationSucceededEvent.php │ │ │ │ ├── AuthenticatorAttestationResponseValidationFailedEvent.php │ │ │ │ ├── AuthenticatorAttestationResponseValidationSucceededEvent.php │ │ │ │ ├── BeforeCertificateChainValidation.php │ │ │ │ ├── CanDispatchEvents.php │ │ │ │ ├── CertificateChainValidationFailed.php │ │ │ │ ├── CertificateChainValidationSucceeded.php │ │ │ │ ├── MetadataStatementFound.php │ │ │ │ ├── NullEventDispatcher.php │ │ │ │ └── WebauthnEvent.php │ │ │ │ ├── Exception │ │ │ │ ├── AttestationStatementException.php │ │ │ │ ├── AttestationStatementLoadingException.php │ │ │ │ ├── AttestationStatementVerificationException.php │ │ │ │ ├── AuthenticationExtensionException.php │ │ │ │ ├── AuthenticatorResponseVerificationException.php │ │ │ │ ├── CertificateChainException.php │ │ │ │ ├── CertificateException.php │ │ │ │ ├── CertificateRevocationListException.php │ │ │ │ ├── CounterException.php │ │ │ │ ├── ExpiredCertificateException.php │ │ │ │ ├── InvalidAttestationStatementException.php │ │ │ │ ├── InvalidCertificateException.php │ │ │ │ ├── InvalidDataException.php │ │ │ │ ├── InvalidTrustPathException.php │ │ │ │ ├── InvalidUserHandleException.php │ │ │ │ ├── MetadataServiceException.php │ │ │ │ ├── MetadataStatementException.php │ │ │ │ ├── MetadataStatementLoadingException.php │ │ │ │ ├── MissingMetadataStatementException.php │ │ │ │ ├── RevokedCertificateException.php │ │ │ │ ├── UnsupportedFeatureException.php │ │ │ │ └── WebauthnException.php │ │ │ │ ├── FakeCredentialGenerator.php │ │ │ │ ├── MetadataService │ │ │ │ ├── CanLogData.php │ │ │ │ ├── CertificateChain │ │ │ │ │ ├── CertificateChainValidator.php │ │ │ │ │ ├── CertificateToolbox.php │ │ │ │ │ └── PhpCertificateChainValidator.php │ │ │ │ ├── Denormalizer │ │ │ │ │ ├── ExtensionDescriptorDenormalizer.php │ │ │ │ │ └── MetadataStatementSerializerFactory.php │ │ │ │ ├── Event │ │ │ │ │ ├── BeforeCertificateChainValidation.php │ │ │ │ │ ├── CanDispatchEvents.php │ │ │ │ │ ├── CertificateChainValidationFailed.php │ │ │ │ │ ├── CertificateChainValidationSucceeded.php │ │ │ │ │ ├── MetadataStatementFound.php │ │ │ │ │ ├── NullEventDispatcher.php │ │ │ │ │ └── WebauthnEvent.php │ │ │ │ ├── Exception │ │ │ │ │ ├── CertificateChainException.php │ │ │ │ │ ├── CertificateException.php │ │ │ │ │ ├── CertificateRevocationListException.php │ │ │ │ │ ├── ExpiredCertificateException.php │ │ │ │ │ ├── InvalidCertificateException.php │ │ │ │ │ ├── MetadataServiceException.php │ │ │ │ │ ├── MetadataStatementException.php │ │ │ │ │ ├── MetadataStatementLoadingException.php │ │ │ │ │ ├── MissingMetadataStatementException.php │ │ │ │ │ └── RevokedCertificateException.php │ │ │ │ ├── MetadataStatementRepository.php │ │ │ │ ├── Psr18HttpClient.php │ │ │ │ ├── Service │ │ │ │ │ ├── ChainedMetadataServices.php │ │ │ │ │ ├── DistantResourceMetadataService.php │ │ │ │ │ ├── FidoAllianceCompliantMetadataService.php │ │ │ │ │ ├── FolderResourceMetadataService.php │ │ │ │ │ ├── InMemoryMetadataService.php │ │ │ │ │ ├── JsonMetadataService.php │ │ │ │ │ ├── LocalResourceMetadataService.php │ │ │ │ │ ├── MetadataBLOBPayload.php │ │ │ │ │ ├── MetadataBLOBPayloadEntry.php │ │ │ │ │ ├── MetadataService.php │ │ │ │ │ └── StringMetadataService.php │ │ │ │ ├── Statement │ │ │ │ │ ├── AbstractDescriptor.php │ │ │ │ │ ├── AlternativeDescriptions.php │ │ │ │ │ ├── AuthenticatorGetInfo.php │ │ │ │ │ ├── AuthenticatorStatus.php │ │ │ │ │ ├── BiometricAccuracyDescriptor.php │ │ │ │ │ ├── BiometricStatusReport.php │ │ │ │ │ ├── CodeAccuracyDescriptor.php │ │ │ │ │ ├── DisplayPNGCharacteristicsDescriptor.php │ │ │ │ │ ├── EcdaaTrustAnchor.php │ │ │ │ │ ├── ExtensionDescriptor.php │ │ │ │ │ ├── MetadataStatement.php │ │ │ │ │ ├── PatternAccuracyDescriptor.php │ │ │ │ │ ├── RgbPaletteEntry.php │ │ │ │ │ ├── RogueListEntry.php │ │ │ │ │ ├── StatusReport.php │ │ │ │ │ ├── VerificationMethodANDCombinations.php │ │ │ │ │ ├── VerificationMethodDescriptor.php │ │ │ │ │ └── Version.php │ │ │ │ ├── StatusReportRepository.php │ │ │ │ └── ValueFilter.php │ │ │ │ ├── PublicKeyCredential.php │ │ │ │ ├── PublicKeyCredentialCreationOptions.php │ │ │ │ ├── PublicKeyCredentialDescriptor.php │ │ │ │ ├── PublicKeyCredentialDescriptorCollection.php │ │ │ │ ├── PublicKeyCredentialEntity.php │ │ │ │ ├── PublicKeyCredentialLoader.php │ │ │ │ ├── PublicKeyCredentialOptions.php │ │ │ │ ├── PublicKeyCredentialParameters.php │ │ │ │ ├── PublicKeyCredentialRequestOptions.php │ │ │ │ ├── PublicKeyCredentialRpEntity.php │ │ │ │ ├── PublicKeyCredentialSource.php │ │ │ │ ├── PublicKeyCredentialSourceRepository.php │ │ │ │ ├── PublicKeyCredentialUserEntity.php │ │ │ │ ├── SimpleFakeCredentialGenerator.php │ │ │ │ ├── StringStream.php │ │ │ │ ├── TokenBinding │ │ │ │ ├── IgnoreTokenBindingHandler.php │ │ │ │ ├── SecTokenBindingHandler.php │ │ │ │ ├── TokenBinding.php │ │ │ │ ├── TokenBindingHandler.php │ │ │ │ └── TokenBindingNotSupportedHandler.php │ │ │ │ ├── TrustPath │ │ │ │ ├── CertificateTrustPath.php │ │ │ │ ├── EcdaaKeyIdTrustPath.php │ │ │ │ ├── EmptyTrustPath.php │ │ │ │ ├── TrustPath.php │ │ │ │ └── TrustPathLoader.php │ │ │ │ ├── U2FPublicKey.php │ │ │ │ └── Util │ │ │ │ ├── Base64.php │ │ │ │ └── CoseSignatureFixer.php │ │ └── wp_config │ │ │ └── class-wp_config.php │ ├── canonical.php │ ├── capabilities.php │ ├── category-template.php │ ├── category.php │ ├── certificates │ │ └── ca-bundle.crt │ ├── class-phpass.php │ ├── class-requests.php │ ├── class-simplepie.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-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-hook.php │ ├── class-wp-http-cookie.php │ ├── class-wp-http-curl.php │ ├── class-wp-http-encoding.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-post-type.php │ ├── class-wp-post.php │ ├── class-wp-query.php │ ├── class-wp-rewrite.php │ ├── class-wp-role.php │ ├── class-wp-roles.php │ ├── class-wp-session-tokens.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-schema.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.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 │ │ ├── cp-notice.css │ │ ├── customize-preview.css │ │ ├── dashicons.css │ │ ├── editor.css │ │ ├── jquery-ui-dialog.css │ │ ├── media-views.css │ │ ├── wp-auth-check.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-color-control.php │ │ ├── class-wp-customize-cropped-image-control.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-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-widget-area-customize-control.php │ │ └── class-wp-widget-form-customize-control.php │ ├── default-constants.php │ ├── default-filters.php │ ├── default-widgets.php │ ├── deprecated.php │ ├── embed.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 │ │ ├── calmpresslogo.png │ │ ├── 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 │ │ ├── wpicons-2x.png │ │ ├── wpicons.png │ │ ├── wpspin-2x.gif │ │ ├── wpspin.gif │ │ ├── xit-2x.gif │ │ └── xit.gif │ ├── kses.php │ ├── l10n.php │ ├── link-template.php │ ├── load.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 │ ├── 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-comments-controller.php │ │ │ ├── class-wp-rest-controller.php │ │ │ ├── class-wp-rest-edit-site-export-controller.php │ │ │ ├── class-wp-rest-menu-items-controller.php │ │ │ ├── class-wp-rest-menu-locations-controller.php │ │ │ ├── class-wp-rest-menus-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-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 │ ├── script-loader.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 │ ├── 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 │ ├── taxonomy.php │ ├── template-loader.php │ ├── template.php │ ├── theme-compat │ │ ├── embed-404.php │ │ ├── embed-content.php │ │ ├── embed.php │ │ ├── footer-embed.php │ │ └── header-embed.php │ ├── theme-i18n.json │ ├── theme.json │ ├── theme.php │ ├── update.php │ ├── user.php │ ├── vars.php │ ├── version.php │ ├── widgets.php │ ├── widgets │ │ ├── class-wp-nav-menu-widget.php │ │ ├── class-wp-widget-categories.php │ │ ├── class-wp-widget-custom-html.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-pages.php │ │ ├── class-wp-widget-recent-comments.php │ │ ├── class-wp-widget-recent-posts.php │ │ ├── class-wp-widget-search.php │ │ ├── class-wp-widget-tag-cloud.php │ │ └── class-wp-widget-text.php │ ├── wp-db.php │ └── wp-diff.php ├── wp-load.php ├── wp-login.php ├── wp-settings.php └── wp-signup.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 ├── 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 │ │ │ └── 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 │ │ │ ├── sugarloaf-mountain.jpg │ │ │ ├── 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 │ │ │ ├── double_plugin_directory │ │ │ │ ├── double1.php │ │ │ │ └── double2.php │ │ │ ├── hello.php │ │ │ ├── internationalized-plugin.php │ │ │ ├── link-manager.zip │ │ │ ├── network-test-plugin │ │ │ │ └── network-test-plugin.php │ │ │ ├── single_plugin_directory │ │ │ │ └── single.php │ │ │ └── test-plugin │ │ │ │ └── test-plugin.php │ │ ├── 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 │ │ ├── templates │ │ │ └── template.html │ │ ├── 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-child │ │ │ │ ├── page-home.php │ │ │ │ ├── style.css │ │ │ │ └── templates │ │ │ │ │ └── page-1.html │ │ │ ├── block-theme │ │ │ │ ├── index.php │ │ │ │ ├── page-1.php │ │ │ │ ├── parts │ │ │ │ │ └── small-header.html │ │ │ │ ├── style.css │ │ │ │ └── templates │ │ │ │ │ ├── index.html │ │ │ │ │ ├── page-home.html │ │ │ │ │ └── page.html │ │ │ ├── block_theme-[0.4.0] │ │ │ │ ├── index.php │ │ │ │ ├── page-1.php │ │ │ │ ├── parts │ │ │ │ │ └── large-header.html │ │ │ │ ├── style.css │ │ │ │ ├── templates │ │ │ │ │ └── page-large-header.html │ │ │ │ └── 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 │ │ │ │ ├── block_theme-[1.0.0] │ │ │ │ │ ├── index.php │ │ │ │ │ ├── style.css │ │ │ │ │ └── theme.json │ │ │ │ ├── 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-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 │ │ ├── dummy-phpmailer.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-invokable.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.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 │ │ │ ├── wpMediaListTable.php │ │ │ ├── wpPostsListTable.php │ │ │ └── wpPrivacyRequestsTable.php │ │ ├── adminbar.php │ │ ├── ajax │ │ │ ├── AddTag.php │ │ │ ├── Attachments.php │ │ │ ├── Autosave.php │ │ │ ├── CustomizeManager.php │ │ │ ├── CustomizeMenus.php │ │ │ ├── DeleteComment.php │ │ │ ├── DeletePlugin.php │ │ │ ├── DimComment.php │ │ │ ├── EditComment.php │ │ │ ├── GetComments.php │ │ │ ├── ManageThemes.php │ │ │ ├── PrivacyErasePersonalData.php │ │ │ ├── PrivacyExportPersonalData.php │ │ │ ├── QuickEdit.php │ │ │ ├── ReplytoComment.php │ │ │ ├── Response.php │ │ │ ├── TagSearch.php │ │ │ └── UpdatePlugin.php │ │ ├── attachment │ │ │ └── slashes.php │ │ ├── auth.php │ │ ├── avatar.php │ │ ├── basic.php │ │ ├── cache.php │ │ ├── calmpress │ │ │ ├── admin │ │ │ │ └── admin-notices-handler.php │ │ │ ├── apcu │ │ │ │ └── apcu.php │ │ │ ├── avatar │ │ │ │ ├── blank_avatar.php │ │ │ │ ├── html_generation_helper.php │ │ │ │ ├── image_based_avatar.php │ │ │ │ └── text_based_avatar.php │ │ │ ├── backup │ │ │ │ └── core-backup-engine.php │ │ │ ├── calmpress │ │ │ │ └── maintenance_mode.php │ │ │ ├── credentials │ │ │ │ ├── file_credentials.php │ │ │ │ └── ftp_credentials.php │ │ │ ├── email │ │ │ │ ├── email-to-user.php │ │ │ │ ├── email.php │ │ │ │ ├── email_address.php │ │ │ │ ├── email_attachment_attachment.php │ │ │ │ ├── email_attachment_file.php │ │ │ │ ├── installer-email-verification-email.php │ │ │ │ ├── user-activation-verification-email.php │ │ │ │ ├── user-email-change-undo-email.php │ │ │ │ ├── user-email-change-verifification-email.php │ │ │ │ └── user-one-time-password-email.php │ │ │ ├── filesystem │ │ │ │ └── path_lock.php │ │ │ ├── logger │ │ │ │ └── file_logger.php │ │ │ ├── markdown │ │ │ │ └── utils.php │ │ │ ├── object-cache │ │ │ │ ├── apcu.php │ │ │ │ ├── chained-caches.php │ │ │ │ ├── file.php │ │ │ │ ├── null-cache.php │ │ │ │ ├── php-file.php │ │ │ │ ├── psr16-parameter-utils.php │ │ │ │ └── session-memory.php │ │ │ ├── observer │ │ │ │ ├── no_parameters_progress_observer_collection.php │ │ │ │ ├── observer_collection.php │ │ │ │ ├── trait-static-mutation-by-ref-observer-collection.php │ │ │ │ └── trait-static-mutation-observer-collection.php │ │ │ ├── opcache │ │ │ │ └── stats.php │ │ │ ├── post_authors_as_taxonomy.php │ │ │ ├── post_authors_db_upgrade.php │ │ │ ├── taxonomy_based_post_author.php │ │ │ ├── user │ │ │ │ └── wp-user.php │ │ │ ├── utils.php │ │ │ ├── utils │ │ │ │ └── one_time_password.php │ │ │ ├── webauthn │ │ │ │ ├── devices_of_user.php │ │ │ │ └── user_of_device.php │ │ │ └── wp_config │ │ │ │ └── wp_config.php │ │ ├── canonical.php │ │ ├── canonical │ │ │ ├── category.php │ │ │ ├── customRules.php │ │ │ ├── https.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 │ │ │ ├── avatar.php │ │ │ ├── checkComment.php │ │ │ ├── commentForm.php │ │ │ ├── commentsOpen.php │ │ │ ├── commentsTemplate.php │ │ │ ├── dateQuery.php │ │ │ ├── getCommentAuthorEmailLink.php │ │ │ ├── getCommentClass.php │ │ │ ├── getCommentCount.php │ │ │ ├── getCommentExcerpt.php │ │ │ ├── getCommentLink.php │ │ │ ├── getCommentReplyLink.php │ │ │ ├── getCommentsPagesCount.php │ │ │ ├── lastCommentModified.php │ │ │ ├── metaCache.php │ │ │ ├── query.php │ │ │ ├── slashes.php │ │ │ ├── template.php │ │ │ ├── walker.php │ │ │ ├── wpAllowComment.php │ │ │ ├── wpBatchUpdateCommentType.php │ │ │ ├── wpComment.php │ │ │ ├── wpCountComments.php │ │ │ └── wpUpdateCommentCountNow.php │ │ ├── compat │ │ │ ├── arrayKeyFirst.php │ │ │ ├── arrayKeyLast.php │ │ │ ├── hashHmac.php │ │ │ ├── isCountable.php │ │ │ ├── isIterable.php │ │ │ ├── mbStrlen.php │ │ │ ├── mbSubstr.php │ │ │ ├── strContains.php │ │ │ ├── strEndsWith.php │ │ │ └── strStartsWith.php │ │ ├── cron.php │ │ ├── cron │ │ │ └── setCronArray.php │ │ ├── customize │ │ │ ├── control.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 │ │ │ ├── getTheDate.php │ │ │ ├── getTheModifiedDate.php │ │ │ ├── maybeDeclineDate.php │ │ │ ├── mysql2date.php │ │ │ ├── query.php │ │ │ ├── theDate.php │ │ │ ├── wpDate.php │ │ │ └── wpTimezone.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 │ │ ├── external-http │ │ │ └── basic.php │ │ ├── feed │ │ │ └── rss2.php │ │ ├── file.php │ │ ├── filesystem │ │ │ ├── base.php │ │ │ └── findFolder.php │ │ ├── filters.php │ │ ├── formatting │ │ │ ├── convertInvalidEntries.php │ │ │ ├── date.php │ │ │ ├── emoji.php │ │ │ ├── ent2ncr.php │ │ │ ├── escAttr.php │ │ │ ├── escHtml.php │ │ │ ├── escJs.php │ │ │ ├── escTextarea.php │ │ │ ├── escUrl.php │ │ │ ├── escXml.php │ │ │ ├── getBloginfo.php │ │ │ ├── getUrlInContent.php │ │ │ ├── humanTimeDiff.php │ │ │ ├── isEmail.php │ │ │ ├── linksAddTarget.php │ │ │ ├── makeClickable.php │ │ │ ├── mapDeep.php │ │ │ ├── normalizeWhitespace.php │ │ │ ├── redirect.php │ │ │ ├── removeAccents.php │ │ │ ├── sanitizeFileName.php │ │ │ ├── sanitizeKey.php │ │ │ ├── sanitizeLocaleName.php │ │ │ ├── sanitizeMimeType.php │ │ │ ├── sanitizeOrderby.php │ │ │ ├── sanitizePost.php │ │ │ ├── sanitizeTextField.php │ │ │ ├── sanitizeTitle.php │ │ │ ├── sanitizeTitleWithDashes.php │ │ │ ├── sanitizeUser.php │ │ │ ├── seemsUtf8.php │ │ │ ├── slashit.php │ │ │ ├── stripslashesDeep.php │ │ │ ├── urlShorten.php │ │ │ ├── urlencodeDeep.php │ │ │ ├── utf8UriEncode.php │ │ │ ├── wpAutop.php │ │ │ ├── wpBasename.php │ │ │ ├── wpHtmlExcerpt.php │ │ │ ├── wpHtmlSplit.php │ │ │ ├── wpIsoDescrambler.php │ │ │ ├── wpMakeLinkRelative.php │ │ │ ├── wpParseStr.php │ │ │ ├── wpRelNofollow.php │ │ │ ├── wpRelUgc.php │ │ │ ├── wpReplaceInHtmlTags.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 │ │ │ ├── doEnclose.php │ │ │ ├── getStatusHeaderDesc.php │ │ │ ├── getWeekstartend.php │ │ │ ├── isNewDay.php │ │ │ ├── isSerializedString.php │ │ │ ├── listFiles.php │ │ │ ├── markers.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 │ │ │ ├── wpIsNumericArray.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 │ │ │ └── wpTitle.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 │ │ ├── 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 │ │ │ ├── editTermLink.php │ │ │ ├── getAdjacentPost.php │ │ │ ├── getAdjacentPostLink.php │ │ │ ├── getDashboardUrl.php │ │ │ ├── getEditTermLink.php │ │ │ ├── getFeedLink.php │ │ │ ├── getNextCommentsLink.php │ │ │ ├── getPostCommentsFeedLink.php │ │ │ ├── getPostTypeArchiveLink.php │ │ │ ├── getPreviewPostLink.php │ │ │ ├── getPreviousCommentsLink.php │ │ │ ├── selfAdminUrl.php │ │ │ ├── themeFile.php │ │ │ └── wpGetCanonicalUrl.php │ │ ├── load │ │ │ ├── wpConvertHrToBytes.php │ │ │ ├── wpDebugMode.php │ │ │ └── wpIsIniValueChangeable.php │ │ ├── locale.php │ │ ├── mail.php │ │ ├── media.php │ │ ├── media │ │ │ ├── getAttachmentTaxonomies.php │ │ │ └── getPostGalleries.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 │ │ │ ├── updatePostsCount.php │ │ │ ├── uploadIsUserOverQuota.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 │ │ │ ├── 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 │ │ │ ├── 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-categories-controller.php │ │ │ ├── rest-comments-controller.php │ │ │ ├── rest-controller.php │ │ │ ├── rest-pages-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-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 │ │ │ ├── wpRestMenuItemsController.php │ │ │ ├── wpRestMenuLocationsController.php │ │ │ ├── wpRestMenusController.php │ │ │ └── wpRestUrlDetailsController.php │ │ ├── rewrite.php │ │ ├── rewrite │ │ │ ├── addRewriteEndpoint.php │ │ │ ├── addRewriteRule.php │ │ │ ├── htaccess.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 │ │ ├── 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 │ │ │ ├── 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 │ │ │ └── wpThemeJsonSchema.php │ │ ├── upload.php │ │ ├── url.php │ │ ├── user.php │ │ ├── user │ │ │ ├── author.php │ │ │ ├── avatar.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 │ │ │ ├── wpDeleteUser.php │ │ │ ├── wpDropdownUsers.php │ │ │ ├── wpGetUsersWithNoRole.php │ │ │ ├── wpListUsers.php │ │ │ ├── wpSendUserRequest.php │ │ │ └── wpSetCurrentUser.php │ │ ├── walker.php │ │ ├── widgets.php │ │ ├── widgets │ │ │ ├── wpWidgetCustomHtml.php │ │ │ ├── wpWidgetMedia.php │ │ │ ├── wpWidgetMediaAudio.php │ │ │ ├── wpWidgetMediaGallery.php │ │ │ ├── wpWidgetMediaImage.php │ │ │ ├── wpWidgetMediaVideo.php │ │ │ └── wpWidgetText.php │ │ ├── wp.php │ │ └── wp │ │ │ └── parseRequest.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.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 │ ├── development.js │ ├── media.js │ ├── packages.js │ └── shared.js ├── webpack.config.js ├── wp-cli.yml ├── wp-config-sample.php └── wp-tests-config-sample.php /.cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/.env -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc-jsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/.eslintrc-jsdoc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/SECURITY.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/composer.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /jsdoc.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/jsdoc.conf.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/package.json -------------------------------------------------------------------------------- /phpcompat.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/phpcompat.xml.dist -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/.htaccess -------------------------------------------------------------------------------- /src/_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/_index.php -------------------------------------------------------------------------------- /src/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/index.php -------------------------------------------------------------------------------- /src/js/_enqueues/admin/auth-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/admin/auth-app.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/admin/author.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/admin/backup.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/admin/comment.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/admin/common.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/custom-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/admin/custom-header.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/edit-comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/admin/edit-comments.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/form-validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/admin/form-validate.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/media-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/admin/media-upload.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/admin/media.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/options-email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/admin/options-email.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/admin/post.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/postbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/admin/postbox.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/privacy-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/admin/privacy-tools.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/site-health.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/admin/site-health.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/tags-box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/admin/tags-box.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/tags-suggest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/admin/tags-suggest.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/admin/tags.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/user-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/admin/user-profile.js -------------------------------------------------------------------------------- /src/js/_enqueues/admin/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/admin/widgets.js -------------------------------------------------------------------------------- /src/js/_enqueues/cp/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/cp/login.js -------------------------------------------------------------------------------- /src/js/_enqueues/cp/notice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/cp/notice.js -------------------------------------------------------------------------------- /src/js/_enqueues/cp/reauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/cp/reauth.js -------------------------------------------------------------------------------- /src/js/_enqueues/cp/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/cp/utils.js -------------------------------------------------------------------------------- /src/js/_enqueues/cp/webauthn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/cp/webauthn.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/lib/accordion.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/admin-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/lib/admin-bar.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/ajax-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/lib/ajax-response.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/auth-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/lib/auth-check.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/color-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/lib/color-picker.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/comment-reply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/lib/comment-reply.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/lib/cookies.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/lib/dialog.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/embed-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/lib/embed-template.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/emoji-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/lib/emoji-loader.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/lib/gallery.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/lib/link.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/list-revisions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/lib/list-revisions.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/lib/lists.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/nav-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/lib/nav-menu.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/pointer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/lib/pointer.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/quicktags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/lib/quicktags.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/user-suggest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/lib/user-suggest.js -------------------------------------------------------------------------------- /src/js/_enqueues/lib/zxcvbn-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/lib/zxcvbn-async.js -------------------------------------------------------------------------------- /src/js/_enqueues/vendor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/vendor/README.md -------------------------------------------------------------------------------- /src/js/_enqueues/vendor/colorpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/vendor/colorpicker.js -------------------------------------------------------------------------------- /src/js/_enqueues/vendor/iris.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/vendor/iris.min.js -------------------------------------------------------------------------------- /src/js/_enqueues/vendor/tw-sack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/vendor/tw-sack.js -------------------------------------------------------------------------------- /src/js/_enqueues/vendor/zxcvbn.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/vendor/zxcvbn.min.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/api-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/api-request.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/api.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/autosave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/autosave.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/backbone.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/code-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/code-editor.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/custom-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/custom-header.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/customize/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/customize/base.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/customize/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/customize/loader.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/customize/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/customize/models.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/customize/views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/customize/views.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/dashboard.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/editor/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/editor/base.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/editor/dfw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/editor/dfw.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/embed.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/heartbeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/heartbeat.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/mce-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/mce-view.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/media/audiovideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/media/audiovideo.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/media/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/media/editor.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/media/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/media/grid.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/media/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/media/models.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/media/views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/media/views.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/revisions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/revisions.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/sanitize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/sanitize.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/shortcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/shortcode.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/svg-painter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/svg-painter.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/theme.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/updates.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/util.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/utils/word-count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/utils/word-count.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/widgets/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/widgets/media.js -------------------------------------------------------------------------------- /src/js/_enqueues/wp/widgets/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/_enqueues/wp/widgets/text.js -------------------------------------------------------------------------------- /src/js/media/controllers/cropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/controllers/cropper.js -------------------------------------------------------------------------------- /src/js/media/controllers/edit-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/controllers/edit-image.js -------------------------------------------------------------------------------- /src/js/media/controllers/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/controllers/embed.js -------------------------------------------------------------------------------- /src/js/media/controllers/gallery-add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/controllers/gallery-add.js -------------------------------------------------------------------------------- /src/js/media/controllers/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/controllers/library.js -------------------------------------------------------------------------------- /src/js/media/controllers/region.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/controllers/region.js -------------------------------------------------------------------------------- /src/js/media/controllers/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/controllers/state.js -------------------------------------------------------------------------------- /src/js/media/models/attachment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/models/attachment.js -------------------------------------------------------------------------------- /src/js/media/models/attachments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/models/attachments.js -------------------------------------------------------------------------------- /src/js/media/models/post-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/models/post-image.js -------------------------------------------------------------------------------- /src/js/media/models/post-media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/models/post-media.js -------------------------------------------------------------------------------- /src/js/media/models/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/models/query.js -------------------------------------------------------------------------------- /src/js/media/models/selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/models/selection.js -------------------------------------------------------------------------------- /src/js/media/routers/manage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/routers/manage.js -------------------------------------------------------------------------------- /src/js/media/utils/selection-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/utils/selection-sync.js -------------------------------------------------------------------------------- /src/js/media/views/attachment-compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/attachment-compat.js -------------------------------------------------------------------------------- /src/js/media/views/attachment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/attachment.js -------------------------------------------------------------------------------- /src/js/media/views/attachments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/attachments.js -------------------------------------------------------------------------------- /src/js/media/views/audio-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/audio-details.js -------------------------------------------------------------------------------- /src/js/media/views/button-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/button-group.js -------------------------------------------------------------------------------- /src/js/media/views/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/button.js -------------------------------------------------------------------------------- /src/js/media/views/cropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/cropper.js -------------------------------------------------------------------------------- /src/js/media/views/edit-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/edit-image.js -------------------------------------------------------------------------------- /src/js/media/views/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/embed.js -------------------------------------------------------------------------------- /src/js/media/views/embed/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/embed/image.js -------------------------------------------------------------------------------- /src/js/media/views/embed/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/embed/link.js -------------------------------------------------------------------------------- /src/js/media/views/embed/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/embed/url.js -------------------------------------------------------------------------------- /src/js/media/views/focus-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/focus-manager.js -------------------------------------------------------------------------------- /src/js/media/views/frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/frame.js -------------------------------------------------------------------------------- /src/js/media/views/frame/manage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/frame/manage.js -------------------------------------------------------------------------------- /src/js/media/views/frame/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/frame/post.js -------------------------------------------------------------------------------- /src/js/media/views/frame/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/frame/select.js -------------------------------------------------------------------------------- /src/js/media/views/heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/heading.js -------------------------------------------------------------------------------- /src/js/media/views/iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/iframe.js -------------------------------------------------------------------------------- /src/js/media/views/image-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/image-details.js -------------------------------------------------------------------------------- /src/js/media/views/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/label.js -------------------------------------------------------------------------------- /src/js/media/views/media-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/media-details.js -------------------------------------------------------------------------------- /src/js/media/views/media-frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/media-frame.js -------------------------------------------------------------------------------- /src/js/media/views/menu-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/menu-item.js -------------------------------------------------------------------------------- /src/js/media/views/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/menu.js -------------------------------------------------------------------------------- /src/js/media/views/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/modal.js -------------------------------------------------------------------------------- /src/js/media/views/priority-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/priority-list.js -------------------------------------------------------------------------------- /src/js/media/views/router-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/router-item.js -------------------------------------------------------------------------------- /src/js/media/views/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/router.js -------------------------------------------------------------------------------- /src/js/media/views/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/search.js -------------------------------------------------------------------------------- /src/js/media/views/selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/selection.js -------------------------------------------------------------------------------- /src/js/media/views/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/settings.js -------------------------------------------------------------------------------- /src/js/media/views/settings/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/settings/gallery.js -------------------------------------------------------------------------------- /src/js/media/views/settings/playlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/settings/playlist.js -------------------------------------------------------------------------------- /src/js/media/views/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/sidebar.js -------------------------------------------------------------------------------- /src/js/media/views/site-icon-cropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/site-icon-cropper.js -------------------------------------------------------------------------------- /src/js/media/views/site-icon-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/site-icon-preview.js -------------------------------------------------------------------------------- /src/js/media/views/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/spinner.js -------------------------------------------------------------------------------- /src/js/media/views/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/toolbar.js -------------------------------------------------------------------------------- /src/js/media/views/toolbar/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/toolbar/embed.js -------------------------------------------------------------------------------- /src/js/media/views/toolbar/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/toolbar/select.js -------------------------------------------------------------------------------- /src/js/media/views/uploader/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/uploader/editor.js -------------------------------------------------------------------------------- /src/js/media/views/uploader/inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/uploader/inline.js -------------------------------------------------------------------------------- /src/js/media/views/uploader/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/uploader/status.js -------------------------------------------------------------------------------- /src/js/media/views/uploader/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/uploader/window.js -------------------------------------------------------------------------------- /src/js/media/views/video-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/video-details.js -------------------------------------------------------------------------------- /src/js/media/views/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/js/media/views/view.js -------------------------------------------------------------------------------- /src/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/license.txt -------------------------------------------------------------------------------- /src/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/readme.html -------------------------------------------------------------------------------- /src/wp-activate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-activate.php -------------------------------------------------------------------------------- /src/wp-admin/_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/_index.php -------------------------------------------------------------------------------- /src/wp-admin/admin-ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/admin-ajax.php -------------------------------------------------------------------------------- /src/wp-admin/admin-footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/admin-footer.php -------------------------------------------------------------------------------- /src/wp-admin/admin-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/admin-header.php -------------------------------------------------------------------------------- /src/wp-admin/admin-post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/admin-post.php -------------------------------------------------------------------------------- /src/wp-admin/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/admin.php -------------------------------------------------------------------------------- /src/wp-admin/apcu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/apcu.php -------------------------------------------------------------------------------- /src/wp-admin/async-upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/async-upload.php -------------------------------------------------------------------------------- /src/wp-admin/authorize-application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/authorize-application.php -------------------------------------------------------------------------------- /src/wp-admin/backup-details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/backup-details.php -------------------------------------------------------------------------------- /src/wp-admin/backup-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/backup-new.php -------------------------------------------------------------------------------- /src/wp-admin/backups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/backups.php -------------------------------------------------------------------------------- /src/wp-admin/comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/comment.php -------------------------------------------------------------------------------- /src/wp-admin/css/admin-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/admin-menu.css -------------------------------------------------------------------------------- /src/wp-admin/css/code-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/code-editor.css -------------------------------------------------------------------------------- /src/wp-admin/css/color-picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/color-picker.css -------------------------------------------------------------------------------- /src/wp-admin/css/colors/_admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/colors/_admin.scss -------------------------------------------------------------------------------- /src/wp-admin/css/colors/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/colors/_mixins.scss -------------------------------------------------------------------------------- /src/wp-admin/css/colors/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/colors/_variables.scss -------------------------------------------------------------------------------- /src/wp-admin/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/common.css -------------------------------------------------------------------------------- /src/wp-admin/css/cp-webauthn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/cp-webauthn.css -------------------------------------------------------------------------------- /src/wp-admin/css/customize-controls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/customize-controls.css -------------------------------------------------------------------------------- /src/wp-admin/css/customize-widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/customize-widgets.css -------------------------------------------------------------------------------- /src/wp-admin/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/dashboard.css -------------------------------------------------------------------------------- /src/wp-admin/css/edit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/edit.css -------------------------------------------------------------------------------- /src/wp-admin/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/forms.css -------------------------------------------------------------------------------- /src/wp-admin/css/install.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/install.css -------------------------------------------------------------------------------- /src/wp-admin/css/l10n.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/l10n.css -------------------------------------------------------------------------------- /src/wp-admin/css/list-tables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/list-tables.css -------------------------------------------------------------------------------- /src/wp-admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/login.css -------------------------------------------------------------------------------- /src/wp-admin/css/maintenance-mode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/maintenance-mode.css -------------------------------------------------------------------------------- /src/wp-admin/css/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/media.css -------------------------------------------------------------------------------- /src/wp-admin/css/nav-menus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/nav-menus.css -------------------------------------------------------------------------------- /src/wp-admin/css/revisions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/revisions.css -------------------------------------------------------------------------------- /src/wp-admin/css/site-health.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/site-health.css -------------------------------------------------------------------------------- /src/wp-admin/css/site-icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/site-icon.css -------------------------------------------------------------------------------- /src/wp-admin/css/themes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/themes.css -------------------------------------------------------------------------------- /src/wp-admin/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/widgets.css -------------------------------------------------------------------------------- /src/wp-admin/css/wp-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/css/wp-admin.css -------------------------------------------------------------------------------- /src/wp-admin/customize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/customize.php -------------------------------------------------------------------------------- /src/wp-admin/edit-comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/edit-comments.php -------------------------------------------------------------------------------- /src/wp-admin/edit-form-advanced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/edit-form-advanced.php -------------------------------------------------------------------------------- /src/wp-admin/edit-form-comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/edit-form-comment.php -------------------------------------------------------------------------------- /src/wp-admin/edit-tag-form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/edit-tag-form.php -------------------------------------------------------------------------------- /src/wp-admin/edit-tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/edit-tags.php -------------------------------------------------------------------------------- /src/wp-admin/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/edit.php -------------------------------------------------------------------------------- /src/wp-admin/erase-personal-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/erase-personal-data.php -------------------------------------------------------------------------------- /src/wp-admin/export-personal-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/export-personal-data.php -------------------------------------------------------------------------------- /src/wp-admin/images/about-texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/about-texture.png -------------------------------------------------------------------------------- /src/wp-admin/images/align-center-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/align-center-2x.png -------------------------------------------------------------------------------- /src/wp-admin/images/align-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/align-center.png -------------------------------------------------------------------------------- /src/wp-admin/images/align-left-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/align-left-2x.png -------------------------------------------------------------------------------- /src/wp-admin/images/align-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/align-left.png -------------------------------------------------------------------------------- /src/wp-admin/images/align-none-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/align-none-2x.png -------------------------------------------------------------------------------- /src/wp-admin/images/align-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/align-none.png -------------------------------------------------------------------------------- /src/wp-admin/images/align-right-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/align-right-2x.png -------------------------------------------------------------------------------- /src/wp-admin/images/align-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/align-right.png -------------------------------------------------------------------------------- /src/wp-admin/images/arrows-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/arrows-2x.png -------------------------------------------------------------------------------- /src/wp-admin/images/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/arrows.png -------------------------------------------------------------------------------- /src/wp-admin/images/browser-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/browser-rtl.png -------------------------------------------------------------------------------- /src/wp-admin/images/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/browser.png -------------------------------------------------------------------------------- /src/wp-admin/images/bubble_bg-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/bubble_bg-2x.gif -------------------------------------------------------------------------------- /src/wp-admin/images/bubble_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/bubble_bg.gif -------------------------------------------------------------------------------- /src/wp-admin/images/calmpresslogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/calmpresslogo.png -------------------------------------------------------------------------------- /src/wp-admin/images/calmpresslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/calmpresslogo.svg -------------------------------------------------------------------------------- /src/wp-admin/images/date-button-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/date-button-2x.gif -------------------------------------------------------------------------------- /src/wp-admin/images/date-button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/date-button.gif -------------------------------------------------------------------------------- /src/wp-admin/images/freedom-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/freedom-1.svg -------------------------------------------------------------------------------- /src/wp-admin/images/freedom-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/freedom-2.svg -------------------------------------------------------------------------------- /src/wp-admin/images/freedom-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/freedom-3.svg -------------------------------------------------------------------------------- /src/wp-admin/images/freedom-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/freedom-4.svg -------------------------------------------------------------------------------- /src/wp-admin/images/generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/generic.png -------------------------------------------------------------------------------- /src/wp-admin/images/icons32-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/icons32-2x.png -------------------------------------------------------------------------------- /src/wp-admin/images/icons32-vs-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/icons32-vs-2x.png -------------------------------------------------------------------------------- /src/wp-admin/images/icons32-vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/icons32-vs.png -------------------------------------------------------------------------------- /src/wp-admin/images/icons32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/icons32.png -------------------------------------------------------------------------------- /src/wp-admin/images/imgedit-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/imgedit-icons.png -------------------------------------------------------------------------------- /src/wp-admin/images/list-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/list-2x.png -------------------------------------------------------------------------------- /src/wp-admin/images/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/list.png -------------------------------------------------------------------------------- /src/wp-admin/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/loading.gif -------------------------------------------------------------------------------- /src/wp-admin/images/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/marker.png -------------------------------------------------------------------------------- /src/wp-admin/images/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/mask.png -------------------------------------------------------------------------------- /src/wp-admin/images/media-button-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/media-button-2x.png -------------------------------------------------------------------------------- /src/wp-admin/images/media-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/media-button.png -------------------------------------------------------------------------------- /src/wp-admin/images/menu-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/menu-2x.png -------------------------------------------------------------------------------- /src/wp-admin/images/menu-vs-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/menu-vs-2x.png -------------------------------------------------------------------------------- /src/wp-admin/images/menu-vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/menu-vs.png -------------------------------------------------------------------------------- /src/wp-admin/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/menu.png -------------------------------------------------------------------------------- /src/wp-admin/images/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/no.png -------------------------------------------------------------------------------- /src/wp-admin/images/post-formats-vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/post-formats-vs.png -------------------------------------------------------------------------------- /src/wp-admin/images/post-formats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/post-formats.png -------------------------------------------------------------------------------- /src/wp-admin/images/post-formats32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/post-formats32.png -------------------------------------------------------------------------------- /src/wp-admin/images/privacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/privacy.svg -------------------------------------------------------------------------------- /src/wp-admin/images/resize-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/resize-2x.gif -------------------------------------------------------------------------------- /src/wp-admin/images/resize-rtl-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/resize-rtl-2x.gif -------------------------------------------------------------------------------- /src/wp-admin/images/resize-rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/resize-rtl.gif -------------------------------------------------------------------------------- /src/wp-admin/images/resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/resize.gif -------------------------------------------------------------------------------- /src/wp-admin/images/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/se.png -------------------------------------------------------------------------------- /src/wp-admin/images/sort-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/sort-2x.gif -------------------------------------------------------------------------------- /src/wp-admin/images/sort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/sort.gif -------------------------------------------------------------------------------- /src/wp-admin/images/spinner-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/spinner-2x.gif -------------------------------------------------------------------------------- /src/wp-admin/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/spinner.gif -------------------------------------------------------------------------------- /src/wp-admin/images/stars-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/stars-2x.png -------------------------------------------------------------------------------- /src/wp-admin/images/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/stars.png -------------------------------------------------------------------------------- /src/wp-admin/images/wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/wheel.png -------------------------------------------------------------------------------- /src/wp-admin/images/wpspin_light-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/wpspin_light-2x.gif -------------------------------------------------------------------------------- /src/wp-admin/images/wpspin_light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/wpspin_light.gif -------------------------------------------------------------------------------- /src/wp-admin/images/xit-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/xit-2x.gif -------------------------------------------------------------------------------- /src/wp-admin/images/xit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/xit.gif -------------------------------------------------------------------------------- /src/wp-admin/images/yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/images/yes.png -------------------------------------------------------------------------------- /src/wp-admin/includes/admin-filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/admin-filters.php -------------------------------------------------------------------------------- /src/wp-admin/includes/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/admin.php -------------------------------------------------------------------------------- /src/wp-admin/includes/ajax-actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/ajax-actions.php -------------------------------------------------------------------------------- /src/wp-admin/includes/class-ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/class-ftp.php -------------------------------------------------------------------------------- /src/wp-admin/includes/comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/comment.php -------------------------------------------------------------------------------- /src/wp-admin/includes/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/dashboard.php -------------------------------------------------------------------------------- /src/wp-admin/includes/deprecated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/deprecated.php -------------------------------------------------------------------------------- /src/wp-admin/includes/file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/file.php -------------------------------------------------------------------------------- /src/wp-admin/includes/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/image.php -------------------------------------------------------------------------------- /src/wp-admin/includes/list-table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/list-table.php -------------------------------------------------------------------------------- /src/wp-admin/includes/media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/media.php -------------------------------------------------------------------------------- /src/wp-admin/includes/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/menu.php -------------------------------------------------------------------------------- /src/wp-admin/includes/meta-boxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/meta-boxes.php -------------------------------------------------------------------------------- /src/wp-admin/includes/misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/misc.php -------------------------------------------------------------------------------- /src/wp-admin/includes/ms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/ms.php -------------------------------------------------------------------------------- /src/wp-admin/includes/nav-menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/nav-menu.php -------------------------------------------------------------------------------- /src/wp-admin/includes/network.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/network.php -------------------------------------------------------------------------------- /src/wp-admin/includes/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/options.php -------------------------------------------------------------------------------- /src/wp-admin/includes/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/plugin.php -------------------------------------------------------------------------------- /src/wp-admin/includes/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/post.php -------------------------------------------------------------------------------- /src/wp-admin/includes/privacy-tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/privacy-tools.php -------------------------------------------------------------------------------- /src/wp-admin/includes/revision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/revision.php -------------------------------------------------------------------------------- /src/wp-admin/includes/schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/schema.php -------------------------------------------------------------------------------- /src/wp-admin/includes/screen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/screen.php -------------------------------------------------------------------------------- /src/wp-admin/includes/taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/taxonomy.php -------------------------------------------------------------------------------- /src/wp-admin/includes/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/template.php -------------------------------------------------------------------------------- /src/wp-admin/includes/theme-install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/theme-install.php -------------------------------------------------------------------------------- /src/wp-admin/includes/theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/theme.php -------------------------------------------------------------------------------- /src/wp-admin/includes/update-core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/update-core.php -------------------------------------------------------------------------------- /src/wp-admin/includes/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/update.php -------------------------------------------------------------------------------- /src/wp-admin/includes/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/upgrade.php -------------------------------------------------------------------------------- /src/wp-admin/includes/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/user.php -------------------------------------------------------------------------------- /src/wp-admin/includes/widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/includes/widgets.php -------------------------------------------------------------------------------- /src/wp-admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/index.php -------------------------------------------------------------------------------- /src/wp-admin/install-helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/install-helper.php -------------------------------------------------------------------------------- /src/wp-admin/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/install.php -------------------------------------------------------------------------------- /src/wp-admin/maint/repair.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/maint/repair.php -------------------------------------------------------------------------------- /src/wp-admin/maintenance-mode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/maintenance-mode.php -------------------------------------------------------------------------------- /src/wp-admin/media-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/media-new.php -------------------------------------------------------------------------------- /src/wp-admin/media-upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/media-upload.php -------------------------------------------------------------------------------- /src/wp-admin/media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/media.php -------------------------------------------------------------------------------- /src/wp-admin/menu-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/menu-header.php -------------------------------------------------------------------------------- /src/wp-admin/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/menu.php -------------------------------------------------------------------------------- /src/wp-admin/moderation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/moderation.php -------------------------------------------------------------------------------- /src/wp-admin/ms-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/ms-admin.php -------------------------------------------------------------------------------- /src/wp-admin/ms-delete-site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/ms-delete-site.php -------------------------------------------------------------------------------- /src/wp-admin/ms-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/ms-edit.php -------------------------------------------------------------------------------- /src/wp-admin/ms-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/ms-options.php -------------------------------------------------------------------------------- /src/wp-admin/ms-sites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/ms-sites.php -------------------------------------------------------------------------------- /src/wp-admin/ms-themes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/ms-themes.php -------------------------------------------------------------------------------- /src/wp-admin/ms-upgrade-network.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/ms-upgrade-network.php -------------------------------------------------------------------------------- /src/wp-admin/ms-users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/ms-users.php -------------------------------------------------------------------------------- /src/wp-admin/my-sites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/my-sites.php -------------------------------------------------------------------------------- /src/wp-admin/nav-menus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/nav-menus.php -------------------------------------------------------------------------------- /src/wp-admin/network.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network.php -------------------------------------------------------------------------------- /src/wp-admin/network/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/admin.php -------------------------------------------------------------------------------- /src/wp-admin/network/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/edit.php -------------------------------------------------------------------------------- /src/wp-admin/network/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/index.php -------------------------------------------------------------------------------- /src/wp-admin/network/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/menu.php -------------------------------------------------------------------------------- /src/wp-admin/network/plugin-install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/plugin-install.php -------------------------------------------------------------------------------- /src/wp-admin/network/plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/plugins.php -------------------------------------------------------------------------------- /src/wp-admin/network/privacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/privacy.php -------------------------------------------------------------------------------- /src/wp-admin/network/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/profile.php -------------------------------------------------------------------------------- /src/wp-admin/network/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/settings.php -------------------------------------------------------------------------------- /src/wp-admin/network/setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/setup.php -------------------------------------------------------------------------------- /src/wp-admin/network/site-info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/site-info.php -------------------------------------------------------------------------------- /src/wp-admin/network/site-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/site-new.php -------------------------------------------------------------------------------- /src/wp-admin/network/site-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/site-settings.php -------------------------------------------------------------------------------- /src/wp-admin/network/site-themes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/site-themes.php -------------------------------------------------------------------------------- /src/wp-admin/network/site-users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/site-users.php -------------------------------------------------------------------------------- /src/wp-admin/network/sites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/sites.php -------------------------------------------------------------------------------- /src/wp-admin/network/theme-install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/theme-install.php -------------------------------------------------------------------------------- /src/wp-admin/network/themes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/themes.php -------------------------------------------------------------------------------- /src/wp-admin/network/update-core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/update-core.php -------------------------------------------------------------------------------- /src/wp-admin/network/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/update.php -------------------------------------------------------------------------------- /src/wp-admin/network/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/upgrade.php -------------------------------------------------------------------------------- /src/wp-admin/network/user-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/user-edit.php -------------------------------------------------------------------------------- /src/wp-admin/network/user-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/user-new.php -------------------------------------------------------------------------------- /src/wp-admin/network/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/network/users.php -------------------------------------------------------------------------------- /src/wp-admin/object-cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/object-cache.php -------------------------------------------------------------------------------- /src/wp-admin/opcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/opcache.php -------------------------------------------------------------------------------- /src/wp-admin/options-discussion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/options-discussion.php -------------------------------------------------------------------------------- /src/wp-admin/options-email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/options-email.php -------------------------------------------------------------------------------- /src/wp-admin/options-general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/options-general.php -------------------------------------------------------------------------------- /src/wp-admin/options-head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/options-head.php -------------------------------------------------------------------------------- /src/wp-admin/options-htaccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/options-htaccess.php -------------------------------------------------------------------------------- /src/wp-admin/options-media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/options-media.php -------------------------------------------------------------------------------- /src/wp-admin/options-permalink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/options-permalink.php -------------------------------------------------------------------------------- /src/wp-admin/options-reading.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/options-reading.php -------------------------------------------------------------------------------- /src/wp-admin/options-robots-txt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/options-robots-txt.php -------------------------------------------------------------------------------- /src/wp-admin/options-wp-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/options-wp-config.php -------------------------------------------------------------------------------- /src/wp-admin/options-writing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/options-writing.php -------------------------------------------------------------------------------- /src/wp-admin/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/options.php -------------------------------------------------------------------------------- /src/wp-admin/plugin-install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/plugin-install.php -------------------------------------------------------------------------------- /src/wp-admin/plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/plugins.php -------------------------------------------------------------------------------- /src/wp-admin/post-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/post-new.php -------------------------------------------------------------------------------- /src/wp-admin/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/post.php -------------------------------------------------------------------------------- /src/wp-admin/privacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/privacy.php -------------------------------------------------------------------------------- /src/wp-admin/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/profile.php -------------------------------------------------------------------------------- /src/wp-admin/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/restore.php -------------------------------------------------------------------------------- /src/wp-admin/revision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/revision.php -------------------------------------------------------------------------------- /src/wp-admin/safe-mode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/safe-mode.php -------------------------------------------------------------------------------- /src/wp-admin/setup-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/setup-config.php -------------------------------------------------------------------------------- /src/wp-admin/site-health-info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/site-health-info.php -------------------------------------------------------------------------------- /src/wp-admin/site-health.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/site-health.php -------------------------------------------------------------------------------- /src/wp-admin/switch-user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/switch-user.php -------------------------------------------------------------------------------- /src/wp-admin/term.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/term.php -------------------------------------------------------------------------------- /src/wp-admin/test-email-delivery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/test-email-delivery.php -------------------------------------------------------------------------------- /src/wp-admin/theme-install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/theme-install.php -------------------------------------------------------------------------------- /src/wp-admin/themes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/themes.php -------------------------------------------------------------------------------- /src/wp-admin/update-core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/update-core.php -------------------------------------------------------------------------------- /src/wp-admin/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/update.php -------------------------------------------------------------------------------- /src/wp-admin/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/upgrade.php -------------------------------------------------------------------------------- /src/wp-admin/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/upload.php -------------------------------------------------------------------------------- /src/wp-admin/user-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/user-edit.php -------------------------------------------------------------------------------- /src/wp-admin/user-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/user-new.php -------------------------------------------------------------------------------- /src/wp-admin/user/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/user/admin.php -------------------------------------------------------------------------------- /src/wp-admin/user/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/user/index.php -------------------------------------------------------------------------------- /src/wp-admin/user/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/user/menu.php -------------------------------------------------------------------------------- /src/wp-admin/user/privacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/user/privacy.php -------------------------------------------------------------------------------- /src/wp-admin/user/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/user/profile.php -------------------------------------------------------------------------------- /src/wp-admin/user/user-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/user/user-edit.php -------------------------------------------------------------------------------- /src/wp-admin/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/users.php -------------------------------------------------------------------------------- /src/wp-admin/webauthn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/webauthn.php -------------------------------------------------------------------------------- /src/wp-admin/widgets-form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/widgets-form.php -------------------------------------------------------------------------------- /src/wp-admin/widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-admin/widgets.php -------------------------------------------------------------------------------- /src/wp-blog-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/src/wp-blog-header.php -------------------------------------------------------------------------------- /src/wp-comments-post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/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/export/malformed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/export/malformed.xml -------------------------------------------------------------------------------- /tests/phpunit/data/export/slashes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/export/slashes.xml -------------------------------------------------------------------------------- /tests/phpunit/data/formatting/big5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/formatting/big5.txt -------------------------------------------------------------------------------- /tests/phpunit/data/formatting/file-header-php-open-tag-prefix.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/phpunit/data/formatting/sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/formatting/sizzle.js -------------------------------------------------------------------------------- /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/functions/dummy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/functions/dummy.txt -------------------------------------------------------------------------------- /tests/phpunit/data/images/33772.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/images/33772.jpg -------------------------------------------------------------------------------- /tests/phpunit/data/images/a2-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/images/a2-small.jpg -------------------------------------------------------------------------------- /tests/phpunit/data/images/canola.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/images/canola.jpg -------------------------------------------------------------------------------- /tests/phpunit/data/images/waffles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/images/waffles.jpg -------------------------------------------------------------------------------- /tests/phpunit/data/languages/de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/languages/de_DE.mo -------------------------------------------------------------------------------- /tests/phpunit/data/languages/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/languages/de_DE.po -------------------------------------------------------------------------------- /tests/phpunit/data/languages/en_GB.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/languages/en_GB.mo -------------------------------------------------------------------------------- /tests/phpunit/data/languages/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/languages/en_GB.po -------------------------------------------------------------------------------- /tests/phpunit/data/languages/es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/languages/es_ES.mo -------------------------------------------------------------------------------- /tests/phpunit/data/languages/es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/languages/es_ES.po -------------------------------------------------------------------------------- /tests/phpunit/data/languages/ja_JP.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/languages/ja_JP.mo -------------------------------------------------------------------------------- /tests/phpunit/data/languages/ja_JP.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/languages/ja_JP.po -------------------------------------------------------------------------------- /tests/phpunit/data/plugins/hello.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/plugins/hello.php -------------------------------------------------------------------------------- /tests/phpunit/data/pomo/bad_nplurals.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/pomo/bad_nplurals.mo -------------------------------------------------------------------------------- /tests/phpunit/data/pomo/bad_nplurals.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/pomo/bad_nplurals.po -------------------------------------------------------------------------------- /tests/phpunit/data/pomo/context.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/pomo/context.mo -------------------------------------------------------------------------------- /tests/phpunit/data/pomo/de_DE-2.8.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/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/calmPress/calmpress/HEAD/tests/phpunit/data/pomo/mo.pot -------------------------------------------------------------------------------- /tests/phpunit/data/pomo/overload.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/pomo/overload.mo -------------------------------------------------------------------------------- /tests/phpunit/data/pomo/plural.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/pomo/plural.mo -------------------------------------------------------------------------------- /tests/phpunit/data/pomo/simple.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/pomo/simple.mo -------------------------------------------------------------------------------- /tests/phpunit/data/pomo/simple.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/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-child/page-home.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/block_theme-[1.0.0]/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/phpunit/data/themedir1/subdir/theme2/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/phpunit/data/uploads/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/uploads/test.csv -------------------------------------------------------------------------------- /tests/phpunit/data/uploads/test.dfxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/uploads/test.dfxp -------------------------------------------------------------------------------- /tests/phpunit/data/uploads/test.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/uploads/test.rtf -------------------------------------------------------------------------------- /tests/phpunit/data/uploads/test.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/uploads/test.tsv -------------------------------------------------------------------------------- /tests/phpunit/data/uploads/test.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/data/uploads/test.vtt -------------------------------------------------------------------------------- /tests/phpunit/includes/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/includes/bootstrap.php -------------------------------------------------------------------------------- /tests/phpunit/includes/exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/includes/exceptions.php -------------------------------------------------------------------------------- /tests/phpunit/includes/factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/includes/factory.php -------------------------------------------------------------------------------- /tests/phpunit/includes/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/includes/functions.php -------------------------------------------------------------------------------- /tests/phpunit/includes/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/includes/install.php -------------------------------------------------------------------------------- /tests/phpunit/includes/mock-fs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/includes/mock-fs.php -------------------------------------------------------------------------------- /tests/phpunit/includes/mock-mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/includes/mock-mailer.php -------------------------------------------------------------------------------- /tests/phpunit/includes/object-cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/includes/object-cache.php -------------------------------------------------------------------------------- /tests/phpunit/includes/testcase-xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/includes/testcase-xml.php -------------------------------------------------------------------------------- /tests/phpunit/includes/testcase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/includes/testcase.php -------------------------------------------------------------------------------- /tests/phpunit/includes/trac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/includes/trac.php -------------------------------------------------------------------------------- /tests/phpunit/includes/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/includes/utils.php -------------------------------------------------------------------------------- /tests/phpunit/includes/wp-profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/includes/wp-profiler.php -------------------------------------------------------------------------------- /tests/phpunit/multisite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/multisite.xml -------------------------------------------------------------------------------- /tests/phpunit/tests/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/actions.php -------------------------------------------------------------------------------- /tests/phpunit/tests/adminbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/adminbar.php -------------------------------------------------------------------------------- /tests/phpunit/tests/ajax/AddTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/ajax/AddTag.php -------------------------------------------------------------------------------- /tests/phpunit/tests/ajax/Autosave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/ajax/Autosave.php -------------------------------------------------------------------------------- /tests/phpunit/tests/ajax/DimComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/ajax/DimComment.php -------------------------------------------------------------------------------- /tests/phpunit/tests/ajax/QuickEdit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/ajax/QuickEdit.php -------------------------------------------------------------------------------- /tests/phpunit/tests/ajax/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/ajax/Response.php -------------------------------------------------------------------------------- /tests/phpunit/tests/ajax/TagSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/ajax/TagSearch.php -------------------------------------------------------------------------------- /tests/phpunit/tests/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/auth.php -------------------------------------------------------------------------------- /tests/phpunit/tests/avatar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/avatar.php -------------------------------------------------------------------------------- /tests/phpunit/tests/basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/basic.php -------------------------------------------------------------------------------- /tests/phpunit/tests/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/cache.php -------------------------------------------------------------------------------- /tests/phpunit/tests/calmpress/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/calmpress/utils.php -------------------------------------------------------------------------------- /tests/phpunit/tests/canonical.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/canonical.php -------------------------------------------------------------------------------- /tests/phpunit/tests/canonical/https.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/canonical/https.php -------------------------------------------------------------------------------- /tests/phpunit/tests/canonical/paged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/canonical/paged.php -------------------------------------------------------------------------------- /tests/phpunit/tests/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/category.php -------------------------------------------------------------------------------- /tests/phpunit/tests/comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/comment.php -------------------------------------------------------------------------------- /tests/phpunit/tests/comment/avatar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/comment/avatar.php -------------------------------------------------------------------------------- /tests/phpunit/tests/comment/query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/comment/query.php -------------------------------------------------------------------------------- /tests/phpunit/tests/comment/slashes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/comment/slashes.php -------------------------------------------------------------------------------- /tests/phpunit/tests/comment/walker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/comment/walker.php -------------------------------------------------------------------------------- /tests/phpunit/tests/compat/hashHmac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/compat/hashHmac.php -------------------------------------------------------------------------------- /tests/phpunit/tests/compat/mbStrlen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/compat/mbStrlen.php -------------------------------------------------------------------------------- /tests/phpunit/tests/compat/mbSubstr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/compat/mbSubstr.php -------------------------------------------------------------------------------- /tests/phpunit/tests/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/cron.php -------------------------------------------------------------------------------- /tests/phpunit/tests/customize/panel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/customize/panel.php -------------------------------------------------------------------------------- /tests/phpunit/tests/date/dateI18n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/date/dateI18n.php -------------------------------------------------------------------------------- /tests/phpunit/tests/date/getTheDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/date/getTheDate.php -------------------------------------------------------------------------------- /tests/phpunit/tests/date/mysql2date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/date/mysql2date.php -------------------------------------------------------------------------------- /tests/phpunit/tests/date/query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/date/query.php -------------------------------------------------------------------------------- /tests/phpunit/tests/date/theDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/date/theDate.php -------------------------------------------------------------------------------- /tests/phpunit/tests/date/wpDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/date/wpDate.php -------------------------------------------------------------------------------- /tests/phpunit/tests/date/wpTimezone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/date/wpTimezone.php -------------------------------------------------------------------------------- /tests/phpunit/tests/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/db.php -------------------------------------------------------------------------------- /tests/phpunit/tests/db/charset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/db/charset.php -------------------------------------------------------------------------------- /tests/phpunit/tests/db/realEscape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/db/realEscape.php -------------------------------------------------------------------------------- /tests/phpunit/tests/dbdelta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/dbdelta.php -------------------------------------------------------------------------------- /tests/phpunit/tests/dependencies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/dependencies.php -------------------------------------------------------------------------------- /tests/phpunit/tests/feed/rss2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/feed/rss2.php -------------------------------------------------------------------------------- /tests/phpunit/tests/file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/file.php -------------------------------------------------------------------------------- /tests/phpunit/tests/filesystem/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/filesystem/base.php -------------------------------------------------------------------------------- /tests/phpunit/tests/filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/filters.php -------------------------------------------------------------------------------- /tests/phpunit/tests/formatting/date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/formatting/date.php -------------------------------------------------------------------------------- /tests/phpunit/tests/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/functions.php -------------------------------------------------------------------------------- /tests/phpunit/tests/functions/wp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/functions/wp.php -------------------------------------------------------------------------------- /tests/phpunit/tests/general/wpError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/general/wpError.php -------------------------------------------------------------------------------- /tests/phpunit/tests/general/wpTitle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/general/wpTitle.php -------------------------------------------------------------------------------- /tests/phpunit/tests/hooks/addFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/hooks/addFilter.php -------------------------------------------------------------------------------- /tests/phpunit/tests/hooks/doAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/hooks/doAction.php -------------------------------------------------------------------------------- /tests/phpunit/tests/hooks/doAllHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/hooks/doAllHook.php -------------------------------------------------------------------------------- /tests/phpunit/tests/hooks/hasFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/hooks/hasFilter.php -------------------------------------------------------------------------------- /tests/phpunit/tests/hooks/iterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/hooks/iterator.php -------------------------------------------------------------------------------- /tests/phpunit/tests/http/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/http/base.php -------------------------------------------------------------------------------- /tests/phpunit/tests/http/curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/http/curl.php -------------------------------------------------------------------------------- /tests/phpunit/tests/http/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/http/functions.php -------------------------------------------------------------------------------- /tests/phpunit/tests/http/http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/http/http.php -------------------------------------------------------------------------------- /tests/phpunit/tests/http/streams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/http/streams.php -------------------------------------------------------------------------------- /tests/phpunit/tests/https-detection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/https-detection.php -------------------------------------------------------------------------------- /tests/phpunit/tests/https-migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/https-migration.php -------------------------------------------------------------------------------- /tests/phpunit/tests/image/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/image/base.php -------------------------------------------------------------------------------- /tests/phpunit/tests/image/editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/image/editor.php -------------------------------------------------------------------------------- /tests/phpunit/tests/image/editorGd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/image/editorGd.php -------------------------------------------------------------------------------- /tests/phpunit/tests/image/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/image/functions.php -------------------------------------------------------------------------------- /tests/phpunit/tests/image/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/image/header.php -------------------------------------------------------------------------------- /tests/phpunit/tests/image/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/image/meta.php -------------------------------------------------------------------------------- /tests/phpunit/tests/image/resize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/image/resize.php -------------------------------------------------------------------------------- /tests/phpunit/tests/image/resizeGd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/image/resizeGd.php -------------------------------------------------------------------------------- /tests/phpunit/tests/image/siteIcon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/image/siteIcon.php -------------------------------------------------------------------------------- /tests/phpunit/tests/image/size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/image/size.php -------------------------------------------------------------------------------- /tests/phpunit/tests/kses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/kses.php -------------------------------------------------------------------------------- /tests/phpunit/tests/l10n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/l10n.php -------------------------------------------------------------------------------- /tests/phpunit/tests/l10n/getLocale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/l10n/getLocale.php -------------------------------------------------------------------------------- /tests/phpunit/tests/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/link.php -------------------------------------------------------------------------------- /tests/phpunit/tests/link/themeFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/link/themeFile.php -------------------------------------------------------------------------------- /tests/phpunit/tests/locale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/locale.php -------------------------------------------------------------------------------- /tests/phpunit/tests/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/mail.php -------------------------------------------------------------------------------- /tests/phpunit/tests/media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/media.php -------------------------------------------------------------------------------- /tests/phpunit/tests/menu/nav-menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/menu/nav-menu.php -------------------------------------------------------------------------------- /tests/phpunit/tests/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/meta.php -------------------------------------------------------------------------------- /tests/phpunit/tests/meta/query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/meta/query.php -------------------------------------------------------------------------------- /tests/phpunit/tests/meta/slashes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/meta/slashes.php -------------------------------------------------------------------------------- /tests/phpunit/tests/multisite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/multisite.php -------------------------------------------------------------------------------- /tests/phpunit/tests/multisite/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/multisite/site.php -------------------------------------------------------------------------------- /tests/phpunit/tests/oembed/WpEmbed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/oembed/WpEmbed.php -------------------------------------------------------------------------------- /tests/phpunit/tests/oembed/headers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/oembed/headers.php -------------------------------------------------------------------------------- /tests/phpunit/tests/oembed/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/oembed/template.php -------------------------------------------------------------------------------- /tests/phpunit/tests/oembed/wpOembed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/oembed/wpOembed.php -------------------------------------------------------------------------------- /tests/phpunit/tests/option/option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/option/option.php -------------------------------------------------------------------------------- /tests/phpunit/tests/option/slashes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/option/slashes.php -------------------------------------------------------------------------------- /tests/phpunit/tests/pluggable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/pluggable.php -------------------------------------------------------------------------------- /tests/phpunit/tests/pomo/mo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/pomo/mo.php -------------------------------------------------------------------------------- /tests/phpunit/tests/pomo/po.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/pomo/po.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/post.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/bodyClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/post/bodyClass.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/filtering.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/post/filtering.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/post/meta.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/objects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/post/objects.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/post/output.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/post/query.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/slashes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/post/slashes.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/post/types.php -------------------------------------------------------------------------------- /tests/phpunit/tests/post/wpPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/post/wpPost.php -------------------------------------------------------------------------------- /tests/phpunit/tests/query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/query.php -------------------------------------------------------------------------------- /tests/phpunit/tests/query/date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/query/date.php -------------------------------------------------------------------------------- /tests/phpunit/tests/query/isTerm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/query/isTerm.php -------------------------------------------------------------------------------- /tests/phpunit/tests/query/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/query/search.php -------------------------------------------------------------------------------- /tests/phpunit/tests/query/vars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/query/vars.php -------------------------------------------------------------------------------- /tests/phpunit/tests/rest-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/rest-api.php -------------------------------------------------------------------------------- /tests/phpunit/tests/rewrite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/rewrite.php -------------------------------------------------------------------------------- /tests/phpunit/tests/robots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/robots.php -------------------------------------------------------------------------------- /tests/phpunit/tests/shortcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/shortcode.php -------------------------------------------------------------------------------- /tests/phpunit/tests/site-health.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/site-health.php -------------------------------------------------------------------------------- /tests/phpunit/tests/taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/taxonomy.php -------------------------------------------------------------------------------- /tests/phpunit/tests/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/template.php -------------------------------------------------------------------------------- /tests/phpunit/tests/term.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/term.php -------------------------------------------------------------------------------- /tests/phpunit/tests/term/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/term/cache.php -------------------------------------------------------------------------------- /tests/phpunit/tests/term/getTerm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/term/getTerm.php -------------------------------------------------------------------------------- /tests/phpunit/tests/term/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/term/meta.php -------------------------------------------------------------------------------- /tests/phpunit/tests/term/query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/term/query.php -------------------------------------------------------------------------------- /tests/phpunit/tests/term/slashes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/term/slashes.php -------------------------------------------------------------------------------- /tests/phpunit/tests/term/wpTerm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/term/wpTerm.php -------------------------------------------------------------------------------- /tests/phpunit/tests/theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/theme.php -------------------------------------------------------------------------------- /tests/phpunit/tests/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/upload.php -------------------------------------------------------------------------------- /tests/phpunit/tests/url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/url.php -------------------------------------------------------------------------------- /tests/phpunit/tests/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/user.php -------------------------------------------------------------------------------- /tests/phpunit/tests/user/author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/user/author.php -------------------------------------------------------------------------------- /tests/phpunit/tests/user/avatar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/user/avatar.php -------------------------------------------------------------------------------- /tests/phpunit/tests/user/query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/user/query.php -------------------------------------------------------------------------------- /tests/phpunit/tests/user/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/user/session.php -------------------------------------------------------------------------------- /tests/phpunit/tests/user/slashes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/user/slashes.php -------------------------------------------------------------------------------- /tests/phpunit/tests/walker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/walker.php -------------------------------------------------------------------------------- /tests/phpunit/tests/widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/widgets.php -------------------------------------------------------------------------------- /tests/phpunit/tests/wp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/tests/wp.php -------------------------------------------------------------------------------- /tests/phpunit/wp-mail-real-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/phpunit/wp-mail-real-test.php -------------------------------------------------------------------------------- /tests/qunit/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/qunit/.jshintrc -------------------------------------------------------------------------------- /tests/qunit/fixtures/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/qunit/fixtures/common.js -------------------------------------------------------------------------------- /tests/qunit/fixtures/updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/qunit/fixtures/updates.js -------------------------------------------------------------------------------- /tests/qunit/fixtures/wp-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/qunit/fixtures/wp-api.js -------------------------------------------------------------------------------- /tests/qunit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/qunit/index.html -------------------------------------------------------------------------------- /tests/qunit/wp-admin/js/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/qunit/wp-admin/js/dashboard.js -------------------------------------------------------------------------------- /tests/qunit/wp-admin/js/nav-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/qunit/wp-admin/js/nav-menu.js -------------------------------------------------------------------------------- /tests/qunit/wp-admin/js/updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/qunit/wp-admin/js/updates.js -------------------------------------------------------------------------------- /tests/qunit/wp-includes/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/qunit/wp-includes/js/jquery.js -------------------------------------------------------------------------------- /tests/qunit/wp-includes/js/wp-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/qunit/wp-includes/js/wp-api.js -------------------------------------------------------------------------------- /tests/visual-regression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/visual-regression/README.md -------------------------------------------------------------------------------- /tests/visual-regression/run-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tests/visual-regression/run-tests.js -------------------------------------------------------------------------------- /tools/local-env/default.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tools/local-env/default.template -------------------------------------------------------------------------------- /tools/local-env/mysql-init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tools/local-env/mysql-init.sql -------------------------------------------------------------------------------- /tools/local-env/php-config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tools/local-env/php-config.ini -------------------------------------------------------------------------------- /tools/local-env/phpunit-config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tools/local-env/phpunit-config.ini -------------------------------------------------------------------------------- /tools/local-env/scripts/docker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tools/local-env/scripts/docker.js -------------------------------------------------------------------------------- /tools/local-env/scripts/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tools/local-env/scripts/install.js -------------------------------------------------------------------------------- /tools/local-env/scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tools/local-env/scripts/start.js -------------------------------------------------------------------------------- /tools/webpack/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tools/webpack/development.js -------------------------------------------------------------------------------- /tools/webpack/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tools/webpack/media.js -------------------------------------------------------------------------------- /tools/webpack/packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tools/webpack/packages.js -------------------------------------------------------------------------------- /tools/webpack/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/tools/webpack/shared.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/webpack.config.js -------------------------------------------------------------------------------- /wp-cli.yml: -------------------------------------------------------------------------------- 1 | path: src/ 2 | -------------------------------------------------------------------------------- /wp-config-sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/wp-config-sample.php -------------------------------------------------------------------------------- /wp-tests-config-sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmPress/calmpress/HEAD/wp-tests-config-sample.php --------------------------------------------------------------------------------