├── wp-content ├── index.php ├── themes │ ├── index.php │ ├── twentyten │ │ ├── screenshot.png │ │ ├── images │ │ │ ├── wordpress.png │ │ │ └── headers │ │ │ │ ├── fern.jpg │ │ │ │ ├── path.jpg │ │ │ │ ├── berries.jpg │ │ │ │ ├── concave.jpg │ │ │ │ ├── inkwell.jpg │ │ │ │ ├── sunset.jpg │ │ │ │ ├── forestfloor.jpg │ │ │ │ ├── cherryblossoms.jpg │ │ │ │ ├── fern-thumbnail.jpg │ │ │ │ ├── path-thumbnail.jpg │ │ │ │ ├── berries-thumbnail.jpg │ │ │ │ ├── concave-thumbnail.jpg │ │ │ │ ├── inkwell-thumbnail.jpg │ │ │ │ ├── sunset-thumbnail.jpg │ │ │ │ ├── forestfloor-thumbnail.jpg │ │ │ │ └── cherryblossoms-thumbnail.jpg │ │ ├── editor-style-rtl.css │ │ ├── single.php │ │ ├── attachment.php │ │ ├── onecolumn-page.php │ │ ├── tag.php │ │ ├── page.php │ │ ├── 404.php │ │ └── index.php │ ├── twentyeleven │ │ ├── screenshot.png │ │ ├── images │ │ │ ├── search.png │ │ │ ├── wordpress.png │ │ │ ├── comment-arrow.png │ │ │ ├── headers │ │ │ │ ├── hanoi.jpg │ │ │ │ ├── shore.jpg │ │ │ │ ├── wheel.jpg │ │ │ │ ├── trolley.jpg │ │ │ │ ├── willow.jpg │ │ │ │ ├── chessboard.jpg │ │ │ │ ├── lanterns.jpg │ │ │ │ ├── pine-cone.jpg │ │ │ │ ├── hanoi-thumbnail.jpg │ │ │ │ ├── shore-thumbnail.jpg │ │ │ │ ├── wheel-thumbnail.jpg │ │ │ │ ├── trolley-thumbnail.jpg │ │ │ │ ├── willow-thumbnail.jpg │ │ │ │ ├── chessboard-thumbnail.jpg │ │ │ │ ├── lanterns-thumbnail.jpg │ │ │ │ └── pine-cone-thumbnail.jpg │ │ │ ├── comment-bubble.png │ │ │ ├── comment-arrow-dark.png │ │ │ ├── comment-arrow-rtl.png │ │ │ ├── comment-bubble-rtl.png │ │ │ ├── comment-bubble-dark.png │ │ │ ├── comment-arrow-dark-rtl.png │ │ │ ├── comment-bubble-dark-rtl.png │ │ │ ├── comment-arrow-bypostauthor.png │ │ │ ├── comment-arrow-bypostauthor-rtl.png │ │ │ ├── comment-arrow-bypostauthor-dark.png │ │ │ └── comment-arrow-bypostauthor-dark-rtl.png │ │ ├── inc │ │ │ ├── images │ │ │ │ ├── dark.png │ │ │ │ ├── light.png │ │ │ │ ├── content.png │ │ │ │ ├── content-sidebar.png │ │ │ │ └── sidebar-content.png │ │ │ ├── theme-options.css │ │ │ └── theme-customizer.js │ │ ├── editor-style-rtl.css │ │ ├── js │ │ │ └── showcase.js │ │ ├── searchform.php │ │ ├── sidebar-page.php │ │ ├── page.php │ │ ├── content-intro.php │ │ └── content-page.php │ ├── twentytwelve │ │ ├── screenshot.png │ │ ├── sidebar.php │ │ ├── editor-style-rtl.css │ │ ├── content-none.php │ │ ├── footer.php │ │ ├── page.php │ │ ├── 404.php │ │ └── page-templates │ │ │ └── full-width.php │ ├── twentyfifteen │ │ ├── screenshot.png │ │ ├── genericons │ │ │ ├── Genericons.eot │ │ │ ├── Genericons.ttf │ │ │ └── Genericons.woff │ │ ├── js │ │ │ ├── keyboard-image-navigation.js │ │ │ ├── skip-link-focus-fix.js │ │ │ └── customize-preview.js │ │ ├── 404.php │ │ └── footer.php │ ├── twentyfourteen │ │ ├── screenshot.png │ │ ├── genericons │ │ │ ├── Genericons-Regular.otf │ │ │ └── font │ │ │ │ ├── genericons-regular-webfont.eot │ │ │ │ ├── genericons-regular-webfont.ttf │ │ │ │ └── genericons-regular-webfont.woff │ │ ├── js │ │ │ ├── featured-content-admin.js │ │ │ └── keyboard-image-navigation.js │ │ ├── sidebar-content.php │ │ ├── sidebar-footer.php │ │ ├── images │ │ │ └── pattern-light.svg │ │ ├── footer.php │ │ ├── 404.php │ │ ├── sidebar.php │ │ └── content-page.php │ ├── twentysixteen │ │ ├── screenshot.png │ │ ├── genericons │ │ │ ├── Genericons.eot │ │ │ ├── Genericons.ttf │ │ │ └── Genericons.woff │ │ ├── sidebar.php │ │ ├── js │ │ │ └── keyboard-image-navigation.js │ │ ├── searchform.php │ │ ├── sidebar-content-bottom.php │ │ ├── css │ │ │ └── ie.css │ │ └── 404.php │ ├── twentythirteen │ │ ├── screenshot.png │ │ ├── images │ │ │ ├── dotted-line.png │ │ │ ├── search-icon.png │ │ │ ├── headers │ │ │ │ ├── star.png │ │ │ │ ├── circle.png │ │ │ │ ├── diamond.png │ │ │ │ ├── star-thumbnail.png │ │ │ │ ├── circle-thumbnail.png │ │ │ │ └── diamond-thumbnail.png │ │ │ ├── dotted-line-2x.png │ │ │ ├── search-icon-2x.png │ │ │ ├── dotted-line-light.png │ │ │ └── dotted-line-light-2x.png │ │ ├── genericons │ │ │ ├── Genericons-Regular.otf │ │ │ └── font │ │ │ │ ├── genericons-regular-webfont.eot │ │ │ │ ├── genericons-regular-webfont.ttf │ │ │ │ └── genericons-regular-webfont.woff │ │ ├── sidebar-main.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── footer.php │ │ └── 404.php │ └── twentyseventeen │ │ ├── screenshot.png │ │ ├── assets │ │ ├── images │ │ │ ├── coffee.jpg │ │ │ ├── espresso.jpg │ │ │ ├── header.jpg │ │ │ └── sandwich.jpg │ │ └── js │ │ │ └── skip-link-focus-fix.js │ │ ├── template-parts │ │ ├── footer │ │ │ ├── site-info.php │ │ │ └── footer-widgets.php │ │ ├── header │ │ │ └── header-image.php │ │ └── page │ │ │ └── content-page.php │ │ └── sidebar.php └── plugins │ └── index.php ├── wp-admin ├── images │ ├── no.png │ ├── se.png │ ├── list.png │ ├── mask.png │ ├── menu.png │ ├── sort.gif │ ├── stars.png │ ├── wheel.png │ ├── 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 │ ├── resize.gif │ ├── sort-2x.gif │ ├── spinner.gif │ ├── xit-2x.gif │ ├── align-left.png │ ├── align-none.png │ ├── arrows-2x.png │ ├── bubble_bg.gif │ ├── icons32-2x.png │ ├── icons32-vs.png │ ├── menu-vs-2x.png │ ├── resize-2x.gif │ ├── resize-rtl.gif │ ├── spinner-2x.gif │ ├── stars-2x.png │ ├── align-center.png │ ├── align-right.png │ ├── browser-rtl.png │ ├── bubble_bg-2x.gif │ ├── date-button.gif │ ├── media-button.png │ ├── post-formats.png │ ├── w-logo-blue.png │ ├── w-logo-white.png │ ├── wpspin_light.gif │ ├── align-center-2x.png │ ├── align-left-2x.png │ ├── align-none-2x.png │ ├── align-right-2x.png │ ├── date-button-2x.gif │ ├── icons32-vs-2x.png │ ├── imgedit-icons.png │ ├── media-button-2x.png │ ├── post-formats-vs.png │ ├── post-formats32.png │ ├── resize-rtl-2x.gif │ ├── wordpress-logo.png │ ├── wpspin_light-2x.gif │ ├── imgedit-icons-2x.png │ ├── post-formats32-vs.png │ ├── 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 │ │ ├── coffee │ │ │ └── colors.scss │ │ ├── ocean │ │ │ └── colors.scss │ │ ├── ectoplasm │ │ │ └── colors.scss │ │ ├── sunrise │ │ │ └── colors.scss │ │ └── blue │ │ │ └── colors.scss │ ├── wp-admin.css │ ├── wp-admin-rtl.css │ ├── wp-admin.min.css │ ├── farbtastic.min.css │ ├── farbtastic-rtl.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 ├── user │ ├── index.php │ ├── profile.php │ ├── user-edit.php │ ├── about.php │ ├── credits.php │ ├── freedoms.php │ ├── privacy.php │ ├── menu.php │ └── admin.php ├── js │ ├── wp-fullscreen-stub.min.js │ ├── language-chooser.min.js │ ├── xfn.min.js │ ├── set-post-thumbnail.min.js │ ├── media-gallery.min.js │ ├── user-suggest.min.js │ ├── xfn.js │ ├── language-chooser.js │ ├── password-strength-meter.min.js │ ├── accordion.min.js │ ├── wp-fullscreen-stub.js │ └── set-post-thumbnail.js ├── moderation.php ├── profile.php ├── upgrade-functions.php ├── includes │ └── noop.php ├── admin-functions.php ├── options-head.php └── link-add.php ├── wp-includes ├── js │ ├── tw-sack.js │ ├── jcrop │ │ └── Jcrop.gif │ ├── crop │ │ ├── marqueeVert.gif │ │ └── marqueeHoriz.gif │ ├── thickbox │ │ ├── macFFBgHack.png │ │ └── loadingAnimation.gif │ ├── tinymce │ │ ├── wp-tinymce.js.gz │ │ └── 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 │ │ │ ├── audio.png │ │ │ ├── more.png │ │ │ ├── video.png │ │ │ ├── gallery.png │ │ │ ├── more-2x.png │ │ │ ├── embedded.png │ │ │ ├── gallery-2x.png │ │ │ ├── pagebreak.png │ │ │ ├── dashicon-no.png │ │ │ ├── pagebreak-2x.png │ │ │ ├── dashicon-edit.png │ │ │ ├── playlist-audio.png │ │ │ └── playlist-video.png │ ├── mediaelement │ │ ├── mejs-controls.png │ │ └── wp-mediaelement.min.js │ ├── imgareaselect │ │ ├── border-anim-h.gif │ │ ├── border-anim-v.gif │ │ └── imgareaselect.css │ ├── wpdialog.min.js │ ├── zxcvbn-async.min.js │ ├── wp-sanitize.min.js │ ├── wpdialog.js │ ├── wp-list-revisions.min.js │ ├── jquery │ │ ├── ui │ │ │ ├── effect-fade.min.js │ │ │ ├── effect-puff.min.js │ │ │ ├── effect-highlight.min.js │ │ │ ├── effect-pulsate.min.js │ │ │ ├── effect-transfer.min.js │ │ │ ├── effect-clip.min.js │ │ │ ├── effect-slide.min.js │ │ │ └── effect-drop.min.js │ │ └── jquery.serialize-object.js │ ├── zxcvbn-async.js │ ├── wp-a11y.min.js │ ├── api-request.min.js │ ├── wp-list-revisions.js │ └── wp-util.min.js ├── images │ ├── rss.png │ ├── xit.gif │ ├── blank.gif │ ├── rss-2x.png │ ├── spinner.gif │ ├── wpicons.png │ ├── wpspin.gif │ ├── xit-2x.gif │ ├── wpspin-2x.gif │ ├── crystal │ │ ├── code.png │ │ ├── text.png │ │ ├── audio.png │ │ ├── video.png │ │ ├── archive.png │ │ ├── default.png │ │ ├── document.png │ │ ├── interactive.png │ │ ├── spreadsheet.png │ │ └── license.txt │ ├── 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 │ ├── toggle-arrow.png │ ├── w-logo-blue.png │ ├── wlw │ │ ├── wp-icon.png │ │ ├── wp-comments.png │ │ └── wp-watermark.png │ ├── wpicons-2x.png │ ├── down_arrow-2x.gif │ ├── uploader-icons.png │ ├── admin-bar-sprite.png │ ├── icon-pointer-flag.png │ ├── smilies │ │ ├── frownie.png │ │ ├── icon_cool.gif │ │ ├── icon_cry.gif │ │ ├── icon_eek.gif │ │ ├── icon_evil.gif │ │ ├── icon_idea.gif │ │ ├── icon_lol.gif │ │ ├── icon_mad.gif │ │ ├── icon_razz.gif │ │ ├── icon_sad.gif │ │ ├── icon_wink.gif │ │ ├── mrgreen.png │ │ ├── rolleyes.png │ │ ├── icon_arrow.gif │ │ ├── icon_smile.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_surprised.gif │ │ ├── icon_twisted.gif │ │ └── simple-smile.png │ ├── toggle-arrow-2x.png │ ├── uploader-icons-2x.png │ ├── admin-bar-sprite-2x.png │ ├── arrow-pointer-blue.png │ ├── arrow-pointer-blue-2x.png │ └── icon-pointer-flag-2x.png ├── fonts │ ├── dashicons.eot │ ├── dashicons.ttf │ └── dashicons.woff ├── Requests │ ├── Exception │ │ ├── Transport.php │ │ └── HTTP │ │ │ ├── 410.php │ │ │ ├── 409.php │ │ │ ├── 403.php │ │ │ ├── 404.php │ │ │ ├── 305.php │ │ │ ├── 400.php │ │ │ ├── 502.php │ │ │ ├── 304.php │ │ │ ├── 401.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 │ │ │ ├── 500.php │ │ │ ├── 415.php │ │ │ ├── 413.php │ │ │ ├── 505.php │ │ │ ├── 407.php │ │ │ ├── 416.php │ │ │ ├── 418.php │ │ │ ├── 428.php │ │ │ ├── 431.php │ │ │ ├── 511.php │ │ │ └── 429.php │ ├── Hooker.php │ ├── Auth.php │ └── Proxy.php ├── locale.php ├── registration.php ├── registration-functions.php ├── rss-functions.php ├── session.php ├── embed-template.php ├── theme-compat │ ├── footer-embed.php │ ├── embed.php │ └── header-embed.php ├── IXR │ └── class-IXR-base64.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 ├── version.php ├── class-wp-text-diff-renderer-inline.php ├── rest-api │ └── fields │ │ ├── class-wp-rest-user-meta-fields.php │ │ └── class-wp-rest-comment-meta-fields.php └── class-wp-feed-cache.php ├── readme.html ├── wp-blog-header.php └── index.php /wp-content/index.php: -------------------------------------------------------------------------------- 1 | |$)/g,"").replace(/<(script|style)[^>]*>[\s\S]*?(<\/\1>|$)/gi,"").replace(/<\/?[a-z][\s\S]*?(>|$)/gi,"")},stripTagsAndEncodeText:function(a){var b=wp.sanitize.stripTags(a),c=document.createElement("textarea");try{c.innerHTML=b,b=wp.sanitize.stripTags(c.value)}catch(d){}return b}}}(); -------------------------------------------------------------------------------- /wp-admin/upgrade-functions.php: -------------------------------------------------------------------------------- 1 | 14 | 17 | -------------------------------------------------------------------------------- /wp-admin/includes/noop.php: -------------------------------------------------------------------------------- 1 | 12 |
13 | 14 |
15 | -------------------------------------------------------------------------------- /wp-content/themes/twentysixteen/sidebar.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 15 | 16 | -------------------------------------------------------------------------------- /wp-admin/admin-functions.php: -------------------------------------------------------------------------------- 1 | 12 |
13 | 14 |
15 | 16 |
17 | 18 | 19 | 20 |
21 | -------------------------------------------------------------------------------- /wp-content/themes/twentyfourteen/sidebar-footer.php: -------------------------------------------------------------------------------- 1 | 14 | 15 |
16 | 19 |
20 | -------------------------------------------------------------------------------- /wp-includes/Requests/Exception/HTTP/410.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 17 | 18 | -------------------------------------------------------------------------------- /wp-includes/Requests/Exception/HTTP/409.php: -------------------------------------------------------------------------------- 1 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /wp-includes/Requests/Exception/HTTP/414.php: -------------------------------------------------------------------------------- 1 | d||"right"==c&&1 13 | 18 | 19 | -------------------------------------------------------------------------------- /wp-includes/IXR/class-IXR-base64.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 | -------------------------------------------------------------------------------- /wp-includes/js/jquery/ui/effect-fade.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Effects Fade 1.11.4 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 | * http://api.jqueryui.com/fade-effect/ 10 | */ 11 | !function(a){"function"==typeof define&&define.amd?define(["jquery","./effect"],a):a(jQuery)}(function(a){return a.effects.effect.fade=function(b,c){var d=a(this),e=a.effects.setMode(d,b.mode||"toggle");d.animate({opacity:e},{queue:!1,duration:b.duration,easing:b.easing,complete:c})}}); -------------------------------------------------------------------------------- /wp-includes/Requests/Exception/HTTP/407.php: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /wp-includes/Requests/Exception/HTTP/416.php: -------------------------------------------------------------------------------- 1 | 17 | 18 | 21 | -------------------------------------------------------------------------------- /wp-content/themes/twentyfifteen/js/keyboard-image-navigation.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Twenty Fifteen keyboard support for image navigation. 3 | */ 4 | 5 | ( function( $ ) { 6 | $( document ).on( 'keydown.twentyfifteen', function( e ) { 7 | var url = false; 8 | 9 | // Left arrow key code. 10 | if ( e.which === 37 ) { 11 | url = $( '.nav-previous a' ).attr( 'href' ); 12 | 13 | // Right arrow key code. 14 | } else if ( e.which === 39 ) { 15 | url = $( '.nav-next a' ).attr( 'href' ); 16 | } 17 | 18 | if ( url && ( ! $( 'textarea, input' ).is( ':focus' ) ) ) { 19 | window.location = url; 20 | } 21 | } ); 22 | } )( jQuery ); 23 | -------------------------------------------------------------------------------- /wp-content/themes/twentyfourteen/js/keyboard-image-navigation.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Twenty Fourteen keyboard support for image navigation. 3 | */ 4 | ( function( $ ) { 5 | $( document ).on( 'keydown.twentyfourteen', function( e ) { 6 | var url = false; 7 | 8 | // Left arrow key code. 9 | if ( e.which === 37 ) { 10 | url = $( '.previous-image a' ).attr( 'href' ); 11 | 12 | // Right arrow key code. 13 | } else if ( e.which === 39 ) { 14 | url = $( '.entry-attachment a' ).attr( 'href' ); 15 | } 16 | 17 | if ( url && ( ! $( 'textarea, input' ).is( ':focus' ) ) ) { 18 | window.location = url; 19 | } 20 | } ); 21 | } )( jQuery ); -------------------------------------------------------------------------------- /wp-includes/Requests/Exception/HTTP/418.php: -------------------------------------------------------------------------------- 1 | ").html(a).text(),h===a&&(a+="\xa0"),h=a,g&&"assertive"===c?g.text(a):f&&f.text(a)}function d(a){a=a||"polite";var c=b("
",{id:"wp-a11y-speak-"+a,"aria-live":a,"aria-relevant":"additions text","aria-atomic":"true","class":"screen-reader-text wp-a11y-speak-region"});return b(document.body).append(c),c}function e(){b(".wp-a11y-speak-region").text("")}var f,g,h="";b(document).ready(function(){f=b("#wp-a11y-speak-polite"),g=b("#wp-a11y-speak-assertive"),f.length||(f=d("polite")),g.length||(g=d("assertive"))}),a.a11y=a.a11y||{},a.a11y.speak=c}(window.wp,window.jQuery); -------------------------------------------------------------------------------- /wp-includes/Requests/Exception/HTTP/428.php: -------------------------------------------------------------------------------- 1 | 10 |
11 | 12 | 13 | 14 |
15 | -------------------------------------------------------------------------------- /wp-admin/js/user-suggest.min.js: -------------------------------------------------------------------------------- 1 | !function(a){var b="undefined"!=typeof current_site_id?"&site_id="+current_site_id:"";a(document).ready(function(){var c={offset:"0, -1"};"undefined"!=typeof isRtl&&isRtl&&(c.my="right top",c.at="right bottom"),a(".wp-suggest-user").each(function(){var d=a(this),e="undefined"!=typeof d.data("autocompleteType")?d.data("autocompleteType"):"add",f="undefined"!=typeof d.data("autocompleteField")?d.data("autocompleteField"):"user_login";d.autocomplete({source:ajaxurl+"?action=autocomplete-user&autocomplete_type="+e+"&autocomplete_field="+f+b,delay:500,minLength:2,position:c,open:function(){a(this).addClass("open")},close:function(){a(this).removeClass("open")}})})})}(jQuery); -------------------------------------------------------------------------------- /wp-includes/customize/class-wp-customize-background-image-setting.php: -------------------------------------------------------------------------------- 1 | 15 | 22 | 23 | -------------------------------------------------------------------------------- /wp-includes/Requests/Exception/HTTP/429.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 | 15 | 23 | 24 |
25 |
26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /wp-content/themes/twentytwelve/content-none.php: -------------------------------------------------------------------------------- 1 | 10 | 11 |
12 |
13 |

14 |
15 | 16 |
17 |

18 | 19 |
20 |
21 | -------------------------------------------------------------------------------- /wp-content/themes/twentyten/attachment.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 | 15 | 23 | 24 |
25 |
26 | 27 | 28 | -------------------------------------------------------------------------------- /wp-admin/css/site-icon.min.css: -------------------------------------------------------------------------------- 1 | /*! This file is auto-generated */ 2 | .site-icon-preview .favicon-preview{margin:5px 0 20px;overflow:hidden;position:relative;max-width:180px}.site-icon-preview .browser-title,.site-icon-preview .favicon{height:16px;left:88px;overflow:hidden;position:absolute;top:16px}.site-icon-preview .favicon{width:16px}.site-icon-preview .browser-title{left:109px;width:72px;white-space:nowrap}.site-icon-preview .app-icon-preview{background-color:#000;border-radius:16px;height:64px;overflow:hidden;width:64px;margin-top:5px}.site-icon-preview .app-icon-preview,.site-icon-preview .favicon{direction:ltr}.customize-control-site_icon .favicon-preview{float:left;margin-right:12px;margin-bottom:0}.customize-control-site_icon .app-icon-preview{margin-top:9px} -------------------------------------------------------------------------------- /wp-admin/css/site-icon-rtl.min.css: -------------------------------------------------------------------------------- 1 | /*! This file is auto-generated */ 2 | .site-icon-preview .favicon-preview{margin:5px 0 20px;overflow:hidden;position:relative;max-width:180px}.site-icon-preview .browser-title,.site-icon-preview .favicon{height:16px;right:88px;overflow:hidden;position:absolute;top:16px}.site-icon-preview .favicon{width:16px}.site-icon-preview .browser-title{right:109px;width:72px;white-space:nowrap}.site-icon-preview .app-icon-preview{background-color:#000;border-radius:16px;height:64px;overflow:hidden;width:64px;margin-top:5px}.site-icon-preview .app-icon-preview,.site-icon-preview .favicon{direction:ltr}.customize-control-site_icon .favicon-preview{float:right;margin-left:12px;margin-bottom:0}.customize-control-site_icon .app-icon-preview{margin-top:9px} -------------------------------------------------------------------------------- /wp-admin/js/language-chooser.js: -------------------------------------------------------------------------------- 1 | jQuery( function($) { 2 | 3 | var select = $( '#language' ), 4 | submit = $( '#language-continue' ); 5 | 6 | if ( ! $( 'body' ).hasClass( 'language-chooser' ) ) { 7 | return; 8 | } 9 | 10 | select.focus().on( 'change', function() { 11 | var option = select.children( 'option:selected' ); 12 | submit.attr({ 13 | value: option.data( 'continue' ), 14 | lang: option.attr( 'lang' ) 15 | }); 16 | }); 17 | 18 | $( 'form' ).submit( function() { 19 | // Don't show a spinner for English and installed languages, 20 | // as there is nothing to download. 21 | if ( ! select.children( 'option:selected' ).data( 'installed' ) ) { 22 | $( this ).find( '.step .spinner' ).css( 'visibility', 'visible' ); 23 | } 24 | }); 25 | 26 | }); 27 | -------------------------------------------------------------------------------- /wp-content/themes/twentyeleven/sidebar-page.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
15 |
16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 |
30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /wp-includes/customize/class-wp-customize-filter-setting.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 | 15 | 16 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 |
29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /wp-admin/js/password-strength-meter.min.js: -------------------------------------------------------------------------------- 1 | window.wp=window.wp||{};var passwordStrength;!function(a){wp.passwordStrength={meter:function(b,c,d){if(a.isArray(c)||(c=[c.toString()]),b!=d&&d&&d.length>0)return 5;if("undefined"==typeof window.zxcvbn)return-1;var e=zxcvbn(b,c);return e.score},userInputBlacklist:function(){var b,c,d,e,f=[],g=[],h=["user_login","first_name","last_name","nickname","display_name","email","url","description","weblog_title","admin_email"];for(f.push(document.title),f.push(document.URL),c=h.length,b=0;bb.length)&&a.inArray(b,g)===c})}},passwordStrength=wp.passwordStrength.meter}(jQuery); -------------------------------------------------------------------------------- /wp-includes/version.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 18 | -------------------------------------------------------------------------------- /wp-includes/js/jquery/ui/effect-puff.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Effects Puff 1.11.4 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 | * http://api.jqueryui.com/puff-effect/ 10 | */ 11 | !function(a){"function"==typeof define&&define.amd?define(["jquery","./effect","./effect-scale"],a):a(jQuery)}(function(a){return a.effects.effect.puff=function(b,c){var d=a(this),e=a.effects.setMode(d,b.mode||"hide"),f="hide"===e,g=parseInt(b.percent,10)||150,h=g/100,i={height:d.height(),width:d.width(),outerHeight:d.outerHeight(),outerWidth:d.outerWidth()};a.extend(b,{effect:"scale",queue:!1,fade:!0,mode:e,complete:c,percent:f?g:100,from:f?i:{height:i.height*h,width:i.width*h,outerHeight:i.outerHeight*h,outerWidth:i.outerWidth*h}}),d.effect(b)}}); -------------------------------------------------------------------------------- /wp-includes/js/jquery/ui/effect-highlight.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Effects Highlight 1.11.4 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 | * http://api.jqueryui.com/highlight-effect/ 10 | */ 11 | !function(a){"function"==typeof define&&define.amd?define(["jquery","./effect"],a):a(jQuery)}(function(a){return a.effects.effect.highlight=function(b,c){var d=a(this),e=["backgroundImage","backgroundColor","opacity"],f=a.effects.setMode(d,b.mode||"show"),g={backgroundColor:d.css("backgroundColor")};"hide"===f&&(g.opacity=0),a.effects.save(d,e),d.show().css({backgroundImage:"none",backgroundColor:b.color||"#ffff99"}).animate(g,{queue:!1,duration:b.duration,easing:b.easing,complete:function(){"hide"===f&&d.hide(),a.effects.restore(d,e),c()}})}}); -------------------------------------------------------------------------------- /wp-admin/user/menu.php: -------------------------------------------------------------------------------- 1 | 1&&m.splice.apply(m,[1,0].concat(m.splice(n,j+1))),e.dequeue()}}); -------------------------------------------------------------------------------- /wp-content/themes/twentythirteen/footer.php: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 |
15 | 16 | 17 |
18 | 19 | 20 |
21 |
22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /wp-includes/Requests/Hooker.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 | } -------------------------------------------------------------------------------- /wp-admin/link-add.php: -------------------------------------------------------------------------------- 1 | 16 | 17 |
18 |
19 | 20 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 |
32 |
33 | 34 | 35 | -------------------------------------------------------------------------------- /wp-content/themes/twentyseventeen/assets/js/skip-link-focus-fix.js: -------------------------------------------------------------------------------- 1 | /** 2 | * File skip-link-focus-fix.js. 3 | * 4 | * Helps with accessibility for keyboard only users. 5 | * 6 | * Learn more: https://git.io/vWdr2 7 | */ 8 | (function() { 9 | var isIe = /(trident|msie)/i.test( navigator.userAgent ); 10 | 11 | if ( isIe && document.getElementById && window.addEventListener ) { 12 | window.addEventListener( 'hashchange', function() { 13 | var id = location.hash.substring( 1 ), 14 | element; 15 | 16 | if ( ! ( /^[A-z0-9_-]+$/.test( id ) ) ) { 17 | return; 18 | } 19 | 20 | element = document.getElementById( id ); 21 | 22 | if ( element ) { 23 | if ( ! ( /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) ) { 24 | element.tabIndex = -1; 25 | } 26 | 27 | element.focus(); 28 | } 29 | }, false ); 30 | } 31 | })(); 32 | -------------------------------------------------------------------------------- /wp-content/themes/twentytwelve/footer.php: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 |
15 | 16 | 17 |
18 |
19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /wp-includes/theme-compat/header-embed.php: -------------------------------------------------------------------------------- 1 | 18 | 19 | class="no-js"> 20 | 21 | <?php echo wp_get_document_title(); ?> 22 | 23 | tag. 26 | * 27 | * @since 4.4.0 28 | */ 29 | do_action( 'embed_head' ); 30 | ?> 31 | 32 | > 33 | -------------------------------------------------------------------------------- /wp-admin/js/wp-fullscreen-stub.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Distraction-Free Writing (wp-fullscreen) backward compatibility stub. 3 | * Todo: remove at the end of 2016. 4 | * 5 | * Original was deprecated in 4.1, removed in 4.3. 6 | */ 7 | ( function() { 8 | var noop = function(){}; 9 | 10 | window.wp = window.wp || {}; 11 | window.wp.editor = window.wp.editor || {}; 12 | window.wp.editor.fullscreen = { 13 | bind_resize: noop, 14 | dfwWidth: noop, 15 | off: noop, 16 | on: noop, 17 | refreshButtons: noop, 18 | resizeTextarea: noop, 19 | save: noop, 20 | switchmode: noop, 21 | toggleUI: noop, 22 | 23 | settings: {}, 24 | pubsub: { 25 | publish: noop, 26 | subscribe: noop, 27 | unsubscribe: noop, 28 | topics: {} 29 | }, 30 | fade: { 31 | In: noop, 32 | Out: noop 33 | }, 34 | ui: { 35 | fade: noop, 36 | init: noop 37 | } 38 | }; 39 | }()); 40 | -------------------------------------------------------------------------------- /wp-content/themes/twentyten/onecolumn-page.php: -------------------------------------------------------------------------------- 1 | 16 | 17 |
18 |
19 | 20 | 28 | 29 |
30 |
31 | 32 | 33 | -------------------------------------------------------------------------------- /wp-content/themes/twentyten/tag.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 | 15 |

16 | ' . single_tag_title( '', false ) . '' ); 18 | ?> 19 |

20 | 21 | 29 |
30 |
31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /wp-content/themes/twentyfifteen/js/skip-link-focus-fix.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Makes "skip to content" link work correctly in IE9, Chrome, and Opera 3 | * for better accessibility. 4 | * 5 | * @link http://www.nczonline.net/blog/2013/01/15/fixing-skip-to-content-links/ 6 | */ 7 | 8 | ( function() { 9 | var ua = navigator.userAgent.toLowerCase(); 10 | 11 | if ( ( ua.indexOf( 'webkit' ) > -1 || ua.indexOf( 'opera' ) > -1 || ua.indexOf( 'msie' ) > -1 ) && 12 | document.getElementById && window.addEventListener ) { 13 | 14 | window.addEventListener( 'hashchange', function() { 15 | var element = document.getElementById( location.hash.substring( 1 ) ); 16 | 17 | if ( element ) { 18 | if ( ! /^(?:a|select|input|button|textarea)$/i.test( element.nodeName ) ) { 19 | element.tabIndex = -1; 20 | } 21 | 22 | element.focus(); 23 | } 24 | }, false ); 25 | } 26 | } )(); 27 | -------------------------------------------------------------------------------- /wp-content/themes/twentyfourteen/footer.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 |
20 | 21 | 22 |
23 |
24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /wp-content/themes/twentyfourteen/404.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 |
14 |
15 | 16 | 19 | 20 |
21 |

22 | 23 | 24 |
25 | 26 |
27 |
28 | 29 | 16 | 17 |
18 |
19 | 20 | 24 | 25 | 26 | 27 | 28 |
29 |
30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /wp-includes/class-wp-text-diff-renderer-inline.php: -------------------------------------------------------------------------------- 1 | 10 | 11 |
> 12 |
13 |

14 |
15 | 16 |
17 | 18 | '', 23 | ) 24 | ); 25 | ?> 26 | ', '' ); ?> 27 |
28 |
29 | -------------------------------------------------------------------------------- /wp-content/themes/twentyeleven/inc/theme-customizer.js: -------------------------------------------------------------------------------- 1 | ( function( $ ){ 2 | wp.customize( 'blogname', function( value ) { 3 | value.bind( function( to ) { 4 | $( '#site-title a' ).text( to ); 5 | } ); 6 | } ); 7 | wp.customize( 'blogdescription', function( value ) { 8 | value.bind( function( to ) { 9 | $( '#site-description' ).text( to ); 10 | } ); 11 | } ); 12 | 13 | // Header text color 14 | wp.customize( 'header_textcolor', function( value ) { 15 | value.bind( function( to ) { 16 | if ( 'blank' === to ) { 17 | $( '#site-title, #site-title a, #site-description' ).css( { 18 | 'clip': 'rect(1px, 1px, 1px, 1px)', 19 | 'position': 'absolute' 20 | } ); 21 | } else { 22 | $( '#site-title, #site-title a, #site-description' ).css( { 23 | 'clip': 'auto', 24 | 'color': to, 25 | 'position': 'relative' 26 | } ); 27 | } 28 | } ); 29 | } ); 30 | } )( jQuery ); -------------------------------------------------------------------------------- /wp-includes/class-wp-feed-cache.php: -------------------------------------------------------------------------------- 1 | 16 | 17 |
18 |
19 | 20 | 28 | 29 |
30 |
31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /wp-includes/js/jquery/ui/effect-transfer.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Effects Transfer 1.11.4 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 | * http://api.jqueryui.com/transfer-effect/ 10 | */ 11 | !function(a){"function"==typeof define&&define.amd?define(["jquery","./effect"],a):a(jQuery)}(function(a){return a.effects.effect.transfer=function(b,c){var d=a(this),e=a(b.to),f="fixed"===e.css("position"),g=a("body"),h=f?g.scrollTop():0,i=f?g.scrollLeft():0,j=e.offset(),k={top:j.top-h,left:j.left-i,height:e.innerHeight(),width:e.innerWidth()},l=d.offset(),m=a("
").appendTo(document.body).addClass(b.className).css({top:l.top-h,left:l.left-i,height:d.innerHeight(),width:d.innerWidth(),position:f?"fixed":"absolute"}).animate(k,b.duration,b.easing,function(){m.remove(),c()})}}); -------------------------------------------------------------------------------- /wp-content/themes/twentyseventeen/template-parts/page/content-page.php: -------------------------------------------------------------------------------- 1 | 14 | 15 |
> 16 |
17 | ', '' ); ?> 18 | 19 |
20 |
21 | '', 28 | ) 29 | ); 30 | ?> 31 |
32 |
33 | -------------------------------------------------------------------------------- /wp-includes/js/mediaelement/wp-mediaelement.min.js: -------------------------------------------------------------------------------- 1 | !function(a,b){function c(){function a(){"undefined"!=typeof _wpmejsSettings&&(c=b.extend(!0,{},_wpmejsSettings)),c.classPrefix="mejs-",c.success=c.success||function(a){var b,c;a.rendererName&&-1!==a.rendererName.indexOf("flash")&&(b=a.attributes.autoplay&&"false"!==a.attributes.autoplay,c=a.attributes.loop&&"false"!==a.attributes.loop,b&&a.addEventListener("canplay",function(){a.play()},!1),c&&a.addEventListener("ended",function(){a.play()},!1))},c.customError=function(a,b){if(-1!==a.rendererName.indexOf("flash")||-1!==a.rendererName.indexOf("flv"))return''+mejsL10n.strings["mejs.download-video"]+""},b(".wp-audio-shortcode, .wp-video-shortcode").not(".mejs-container").filter(function(){return!b(this).parent().hasClass("mejs-mediaelement")}).mediaelementplayer(c)}var c={};return{initialize:a}}a.wp=a.wp||{},a.wp.mediaelement=new c,b(a.wp.mediaelement.initialize)}(window,jQuery); -------------------------------------------------------------------------------- /wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | 17 | 18 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /wp-includes/customize/class-wp-customize-nav-menu-section.php: -------------------------------------------------------------------------------- 1 | id ) ); 38 | 39 | return $exported; 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /wp-content/themes/twentyeleven/content-page.php: -------------------------------------------------------------------------------- 1 | 10 | 11 |
> 12 |
13 |

14 |
15 | 16 |
17 | 18 | '', 23 | ) 24 | ); 25 | ?> 26 |
27 |
28 | ', '' ); ?> 29 |
30 |
31 | -------------------------------------------------------------------------------- /wp-content/themes/twentysixteen/sidebar-content-bottom.php: -------------------------------------------------------------------------------- 1 | 16 | 29 | -------------------------------------------------------------------------------- /wp-content/themes/twentytwelve/404.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 | 15 |
16 |
17 |

18 |
19 | 20 |
21 |

22 | 23 |
24 |
25 | 26 |
27 |
28 | 29 | 30 | -------------------------------------------------------------------------------- /wp-content/themes/twentyfifteen/404.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 | 15 |
16 | 19 | 20 |
21 |

22 | 23 | 24 |
25 |
26 | 27 |
28 |
29 | 30 | 31 | -------------------------------------------------------------------------------- /wp-includes/Requests/Auth.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 | 15 |
16 |

17 |
18 |

19 | 20 |
21 |
22 | 23 |
24 |
25 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /wp-admin/user/admin.php: -------------------------------------------------------------------------------- 1 | domain != $current_site->domain ) || ( $current_blog->path != $current_site->path ) ); 20 | /** 21 | * Filters whether to redirect the request to the User Admin in Multisite. 22 | * 23 | * @since 3.2.0 24 | * 25 | * @param bool $redirect_user_admin_request Whether the request should be redirected. 26 | */ 27 | $redirect_user_admin_request = apply_filters( 'redirect_user_admin_request', $redirect_user_admin_request ); 28 | if ( $redirect_user_admin_request ) { 29 | wp_redirect( user_admin_url() ); 30 | exit; 31 | } 32 | unset( $redirect_user_admin_request ); 33 | -------------------------------------------------------------------------------- /wp-content/themes/twentysixteen/css/ie.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: Twenty Sixteen 3 | Description: Global Styles for older IE versions (previous to IE10). 4 | */ 5 | 6 | .site-header-main:before, 7 | .site-header-main:after, 8 | .site-footer:before, 9 | .site-footer:after { 10 | content: ""; 11 | display: table; 12 | } 13 | 14 | .site-header-main:after, 15 | .site-footer:after { 16 | clear: both; 17 | } 18 | 19 | @media screen and (min-width: 56.875em) { 20 | .site-branding, 21 | .site-info { 22 | float: left; 23 | } 24 | 25 | .site-header-menu, 26 | .site-footer .social-navigation { 27 | float: right; 28 | } 29 | 30 | .site-footer .social-navigation { 31 | margin-left: 7px; 32 | } 33 | 34 | .rtl .site-branding, 35 | .rtl .site-info { 36 | float: right; 37 | } 38 | 39 | .rtl .site-header-menu, 40 | .rtl .site-footer .social-navigation { 41 | float: left; 42 | } 43 | 44 | .rtl .site-footer .social-navigation { 45 | margin-right: 7px; 46 | margin-left: 0; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /wp-content/themes/twentyfifteen/footer.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 15 |
16 |
17 | 25 | 26 |
27 |
28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /wp-content/themes/twentyfourteen/sidebar.php: -------------------------------------------------------------------------------- 1 | 10 |
11 | 15 |

16 | 17 | 18 | 19 | 22 | 23 | 24 | 25 | 28 | 29 |
30 | -------------------------------------------------------------------------------- /wp-content/themes/twentythirteen/404.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 | 15 | 18 | 19 |
20 |
21 |

22 |

23 | 24 | 25 |
26 |
27 | 28 |
29 |
30 | 31 | 32 | -------------------------------------------------------------------------------- /wp-includes/js/imgareaselect/imgareaselect.css: -------------------------------------------------------------------------------- 1 | /* 2 | * imgAreaSelect animated border style 3 | */ 4 | 5 | .imgareaselect-border1 { 6 | background: url(border-anim-v.gif) repeat-y left top; 7 | } 8 | 9 | .imgareaselect-border2 { 10 | background: url(border-anim-h.gif) repeat-x left top; 11 | } 12 | 13 | .imgareaselect-border3 { 14 | background: url(border-anim-v.gif) repeat-y right top; 15 | } 16 | 17 | .imgareaselect-border4 { 18 | background: url(border-anim-h.gif) repeat-x left bottom; 19 | } 20 | 21 | .imgareaselect-border1, .imgareaselect-border2, 22 | .imgareaselect-border3, .imgareaselect-border4 { 23 | filter: alpha(opacity=50); 24 | opacity: 0.5; 25 | } 26 | 27 | .imgareaselect-handle { 28 | background-color: #fff; 29 | border: solid 1px #000; 30 | filter: alpha(opacity=50); 31 | opacity: 0.5; 32 | } 33 | 34 | .imgareaselect-outer { 35 | background-color: #000; 36 | filter: alpha(opacity=50); 37 | opacity: 0.5; 38 | } 39 | 40 | .imgareaselect-selection { 41 | } 42 | -------------------------------------------------------------------------------- /wp-content/themes/twentytwelve/page-templates/full-width.php: -------------------------------------------------------------------------------- 1 | 18 | 19 |
20 |
21 | 22 | 26 | 27 | 28 | 29 | 30 |
31 |
32 | 33 | 34 | -------------------------------------------------------------------------------- /wp-includes/js/jquery/ui/effect-slide.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Effects Slide 1.11.4 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 | * http://api.jqueryui.com/slide-effect/ 10 | */ 11 | !function(a){"function"==typeof define&&define.amd?define(["jquery","./effect"],a):a(jQuery)}(function(a){return a.effects.effect.slide=function(b,c){var d,e=a(this),f=["position","top","bottom","left","right","width","height"],g=a.effects.setMode(e,b.mode||"show"),h="show"===g,i=b.direction||"left",j="up"===i||"down"===i?"top":"left",k="up"===i||"left"===i,l={};a.effects.save(e,f),e.show(),d=b.distance||e["top"===j?"outerHeight":"outerWidth"](!0),a.effects.createWrapper(e).css({overflow:"hidden"}),h&&e.css(j,k?isNaN(d)?"-"+d:-d:d),l[j]=(h?k?"+=":"-=":k?"-=":"+=")+d,e.animate(l,{queue:!1,duration:b.duration,easing:b.easing,complete:function(){"hide"===g&&e.hide(),a.effects.restore(e,f),a.effects.removeWrapper(e),c()}})}}); -------------------------------------------------------------------------------- /wp-content/themes/twentyfifteen/js/customize-preview.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Live-update changed settings in real time in the Customizer preview. 3 | */ 4 | 5 | ( function( $ ) { 6 | var $style = $( '#twentyfifteen-color-scheme-css' ), 7 | api = wp.customize; 8 | 9 | if ( ! $style.length ) { 10 | $style = $( 'head' ).append( '