diff -r be944660c56a -r 3d72ae0968f4 wp/wp-includes/js/dist/block-serialization-default-parser.js --- a/wp/wp-includes/js/dist/block-serialization-default-parser.js Wed Sep 21 18:19:35 2022 +0200 +++ b/wp/wp-includes/js/dist/block-serialization-default-parser.js Tue Sep 27 16:37:53 2022 +0200 @@ -1,98 +1,43 @@ -this["wp"] = this["wp"] || {}; this["wp"]["blockSerializationDefaultParser"] = -/******/ (function(modules) { // webpackBootstrap -/******/ // The module cache -/******/ var installedModules = {}; -/******/ -/******/ // The require function -/******/ function __webpack_require__(moduleId) { -/******/ -/******/ // Check if module is in cache -/******/ if(installedModules[moduleId]) { -/******/ return installedModules[moduleId].exports; -/******/ } -/******/ // Create a new module (and put it into the cache) -/******/ var module = installedModules[moduleId] = { -/******/ i: moduleId, -/******/ l: false, -/******/ exports: {} +/******/ (function() { // webpackBootstrap +/******/ "use strict"; +/******/ // The require scope +/******/ var __webpack_require__ = {}; +/******/ +/************************************************************************/ +/******/ /* webpack/runtime/define property getters */ +/******/ !function() { +/******/ // define getter functions for harmony exports +/******/ __webpack_require__.d = function(exports, definition) { +/******/ for(var key in definition) { +/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) { +/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] }); +/******/ } +/******/ } /******/ }; -/******/ -/******/ // Execute the module function -/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); -/******/ -/******/ // Flag the module as loaded -/******/ module.l = true; -/******/ -/******/ // Return the exports of the module -/******/ return module.exports; -/******/ } -/******/ -/******/ -/******/ // expose the modules object (__webpack_modules__) -/******/ __webpack_require__.m = modules; -/******/ -/******/ // expose the module cache -/******/ __webpack_require__.c = installedModules; -/******/ -/******/ // define getter function for harmony exports -/******/ __webpack_require__.d = function(exports, name, getter) { -/******/ if(!__webpack_require__.o(exports, name)) { -/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); -/******/ } -/******/ }; -/******/ -/******/ // define __esModule on exports -/******/ __webpack_require__.r = function(exports) { -/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { -/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); -/******/ } -/******/ Object.defineProperty(exports, '__esModule', { value: true }); -/******/ }; -/******/ -/******/ // create a fake namespace object -/******/ // mode & 1: value is a module id, require it -/******/ // mode & 2: merge all properties of value into the ns -/******/ // mode & 4: return value when already ns object -/******/ // mode & 8|1: behave like require -/******/ __webpack_require__.t = function(value, mode) { -/******/ if(mode & 1) value = __webpack_require__(value); -/******/ if(mode & 8) return value; -/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; -/******/ var ns = Object.create(null); -/******/ __webpack_require__.r(ns); -/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); -/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); -/******/ return ns; -/******/ }; -/******/ -/******/ // getDefaultExport function for compatibility with non-harmony modules -/******/ __webpack_require__.n = function(module) { -/******/ var getter = module && module.__esModule ? -/******/ function getDefault() { return module['default']; } : -/******/ function getModuleExports() { return module; }; -/******/ __webpack_require__.d(getter, 'a', getter); -/******/ return getter; -/******/ }; -/******/ -/******/ // Object.prototype.hasOwnProperty.call -/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; -/******/ -/******/ // __webpack_public_path__ -/******/ __webpack_require__.p = ""; -/******/ -/******/ -/******/ // Load entry module and return exports -/******/ return __webpack_require__(__webpack_require__.s = "SiJt"); -/******/ }) +/******/ }(); +/******/ +/******/ /* webpack/runtime/hasOwnProperty shorthand */ +/******/ !function() { +/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); } +/******/ }(); +/******/ +/******/ /* webpack/runtime/make namespace object */ +/******/ !function() { +/******/ // define __esModule on exports +/******/ __webpack_require__.r = function(exports) { +/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { +/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); +/******/ } +/******/ Object.defineProperty(exports, '__esModule', { value: true }); +/******/ }; +/******/ }(); +/******/ /************************************************************************/ -/******/ ({ - -/***/ "SiJt": -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; +var __webpack_exports__ = {}; __webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "parse", function() { return parse; }); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "parse": function() { return /* binding */ parse; } +/* harmony export */ }); let document; let offset; let output; @@ -259,13 +204,13 @@ function proceed() { const next = nextToken(); const [tokenType, blockName, attrs, startOffset, tokenLength] = next; - const stackDepth = stack.length; // we may have some HTML soup before the next block + const stackDepth = stack.length; // We may have some HTML soup before the next block. const leadingHtmlStart = startOffset > offset ? offset : null; switch (tokenType) { case 'no-more-tokens': - // if not in a block then flush output + // If not in a block then flush output. if (0 === stackDepth) { addFreeform(); return false; @@ -274,15 +219,15 @@ // we have options // - treat it all as freeform text // - assume an implicit closer (easiest when not nesting) - // for the easy case we'll assume an implicit closer + // For the easy case we'll assume an implicit closer. if (1 === stackDepth) { addBlockFromStack(); return false; - } // for the nested case where it's more difficult we'll + } // For the nested case where it's more difficult we'll // have to assume that multiple closers are missing - // and so we'll collapse the whole stack piecewise + // and so we'll collapse the whole stack piecewise. while (0 < stack.length) { @@ -293,7 +238,7 @@ case 'void-block': // easy case is if we stumbled upon a void block - // in the top-level of the document + // in the top-level of the document. if (0 === stackDepth) { if (null !== leadingHtmlStart) { output.push(Freeform(document.substr(leadingHtmlStart, startOffset - leadingHtmlStart))); @@ -302,7 +247,7 @@ output.push(Block(blockName, attrs, [], '', [])); offset = startOffset + tokenLength; return true; - } // otherwise we found an inner block + } // Otherwise we found an inner block. addInnerBlock(Block(blockName, attrs, [], '', []), startOffset, tokenLength); @@ -310,30 +255,30 @@ return true; case 'block-opener': - // track all newly-opened blocks on the stack + // Track all newly-opened blocks on the stack. stack.push(Frame(Block(blockName, attrs, [], '', []), startOffset, tokenLength, startOffset + tokenLength, leadingHtmlStart)); offset = startOffset + tokenLength; return true; case 'block-closer': - // if we're missing an opener we're in trouble - // This is an error + // If we're missing an opener we're in trouble + // This is an error. if (0 === stackDepth) { - // we have options + // We have options // - assume an implicit opener // - assume _this_ is the opener - // - give up and close out the document + // - give up and close out the document. addFreeform(); return false; - } // if we're not nesting then this is easy - close the block + } // If we're not nesting then this is easy - close the block. if (1 === stackDepth) { addBlockFromStack(startOffset); offset = startOffset + tokenLength; return true; - } // otherwise we're nested and we have to close out the current - // block and add it as a innerBlock to the parent + } // Otherwise we're nested and we have to close out the current + // block and add it as a innerBlock to the parent. const stackTop = stack.pop(); @@ -346,7 +291,7 @@ return true; default: - // This is an error + // This is an error. addFreeform(); return false; } @@ -372,13 +317,13 @@ } function nextToken() { - // aye the magic + // Aye the magic // we're using a single RegExp to tokenize the block comment delimiters // we're also using a trick here because the only difference between a // block opener and a block closer is the leading `/` before `wp:` (and // a closer has no attributes). we can trap them both and process the // match back in JavaScript to see which one it was. - const matches = tokenizer.exec(document); // we have no more tokens + const matches = tokenizer.exec(document); // We have no more tokens. if (null === matches) { return ['no-more-tokens']; @@ -386,7 +331,7 @@ const startedAt = matches.index; const [match, closerMatch, namespaceMatch, nameMatch, attrsMatch - /* internal/unused */ + /* Internal/unused. */ ,, voidMatch] = matches; const length = match.length; const isCloser = !!closerMatch; @@ -395,10 +340,10 @@ const name = namespace + nameMatch; const hasAttrs = !!attrsMatch; const attrs = hasAttrs ? parseJSON(attrsMatch) : {}; // This state isn't allowed - // This is an error + // This is an error. - if (isCloser && (isVoid || hasAttrs)) {// we can ignore them since they don't hurt anything - // we may warn against this at some point or reject it + if (isCloser && (isVoid || hasAttrs)) {// We can ignore them since they don't hurt anything + // we may warn against this at some point or reject it. } if (isVoid) { @@ -457,7 +402,6 @@ output.push(block); } - -/***/ }) - -/******/ }); \ No newline at end of file +(window.wp = window.wp || {}).blockSerializationDefaultParser = __webpack_exports__; +/******/ })() +; \ No newline at end of file