Merge branches 'ignite-7725' and 'master' of 
https://git-wip-us.apache.org/repos/asf/ignite into ignite-7725


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/16cdc57a
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/16cdc57a
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/16cdc57a

Branch: refs/heads/ignite-7725
Commit: 16cdc57a3faf2785d718c44df2aa5214b3129f36
Parents: b8dd0cf 625ad41
Author: Alexey Kuznetsov <akuznet...@apache.org>
Authored: Mon Feb 19 17:40:34 2018 +0700
Committer: Alexey Kuznetsov <akuznet...@apache.org>
Committed: Mon Feb 19 17:40:34 2018 +0700

----------------------------------------------------------------------
 .../configuration/CacheConfiguration.java       |   1 -
 .../internal/direct/DirectMessageWriter.java    |   9 +
 .../direct/stream/DirectByteBufferStream.java   |   6 +
 .../stream/v1/DirectByteBufferStreamImplV1.java |   8 +
 .../stream/v2/DirectByteBufferStreamImplV2.java |  11 +
 .../cache/transactions/IgniteTxManager.java     |   7 +-
 .../extensions/communication/MessageWriter.java |  10 +
 .../IgniteOptimisticTxSuspendResumeTest.java    |  33 +++
 .../Apache.Ignite.Core.Tests.DotNetCore.csproj  |  10 +
 .../Apache.Ignite.Core.Tests.csproj             |  29 +--
 .../Client/Cache/CacheClientAsyncWrapper.cs     |   1 -
 .../Config/KeyStore/client.jks                  | Bin 3232 -> 0 bytes
 .../Config/KeyStore/client.pem                  |  69 -------
 .../Config/KeyStore/client.pfx                  | Bin 3148 -> 0 bytes
 .../Config/KeyStore/generate.sh                 |  99 ---------
 .../Config/KeyStore/server.pem                  |  69 -------
 .../Config/KeyStore/server.pfx                  | Bin 3148 -> 0 bytes
 .../Apache.Ignite.Core.Tests/Config/ssl.xml     |  65 ++++++
 .../Config/start-test-grid1-ssl.xml             |  65 ------
 .../Config/start-test-grid1.xml                 |  55 -----
 .../Config/start-test-grid2.xml                 |  46 -----
 .../Config/start-test-grid3.xml                 |  44 ----
 .../IgniteConfigurationSerializerTest.cs        |   2 +-
 .../IgniteStartStopTest.cs                      |  77 ++-----
 .../Apache.Ignite.Core.Tests/LoadDllTest.cs     |  88 ++------
 .../Ssl/SslConfigurationTest.cs                 |  77 +++----
 .../Apache.Ignite.Core.DotNetCore.csproj        |  15 +-
 .../Apache.Ignite.Core.csproj                   |   6 +-
 .../Cluster/Ssl/ISslContextFactory.cs           |  35 ----
 .../Cluster/Ssl/SslContextFactory.cs            | 166 ---------------
 .../Apache.Ignite.Core/IgniteConfiguration.cs   |   4 +-
 .../Impl/Cluster/Ssl/SslFactorySerializer.cs    |  58 ------
 .../Impl/Ssl/SslFactorySerializer.cs            |  65 ++++++
 .../Ssl/ISslContextFactory.cs                   |  32 +++
 .../Apache.Ignite.Core/Ssl/SslContextFactory.cs | 166 +++++++++++++++
 modules/web-console/e2e/testcafe/Dockerfile     |   2 +
 modules/web-console/e2e/testcafe/envtools.js    |   1 +
 .../web-console/e2e/testcafe/fixtures/auth.js   |  73 ++++---
 .../e2e/testcafe/fixtures/user-profile.js       | 113 -----------
 .../fixtures/user-profile/credentials.js        |  63 ++++++
 .../testcafe/fixtures/user-profile/profile.js   |  84 ++++++++
 modules/web-console/e2e/testcafe/roles.js       |  23 +--
 modules/web-console/e2e/testcafe/testcafe.js    |   4 +-
 modules/web-console/e2e/testenv/Dockerfile      |   2 +
 modules/web-console/frontend/app/app.js         |  14 +-
 .../app/components/page-configure/index.js      |   3 +
 .../app/components/page-landing/index.js        |  65 ++++++
 .../app/components/page-landing/style.scss      | 104 ++++++++++
 .../app/components/page-landing/template.pug    |  66 ++++++
 .../page-password-changed/controller.js         |  26 +++
 .../components/page-password-changed/index.js   |  41 ++++
 .../components/page-password-changed/style.scss |  42 ++++
 .../page-password-changed/template.pug          |  22 ++
 .../page-password-reset/controller.js           |  53 +++++
 .../app/components/page-password-reset/index.js |  57 ++++++
 .../components/page-password-reset/style.scss   |  31 +++
 .../components/page-password-reset/template.pug |  80 ++++++++
 .../app/components/page-profile/controller.js   |   8 +-
 .../app/components/page-profile/index.js        |  13 +-
 .../app/components/page-profile/style.scss      |  31 +++
 .../app/components/page-profile/template.pug    | 203 +++++++++++++------
 .../app/components/page-signin/controller.js    |  30 +++
 .../app/components/page-signin/index.js         |  56 +++++
 .../app/components/page-signin/style.scss       |  38 ++++
 .../app/components/page-signin/template.pug     | 161 +++++++++++++++
 .../components/web-console-header/style.scss    |   1 +
 .../components/web-console-header/template.pug  |   2 +-
 .../frontend/app/controllers/auth.controller.js |  29 ---
 .../frontend/app/data/countries.json            |  72 ++++---
 .../frontend/app/helpers/jade/mixins.pug        |   1 +
 .../app/modules/states/configuration.state.js   |   1 +
 .../app/modules/states/password.state.js        |  50 -----
 .../frontend/app/modules/states/signin.state.js |  53 -----
 .../frontend/app/modules/user/Auth.service.js   |   6 +-
 .../app/primitives/form-field/checkbox.pug      |  30 +++
 .../app/primitives/form-field/dropdown.pug      |  51 +++++
 .../app/primitives/form-field/email.pug         |  37 ++++
 .../app/primitives/form-field/error.pug         |  29 +++
 .../app/primitives/form-field/index.pug         |  27 +++
 .../app/primitives/form-field/index.scss        | 149 +++++++++++++-
 .../app/primitives/form-field/input.pug         |  28 +++
 .../app/primitives/form-field/label.pug         |  30 +++
 .../app/primitives/form-field/number.pug        |  46 +++++
 .../app/primitives/form-field/password.pug      |  37 ++++
 .../app/primitives/form-field/phone.pug         |  35 ++++
 .../frontend/app/primitives/form-field/text.pug |  35 ++++
 .../app/primitives/form-field/tooltip.pug       |  18 ++
 .../frontend/app/primitives/panel/index.scss    |  96 +++++++--
 .../frontend/app/primitives/tooltip/index.scss  |  17 ++
 .../frontend/app/primitives/ui-grid/index.scss  |  32 +--
 .../frontend/app/services/DefaultState.js       |  36 ++++
 .../web-console/frontend/app/services/index.js  |   2 +
 modules/web-console/frontend/app/vendor.js      |   5 +-
 modules/web-console/frontend/package.json       |   3 +-
 .../frontend/public/images/icons/collapse.svg   |   3 +
 .../public/images/icons/exclamation.svg         |   3 +
 .../frontend/public/images/icons/expand.svg     |   3 +
 .../frontend/public/images/icons/index.js       |   4 +
 .../frontend/public/images/main-screenshot.png  | Bin 0 -> 86830 bytes
 .../public/images/page-landing-carousel-1.png   | Bin 0 -> 84434 bytes
 .../public/images/page-landing-carousel-2.png   | Bin 0 -> 106670 bytes
 .../public/images/page-landing-carousel-3.png   | Bin 0 -> 70876 bytes
 .../public/stylesheets/_bootstrap-custom.scss   |   1 -
 .../web-console/frontend/views/reset.tpl.pug    |  44 ----
 .../web-console/frontend/views/signin.tpl.pug   | 165 ---------------
 105 files changed, 2530 insertions(+), 1588 deletions(-)
----------------------------------------------------------------------


Reply via email to