├── www ├── wp-content │ ├── index.php │ ├── plugins │ │ └── index.php │ └── themes │ │ └── index.php └── wordpress │ ├── wp-content │ └── index.php │ ├── wp-admin │ ├── images │ │ ├── no.png │ │ ├── se.png │ │ ├── list.png │ │ ├── mask.png │ │ ├── menu.png │ │ ├── sort.gif │ │ ├── xit.gif │ │ ├── yes.png │ │ ├── arrows.png │ │ ├── browser.png │ │ ├── generic.png │ │ ├── icons32.png │ │ ├── list-2x.png │ │ ├── loading.gif │ │ ├── marker.png │ │ ├── menu-2x.png │ │ ├── menu-vs.png │ │ ├── privacy.png │ │ ├── resize.gif │ │ ├── sort-2x.gif │ │ ├── spinner.gif │ │ ├── stars.png │ │ ├── wheel.png │ │ ├── xit-2x.gif │ │ ├── arrows-2x.png │ │ ├── bubble_bg.gif │ │ ├── freedoms.png │ │ ├── resize-2x.gif │ │ ├── stars-2x.png │ │ ├── align-center.png │ │ ├── align-left.png │ │ ├── align-none.png │ │ ├── align-right.png │ │ ├── browser-rtl.png │ │ ├── bubble_bg-2x.gif │ │ ├── date-button.gif │ │ ├── icons32-2x.png │ │ ├── icons32-vs.png │ │ ├── media-button.png │ │ ├── menu-vs-2x.png │ │ ├── post-formats.png │ │ ├── resize-rtl.gif │ │ ├── spinner-2x.gif │ │ ├── w-logo-blue.png │ │ ├── w-logo-white.png │ │ ├── wpspin_light.gif │ │ ├── align-left-2x.png │ │ ├── align-none-2x.png │ │ ├── align-right-2x.png │ │ ├── date-button-2x.gif │ │ ├── icons32-vs-2x.png │ │ ├── imgedit-icons.png │ │ ├── post-formats32.png │ │ ├── resize-rtl-2x.gif │ │ ├── wordpress-logo.png │ │ ├── align-center-2x.png │ │ ├── imgedit-icons-2x.png │ │ ├── media-button-2x.png │ │ ├── post-formats-vs.png │ │ ├── post-formats32-vs.png │ │ ├── wpspin_light-2x.gif │ │ ├── comment-grey-bubble.png │ │ ├── media-button-image.gif │ │ ├── media-button-music.gif │ │ ├── media-button-other.gif │ │ ├── media-button-video.gif │ │ └── comment-grey-bubble-2x.png │ ├── css │ │ ├── colors │ │ │ ├── midnight │ │ │ │ └── colors.scss │ │ │ ├── sunrise │ │ │ │ └── colors.scss │ │ │ ├── coffee │ │ │ │ └── colors.scss │ │ │ ├── ectoplasm │ │ │ │ └── colors.scss │ │ │ ├── ocean │ │ │ │ └── colors.scss │ │ │ ├── modern │ │ │ │ └── colors.scss │ │ │ ├── blue │ │ │ │ └── colors.scss │ │ │ └── _mixins.scss │ │ ├── wp-admin.css │ │ ├── farbtastic.min.css │ │ ├── farbtastic-rtl.min.css │ │ ├── wp-admin-rtl.css │ │ ├── wp-admin.min.css │ │ ├── wp-admin-rtl.min.css │ │ ├── site-icon.min.css │ │ ├── site-icon-rtl.min.css │ │ ├── farbtastic.css │ │ └── farbtastic-rtl.css │ ├── ms-admin.php │ ├── ms-edit.php │ ├── ms-sites.php │ ├── ms-users.php │ ├── ms-options.php │ ├── ms-themes.php │ ├── ms-upgrade-network.php │ ├── network │ │ ├── about.php │ │ ├── setup.php │ │ ├── credits.php │ │ ├── plugins.php │ │ ├── privacy.php │ │ ├── freedoms.php │ │ ├── profile.php │ │ ├── user-edit.php │ │ ├── update-core.php │ │ ├── theme-editor.php │ │ ├── plugin-editor.php │ │ ├── theme-install.php │ │ ├── plugin-install.php │ │ ├── update.php │ │ └── edit.php │ ├── user │ │ ├── index.php │ │ ├── profile.php │ │ ├── user-edit.php │ │ ├── about.php │ │ ├── credits.php │ │ ├── privacy.php │ │ ├── freedoms.php │ │ ├── menu.php │ │ └── admin.php │ ├── moderation.php │ ├── profile.php │ ├── upgrade-functions.php │ ├── js │ │ ├── language-chooser.min.js │ │ ├── xfn.min.js │ │ ├── media-gallery.min.js │ │ ├── set-post-thumbnail.min.js │ │ ├── user-suggest.min.js │ │ ├── xfn.js │ │ ├── accordion.min.js │ │ ├── set-post-thumbnail.js │ │ ├── language-chooser.js │ │ └── password-strength-meter.min.js │ ├── admin-functions.php │ ├── custom-background.php │ ├── custom-header.php │ ├── options-head.php │ ├── link-add.php │ └── privacy-policy-guide.php │ ├── wp-includes │ ├── Requests │ │ ├── Exception │ │ │ ├── Transport.php │ │ │ └── HTTP │ │ │ │ ├── 410.php │ │ │ │ ├── 409.php │ │ │ │ ├── 403.php │ │ │ │ ├── 404.php │ │ │ │ ├── 304.php │ │ │ │ ├── 305.php │ │ │ │ ├── 400.php │ │ │ │ ├── 401.php │ │ │ │ ├── 502.php │ │ │ │ ├── 306.php │ │ │ │ ├── 406.php │ │ │ │ ├── 408.php │ │ │ │ ├── 411.php │ │ │ │ ├── 501.php │ │ │ │ ├── 504.php │ │ │ │ ├── 402.php │ │ │ │ ├── 405.php │ │ │ │ ├── 417.php │ │ │ │ ├── 412.php │ │ │ │ ├── 503.php │ │ │ │ ├── 414.php │ │ │ │ ├── 415.php │ │ │ │ ├── 500.php │ │ │ │ ├── 413.php │ │ │ │ ├── 505.php │ │ │ │ ├── 407.php │ │ │ │ ├── 416.php │ │ │ │ ├── 418.php │ │ │ │ ├── 428.php │ │ │ │ ├── 431.php │ │ │ │ ├── 511.php │ │ │ │ ├── 429.php │ │ │ │ └── Unknown.php │ │ ├── Hooker.php │ │ ├── Auth.php │ │ └── Proxy.php │ ├── images │ │ ├── rss.png │ │ ├── xit.gif │ │ ├── blank.gif │ │ ├── rss-2x.png │ │ ├── wpspin.gif │ │ ├── xit-2x.gif │ │ ├── spinner.gif │ │ ├── wpicons.png │ │ ├── wpspin-2x.gif │ │ ├── down_arrow.gif │ │ ├── media │ │ │ ├── audio.png │ │ │ ├── code.png │ │ │ ├── text.png │ │ │ ├── video.png │ │ │ ├── archive.png │ │ │ ├── default.png │ │ │ ├── document.png │ │ │ ├── interactive.png │ │ │ └── spreadsheet.png │ │ ├── spinner-2x.gif │ │ ├── w-logo-blue.png │ │ ├── wlw │ │ │ ├── wp-icon.png │ │ │ ├── wp-comments.png │ │ │ └── wp-watermark.png │ │ ├── wpicons-2x.png │ │ ├── crystal │ │ │ ├── audio.png │ │ │ ├── code.png │ │ │ ├── text.png │ │ │ ├── video.png │ │ │ ├── archive.png │ │ │ ├── default.png │ │ │ ├── document.png │ │ │ ├── interactive.png │ │ │ ├── spreadsheet.png │ │ │ └── license.txt │ │ ├── down_arrow-2x.gif │ │ ├── toggle-arrow.png │ │ ├── uploader-icons.png │ │ ├── admin-bar-sprite.png │ │ ├── smilies │ │ │ ├── frownie.png │ │ │ ├── icon_cry.gif │ │ │ ├── icon_eek.gif │ │ │ ├── icon_lol.gif │ │ │ ├── icon_mad.gif │ │ │ ├── icon_sad.gif │ │ │ ├── mrgreen.png │ │ │ ├── rolleyes.png │ │ │ ├── icon_arrow.gif │ │ │ ├── icon_cool.gif │ │ │ ├── icon_evil.gif │ │ │ ├── icon_idea.gif │ │ │ ├── icon_razz.gif │ │ │ ├── icon_smile.gif │ │ │ ├── icon_wink.gif │ │ │ ├── icon_biggrin.gif │ │ │ ├── icon_confused.gif │ │ │ ├── icon_exclaim.gif │ │ │ ├── icon_mrgreen.gif │ │ │ ├── icon_neutral.gif │ │ │ ├── icon_question.gif │ │ │ ├── icon_redface.gif │ │ │ ├── icon_rolleyes.gif │ │ │ ├── icon_twisted.gif │ │ │ ├── simple-smile.png │ │ │ └── icon_surprised.gif │ │ ├── toggle-arrow-2x.png │ │ ├── admin-bar-sprite-2x.png │ │ ├── arrow-pointer-blue.png │ │ ├── icon-pointer-flag.png │ │ ├── uploader-icons-2x.png │ │ ├── arrow-pointer-blue-2x.png │ │ ├── icon-pointer-flag-2x.png │ │ └── w-logo-blue-white-bg.png │ ├── js │ │ ├── tw-sack.js │ │ ├── jcrop │ │ │ └── Jcrop.gif │ │ ├── crop │ │ │ ├── marqueeHoriz.gif │ │ │ └── marqueeVert.gif │ │ ├── thickbox │ │ │ ├── macFFBgHack.png │ │ │ └── loadingAnimation.gif │ │ ├── imgareaselect │ │ │ ├── border-anim-h.gif │ │ │ ├── border-anim-v.gif │ │ │ └── imgareaselect.css │ │ ├── mediaelement │ │ │ ├── mejs-controls.png │ │ │ └── wp-mediaelement.min.js │ │ ├── tinymce │ │ │ ├── skins │ │ │ │ ├── lightgray │ │ │ │ │ ├── img │ │ │ │ │ │ ├── trans.gif │ │ │ │ │ │ ├── anchor.gif │ │ │ │ │ │ ├── loader.gif │ │ │ │ │ │ └── object.gif │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── tinymce.eot │ │ │ │ │ │ ├── tinymce.ttf │ │ │ │ │ │ ├── tinymce.woff │ │ │ │ │ │ ├── tinymce-small.eot │ │ │ │ │ │ ├── tinymce-small.ttf │ │ │ │ │ │ └── tinymce-small.woff │ │ │ │ └── wordpress │ │ │ │ │ └── images │ │ │ │ │ ├── more.png │ │ │ │ │ ├── audio.png │ │ │ │ │ ├── gallery.png │ │ │ │ │ ├── more-2x.png │ │ │ │ │ ├── video.png │ │ │ │ │ ├── embedded.png │ │ │ │ │ ├── pagebreak.png │ │ │ │ │ ├── dashicon-no.png │ │ │ │ │ ├── gallery-2x.png │ │ │ │ │ ├── pagebreak-2x.png │ │ │ │ │ ├── dashicon-edit.png │ │ │ │ │ ├── playlist-audio.png │ │ │ │ │ └── playlist-video.png │ │ │ └── plugins │ │ │ │ ├── hr │ │ │ │ ├── plugin.min.js │ │ │ │ └── plugin.js │ │ │ │ └── directionality │ │ │ │ └── plugin.min.js │ │ ├── wpdialog.min.js │ │ ├── zxcvbn-async.min.js │ │ ├── dist │ │ │ └── vendor │ │ │ │ ├── wp-polyfill-node-contains.min.js │ │ │ │ ├── wp-polyfill-element-closest.min.js │ │ │ │ ├── wp-polyfill-node-contains.js │ │ │ │ ├── wp-polyfill-dom-rect.min.js │ │ │ │ └── wp-polyfill-element-closest.js │ │ ├── jquery │ │ │ ├── ui │ │ │ │ ├── effect-transfer.min.js │ │ │ │ ├── effect-puff.min.js │ │ │ │ ├── effect-fade.min.js │ │ │ │ ├── effect-highlight.min.js │ │ │ │ ├── effect-pulsate.min.js │ │ │ │ ├── effect-scale.min.js │ │ │ │ ├── effect-drop.min.js │ │ │ │ ├── effect-clip.min.js │ │ │ │ ├── effect-shake.min.js │ │ │ │ ├── effect-blind.min.js │ │ │ │ ├── effect-slide.min.js │ │ │ │ ├── effect-bounce.min.js │ │ │ │ ├── effect-fold.min.js │ │ │ │ ├── effect-transfer.js │ │ │ │ └── effect-explode.min.js │ │ │ └── jquery.serialize-object.js │ │ ├── wp-sanitize.min.js │ │ ├── wp-list-revisions.min.js │ │ ├── wpdialog.js │ │ ├── zxcvbn-async.js │ │ ├── api-request.min.js │ │ ├── wp-util.min.js │ │ ├── wp-list-revisions.js │ │ ├── hoverIntent.min.js │ │ └── codemirror │ │ │ └── htmlhint-kses.js │ ├── fonts │ │ ├── dashicons.eot │ │ ├── dashicons.ttf │ │ ├── dashicons.woff │ │ └── dashicons.woff2 │ ├── sodium_compat │ │ ├── namespaced │ │ │ ├── File.php │ │ │ ├── Compat.php │ │ │ ├── Crypto.php │ │ │ └── Core │ │ │ │ ├── Util.php │ │ │ │ ├── BLAKE2b.php │ │ │ │ ├── Ed25519.php │ │ │ │ ├── Salsa20.php │ │ │ │ ├── SipHash.php │ │ │ │ ├── X25519.php │ │ │ │ ├── ChaCha20.php │ │ │ │ ├── HSalsa20.php │ │ │ │ ├── Poly1305.php │ │ │ │ ├── Xsalsa20.php │ │ │ │ ├── Curve25519.php │ │ │ │ ├── HChaCha20.php │ │ │ │ ├── XChaCha20.php │ │ │ │ ├── ChaCha20 │ │ │ │ ├── Ctx.php │ │ │ │ └── IetfCtx.php │ │ │ │ ├── Curve25519 │ │ │ │ ├── H.php │ │ │ │ ├── Fe.php │ │ │ │ └── Ge │ │ │ │ │ ├── P2.php │ │ │ │ │ ├── P3.php │ │ │ │ │ ├── P1p1.php │ │ │ │ │ ├── Cached.php │ │ │ │ │ └── Precomp.php │ │ │ │ └── Poly1305 │ │ │ │ └── State.php │ │ ├── src │ │ │ ├── SodiumException.php │ │ │ ├── Core │ │ │ │ └── Curve25519 │ │ │ │ │ └── README.md │ │ │ └── Core32 │ │ │ │ ├── Curve25519 │ │ │ │ └── README.md │ │ │ │ └── Util.php │ │ ├── LICENSE │ │ └── autoload-php7.php │ ├── blocks │ │ ├── buttons │ │ │ └── block.json │ │ ├── nextpage │ │ │ └── block.json │ │ ├── spacer │ │ │ └── block.json │ │ ├── code │ │ │ └── block.json │ │ ├── block │ │ │ └── block.json │ │ ├── calendar │ │ │ └── block.json │ │ ├── html │ │ │ └── block.json │ │ ├── classic │ │ │ └── block.json │ │ ├── shortcode │ │ │ └── block.json │ │ ├── separator │ │ │ └── block.json │ │ ├── preformatted │ │ │ └── block.json │ │ ├── subhead │ │ │ └── block.json │ │ ├── tag-cloud │ │ │ └── block.json │ │ ├── archives │ │ │ └── block.json │ │ ├── more │ │ │ └── block.json │ │ ├── columns │ │ │ └── block.json │ │ ├── verse │ │ │ └── block.json │ │ ├── social-links │ │ │ └── block.json │ │ ├── column │ │ │ └── block.json │ │ ├── categories │ │ │ └── block.json │ │ ├── social-link │ │ │ └── block.json │ │ ├── missing │ │ │ └── block.json │ │ ├── quote │ │ │ └── block.json │ │ ├── group │ │ │ └── block.json │ │ ├── latest-comments │ │ │ └── block.json │ │ ├── text-columns │ │ │ └── block.json │ │ ├── list │ │ │ └── block.json │ │ ├── pullquote │ │ │ └── block.json │ │ ├── search │ │ │ └── block.json │ │ ├── paragraph │ │ │ └── block.json │ │ ├── embed │ │ │ └── block.json │ │ ├── shortcode.php │ │ ├── rss │ │ │ └── block.json │ │ ├── audio │ │ │ └── block.json │ │ ├── file │ │ │ └── block.json │ │ └── heading │ │ │ └── block.json │ ├── locale.php │ ├── registration.php │ ├── registration-functions.php │ ├── session.php │ ├── rss-functions.php │ ├── embed-template.php │ ├── date.php │ ├── class-oembed.php │ ├── spl-autoload-compat.php │ ├── class-smtp.php │ ├── theme-compat │ │ ├── footer-embed.php │ │ ├── embed.php │ │ └── header-embed.php │ ├── IXR │ │ ├── class-IXR-base64.php │ │ └── class-IXR-error.php │ ├── class-feed.php │ ├── customize │ │ ├── class-wp-customize-background-image-setting.php │ │ ├── class-wp-customize-filter-setting.php │ │ └── class-wp-customize-nav-menu-section.php │ ├── wp-diff.php │ ├── class-phpmailer.php │ ├── class-wp-text-diff-renderer-inline.php │ ├── version.php │ └── block-patterns │ │ └── two-images.php │ ├── wp-blog-header.php │ └── index.php ├── docs ├── platform-structure.md ├── hooks.md └── themes.md ├── .editorconfig ├── package.json ├── .travis.yml ├── composer.json ├── Gruntfile.js └── bin ├── pull_site_uploads └── pull_plugins /www/wp-content/index.php: -------------------------------------------------------------------------------- 1 | ")})},o=function(n){n.addButton("hr",{icon:"hr",tooltip:"Horizontal line",cmd:"InsertHorizontalRule"}),n.addMenuItem("hr",{icon:"hr",text:"Horizontal line",cmd:"InsertHorizontalRule",context:"insert"})};n.add("hr",function(n){t(n),o(n)})}(); -------------------------------------------------------------------------------- /www/wordpress/wp-includes/blocks/column/block.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiVersion": 2, 3 | "name": "core/column", 4 | "category": "text", 5 | "parent": [ 6 | "core/columns" 7 | ], 8 | "attributes": { 9 | "verticalAlignment": { 10 | "type": "string" 11 | }, 12 | "width": { 13 | "type": "string" 14 | }, 15 | "templateLock": { 16 | "type": "string" 17 | } 18 | }, 19 | "supports": { 20 | "anchor": true, 21 | "reusable": false, 22 | "html": false 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /www/wordpress/wp-admin/network/theme-install.php: -------------------------------------------------------------------------------- 1 | |$)/g,"").replace(/<(script|style)[^>]*>[\s\S]*?(<\/\1>|$)/gi,"").replace(/<\/?[a-z][\s\S]*?(>|$)/gi,"");return e!==t?wp.sanitize.stripTags(e):e},stripTagsAndEncodeText:function(t){var e=wp.sanitize.stripTags(t),a=document.createElement("textarea");try{a.textContent=e,e=wp.sanitize.stripTags(a.value)}catch(t){}return e}}; -------------------------------------------------------------------------------- /www/wordpress/index.php: -------------------------------------------------------------------------------- 1 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /www/wordpress/wp-includes/Requests/Exception/HTTP/414.php: -------------------------------------------------------------------------------- 1 | data = $data; 19 | } 20 | 21 | /** 22 | * PHP4 constructor. 23 | */ 24 | public function IXR_Base64( $data ) { 25 | self::__construct( $data ); 26 | } 27 | 28 | function getXml() 29 | { 30 | return ''.base64_encode($this->data).''; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /www/wordpress/wp-includes/Requests/Exception/HTTP/407.php: -------------------------------------------------------------------------------- 1 | &2; exit 1 11 | fi 12 | 13 | if [[ ! $2 =~ $re ]]; then 14 | echo "Local site ID is not a number" >&2; exit 1 15 | fi 16 | 17 | if [[ -f 'pull_plugins' ]]; then 18 | LOCAL_UPLOADS=../www/wp-content/uploads/sites 19 | elif [[ -f 'Vagrantfile' ]]; then 20 | LOCAL_UPLOADS=www/wp-content/uploads/sites 21 | else 22 | echo "Error: Run from the project root or bin directory" 23 | exit 24 | fi 25 | 26 | cd $LOCAL_UPLOADS 27 | 28 | rsync -avz --delete wsuwp-prod-01:/var/www/wp-content/uploads/sites/$1/ ./$2 29 | -------------------------------------------------------------------------------- /www/wordpress/wp-includes/blocks/paragraph/block.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiVersion": 2, 3 | "name": "core/paragraph", 4 | "category": "text", 5 | "attributes": { 6 | "align": { 7 | "type": "string" 8 | }, 9 | "content": { 10 | "type": "string", 11 | "source": "html", 12 | "selector": "p", 13 | "default": "" 14 | }, 15 | "dropCap": { 16 | "type": "boolean", 17 | "default": false 18 | }, 19 | "placeholder": { 20 | "type": "string" 21 | }, 22 | "direction": { 23 | "type": "string", 24 | "enum": [ 25 | "ltr", 26 | "rtl" 27 | ] 28 | } 29 | }, 30 | "supports": { 31 | "anchor": true, 32 | "className": false, 33 | "color": { 34 | "link": true 35 | }, 36 | "fontSize": true, 37 | "lineHeight": true, 38 | "__experimentalSelector": "p", 39 | "__unstablePasteTextInline": true 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /www/wordpress/wp-includes/blocks/embed/block.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiVersion": 2, 3 | "name": "core/embed", 4 | "category": "embed", 5 | "attributes": { 6 | "url": { 7 | "type": "string" 8 | }, 9 | "caption": { 10 | "type": "string", 11 | "source": "html", 12 | "selector": "figcaption" 13 | }, 14 | "type": { 15 | "type": "string" 16 | }, 17 | "providerNameSlug": { 18 | "type": "string" 19 | }, 20 | "allowResponsive": { 21 | "type": "boolean", 22 | "default": true 23 | }, 24 | "responsive": { 25 | "type": "boolean", 26 | "default": false 27 | }, 28 | "previewable": { 29 | "type": "boolean", 30 | "default": true 31 | } 32 | }, 33 | "supports": { 34 | "align": true, 35 | "reusable": false, 36 | "html": false 37 | }, 38 | "editorStyle": "wp-block-embed-editor", 39 | "style": "wp-block-embed" 40 | } 41 | -------------------------------------------------------------------------------- /www/wordpress/wp-includes/js/jquery/ui/effect-shake.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Effects Shake 1.12.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | !function(e){"function"==typeof define&&define.amd?define(["jquery","./effect"],e):e(jQuery)}(function(h){return h.effects.define("shake",function(e,n){var t=1,i=h(this),a=e.direction||"left",f=e.distance||20,u=e.times||3,s=2*u+1,c=Math.round(e.duration/s),o="up"===a||"down"===a?"top":"left",d="up"===a||"left"===a,r={},m={},g={},a=i.queue().length;for(h.effects.createPlaceholder(i),r[o]=(d?"-=":"+=")+f,m[o]=(d?"+=":"-=")+2*f,g[o]=(d?"-=":"+=")+2*f,i.animate(r,c,e.easing);t 'render_block_core_shortcode', 28 | ) 29 | ); 30 | } 31 | add_action( 'init', 'register_block_core_shortcode' ); 32 | -------------------------------------------------------------------------------- /www/wordpress/wp-admin/js/xfn.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Generates the XHTML Friends Network 'rel' string from the inputs. 3 | * 4 | * @deprecated 3.5.0 5 | * @output wp-admin/js/xfn.js 6 | */ 7 | jQuery( document ).ready(function( $ ) { 8 | $( '#link_rel' ).prop( 'readonly', true ); 9 | $( '#linkxfndiv input' ).bind( 'click keyup', function() { 10 | var isMe = $( '#me' ).is( ':checked' ), inputs = ''; 11 | $( 'input.valinp' ).each( function() { 12 | if ( isMe ) { 13 | $( this ).prop( 'disabled', true ).parent().addClass( 'disabled' ); 14 | } else { 15 | $( this ).removeAttr( 'disabled' ).parent().removeClass( 'disabled' ); 16 | if ( $( this ).is( ':checked' ) && $( this ).val() !== '') { 17 | inputs += $( this ).val() + ' '; 18 | } 19 | } 20 | }); 21 | $( '#link_rel' ).val( ( isMe ) ? 'me' : inputs.substr( 0,inputs.length - 1 ) ); 22 | }); 23 | }); 24 | -------------------------------------------------------------------------------- /www/wordpress/wp-admin/user/menu.php: -------------------------------------------------------------------------------- 1 | 0 is executed later 22 | */ 23 | public function register($hook, $callback, $priority = 0); 24 | 25 | /** 26 | * Dispatch a message 27 | * 28 | * @param string $hook Hook name 29 | * @param array $parameters Parameters to pass to callbacks 30 | * @return boolean Successfulness 31 | */ 32 | public function dispatch($hook, $parameters = array()); 33 | } -------------------------------------------------------------------------------- /www/wordpress/wp-includes/theme-compat/header-embed.php: -------------------------------------------------------------------------------- 1 | 18 | 19 | class="no-js"> 20 | 21 | <?php echo wp_get_document_title(); ?> 22 | 23 | 31 | 32 | > 33 | -------------------------------------------------------------------------------- /www/wordpress/wp-includes/js/jquery/ui/effect-blind.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Effects Blind 1.12.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | !function(e){"function"==typeof define&&define.amd?define(["jquery","./effect"],e):e(jQuery)}(function(r){return r.effects.define("blind","hide",function(e,t){var i={up:["bottom","top"],vertical:["bottom","top"],down:["top","bottom"],left:["right","left"],horizontal:["right","left"],right:["left","right"]},o=r(this),n=e.direction||"up",c=o.cssClip(),f={clip:r.extend({},c)},l=r.effects.createPlaceholder(o);f.clip[i[n][0]]=f.clip[i[n][1]],"show"===e.mode&&(o.cssClip(f.clip),l&&l.css(r.effects.clipToBox(f)),f.clip=c),l&&l.animate(r.effects.clipToBox(f),e.duration,e.easing),o.animate(f,{queue:!1,duration:e.duration,easing:e.easing,complete:t})})}); -------------------------------------------------------------------------------- /www/wordpress/wp-includes/js/tinymce/plugins/directionality/plugin.min.js: -------------------------------------------------------------------------------- 1 | !function(){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager"),c=tinymce.util.Tools.resolve("tinymce.util.Tools"),e=function(t,e){var i,n=t.dom,o=t.selection.getSelectedBlocks();o.length&&(i=n.getAttrib(o[0],"dir"),c.each(o,function(t){n.getParent(t.parentNode,'*[dir="'+e+'"]',n.getRoot())||n.setAttrib(t,"dir",i!==e?e:null)}),t.nodeChanged())},i=function(t){t.addCommand("mceDirectionLTR",function(){e(t,"ltr")}),t.addCommand("mceDirectionRTL",function(){e(t,"rtl")})},n=function(e){var i=[];return c.each("h1 h2 h3 h4 h5 h6 div p".split(" "),function(t){i.push(t+"[dir="+e+"]")}),i.join(",")},o=function(t){t.addButton("ltr",{title:"Left to right",cmd:"mceDirectionLTR",stateSelector:n("ltr")}),t.addButton("rtl",{title:"Right to left",cmd:"mceDirectionRTL",stateSelector:n("rtl")})};t.add("directionality",function(t){i(t),o(t)})}(); -------------------------------------------------------------------------------- /www/wordpress/wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js: -------------------------------------------------------------------------------- 1 | !function(e){function d(e){return void 0===e?0:Number(e)}function g(e,t){return!(e===t||isNaN(e)&&isNaN(t))}e.DOMRect=function(e,t,n,i){var u,r,o,c,f=d(e),a=d(t),m=d(n),b=d(i);Object.defineProperties(this,{x:{get:function(){return f},set:function(e){g(f,e)&&(f=e,u=r=void 0)},enumerable:!0},y:{get:function(){return a},set:function(e){g(a,e)&&(a=e,o=c=void 0)},enumerable:!0},width:{get:function(){return m},set:function(e){g(m,e)&&(m=e,u=r=void 0)},enumerable:!0},height:{get:function(){return b},set:function(e){g(b,e)&&(b=e,o=c=void 0)},enumerable:!0},left:{get:function(){return u=void 0===u?f+Math.min(0,m):u},enumerable:!0},right:{get:function(){return r=void 0===r?f+Math.max(0,m):r},enumerable:!0},top:{get:function(){return o=void 0===o?a+Math.min(0,b):o},enumerable:!0},bottom:{get:function(){return c=void 0===c?a+Math.max(0,b):c},enumerable:!0}})}}(this); -------------------------------------------------------------------------------- /www/wordpress/wp-includes/class-wp-text-diff-renderer-inline.php: -------------------------------------------------------------------------------- 1 | '+mejsL10n.strings["mejs.download-file"]+""},n(".wp-audio-shortcode, .wp-video-shortcode").not(".mejs-container").filter(function(){return!n(this).parent().hasClass("mejs-mediaelement")}).mediaelementplayer(e)}}},n(e.wp.mediaelement.initialize)}(window,jQuery); -------------------------------------------------------------------------------- /www/wordpress/wp-includes/blocks/audio/block.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiVersion": 2, 3 | "name": "core/audio", 4 | "category": "media", 5 | "attributes": { 6 | "src": { 7 | "type": "string", 8 | "source": "attribute", 9 | "selector": "audio", 10 | "attribute": "src" 11 | }, 12 | "caption": { 13 | "type": "string", 14 | "source": "html", 15 | "selector": "figcaption" 16 | }, 17 | "id": { 18 | "type": "number" 19 | }, 20 | "autoplay": { 21 | "type": "boolean", 22 | "source": "attribute", 23 | "selector": "audio", 24 | "attribute": "autoplay" 25 | }, 26 | "loop": { 27 | "type": "boolean", 28 | "source": "attribute", 29 | "selector": "audio", 30 | "attribute": "loop" 31 | }, 32 | "preload": { 33 | "type": "string", 34 | "source": "attribute", 35 | "selector": "audio", 36 | "attribute": "preload" 37 | } 38 | }, 39 | "supports": { 40 | "anchor": true, 41 | "align": true 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /www/wordpress/wp-includes/customize/class-wp-customize-nav-menu-section.php: -------------------------------------------------------------------------------- 1 | id ); 38 | 39 | return $exported; 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /www/wordpress/wp-includes/js/jquery/jquery.serialize-object.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery serializeObject - v0.2 - 1/20/2010 3 | * http://benalman.com/projects/jquery-misc-plugins/ 4 | * 5 | * Copyright (c) 2010 "Cowboy" Ben Alman 6 | * Dual licensed under the MIT and GPL licenses. 7 | * http://benalman.com/about/license/ 8 | */ 9 | 10 | // Whereas .serializeArray() serializes a form into an array, .serializeObject() 11 | // serializes a form into an (arguably more useful) object. 12 | 13 | (function($,undefined){ 14 | '$:nomunge'; // Used by YUI compressor. 15 | 16 | $.fn.serializeObject = function(){ 17 | var obj = {}; 18 | 19 | $.each( this.serializeArray(), function(i,o){ 20 | var n = o.name, 21 | v = o.value; 22 | 23 | obj[n] = obj[n] === undefined ? v 24 | : $.isArray( obj[n] ) ? obj[n].concat( v ) 25 | : [ obj[n], v ]; 26 | }); 27 | 28 | return obj; 29 | }; 30 | 31 | })(jQuery); 32 | -------------------------------------------------------------------------------- /www/wordpress/wp-includes/blocks/file/block.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiVersion": 2, 3 | "name": "core/file", 4 | "category": "media", 5 | "attributes": { 6 | "id": { 7 | "type": "number" 8 | }, 9 | "href": { 10 | "type": "string" 11 | }, 12 | "fileName": { 13 | "type": "string", 14 | "source": "html", 15 | "selector": "a:not([download])" 16 | }, 17 | "textLinkHref": { 18 | "type": "string", 19 | "source": "attribute", 20 | "selector": "a:not([download])", 21 | "attribute": "href" 22 | }, 23 | "textLinkTarget": { 24 | "type": "string", 25 | "source": "attribute", 26 | "selector": "a:not([download])", 27 | "attribute": "target" 28 | }, 29 | "showDownloadButton": { 30 | "type": "boolean", 31 | "default": true 32 | }, 33 | "downloadButtonText": { 34 | "type": "string", 35 | "source": "html", 36 | "selector": "a[download]" 37 | } 38 | }, 39 | "supports": { 40 | "anchor": true, 41 | "align": true 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /www/wordpress/wp-includes/blocks/heading/block.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiVersion": 2, 3 | "name": "core/heading", 4 | "category": "text", 5 | "attributes": { 6 | "textAlign": { 7 | "type": "string" 8 | }, 9 | "content": { 10 | "type": "string", 11 | "source": "html", 12 | "selector": "h1,h2,h3,h4,h5,h6", 13 | "default": "" 14 | }, 15 | "level": { 16 | "type": "number", 17 | "default": 2 18 | }, 19 | "placeholder": { 20 | "type": "string" 21 | } 22 | }, 23 | "supports": { 24 | "align": [ "wide", "full" ], 25 | "anchor": true, 26 | "className": false, 27 | "color": { 28 | "link": true 29 | }, 30 | "fontSize": true, 31 | "lineHeight": true, 32 | "__experimentalSelector": { 33 | "core/heading/h1": "h1", 34 | "core/heading/h2": "h2", 35 | "core/heading/h3": "h3", 36 | "core/heading/h4": "h4", 37 | "core/heading/h5": "h5", 38 | "core/heading/h6": "h6" 39 | }, 40 | "__unstablePasteTextInline": true 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /www/wordpress/wp-includes/Requests/Auth.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * Copyright (c) 2013-2019 8 | * Frank Denis 9 | * 10 | * Permission to use, copy, modify, and/or distribute this software for any 11 | * purpose with or without fee is hereby granted, provided that the above 12 | * copyright notice and this permission notice appear in all copies. 13 | * 14 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 15 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 16 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 17 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 18 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 19 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 20 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 21 | */ -------------------------------------------------------------------------------- /www/wordpress/wp-admin/privacy-policy-guide.php: -------------------------------------------------------------------------------- 1 | 27 |
28 |

29 | 30 |
31 | 32 |
33 |
34 | domain, $current_site->domain ) || 0 !== strcasecmp( $current_blog->path, $current_site->path ) ); 20 | 21 | /** 22 | * Filters whether to redirect the request to the User Admin in Multisite. 23 | * 24 | * @since 3.2.0 25 | * 26 | * @param bool $redirect_user_admin_request Whether the request should be redirected. 27 | */ 28 | $redirect_user_admin_request = apply_filters( 'redirect_user_admin_request', $redirect_user_admin_request ); 29 | 30 | if ( $redirect_user_admin_request ) { 31 | wp_redirect( user_admin_url() ); 32 | exit; 33 | } 34 | 35 | unset( $redirect_user_admin_request ); 36 | -------------------------------------------------------------------------------- /www/wordpress/wp-includes/js/api-request.min.js: -------------------------------------------------------------------------------- 1 | /*! This file is auto-generated */ 2 | !function(c){var w=window.wpApiSettings;function t(e){return e=t.buildAjaxOptions(e),t.transport(e)}t.buildAjaxOptions=function(e){var t,n,a,p,o,r,i=e.url,d=e.path,s=e.method;for(r in"string"==typeof e.namespace&&"string"==typeof e.endpoint&&(n=e.namespace.replace(/^\/|\/$/g,""),d=(t=e.endpoint.replace(/^\//,""))?n+"/"+t:n),"string"==typeof d&&(n=w.root,d=d.replace(/^\//,""),"string"==typeof n&&-1!==n.indexOf("?")&&(d=d.replace("?","&")),i=n+d),p=!(e.data&&e.data._wpnonce),o=!0,a=e.headers||{})if(a.hasOwnProperty(r))switch(r.toLowerCase()){case"x-wp-nonce":p=!1;break;case"accept":o=!1}return p&&(a=c.extend({"X-WP-Nonce":w.nonce},a)),o&&(a=c.extend({Accept:"application/json, */*;q=0.1"},a)),"string"==typeof s&&("PUT"!==(s=s.toUpperCase())&&"DELETE"!==s||(a=c.extend({"X-HTTP-Method-Override":s},a),s="POST")),delete(e=c.extend({},e,{headers:a,url:i,method:s})).path,delete e.namespace,delete e.endpoint,e},t.transport=c.ajax,window.wp=window.wp||{},window.wp.apiRequest=t}(jQuery); -------------------------------------------------------------------------------- /bin/pull_plugins: -------------------------------------------------------------------------------- 1 | # !/bin/bash 2 | # 3 | # Use this script on an OSX or Linux machine to sync plugings on WSUWP with 4 | # your local environment. This requires access to wsuwp-prod-01 and matching 5 | # SSH configuration. 6 | # 7 | 8 | if [[ -f 'pull_plugins' ]]; then 9 | LOCAL_PLUGINS='../www/wp-content/plugins' 10 | elif [[ -f 'Vagrantfile' ]]; then 11 | LOCAL_PLUGINS='www/wp-content/plugins' 12 | else 13 | echo "Error: Run from the project root or bin directory" 14 | exit 15 | fi 16 | 17 | cd $LOCAL_PLUGINS 18 | 19 | if [[ ! -f 'exclude.txt' ]]; then 20 | touch exclude.txt 21 | fi 22 | 23 | if [[ -f 'exclude-auto.txt' ]]; then 24 | rm exclude-auto.txt 25 | fi 26 | 27 | touch exclude-auto.txt 28 | 29 | for GIT_DIR in $(find . -maxdepth 2 -name '.git'); do 30 | echo $(basename $(dirname $GIT_DIR)) >> exclude-auto.txt 31 | done 32 | 33 | rsync -avz --delete --exclude-from 'exclude-auto.txt' --exclude-from 'exclude.txt' --exclude 'exclude-auto.txt' --exclude 'exclude.txt' wsuwpa-p2n01.web.wsu.edu:/var/www/wp-content/plugins/ ./ 34 | -------------------------------------------------------------------------------- /www/wordpress/wp-includes/js/jquery/ui/effect-transfer.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Effects Transfer 1.12.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | 10 | //>>label: Transfer Effect 11 | //>>group: Effects 12 | //>>description: Displays a transfer effect from one element to another. 13 | //>>docs: http://api.jqueryui.com/transfer-effect/ 14 | //>>demos: http://jqueryui.com/effect/ 15 | 16 | ( function( factory ) { 17 | if ( typeof define === "function" && define.amd ) { 18 | 19 | // AMD. Register as an anonymous module. 20 | define( [ 21 | "jquery", 22 | "./effect" 23 | ], factory ); 24 | } else { 25 | 26 | // Browser globals 27 | factory( jQuery ); 28 | } 29 | }( function( $ ) { 30 | 31 | var effect; 32 | if ( $.uiBackCompat !== false ) { 33 | effect = $.effects.define( "transfer", function( options, done ) { 34 | $( this ).transfer( options, done ); 35 | } ); 36 | } 37 | return effect; 38 | 39 | } ) ); 40 | -------------------------------------------------------------------------------- /www/wordpress/wp-admin/js/language-chooser.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @output wp-admin/js/language-chooser.js 3 | */ 4 | 5 | jQuery( function($) { 6 | /* 7 | * Set the correct translation to the continue button and show a spinner 8 | * when downloading a language. 9 | */ 10 | var select = $( '#language' ), 11 | submit = $( '#language-continue' ); 12 | 13 | if ( ! $( 'body' ).hasClass( 'language-chooser' ) ) { 14 | return; 15 | } 16 | 17 | select.focus().on( 'change', function() { 18 | /* 19 | * When a language is selected, set matching translation to continue button 20 | * and attach the language attribute. 21 | */ 22 | var option = select.children( 'option:selected' ); 23 | submit.attr({ 24 | value: option.data( 'continue' ), 25 | lang: option.attr( 'lang' ) 26 | }); 27 | }); 28 | 29 | $( 'form' ).submit( function() { 30 | // Show spinner for languages that need to be downloaded. 31 | if ( ! select.children( 'option:selected' ).data( 'installed' ) ) { 32 | $( this ).find( '.step .spinner' ).css( 'visibility', 'visible' ); 33 | } 34 | }); 35 | 36 | }); 37 | -------------------------------------------------------------------------------- /www/wordpress/wp-includes/sodium_compat/autoload-php7.php: -------------------------------------------------------------------------------- 1 | __( 'Two images side by side' ), 10 | 'categories' => array( 'gallery' ), 11 | 'description' => _x( 'An image gallery with two example images.', 'Block pattern description' ), 12 | 'content' => "\n\n", 13 | ); 14 | -------------------------------------------------------------------------------- /www/wordpress/wp-includes/js/wp-util.min.js: -------------------------------------------------------------------------------- 1 | /*! This file is auto-generated */ 2 | window.wp=window.wp||{},function(i){var e="undefined"==typeof _wpUtilSettings?{}:_wpUtilSettings;wp.template=_.memoize(function(t){var n,s={evaluate:/<#([\s\S]+?)#>/g,interpolate:/\{\{\{([\s\S]+?)\}\}\}/g,escape:/\{\{([^\}]+?)\}\}(?!\})/g,variable:"data"};return function(e){return(n=n||_.template(i("#tmpl-"+t).html(),s))(e)}}),wp.ajax={settings:e.ajax||{},post:function(e,t){return wp.ajax.send({data:_.isObject(e)?e:_.extend(t||{},{action:e})})},send:function(e,n){var t;return _.isObject(e)?n=e:(n=n||{}).data=_.extend(n.data||{},{action:e}),n=_.defaults(n||{},{type:"POST",url:wp.ajax.settings.url,context:this}),(e=(t=i.Deferred(function(t){n.success&&t.done(n.success),n.error&&t.fail(n.error),delete n.success,delete n.error,t.jqXHR=i.ajax(n).done(function(e){"1"!==e&&1!==e||(e={success:!0}),_.isObject(e)&&!_.isUndefined(e.success)?t[e.success?"resolveWith":"rejectWith"](this,[e.data]):t.rejectWith(this,[e])}).fail(function(){t.rejectWith(this,arguments)})})).promise()).abort=function(){return t.jqXHR.abort(),this},e}}}(jQuery); -------------------------------------------------------------------------------- /www/wordpress/wp-includes/js/dist/vendor/wp-polyfill-element-closest.js: -------------------------------------------------------------------------------- 1 | // element-closest | CC0-1.0 | github.com/jonathantneal/closest 2 | 3 | (function (ElementProto) { 4 | if (typeof ElementProto.matches !== 'function') { 5 | ElementProto.matches = ElementProto.msMatchesSelector || ElementProto.mozMatchesSelector || ElementProto.webkitMatchesSelector || function matches(selector) { 6 | var element = this; 7 | var elements = (element.document || element.ownerDocument).querySelectorAll(selector); 8 | var index = 0; 9 | 10 | while (elements[index] && elements[index] !== element) { 11 | ++index; 12 | } 13 | 14 | return Boolean(elements[index]); 15 | }; 16 | } 17 | 18 | if (typeof ElementProto.closest !== 'function') { 19 | ElementProto.closest = function closest(selector) { 20 | var element = this; 21 | 22 | while (element && element.nodeType === 1) { 23 | if (element.matches(selector)) { 24 | return element; 25 | } 26 | 27 | element = element.parentNode; 28 | } 29 | 30 | return null; 31 | }; 32 | } 33 | })(window.Element.prototype); 34 | -------------------------------------------------------------------------------- /www/wordpress/wp-includes/Requests/Exception/HTTP/Unknown.php: -------------------------------------------------------------------------------- 1 | code = $data->status_code; 40 | } 41 | 42 | parent::__construct($reason, $data); 43 | } 44 | } -------------------------------------------------------------------------------- /www/wordpress/wp-admin/network/edit.php: -------------------------------------------------------------------------------- 1 | checkCount || 'right' == side && 1 < checkCount && ( ! inputs[i-1] || ! inputs[i-1].checked ) ) && 16 | ! ( inputs[i+1] && inputs[i+1].checked && 'right' == inputs[i+1].getAttribute('name') ) ) 17 | inputs[i].style.visibility = 'hidden'; 18 | else if ( 'left' == side || 'right' == side ) 19 | inputs[i].style.visibility = 'visible'; 20 | } 21 | }; 22 | pr.onclick(); 23 | }; 24 | if ( w && w.addEventListener ) 25 | w.addEventListener('load', init, false); 26 | else if ( w && w.attachEvent ) 27 | w.attachEvent('onload', init); 28 | })(window); 29 | -------------------------------------------------------------------------------- /www/wordpress/wp-includes/IXR/class-IXR-error.php: -------------------------------------------------------------------------------- 1 | code = $code; 20 | $this->message = htmlspecialchars($message); 21 | } 22 | 23 | /** 24 | * PHP4 constructor. 25 | */ 26 | public function IXR_Error( $code, $message ) { 27 | self::__construct( $code, $message ); 28 | } 29 | 30 | function getXml() 31 | { 32 | $xml = << 34 | 35 | 36 | 37 | 38 | faultCode 39 | {$this->code} 40 | 41 | 42 | faultString 43 | {$this->message} 44 | 45 | 46 | 47 | 48 | 49 | 50 | EOD; 51 | return $xml; 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /www/wordpress/wp-includes/js/hoverIntent.min.js: -------------------------------------------------------------------------------- 1 | /*! This file is auto-generated */ 2 | !function(I){I.fn.hoverIntent=function(e,t,n){function r(e){o=e.pageX,v=e.pageY}var o,v,i,u,s={interval:100,sensitivity:6,timeout:0},s="object"==typeof e?I.extend(s,e):I.isFunction(t)?I.extend(s,{over:e,out:t,selector:n}):I.extend(s,{over:e,out:e,selector:t}),h=function(e,t){if(t.hoverIntent_t=clearTimeout(t.hoverIntent_t),Math.sqrt((i-o)*(i-o)+(u-v)*(u-v))").css({position:"absolute",visibility:"visible",left:-o*r,top:-t*u}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:r,height:u,left:s+(h?f*r:0),top:n+(h?d*u:0),opacity:h?0:1}).animate({left:s+(h?0:f*r),top:n+(h?0:d*u),opacity:h?1:0},e.duration||500,e.easing,y)})}); -------------------------------------------------------------------------------- /www/wordpress/wp-includes/js/tinymce/plugins/hr/plugin.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | var hr = (function () { 3 | 'use strict'; 4 | 5 | var global = tinymce.util.Tools.resolve('tinymce.PluginManager'); 6 | 7 | var register = function (editor) { 8 | editor.addCommand('InsertHorizontalRule', function () { 9 | editor.execCommand('mceInsertContent', false, '
'); 10 | }); 11 | }; 12 | var Commands = { register: register }; 13 | 14 | var register$1 = function (editor) { 15 | editor.addButton('hr', { 16 | icon: 'hr', 17 | tooltip: 'Horizontal line', 18 | cmd: 'InsertHorizontalRule' 19 | }); 20 | editor.addMenuItem('hr', { 21 | icon: 'hr', 22 | text: 'Horizontal line', 23 | cmd: 'InsertHorizontalRule', 24 | context: 'insert' 25 | }); 26 | }; 27 | var Buttons = { register: register$1 }; 28 | 29 | global.add('hr', function (editor) { 30 | Commands.register(editor); 31 | Buttons.register(editor); 32 | }); 33 | function Plugin () { 34 | } 35 | 36 | return Plugin; 37 | 38 | }()); 39 | })(); 40 | -------------------------------------------------------------------------------- /www/wordpress/wp-admin/js/password-strength-meter.min.js: -------------------------------------------------------------------------------- 1 | /*! This file is auto-generated */ 2 | window.wp=window.wp||{},function(l){var e=wp.i18n.__,n=wp.i18n.sprintf;wp.passwordStrength={meter:function(e,n,t){return l.isArray(n)||(n=[n.toString()]),e!=t&&t&&0 is not allowed.', event.line, event.col, self, event.raw ); 16 | return; 17 | } 18 | 19 | allowedAttributes = options[ tagName ]; 20 | col = event.col + event.tagName.length + 1; 21 | for ( i = 0, len = event.attrs.length; i < len; i++ ) { 22 | attr = event.attrs[ i ]; 23 | attrName = attr.name.toLowerCase(); 24 | if ( ! allowedAttributes[ attrName ] ) { 25 | reporter.error( 'Tag attribute [' + attr.raw + ' ] is not allowed.', event.line, col + attr.index, self, attr.raw ); 26 | } 27 | } 28 | }); 29 | } 30 | }); 31 | --------------------------------------------------------------------------------