You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by hn...@apache.org on 2022/11/25 16:53:53 UTC

[myfaces-tobago] branch t5_selectMany updated (e8d56783b8 -> bf5d38e715)

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

hnoeth pushed a change to branch t5_selectMany
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git


    from e8d56783b8 feat(selectManyList): renaming
     add 1864f3b56c Tobago 5.x demo textarea (#3450)
     add 7981dc945d fix: activate fix for liberty (#3452)
     add e378c5bf9d docs: tomee + liberty
     add 2429056955 feat: client configuration (#3457)
     add bfc6209f79 build(deps-dev): bump testcontainers.version from 1.17.5 to 1.17.6 (#3423)
     add 731d7d62f4 Tobago 5.x style (#3459)
     new bf5d38e715 Merge remote-tracking branch 'origin/tobago-5.x' into t5_selectMany

The 1 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:
 README.md                                          | 26 ++++++-
 pom.xml                                            |  2 +-
 .../myfaces/tobago/component/Attributes.java       |  3 +
 .../myfaces/tobago/component/RendererTypes.java    |  2 +
 .../org/apache/myfaces/tobago/component/Tags.java  |  2 +
 .../myfaces/tobago/context/TobagoContext.java      | 64 ++++++++++++++++++
 .../internal/component/AbstractUIConfig.java       | 79 ++++++++++++++++++++++
 ...mnSelectorRenderer.java => ConfigRenderer.java} |  8 ++-
 .../internal/renderkit/renderer/PageRenderer.java  |  5 ++
 ...gDeclaration.java => ConfigTagDeclaration.java} | 51 +++++++-------
 .../tobago/renderkit/html/HtmlAttributes.java      |  3 +
 .../tobago/renderkit/html/HtmlElements.java        |  1 +
 .../webapp/content/140-partial/Partial_Ajax.xhtml  | 16 ++---
 .../src/test/liberty/config/server.xml             |  3 +
 tobago-theme/src/main/scss/_tobago.scss            |  5 ++
 .../src/main/ts/tobago-config.ts                   | 36 ++++++++--
 .../src/main/ts/tobago-focus.ts                    | 11 +--
 .../src/main/ts/tobago-overlay.ts                  | 11 ++-
 .../src/main/ts/tobago-page.ts                     | 25 +++++++
 19 files changed, 296 insertions(+), 57 deletions(-)
 create mode 100644 tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIConfig.java
 copy tobago-core/src/main/java/org/apache/myfaces/tobago/internal/renderkit/renderer/{ColumnSelectorRenderer.java => ConfigRenderer.java} (85%)
 copy tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/{MetaLinkTagDeclaration.java => ConfigTagDeclaration.java} (63%)


[myfaces-tobago] 01/01: Merge remote-tracking branch 'origin/tobago-5.x' into t5_selectMany

Posted by hn...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

hnoeth pushed a commit to branch t5_selectMany
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit bf5d38e715a94edb57a04098631a16c500bd939e
Merge: e8d56783b8 731d7d62f4
Author: Henning Noeth <hn...@apache.org>
AuthorDate: Fri Nov 25 17:53:43 2022 +0100

    Merge remote-tracking branch 'origin/tobago-5.x' into t5_selectMany

 README.md                                          | 26 ++++++-
 pom.xml                                            |  2 +-
 .../myfaces/tobago/component/Attributes.java       |  3 +
 .../myfaces/tobago/component/RendererTypes.java    |  2 +
 .../org/apache/myfaces/tobago/component/Tags.java  |  2 +
 .../myfaces/tobago/context/TobagoContext.java      | 64 ++++++++++++++++++
 .../internal/component/AbstractUIConfig.java       | 79 ++++++++++++++++++++++
 .../renderkit/renderer/ConfigRenderer.java         | 30 ++++++++
 .../internal/renderkit/renderer/PageRenderer.java  |  5 ++
 .../taglib/component/ConfigTagDeclaration.java     | 64 ++++++++++++++++++
 .../tobago/renderkit/html/HtmlAttributes.java      |  3 +
 .../tobago/renderkit/html/HtmlElements.java        |  1 +
 .../webapp/content/140-partial/Partial_Ajax.xhtml  | 16 ++---
 .../src/test/liberty/config/server.xml             |  3 +
 tobago-theme/src/main/scss/_tobago.scss            |  5 ++
 .../src/main/ts/tobago-config.ts                   | 36 ++++++++--
 .../src/main/ts/tobago-focus.ts                    | 11 +--
 .../src/main/ts/tobago-overlay.ts                  | 11 ++-
 .../src/main/ts/tobago-page.ts                     | 25 +++++++
 19 files changed, 361 insertions(+), 27 deletions(-)