Repository: nifi-registry Updated Branches: refs/heads/master 5fbe5012b -> cd1114fc0
NIFIREG-29 - Remove General tab from registry administration This closes #17. Signed-off-by: Bryan Bende <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/nifi-registry/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi-registry/commit/cd1114fc Tree: http://git-wip-us.apache.org/repos/asf/nifi-registry/tree/cd1114fc Diff: http://git-wip-us.apache.org/repos/asf/nifi-registry/diff/cd1114fc Branch: refs/heads/master Commit: cd1114fc0e7fb61b9a8b2f0373f36554b7f1f755 Parents: 5fbe501 Author: Scott Aslan <[email protected]> Authored: Tue Oct 10 09:57:04 2017 -0400 Committer: Bryan Bende <[email protected]> Committed: Tue Oct 10 11:27:57 2017 -0400 ---------------------------------------------------------------------- .../nf-registry-general-administration.html | 30 ---------- .../nf-registry-general-administration.js | 61 -------------------- .../nf-registry-administration.html | 5 -- .../nf-registry-administration.spec.js | 2 - .../nf-registry-workflow-administration.spec.js | 2 - .../nf-registry-bucket-grid-list-viewer.spec.js | 2 - ...nf-registry-droplet-grid-list-viewer.spec.js | 2 - .../nf-registry-grid-list-viewer.spec.js | 2 - .../explorer/nf-registry-explorer.spec.js | 2 - .../src/main/webapp/nf-registry.html | 2 +- .../src/main/webapp/nf-registry.module.js | 2 - .../src/main/webapp/nf-registry.routes.js | 6 +- .../src/main/webapp/nf-registry.spec.js | 2 - .../webapp/services/nf-registry.api.spec.js | 2 - .../webapp/services/nf-registry.service.spec.js | 2 - .../src/main/webapp/systemjs.builder.config.js | 1 - 16 files changed, 2 insertions(+), 123 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi-registry/blob/cd1114fc/nifi-registry-web-ui/src/main/webapp/components/administration/general/nf-registry-general-administration.html ---------------------------------------------------------------------- diff --git a/nifi-registry-web-ui/src/main/webapp/components/administration/general/nf-registry-general-administration.html b/nifi-registry-web-ui/src/main/webapp/components/administration/general/nf-registry-general-administration.html deleted file mode 100644 index 4246cab..0000000 --- a/nifi-registry-web-ui/src/main/webapp/components/administration/general/nf-registry-general-administration.html +++ /dev/null @@ -1,30 +0,0 @@ -<!-- -Licensed to the Apache Software Foundation (ASF) under one or more -contributor license agreements. See the NOTICE file distributed with -this work for additional information regarding copyright ownership. -The ASF licenses this file to You under the Apache License, Version 2.0 -(the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. ---> - -<div id="nifi-registry-general-administration-perspective" class="mat-elevation-z5"> - <div fxFlex class="pad-top-md pad-bottom-sm pad-left-md pad-right-md"> - <span class="mat-card-title">Settings</span> - <div layout="row" layout-align="space-between top" class="pad-top-md"> - <md-input-container flex=100> - <input mdInput placeholder="Registry Name" value="{{nfRegistryService.registry.name}}"> - </md-input-container> - <i class="info fa fa-question-circle align-vertical" aria-hidden="true" - mdTooltip="The name seen in NiFi to identify this registry."></i> - </div> - </div> -</div> -<router-outlet></router-outlet> http://git-wip-us.apache.org/repos/asf/nifi-registry/blob/cd1114fc/nifi-registry-web-ui/src/main/webapp/components/administration/general/nf-registry-general-administration.js ---------------------------------------------------------------------- diff --git a/nifi-registry-web-ui/src/main/webapp/components/administration/general/nf-registry-general-administration.js b/nifi-registry-web-ui/src/main/webapp/components/administration/general/nf-registry-general-administration.js deleted file mode 100644 index bdf9d51..0000000 --- a/nifi-registry-web-ui/src/main/webapp/components/administration/general/nf-registry-general-administration.js +++ /dev/null @@ -1,61 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -var ngCore = require('@angular/core'); -var NfRegistryService = require('nifi-registry/services/nf-registry.service.js'); -var nfRegistryAnimations = require('nifi-registry/nf-registry.animations.js'); - -/** - * NfRegistryGeneralAdministration constructor - * - * @param nfRegistryService The nf-registry.service module. - * @constructor - */ -function NfRegistryGeneralAdministration(nfRegistryService) { - this.nfRegistryService = nfRegistryService; -}; - -NfRegistryGeneralAdministration.prototype = { - constructor: NfRegistryGeneralAdministration, - - /** - * Initialize the component. - */ - ngOnInit: function () { - this.nfRegistryService.adminPerspective = 'general'; - }, - - /** - * Destroy the component. - */ - ngOnDestroy: function () { - this.nfRegistryService.adminPerspective = ''; - } -}; - -NfRegistryGeneralAdministration.annotations = [ - new ngCore.Component({ - template: require('./nf-registry-general-administration.html!text'), - animations: [nfRegistryAnimations.slideInLeftAnimation], - host: { - '[@routeAnimation]': 'routeAnimation' - } - }) -]; - -NfRegistryGeneralAdministration.parameters = [NfRegistryService]; - -module.exports = NfRegistryGeneralAdministration; http://git-wip-us.apache.org/repos/asf/nifi-registry/blob/cd1114fc/nifi-registry-web-ui/src/main/webapp/components/administration/nf-registry-administration.html ---------------------------------------------------------------------- diff --git a/nifi-registry-web-ui/src/main/webapp/components/administration/nf-registry-administration.html b/nifi-registry-web-ui/src/main/webapp/components/administration/nf-registry-administration.html index 99b2b5e..b9b9909 100644 --- a/nifi-registry-web-ui/src/main/webapp/components/administration/nf-registry-administration.html +++ b/nifi-registry-web-ui/src/main/webapp/components/administration/nf-registry-administration.html @@ -18,11 +18,6 @@ limitations under the License. <div id="nifi-registry-administration-perspective"> <md-button-toggle-group name="nifi-registry-administration-perspective" fxLayout="row" fxLayoutAlign="space-between center" class="tab-toggle-group"> - <md-button-toggle [checked]="nfRegistryService.adminPerspective === 'general'" value="general" class="uppercase" - routerLink="/nifi-registry/administration/general" - i18n="General administration tab|A description of the type of administration options available.@@nf-admin-general-tab-title"> - general - </md-button-toggle> <md-button-toggle [checked]="nfRegistryService.adminPerspective === 'users'" value="users" class="uppercase" routerLink="/nifi-registry/administration/users" i18n="Users administration tab|A description of the type of administration options available.@@nf-admin-users-tab-title"> http://git-wip-us.apache.org/repos/asf/nifi-registry/blob/cd1114fc/nifi-registry-web-ui/src/main/webapp/components/administration/nf-registry-administration.spec.js ---------------------------------------------------------------------- diff --git a/nifi-registry-web-ui/src/main/webapp/components/administration/nf-registry-administration.spec.js b/nifi-registry-web-ui/src/main/webapp/components/administration/nf-registry-administration.spec.js index 7d1259f..cd22d39 100644 --- a/nifi-registry-web-ui/src/main/webapp/components/administration/nf-registry-administration.spec.js +++ b/nifi-registry-web-ui/src/main/webapp/components/administration/nf-registry-administration.spec.js @@ -26,7 +26,6 @@ var NfRegistryService = require('nifi-registry/services/nf-registry.service.js') var NfPageNotFoundComponent = require('nifi-registry/components/page-not-found/nf-registry-page-not-found.js'); var NfRegistryExplorer = require('nifi-registry/components/explorer/nf-registry-explorer.js'); var NfRegistryAdministration = require('nifi-registry/components/administration/nf-registry-administration.js'); -var NfRegistryGeneralAdministration = require('nifi-registry/components/administration/general/nf-registry-general-administration.js'); var NfRegistryUsersAdministration = require('nifi-registry/components/administration/users/nf-registry-users-administration.js'); var NfRegistryAddUser = require('nifi-registry/components/administration/users/add/nf-registry-add-user.js'); var NfRegistryUserDetails = require('nifi-registry/components/administration/users/details/nf-registry-user-details.js'); @@ -63,7 +62,6 @@ describe('NfRegistryAdministration Component', function () { NfRegistry, NfRegistryExplorer, NfRegistryAdministration, - NfRegistryGeneralAdministration, NfRegistryUsersAdministration, NfRegistryUserDetails, NfRegistryUserPermissions, http://git-wip-us.apache.org/repos/asf/nifi-registry/blob/cd1114fc/nifi-registry-web-ui/src/main/webapp/components/administration/workflow/nf-registry-workflow-administration.spec.js ---------------------------------------------------------------------- diff --git a/nifi-registry-web-ui/src/main/webapp/components/administration/workflow/nf-registry-workflow-administration.spec.js b/nifi-registry-web-ui/src/main/webapp/components/administration/workflow/nf-registry-workflow-administration.spec.js index 8ce5809..5d16c66 100644 --- a/nifi-registry-web-ui/src/main/webapp/components/administration/workflow/nf-registry-workflow-administration.spec.js +++ b/nifi-registry-web-ui/src/main/webapp/components/administration/workflow/nf-registry-workflow-administration.spec.js @@ -27,7 +27,6 @@ var NfRegistryService = require('nifi-registry/services/nf-registry.service.js') var NfPageNotFoundComponent = require('nifi-registry/components/page-not-found/nf-registry-page-not-found.js'); var NfRegistryExplorer = require('nifi-registry/components/explorer/nf-registry-explorer.js'); var NfRegistryAdministration = require('nifi-registry/components/administration/nf-registry-administration.js'); -var NfRegistryGeneralAdministration = require('nifi-registry/components/administration/general/nf-registry-general-administration.js'); var NfRegistryUsersAdministration = require('nifi-registry/components/administration/users/nf-registry-users-administration.js'); var NfRegistryAddUser = require('nifi-registry/components/administration/users/add/nf-registry-add-user.js'); var NfRegistryUserDetails = require('nifi-registry/components/administration/users/details/nf-registry-user-details.js'); @@ -64,7 +63,6 @@ describe('NfRegistryWorkflowAdministration Component', function () { NfRegistry, NfRegistryExplorer, NfRegistryAdministration, - NfRegistryGeneralAdministration, NfRegistryUsersAdministration, NfRegistryUserDetails, NfRegistryUserPermissions, http://git-wip-us.apache.org/repos/asf/nifi-registry/blob/cd1114fc/nifi-registry-web-ui/src/main/webapp/components/explorer/grid-list/registry/nf-registry-bucket-grid-list-viewer.spec.js ---------------------------------------------------------------------- diff --git a/nifi-registry-web-ui/src/main/webapp/components/explorer/grid-list/registry/nf-registry-bucket-grid-list-viewer.spec.js b/nifi-registry-web-ui/src/main/webapp/components/explorer/grid-list/registry/nf-registry-bucket-grid-list-viewer.spec.js index 7f17b15..d71c6c2 100644 --- a/nifi-registry-web-ui/src/main/webapp/components/explorer/grid-list/registry/nf-registry-bucket-grid-list-viewer.spec.js +++ b/nifi-registry-web-ui/src/main/webapp/components/explorer/grid-list/registry/nf-registry-bucket-grid-list-viewer.spec.js @@ -27,7 +27,6 @@ var NfRegistryService = require('nifi-registry/services/nf-registry.service.js') var NfPageNotFoundComponent = require('nifi-registry/components/page-not-found/nf-registry-page-not-found.js'); var NfRegistryExplorer = require('nifi-registry/components/explorer/nf-registry-explorer.js'); var NfRegistryAdministration = require('nifi-registry/components/administration/nf-registry-administration.js'); -var NfRegistryGeneralAdministration = require('nifi-registry/components/administration/general/nf-registry-general-administration.js'); var NfRegistryUsersAdministration = require('nifi-registry/components/administration/users/nf-registry-users-administration.js'); var NfRegistryAddUser = require('nifi-registry/components/administration/users/add/nf-registry-add-user.js'); var NfRegistryUserDetails = require('nifi-registry/components/administration/users/details/nf-registry-user-details.js'); @@ -63,7 +62,6 @@ describe('NfRegistryBucketGridListViewer Component', function () { NfRegistry, NfRegistryExplorer, NfRegistryAdministration, - NfRegistryGeneralAdministration, NfRegistryUsersAdministration, NfRegistryUserDetails, NfRegistryUserPermissions, http://git-wip-us.apache.org/repos/asf/nifi-registry/blob/cd1114fc/nifi-registry-web-ui/src/main/webapp/components/explorer/grid-list/registry/nf-registry-droplet-grid-list-viewer.spec.js ---------------------------------------------------------------------- diff --git a/nifi-registry-web-ui/src/main/webapp/components/explorer/grid-list/registry/nf-registry-droplet-grid-list-viewer.spec.js b/nifi-registry-web-ui/src/main/webapp/components/explorer/grid-list/registry/nf-registry-droplet-grid-list-viewer.spec.js index 1f98c80..447f766 100644 --- a/nifi-registry-web-ui/src/main/webapp/components/explorer/grid-list/registry/nf-registry-droplet-grid-list-viewer.spec.js +++ b/nifi-registry-web-ui/src/main/webapp/components/explorer/grid-list/registry/nf-registry-droplet-grid-list-viewer.spec.js @@ -27,7 +27,6 @@ var NfRegistryService = require('nifi-registry/services/nf-registry.service.js') var NfPageNotFoundComponent = require('nifi-registry/components/page-not-found/nf-registry-page-not-found.js'); var NfRegistryExplorer = require('nifi-registry/components/explorer/nf-registry-explorer.js'); var NfRegistryAdministration = require('nifi-registry/components/administration/nf-registry-administration.js'); -var NfRegistryGeneralAdministration = require('nifi-registry/components/administration/general/nf-registry-general-administration.js'); var NfRegistryUsersAdministration = require('nifi-registry/components/administration/users/nf-registry-users-administration.js'); var NfRegistryAddUser = require('nifi-registry/components/administration/users/add/nf-registry-add-user.js'); var NfRegistryUserDetails = require('nifi-registry/components/administration/users/details/nf-registry-user-details.js'); @@ -63,7 +62,6 @@ describe('NfRegistryDropletGridListViewer Component', function () { NfRegistry, NfRegistryExplorer, NfRegistryAdministration, - NfRegistryGeneralAdministration, NfRegistryUsersAdministration, NfRegistryUserDetails, NfRegistryUserPermissions, http://git-wip-us.apache.org/repos/asf/nifi-registry/blob/cd1114fc/nifi-registry-web-ui/src/main/webapp/components/explorer/grid-list/registry/nf-registry-grid-list-viewer.spec.js ---------------------------------------------------------------------- diff --git a/nifi-registry-web-ui/src/main/webapp/components/explorer/grid-list/registry/nf-registry-grid-list-viewer.spec.js b/nifi-registry-web-ui/src/main/webapp/components/explorer/grid-list/registry/nf-registry-grid-list-viewer.spec.js index 51af529..5903be8 100644 --- a/nifi-registry-web-ui/src/main/webapp/components/explorer/grid-list/registry/nf-registry-grid-list-viewer.spec.js +++ b/nifi-registry-web-ui/src/main/webapp/components/explorer/grid-list/registry/nf-registry-grid-list-viewer.spec.js @@ -27,7 +27,6 @@ var NfRegistryService = require('nifi-registry/services/nf-registry.service.js') var NfPageNotFoundComponent = require('nifi-registry/components/page-not-found/nf-registry-page-not-found.js'); var NfRegistryExplorer = require('nifi-registry/components/explorer/nf-registry-explorer.js'); var NfRegistryAdministration = require('nifi-registry/components/administration/nf-registry-administration.js'); -var NfRegistryGeneralAdministration = require('nifi-registry/components/administration/general/nf-registry-general-administration.js'); var NfRegistryUsersAdministration = require('nifi-registry/components/administration/users/nf-registry-users-administration.js'); var NfRegistryAddUser = require('nifi-registry/components/administration/users/add/nf-registry-add-user.js'); var NfRegistryUserDetails = require('nifi-registry/components/administration/users/details/nf-registry-user-details.js'); @@ -64,7 +63,6 @@ describe('NfRegistryGridListViewer Component', function () { NfRegistry, NfRegistryExplorer, NfRegistryAdministration, - NfRegistryGeneralAdministration, NfRegistryUsersAdministration, NfRegistryUserDetails, NfRegistryUserPermissions, http://git-wip-us.apache.org/repos/asf/nifi-registry/blob/cd1114fc/nifi-registry-web-ui/src/main/webapp/components/explorer/nf-registry-explorer.spec.js ---------------------------------------------------------------------- diff --git a/nifi-registry-web-ui/src/main/webapp/components/explorer/nf-registry-explorer.spec.js b/nifi-registry-web-ui/src/main/webapp/components/explorer/nf-registry-explorer.spec.js index b70e34b..d255437 100644 --- a/nifi-registry-web-ui/src/main/webapp/components/explorer/nf-registry-explorer.spec.js +++ b/nifi-registry-web-ui/src/main/webapp/components/explorer/nf-registry-explorer.spec.js @@ -25,7 +25,6 @@ var NfRegistryService = require('nifi-registry/services/nf-registry.service.js') var NfPageNotFoundComponent = require('nifi-registry/components/page-not-found/nf-registry-page-not-found.js'); var NfRegistryExplorer = require('nifi-registry/components/explorer/nf-registry-explorer.js'); var NfRegistryAdministration = require('nifi-registry/components/administration/nf-registry-administration.js'); -var NfRegistryGeneralAdministration = require('nifi-registry/components/administration/general/nf-registry-general-administration.js'); var NfRegistryUsersAdministration = require('nifi-registry/components/administration/users/nf-registry-users-administration.js'); var NfRegistryAddUser = require('nifi-registry/components/administration/users/add/nf-registry-add-user.js'); var NfRegistryUserDetails = require('nifi-registry/components/administration/users/details/nf-registry-user-details.js'); @@ -58,7 +57,6 @@ describe('NfRegistryExplorer Component', function () { NfRegistry, NfRegistryExplorer, NfRegistryAdministration, - NfRegistryGeneralAdministration, NfRegistryUsersAdministration, NfRegistryUserDetails, NfRegistryUserPermissions, http://git-wip-us.apache.org/repos/asf/nifi-registry/blob/cd1114fc/nifi-registry-web-ui/src/main/webapp/nf-registry.html ---------------------------------------------------------------------- diff --git a/nifi-registry-web-ui/src/main/webapp/nf-registry.html b/nifi-registry-web-ui/src/main/webapp/nf-registry.html index 2bf1832..ae83d6e 100644 --- a/nifi-registry-web-ui/src/main/webapp/nf-registry.html +++ b/nifi-registry-web-ui/src/main/webapp/nf-registry.html @@ -72,7 +72,7 @@ limitations under the License. </button> <button md-ripple [@flyInOut] *ngIf="nfRegistryService.perspective === 'explorer'" md-icon-button mdTooltip="Registry Administration" - routerLink="/nifi-registry/administration/general"> + routerLink="/nifi-registry/administration/users"> <i class="fa fa-wrench" aria-hidden="true"></i> </button> <button md-ripple [@flyInOut] *ngIf="nfRegistryService.perspective === 'administration'" md-mini-fab http://git-wip-us.apache.org/repos/asf/nifi-registry/blob/cd1114fc/nifi-registry-web-ui/src/main/webapp/nf-registry.module.js ---------------------------------------------------------------------- diff --git a/nifi-registry-web-ui/src/main/webapp/nf-registry.module.js b/nifi-registry-web-ui/src/main/webapp/nf-registry.module.js index 4cecd72..c70ca6d 100644 --- a/nifi-registry-web-ui/src/main/webapp/nf-registry.module.js +++ b/nifi-registry-web-ui/src/main/webapp/nf-registry.module.js @@ -25,7 +25,6 @@ var NfRegistryService = require('nifi-registry/services/nf-registry.service.js') var NfPageNotFoundComponent = require('nifi-registry/components/page-not-found/nf-registry-page-not-found.js'); var NfRegistryExplorer = require('nifi-registry/components/explorer/nf-registry-explorer.js'); var NfRegistryAdministration = require('nifi-registry/components/administration/nf-registry-administration.js'); -var NfRegistryGeneralAdministration = require('nifi-registry/components/administration/general/nf-registry-general-administration.js'); var NfRegistryUsersAdministration = require('nifi-registry/components/administration/users/nf-registry-users-administration.js'); var NfRegistryAddUser = require('nifi-registry/components/administration/users/add/nf-registry-add-user.js'); var NfRegistryUserDetails = require('nifi-registry/components/administration/users/details/nf-registry-user-details.js'); @@ -59,7 +58,6 @@ NfRegistryModule.annotations = [ NfRegistry, NfRegistryExplorer, NfRegistryAdministration, - NfRegistryGeneralAdministration, NfRegistryUsersAdministration, NfRegistryUserDetails, NfRegistryUserPermissions, http://git-wip-us.apache.org/repos/asf/nifi-registry/blob/cd1114fc/nifi-registry-web-ui/src/main/webapp/nf-registry.routes.js ---------------------------------------------------------------------- diff --git a/nifi-registry-web-ui/src/main/webapp/nf-registry.routes.js b/nifi-registry-web-ui/src/main/webapp/nf-registry.routes.js index 4c95e1f..d1ed18f 100644 --- a/nifi-registry-web-ui/src/main/webapp/nf-registry.routes.js +++ b/nifi-registry-web-ui/src/main/webapp/nf-registry.routes.js @@ -20,7 +20,6 @@ var FdsDemo = require('nifi-registry/components/fluid-design-system/fds-demo.js' var NfPageNotFoundComponent = require('nifi-registry/components/page-not-found/nf-registry-page-not-found.js'); var NfRegistryExplorer = require('nifi-registry/components/explorer/nf-registry-explorer.js'); var NfRegistryAdministration = require('nifi-registry/components/administration/nf-registry-administration.js'); -var NfRegistryGeneralAdministration = require('nifi-registry/components/administration/general/nf-registry-general-administration.js'); var NfRegistryUsersAdministration = require('nifi-registry/components/administration/users/nf-registry-users-administration.js'); var NfRegistryAddUser = require('nifi-registry/components/administration/users/add/nf-registry-add-user.js'); var NfRegistryUserDetails = require('nifi-registry/components/administration/users/details/nf-registry-user-details.js'); @@ -56,12 +55,9 @@ var NfRegistryRoutes = new ngRouter.RouterModule.forRoot([{ component: NfRegistryAdministration, children: [{ path: '', - redirectTo: 'general', + redirectTo: 'users', pathMatch: 'full' }, { - path: 'general', - component: NfRegistryGeneralAdministration - }, { path: 'users', component: NfRegistryUsersAdministration }, { http://git-wip-us.apache.org/repos/asf/nifi-registry/blob/cd1114fc/nifi-registry-web-ui/src/main/webapp/nf-registry.spec.js ---------------------------------------------------------------------- diff --git a/nifi-registry-web-ui/src/main/webapp/nf-registry.spec.js b/nifi-registry-web-ui/src/main/webapp/nf-registry.spec.js index bde863b..8b381c9 100644 --- a/nifi-registry-web-ui/src/main/webapp/nf-registry.spec.js +++ b/nifi-registry-web-ui/src/main/webapp/nf-registry.spec.js @@ -25,7 +25,6 @@ var NfRegistryService = require('nifi-registry/services/nf-registry.service.js') var NfPageNotFoundComponent = require('nifi-registry/components/page-not-found/nf-registry-page-not-found.js'); var NfRegistryExplorer = require('nifi-registry/components/explorer/nf-registry-explorer.js'); var NfRegistryAdministration = require('nifi-registry/components/administration/nf-registry-administration.js'); -var NfRegistryGeneralAdministration = require('nifi-registry/components/administration/general/nf-registry-general-administration.js'); var NfRegistryUsersAdministration = require('nifi-registry/components/administration/users/nf-registry-users-administration.js'); var NfRegistryAddUser = require('nifi-registry/components/administration/users/add/nf-registry-add-user.js'); var NfRegistryUserDetails = require('nifi-registry/components/administration/users/details/nf-registry-user-details.js'); @@ -57,7 +56,6 @@ describe('NfRegistry Component', function () { NfRegistry, NfRegistryExplorer, NfRegistryAdministration, - NfRegistryGeneralAdministration, NfRegistryUsersAdministration, NfRegistryUserDetails, NfRegistryUserPermissions, http://git-wip-us.apache.org/repos/asf/nifi-registry/blob/cd1114fc/nifi-registry-web-ui/src/main/webapp/services/nf-registry.api.spec.js ---------------------------------------------------------------------- diff --git a/nifi-registry-web-ui/src/main/webapp/services/nf-registry.api.spec.js b/nifi-registry-web-ui/src/main/webapp/services/nf-registry.api.spec.js index 7bc869e..5c8e91b 100644 --- a/nifi-registry-web-ui/src/main/webapp/services/nf-registry.api.spec.js +++ b/nifi-registry-web-ui/src/main/webapp/services/nf-registry.api.spec.js @@ -26,7 +26,6 @@ var NfRegistryService = require('nifi-registry/services/nf-registry.service.js') var NfPageNotFoundComponent = require('nifi-registry/components/page-not-found/nf-registry-page-not-found.js'); var NfRegistryExplorer = require('nifi-registry/components/explorer/nf-registry-explorer.js'); var NfRegistryAdministration = require('nifi-registry/components/administration/nf-registry-administration.js'); -var NfRegistryGeneralAdministration = require('nifi-registry/components/administration/general/nf-registry-general-administration.js'); var NfRegistryUsersAdministration = require('nifi-registry/components/administration/users/nf-registry-users-administration.js'); var NfRegistryAddUser = require('nifi-registry/components/administration/users/add/nf-registry-add-user.js'); var NfRegistryUserDetails = require('nifi-registry/components/administration/users/details/nf-registry-user-details.js'); @@ -59,7 +58,6 @@ describe('NfRegistry Service API w/ Angular testing utils', function () { NfRegistry, NfRegistryExplorer, NfRegistryAdministration, - NfRegistryGeneralAdministration, NfRegistryUsersAdministration, NfRegistryUserDetails, NfRegistryUserPermissions, http://git-wip-us.apache.org/repos/asf/nifi-registry/blob/cd1114fc/nifi-registry-web-ui/src/main/webapp/services/nf-registry.service.spec.js ---------------------------------------------------------------------- diff --git a/nifi-registry-web-ui/src/main/webapp/services/nf-registry.service.spec.js b/nifi-registry-web-ui/src/main/webapp/services/nf-registry.service.spec.js index 64c6359..b13dded 100644 --- a/nifi-registry-web-ui/src/main/webapp/services/nf-registry.service.spec.js +++ b/nifi-registry-web-ui/src/main/webapp/services/nf-registry.service.spec.js @@ -26,7 +26,6 @@ var NfRegistryService = require('nifi-registry/services/nf-registry.service.js') var NfPageNotFoundComponent = require('nifi-registry/components/page-not-found/nf-registry-page-not-found.js'); var NfRegistryExplorer = require('nifi-registry/components/explorer/nf-registry-explorer.js'); var NfRegistryAdministration = require('nifi-registry/components/administration/nf-registry-administration.js'); -var NfRegistryGeneralAdministration = require('nifi-registry/components/administration/general/nf-registry-general-administration.js'); var NfRegistryUsersAdministration = require('nifi-registry/components/administration/users/nf-registry-users-administration.js'); var NfRegistryAddUser = require('nifi-registry/components/administration/users/add/nf-registry-add-user.js'); var NfRegistryUserDetails = require('nifi-registry/components/administration/users/details/nf-registry-user-details.js'); @@ -211,7 +210,6 @@ describe('NfRegistry Service w/ Angular testing utils', function () { NfRegistry, NfRegistryExplorer, NfRegistryAdministration, - NfRegistryGeneralAdministration, NfRegistryUsersAdministration, NfRegistryUserDetails, NfRegistryUserPermissions, http://git-wip-us.apache.org/repos/asf/nifi-registry/blob/cd1114fc/nifi-registry-web-ui/src/main/webapp/systemjs.builder.config.js ---------------------------------------------------------------------- diff --git a/nifi-registry-web-ui/src/main/webapp/systemjs.builder.config.js b/nifi-registry-web-ui/src/main/webapp/systemjs.builder.config.js index 34d02e0..e1e7fb5 100644 --- a/nifi-registry-web-ui/src/main/webapp/systemjs.builder.config.js +++ b/nifi-registry-web-ui/src/main/webapp/systemjs.builder.config.js @@ -92,7 +92,6 @@ 'nifi-registry/components/page-not-found/nf-registry-page-not-found.js': 'components/page-not-found/nf-registry-page-not-found.js', 'nifi-registry/components/explorer/nf-registry-explorer.js': 'components/explorer/nf-registry-explorer.js', 'nifi-registry/components/administration/nf-registry-administration.js': 'components/administration/nf-registry-administration.js', - 'nifi-registry/components/administration/general/nf-registry-general-administration.js': 'components/administration/general/nf-registry-general-administration.js', 'nifi-registry/components/administration/users/nf-registry-users-administration.js': 'components/administration/users/nf-registry-users-administration.js', 'nifi-registry/components/administration/users/add/nf-registry-add-user.js': 'components/administration/users/add/nf-registry-add-user.js', 'nifi-registry/components/administration/users/details/nf-registry-user-details.js': 'components/administration/users/details/nf-registry-user-details.js',
