[4/4] syncope git commit: [SYNCOPE-1019] Added dynamic templating feature to Enduser app

2018-09-11 Thread skylark17
[SYNCOPE-1019] Added dynamic templating feature to Enduser app


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

Branch: refs/heads/master
Commit: f9937e77b78057f91a35d6caa46e9b1e3af832c7
Parents: e1972f8
Author: skylark17 
Authored: Tue Aug 28 10:11:47 2018 +0200
Committer: skylark17 
Committed: Mon Sep 10 17:47:30 2018 +0200

--
 .gitignore  |   1 +
 archetype/pom.xml   |   7 +-
 .../archetype-resources/enduser/pom.xml |   6 +-
 .../syncope/client/console/pages/BasePage.html  |   2 +-
 .../syncope/client/console/pages/Login.html |   2 +-
 .../console/pages/MustChangePassword.html   |   2 +-
 client/enduser/pom.xml  |   4 +-
 .../enduser/SyncopeEnduserApplication.java  | 130 +--
 .../enduser/adapters/PlatformInfoAdapter.java   |   4 +-
 .../enduser/model/CustomAttributesInfo.java |  15 -
 .../client/enduser/model/CustomTemplate.java|  77 
 .../enduser/model/CustomTemplateInfo.java   |  72 
 .../client/enduser/model/CustomTemplateUrl.java |  37 ++
 .../enduser/model/CustomTemplateWizard.java |  49 +++
 .../enduser/model/PlatformInfoRequest.java  |  10 +-
 .../resources/DynamicTemplateResource.java  |  79 
 .../resources/ExternalResourceResource.java |  14 +-
 .../client/enduser/resources/GroupResource.java |  43 ++-
 .../client/enduser/resources/InfoResource.java  |   8 +-
 .../enduser/resources/SchemaResource.java   |  45 ++-
 .../resources/UserSelfCreateResource.java   |   3 +-
 .../enduser/resources/UserSelfReadResource.java |  15 +-
 .../resources/UserSelfUpdateResource.java   |   7 +-
 .../enduser/util/UserRequestValidator.java  |  29 +-
 .../META-INF/resources/app/css/app.css  | 107 +++---
 .../resources/app/css/customSpinner.css |  49 +++
 .../META-INF/resources/app/css/editUser.css | 369 +++
 .../META-INF/resources/app/css/login.css|  41 +--
 .../META-INF/resources/app/css/notification.css |  28 ++
 .../resources/app/css/passwordReset.css |  37 ++
 .../app/css/templates/dark/editUser.css |  95 +
 .../resources/app/css/templates/dark/login.css  |  78 
 .../resources/META-INF/resources/app/index.html |  27 +-
 .../resources/META-INF/resources/app/js/app.js  | 158 +---
 .../app/js/controllers/LoginController.js   |  11 +-
 .../app/js/controllers/OIDCClientController.js  |   4 +-
 .../app/js/controllers/SAML2SPController.js |   4 +-
 .../app/js/controllers/UserController.js|  42 ++-
 .../app/js/directives/dynamicPlainAttribute.js  |  10 +-
 .../app/js/directives/dynamicTemplateItem.js|  79 
 .../js/directives/dynamicVirtualAttribute.js|  22 +-
 .../js/directives/dynamicVirtualAttributes.js   |   3 +-
 .../resources/app/js/directives/fileInput.js|   4 +-
 .../app/js/directives/navigationButtons.js  |  71 
 .../js/directives/navigationButtonsPartial.js   |  71 
 .../app/js/services/dynamicTemplateService.js   |  67 
 .../resources/app/js/util/assetsManager.js  | 105 ++
 .../META-INF/resources/app/views/captcha.html   |  14 +-
 .../app/views/confirmpasswordreset.html |  28 +-
 .../app/views/dynamicDerivedAttributes.html |  19 +-
 .../app/views/dynamicPlainAttribute.html| 139 ---
 .../app/views/dynamicPlainAttributes.html   |  14 +-
 .../app/views/dynamicVirtualAttributes.html |  18 +-
 .../META-INF/resources/app/views/editUser.html  |  31 +-
 .../resources/app/views/mustchangepassword.html |  22 +-
 .../resources/app/views/navigationButtons.html  |  26 --
 .../app/views/navigationButtonsPartial.html |  29 ++
 .../resources/app/views/passwordreset.html  |  55 +--
 .../META-INF/resources/app/views/self.html  |  60 +--
 .../app/views/templates/editUserTemplate.html   |  57 +++
 .../onlyPlainAttrsDetails/editUserTemplate.html |  57 +++
 .../views/templates/passwordresetTemplate.html  |  79 
 .../app/views/templates/selfTemplate.html   |  77 
 .../resources/app/views/user-credentials.html   |  62 ++--
 .../app/views/user-derived-schemas.html |  33 +-
 .../resources/app/views/user-form-finish.html   |  29 +-
 .../resources/app/views/user-groups.html|  47 ++-
 .../resources/app/views/user-plain-schemas.html |  35 +-
 .../resources/app/views/user-resources.html |  37 +-
 .../app/views/user-virtual-schemas.html |  33 +-
 .../enduser/src/main/resources/customForm.json  |   1 -
 .../main/resources/customFormAttributes.json|   1 +
 .../src/main/resources/customTemplate.json  |  65 
 .../enduser/util/UserRequestValidatorTest.java  |  40 +-
 

[4/4] syncope git commit: [SYNCOPE-1019] Added dynamic templating feature to Enduser app

2018-09-10 Thread skylark17
[SYNCOPE-1019] Added dynamic templating feature to Enduser app


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

Branch: refs/heads/2_1_X
Commit: ac909f2ec079969b3860e31fc62470b493ea90eb
Parents: 524c968
Author: skylark17 
Authored: Tue Aug 28 10:11:47 2018 +0200
Committer: skylark17 
Committed: Mon Sep 10 17:12:44 2018 +0200

--
 .gitignore  |   1 +
 archetype/pom.xml   |   7 +-
 .../archetype-resources/enduser/pom.xml |   6 +-
 .../syncope/client/console/pages/BasePage.html  |   2 +-
 .../syncope/client/console/pages/Login.html |   2 +-
 .../console/pages/MustChangePassword.html   |   2 +-
 client/enduser/pom.xml  |   4 +-
 .../enduser/SyncopeEnduserApplication.java  | 130 +--
 .../enduser/adapters/PlatformInfoAdapter.java   |   4 +-
 .../enduser/model/CustomAttributesInfo.java |  15 -
 .../client/enduser/model/CustomTemplate.java|  77 
 .../enduser/model/CustomTemplateInfo.java   |  72 
 .../client/enduser/model/CustomTemplateUrl.java |  37 ++
 .../enduser/model/CustomTemplateWizard.java |  49 +++
 .../enduser/model/PlatformInfoRequest.java  |  10 +-
 .../resources/DynamicTemplateResource.java  |  79 
 .../resources/ExternalResourceResource.java |  14 +-
 .../client/enduser/resources/GroupResource.java |  43 ++-
 .../client/enduser/resources/InfoResource.java  |   8 +-
 .../enduser/resources/SchemaResource.java   |  45 ++-
 .../resources/UserSelfCreateResource.java   |   3 +-
 .../enduser/resources/UserSelfReadResource.java |  15 +-
 .../resources/UserSelfUpdateResource.java   |   7 +-
 .../enduser/util/UserRequestValidator.java  |  29 +-
 .../META-INF/resources/app/css/app.css  | 107 +++---
 .../resources/app/css/customSpinner.css |  49 +++
 .../META-INF/resources/app/css/editUser.css | 369 +++
 .../META-INF/resources/app/css/login.css|  41 +--
 .../META-INF/resources/app/css/notification.css |  28 ++
 .../resources/app/css/passwordReset.css |  37 ++
 .../app/css/templates/dark/editUser.css |  95 +
 .../resources/app/css/templates/dark/login.css  |  78 
 .../resources/META-INF/resources/app/index.html |  27 +-
 .../resources/META-INF/resources/app/js/app.js  | 158 +---
 .../app/js/controllers/LoginController.js   |  11 +-
 .../app/js/controllers/OIDCClientController.js  |   4 +-
 .../app/js/controllers/SAML2SPController.js |   4 +-
 .../app/js/controllers/UserController.js|  42 ++-
 .../app/js/directives/dynamicPlainAttribute.js  |  10 +-
 .../app/js/directives/dynamicTemplateItem.js|  79 
 .../js/directives/dynamicVirtualAttribute.js|  22 +-
 .../js/directives/dynamicVirtualAttributes.js   |   3 +-
 .../resources/app/js/directives/fileInput.js|   4 +-
 .../app/js/directives/navigationButtons.js  |  71 
 .../js/directives/navigationButtonsPartial.js   |  71 
 .../app/js/services/dynamicTemplateService.js   |  67 
 .../resources/app/js/util/assetsManager.js  | 105 ++
 .../META-INF/resources/app/views/captcha.html   |  14 +-
 .../app/views/confirmpasswordreset.html |  28 +-
 .../app/views/dynamicDerivedAttributes.html |  19 +-
 .../app/views/dynamicPlainAttribute.html| 139 ---
 .../app/views/dynamicPlainAttributes.html   |  14 +-
 .../app/views/dynamicVirtualAttributes.html |  18 +-
 .../META-INF/resources/app/views/editUser.html  |  31 +-
 .../resources/app/views/mustchangepassword.html |  22 +-
 .../resources/app/views/navigationButtons.html  |  26 --
 .../app/views/navigationButtonsPartial.html |  29 ++
 .../resources/app/views/passwordreset.html  |  55 +--
 .../META-INF/resources/app/views/self.html  |  60 +--
 .../app/views/templates/editUserTemplate.html   |  57 +++
 .../onlyPlainAttrsDetails/editUserTemplate.html |  57 +++
 .../views/templates/passwordresetTemplate.html  |  79 
 .../app/views/templates/selfTemplate.html   |  77 
 .../resources/app/views/user-credentials.html   |  62 ++--
 .../app/views/user-derived-schemas.html |  33 +-
 .../resources/app/views/user-form-finish.html   |  29 +-
 .../resources/app/views/user-groups.html|  47 ++-
 .../resources/app/views/user-plain-schemas.html |  35 +-
 .../resources/app/views/user-resources.html |  37 +-
 .../app/views/user-virtual-schemas.html |  33 +-
 .../enduser/src/main/resources/customForm.json  |   1 -
 .../main/resources/customFormAttributes.json|   1 +
 .../src/main/resources/customTemplate.json  |  65 
 .../enduser/util/UserRequestValidatorTest.java  |  40 +-
 

[4/4] syncope git commit: [SYNCOPE-1019] Added dynamic templating feature to Enduser app

2018-09-10 Thread skylark17
[SYNCOPE-1019] Added dynamic templating feature to Enduser app


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/19d9e93e
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/19d9e93e
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/19d9e93e

Branch: refs/heads/2_0_X
Commit: 19d9e93e0d9102aa8b138b8eca88050dc81667ef
Parents: f89b408
Author: skylark17 
Authored: Tue Aug 28 10:11:47 2018 +0200
Committer: skylark17 
Committed: Mon Sep 10 15:12:54 2018 +0200

--
 .gitignore  |   1 +
 archetype/pom.xml   |   7 +-
 .../archetype-resources/enduser/pom.xml |   6 +-
 .../syncope/client/console/pages/BasePage.html  |   2 +-
 .../syncope/client/console/pages/Login.html |   2 +-
 .../console/pages/MustChangePassword.html   |   2 +-
 client/enduser/pom.xml  |   4 +-
 .../enduser/SyncopeEnduserApplication.java  | 139 +--
 .../enduser/adapters/PlatformInfoAdapter.java   |   4 +-
 .../enduser/model/CustomAttributesInfo.java |  15 -
 .../client/enduser/model/CustomTemplate.java|  77 
 .../enduser/model/CustomTemplateInfo.java   |  72 
 .../client/enduser/model/CustomTemplateUrl.java |  37 ++
 .../enduser/model/CustomTemplateWizard.java |  49 +++
 .../enduser/model/PlatformInfoRequest.java  |  10 +-
 .../resources/DynamicTemplateResource.java  |  79 
 .../resources/ExternalResourceResource.java |  14 +-
 .../client/enduser/resources/GroupResource.java |  72 ++--
 .../client/enduser/resources/InfoResource.java  |   8 +-
 .../enduser/resources/SchemaResource.java   |  44 ++-
 .../resources/UserSelfCreateResource.java   |   3 +-
 .../enduser/resources/UserSelfReadResource.java |  16 +-
 .../resources/UserSelfUpdateResource.java   |   7 +-
 .../enduser/util/UserRequestValidator.java  |  29 +-
 .../META-INF/resources/app/css/app.css  | 107 +++---
 .../resources/app/css/customSpinner.css |  49 +++
 .../META-INF/resources/app/css/editUser.css | 369 +++
 .../META-INF/resources/app/css/login.css|  41 +--
 .../META-INF/resources/app/css/notification.css |  28 ++
 .../resources/app/css/passwordReset.css |  37 ++
 .../app/css/templates/dark/editUser.css |  95 +
 .../resources/app/css/templates/dark/login.css  |  78 
 .../resources/META-INF/resources/app/index.html |  27 +-
 .../resources/META-INF/resources/app/js/app.js  | 160 +---
 .../app/js/controllers/LoginController.js   |  11 +-
 .../app/js/controllers/OIDCClientController.js  |   4 +-
 .../app/js/controllers/SAML2SPController.js |   4 +-
 .../app/js/controllers/UserController.js|  42 ++-
 .../app/js/directives/dynamicPlainAttribute.js  |  10 +-
 .../app/js/directives/dynamicTemplateItem.js|  79 
 .../js/directives/dynamicVirtualAttribute.js|  22 +-
 .../js/directives/dynamicVirtualAttributes.js   |   3 +-
 .../resources/app/js/directives/fileInput.js|   4 +-
 .../app/js/directives/navigationButtons.js  |  71 
 .../js/directives/navigationButtonsPartial.js   |  71 
 .../app/js/services/dynamicTemplateService.js   |  67 
 .../resources/app/js/util/assetsManager.js  | 105 ++
 .../META-INF/resources/app/views/captcha.html   |  14 +-
 .../app/views/confirmpasswordreset.html |  28 +-
 .../app/views/dynamicDerivedAttributes.html |  19 +-
 .../app/views/dynamicPlainAttribute.html| 139 ---
 .../app/views/dynamicPlainAttributes.html   |  14 +-
 .../app/views/dynamicVirtualAttributes.html |  18 +-
 .../META-INF/resources/app/views/editUser.html  |  31 +-
 .../resources/app/views/mustchangepassword.html |  22 +-
 .../resources/app/views/navigationButtons.html  |  26 --
 .../app/views/navigationButtonsPartial.html |  29 ++
 .../resources/app/views/passwordreset.html  |  55 +--
 .../META-INF/resources/app/views/self.html  |  60 +--
 .../app/views/templates/editUserTemplate.html   |  57 +++
 .../onlyPlainAttrsDetails/editUserTemplate.html |  57 +++
 .../views/templates/passwordresetTemplate.html  |  79 
 .../app/views/templates/selfTemplate.html   |  77 
 .../resources/app/views/user-credentials.html   |  62 ++--
 .../app/views/user-derived-schemas.html |  33 +-
 .../resources/app/views/user-form-finish.html   |  29 +-
 .../resources/app/views/user-groups.html|  47 ++-
 .../resources/app/views/user-plain-schemas.html |  35 +-
 .../resources/app/views/user-resources.html |  37 +-
 .../app/views/user-virtual-schemas.html |  33 +-
 .../enduser/src/main/resources/customForm.json  |   1 -
 .../main/resources/customFormAttributes.json|   1 +
 .../src/main/resources/customTemplate.json  |  65 
 .../enduser/util/UserRequestValidatorTest.java  |  39 +-