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/20 15:34:55 UTC

[myfaces] branch 3.0.x updated (16c669644 -> c8373a64b)

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

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


    from 16c669644 Merge pull request #430 from volosied/port-fixes-3.0.x
     new cb1ead322 https://issues.apache.org/jira/browse/MYFACES-4538: unification between next and stable (minimal changes in the core code, tested against old browsers) Removal of unused experimental scripts, which made it into next already
     new 5f446ee98 https://issues.apache.org/jira/browse/MYFACES-4538: reenabling legacy browser compatibility by adding the shims for dom lang and runtime
     new 3739f13fe Merge branch 'apache:3.0.x' into 3.0.x
     new c8373a64b Merge pull request #447 from werpu/3.0.x

The 4781 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/src/assembler/jsdoc-compiler.xml               |   1 -
 api/src/assembler/jsfscripts-compiler.xml          |  13 +-
 api/src/assembler/jsfscripts-experimental.xml      |   1 -
 api/src/assembler/jsfscripts-legacy.xml            |  11 +-
 api/src/assembler/jsfscripts-minimal-compiler.xml  |  13 +-
 .../jsfscripts-minimal-modern-compiler.xml         |   2 +-
 .../assembler/jsfscripts-uncompressed-compiler.xml |   2 +-
 .../jsfscripts-uncompressed-full-compiler.xml      |  12 +-
 .../META-INF/resources/myfaces/_impl/_util/_Dom.js | 352 ++++++++++++-------
 .../resources/myfaces/_impl/_util/_Lang.js         |  18 +-
 .../META-INF/resources/myfaces/_impl/core/Impl.js  | 132 +++++--
 .../resources/myfaces/_impl/core/Object.js         |  32 +-
 .../resources/myfaces/_impl/core/_EvalHandlers.js  | 166 ++++-----
 .../resources/myfaces/_impl/core/_ExtRuntime.js    |  34 +-
 .../resources/myfaces/_impl/core/_Runtime.js       |  20 +-
 .../{core/Object.js => quirks/ObjectQuirks.js}     |  45 +--
 .../_AjaxRequestQuirks.js}                         | 133 ++-----
 .../myfaces/_impl/quirks/_AjaxResponseQuirks.js    | 171 +++++++++
 .../myfaces/_impl/{_util => quirks}/_DomQuirks.js  |  30 ++
 .../myfaces/_impl/{_util => quirks}/_LangQuirks.js |   0
 .../_impl/{core => quirks}/_RuntimeQuirks.js       |   0
 .../_TransportQuirks.js}                           |  35 +-
 .../resources/myfaces/_impl/quirks/readme.txt      |   4 +
 .../myfaces/_impl/xhrCore/_AjaxRequest.js          | 226 +++++-------
 .../myfaces/_impl/xhrCore/_AjaxResponse.js         | 112 ++----
 .../resources/myfaces/_impl/xhrCore/_Transports.js | 391 +++++++++++++--------
 .../META-INF/resources/myfaces/api/jsf.js          |   4 +-
 27 files changed, 1120 insertions(+), 840 deletions(-)
 copy api/src/main/javascript/META-INF/resources/myfaces/_impl/{core/Object.js => quirks/ObjectQuirks.js} (66%)
 copy api/src/main/javascript/META-INF/resources/myfaces/_impl/{xhrCore/_AjaxRequest.js => quirks/_AjaxRequestQuirks.js} (73%)
 create mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/quirks/_AjaxResponseQuirks.js
 copy api/src/main/javascript/META-INF/resources/myfaces/_impl/{_util => quirks}/_DomQuirks.js (95%)
 copy api/src/main/javascript/META-INF/resources/myfaces/_impl/{_util => quirks}/_LangQuirks.js (100%)
 copy api/src/main/javascript/META-INF/resources/myfaces/_impl/{core => quirks}/_RuntimeQuirks.js (100%)
 copy api/src/main/javascript/META-INF/resources/myfaces/_impl/{_util/_DomExperimental.js => quirks/_TransportQuirks.js} (55%)
 create mode 100644 api/src/main/javascript/META-INF/resources/myfaces/_impl/quirks/readme.txt