You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2022/12/09 12:34:19 UTC

[myfaces] branch 2.3.x updated (e7faabed5 -> cbeb3102c)

This is an automated email from the ASF dual-hosted git repository.

werpu pushed a change to branch 2.3.x
in repository https://gitbox.apache.org/repos/asf/myfaces.git


    from e7faabed5 MYFACES-4512: avoid NPE in createView (#407)
     new 0b49839d6 https://issues.apache.org/jira/browse/MYFACES-4521: fix for params which we already have in the new codebase
     new c5ef17fc9 https://issues.apache.org/jira/browse/MYFACES-4499: fixing NaN and other invalid delay values are not causing proper exception
     new 68cb8ea8a https://issues.apache.org/jira/browse/MYFACES-4522: rolling back the 2.3-Next js code into the official 2.3 branch, to get all fixes in. New browser baseline now is IE9, due to some APIs used.
     new 8b2caf4c6 https://issues.apache.org/jira/browse/MYFACES-4522: updating the build files
     new dd24f99cd https://issues.apache.org/jira/browse/MYFACES-4522: simplifying the resource handling now only minimal and development with i18n split into its own file for prod! (parts of the changes will be rolled back into next)
     new 0f8f805bb https://issues.apache.org/jira/browse/MYFACES-4526: Simplifying the resource builds
     new 5101d6bac MYFACES-4526
     new 975b5f25d https://issues.apache.org/jira/browse/MYFACES-4526: Simplifying the resource builds
     new cbeb3102c Merge pull request #415 from werpu/2.3.x

The 4729 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 api/pom.xml                                        | 107 +---
 api/src/assembler/jsdoc-compiler.xml               |   3 +-
 api/src/assembler/jsfscripts-compiler.xml          |  40 +-
 ...ler.xml => jsfscripts-development-compiler.xml} |  26 +-
 api/src/assembler/jsfscripts-experimental.xml      |  42 --
 api/src/assembler/jsfscripts-legacy.xml            |  52 --
 ...iler.xml => jsfscripts-production-compiler.xml} |  30 +-
 .../assembler/jsfscripts-uncompressed-compiler.xml |  31 --
 .../jsfscripts-uncompressed-full-compiler.xml      |  98 ----
 .../javax/faces/application/ResourceHandler.java   |  14 +-
 .../META-INF/resources/myfaces/_impl/_util/_Dom.js | 250 +++++----
 .../myfaces/_impl/_util/_DomExperimental.js        |  37 --
 .../resources/myfaces/_impl/_util/_DomQuirks.js    | 599 ---------------------
 .../resources/myfaces/_impl/_util/_ExtDom.js       | 369 -------------
 .../resources/myfaces/_impl/_util/_ExtLang.js      | 104 ----
 .../resources/myfaces/_impl/_util/_Lang.js         |   4 +-
 .../resources/myfaces/_impl/_util/_LangQuirks.js   | 234 --------
 .../resources/myfaces/_impl/_util/_OamSubmit.js    |  10 -
 .../resources/myfaces/_impl/_util/_UnitTest.js     |  62 ---
 .../META-INF/resources/myfaces/_impl/core/Impl.js  | 134 ++++-
 .../resources/myfaces/_impl/core/Object.js         |  22 -
 .../resources/myfaces/_impl/core/_EvalHandlers.js  | 161 +++---
 .../resources/myfaces/_impl/core/_Runtime.js       |  23 +-
 .../resources/myfaces/_impl/core/_RuntimeQuirks.js |  51 --
 .../myfaces/_impl/core/jsf-uncompressed.js         |  13 +-
 .../myfaces/_impl/xhrCore/_AjaxRequest.js          | 214 ++++----
 .../myfaces/_impl/xhrCore/_AjaxResponse.js         | 119 ++--
 .../myfaces/_impl/xhrCore/_ExtTransport.js         | 176 ------
 .../{_ExtAjaxRequest.js => _FormDataRequest.js}    |  40 +-
 .../myfaces/_impl/xhrCore/_IFrameRequest.js        |  81 ---
 .../myfaces/_impl/xhrCore/_PartialSubmitUtils.js   | 126 -----
 .../resources/myfaces/_impl/xhrCore/_Transports.js | 391 +++++++++-----
 .../META-INF/resources/myfaces/api/jsf.js          |  29 +-
 .../application/DefaultResourceHandlerSupport.java |  73 +--
 .../InternalClassLoaderResourceLoader.java         | 112 +---
 .../shared/renderkit/html/util/ResourceUtils.java  |  13 +-
 36 files changed, 879 insertions(+), 3011 deletions(-)
 rename api/src/assembler/{jsfscripts-minimal-compiler.xml => jsfscripts-development-compiler.xml} (76%)
 delete mode 100644 api/src/assembler/jsfscripts-experimental.xml
 delete mode 100644 api/src/assembler/jsfscripts-legacy.xml
 rename api/src/assembler/{jsfscripts-minimal-modern-compiler.xml => jsfscripts-production-compiler.xml} (78%)
 delete mode 100644 api/src/assembler/jsfscripts-uncompressed-compiler.xml
 delete mode 100644 api/src/assembler/jsfscripts-uncompressed-full-compiler.xml
 delete mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_DomExperimental.js
 delete mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_DomQuirks.js
 delete mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_ExtDom.js
 delete mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_ExtLang.js
 delete mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_LangQuirks.js
 delete mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_UnitTest.js
 delete mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/core/_RuntimeQuirks.js
 delete mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/_ExtTransport.js
 copy api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/{_ExtAjaxRequest.js => _FormDataRequest.js} (70%)
 delete mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/_IFrameRequest.js
 delete mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/_PartialSubmitUtils.js