You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by je...@apache.org on 2021/08/24 15:13:22 UTC

[tez] branch master updated (8c97365 -> e2c4ee0)

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

jeagles pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tez.git.


    from 8c97365  TEZ-4323: Jetty jars were removed from dist package with TEZ-4114 (#140) (Takanobu Asanuma reviewed by Jonathan Turner Eagles)
     add e2c4ee0  TEZ-4328. Import external tez component em-helpers (#145)

No new revisions were added by this update.

Summary of changes:
 tez-ui/src/main/resources/META-INF/LICENSE.txt     |   1 -
 .../main/webapp/app/components/em-breadcrumbs.js   |  69 ++++++++++
 .../src/main/webapp/app/components/em-progress.js  | 102 ++++++++++++++
 tez-ui/src/main/webapp/app/helpers/txt.js          |  62 +++++++++
 tez-ui/src/main/webapp/app/styles/app.less         |   5 +
 .../{caller-info.less => em-breadcrumbs.less}      |  13 +-
 .../{zip-download-modal.less => em-progress.less}  |  39 ++++--
 tez-ui/src/main/webapp/app/styles/shared.less      |   4 +
 .../app/styles/{date-formatter.less => txt.less}   |   7 +-
 .../components/em-breadcrumbs.hbs}                 |  55 ++++----
 .../{loading.hbs => components/em-progress.hbs}    |   9 +-
 tez-ui/src/main/webapp/app/utils/formatters.js     | 146 +++++++++++++++++++++
 tez-ui/src/main/webapp/config/environment.js       |   4 +
 tez-ui/src/main/webapp/package.json                |   1 -
 .../integration/components/em-breadcrumbs-test.js  | 107 +++++++++++++++
 .../integration/components/em-progress-test.js     |  73 +++++++++++
 .../src/main/webapp/tests/unit/helpers/txt-test.js |  59 +++++++++
 .../webapp/tests/unit/utils/formatters-test.js     |  99 ++++++++++++++
 tez-ui/src/main/webapp/yarn.lock                   |  10 --
 19 files changed, 802 insertions(+), 63 deletions(-)
 create mode 100644 tez-ui/src/main/webapp/app/components/em-breadcrumbs.js
 create mode 100644 tez-ui/src/main/webapp/app/components/em-progress.js
 create mode 100644 tez-ui/src/main/webapp/app/helpers/txt.js
 copy tez-ui/src/main/webapp/app/styles/{caller-info.less => em-breadcrumbs.less} (86%)
 copy tez-ui/src/main/webapp/app/styles/{zip-download-modal.less => em-progress.less} (57%)
 copy tez-ui/src/main/webapp/app/styles/{date-formatter.less => txt.less} (93%)
 copy tez-ui/src/main/webapp/app/{routes/dag/vertices.js => templates/components/em-breadcrumbs.hbs} (54%)
 copy tez-ui/src/main/webapp/app/templates/{loading.hbs => components/em-progress.hbs} (78%)
 create mode 100644 tez-ui/src/main/webapp/app/utils/formatters.js
 create mode 100644 tez-ui/src/main/webapp/tests/integration/components/em-breadcrumbs-test.js
 create mode 100644 tez-ui/src/main/webapp/tests/integration/components/em-progress-test.js
 create mode 100644 tez-ui/src/main/webapp/tests/unit/helpers/txt-test.js
 create mode 100644 tez-ui/src/main/webapp/tests/unit/utils/formatters-test.js