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/14 15:16:00 UTC

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

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 cbeb3102c Merge pull request #415 from werpu/2.3.x
     new a11be6a90 Revert "https://issues.apache.org/jira/browse/MYFACES-4526:"
     new 5650d830c Revert "MYFACES-4526"
     new 9d8f66737 Revert "https://issues.apache.org/jira/browse/MYFACES-4526:"
     new 221c5d13b Revert "https://issues.apache.org/jira/browse/MYFACES-4522: simplifying the resource handling now only minimal and development"
     new b4667574a Revert "https://issues.apache.org/jira/browse/MYFACES-4522: updating the build files"
     new 55b96b546 Revert "https://issues.apache.org/jira/browse/MYFACES-4522: rolling back the 2.3-Next js code into the official 2.3 branch, to get"
     new fef23f5bb Merge pull request #432 from werpu/2.3.x

The 4736 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 +-
 ...8n-compiler.xml => jsfscripts-experimental.xml} |  27 +-
 api/src/assembler/jsfscripts-legacy.xml            |  52 ++
 ...ompiler.xml => jsfscripts-minimal-compiler.xml} |  26 +-
 ....xml => jsfscripts-minimal-modern-compiler.xml} |  30 +-
 .../assembler/jsfscripts-uncompressed-compiler.xml |  10 +-
 ...l => jsfscripts-uncompressed-full-compiler.xml} |  46 +-
 .../javax/faces/application/ResourceHandler.java   |  14 +-
 .../META-INF/resources/myfaces/_impl/_util/_Dom.js | 250 ++++-----
 .../XhrConst.js => _util/_DomExperimental.js}      |  44 +-
 .../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  | 118 +---
 .../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 ++++++
 .../myfaces/_impl/xhrCore/_FormDataRequest.js      |  74 ---
 .../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, 2861 insertions(+), 966 deletions(-)
 copy api/src/assembler/{jsfscripts-i18n-compiler.xml => jsfscripts-experimental.xml} (59%)
 create mode 100644 api/src/assembler/jsfscripts-legacy.xml
 rename api/src/assembler/{jsfscripts-development-compiler.xml => jsfscripts-minimal-compiler.xml} (76%)
 rename api/src/assembler/{jsfscripts-production-compiler.xml => jsfscripts-minimal-modern-compiler.xml} (78%)
 copy shared/src/assembler/myfacesscripts-uncompressed-compiler.xml => api/src/assembler/jsfscripts-uncompressed-compiler.xml (74%)
 copy api/src/assembler/{jsfscripts-compiler.xml => jsfscripts-uncompressed-full-compiler.xml} (61%)
 copy api/src/main/javascript/META-INF/resources/myfaces/_impl/{xhrCore/engine/XhrConst.js => _util/_DomExperimental.js} (51%)
 create mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_DomQuirks.js
 create mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_ExtDom.js
 create mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_ExtLang.js
 create mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_LangQuirks.js
 create mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_UnitTest.js
 create mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/core/_RuntimeQuirks.js
 create mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/_ExtTransport.js
 delete mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/_FormDataRequest.js
 create mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/_IFrameRequest.js
 create mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/_PartialSubmitUtils.js