http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/src/app/shared/services/async-query.service.ts
----------------------------------------------------------------------
diff --git 
a/asterixdb/asterix-app/src/main/resources/dashboard/src/app/shared/services/async-query.service.ts
 
b/asterixdb/asterix-app/src/main/resources/dashboard/src/app/shared/services/async-query.service.ts
deleted file mode 100755
index e37872e..0000000
--- 
a/asterixdb/asterix-app/src/main/resources/dashboard/src/app/shared/services/async-query.service.ts
+++ /dev/null
@@ -1,190 +0,0 @@
-/*
-Licensed 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.
-*/
-import { Injectable } from '@angular/core';
-import { HttpClient } from '@angular/common/http';
-import { Store } from '@ngrx/store';
-import { Observable } from "rxjs/Observable";
-import 'rxjs/add/operator/map';
-
-var AsterixRestApiUrl = 'http://localhost:19002/query/service'; 
-//var AsterixRestApiUrl = '/query-service'; 
-
-/*
-* SQL query service using AsterixDB REST API /query/service
-*/
-@Injectable()
-export class SQLService {
-
-       /*
-       * SQLQueryService constructor using
-       * HttpClient from Angular 4
-       */
-       constructor(private http: HttpClient) {}
-
-       /*
-       * sends a select sql++ query to return all the dataverses
-       * from AsterixDB Metadata
-       */
-       selectDataverses() : Observable<any[]> {
-                let query = "SELECT VALUE dv FROM Metadata.`Dataverse` dv"
-                return this.executeSQLQuery(query);
-       }
-
-       /*
-       * sends a select sql++ query to return all the datasets
-       * from AsterixDB Metadata
-       */
-       selectDatasets() : Observable<any[]> {
-               let query = "SELECT VALUE ds FROM Metadata.`Dataset` ds"
-               return this.executeSQLQuery(query);
-       }
-
-       /*
-       * sends a select sql++ query to return all the datatypes
-       * from AsterixDB Metadata
-       */
-       selectDatatypes() : Observable<any[]> {
-       let query = "SELECT VALUE dt FROM Metadata.`Datatype` dt"
-               return this.executeSQLQuery(query);
-       }
-
-       /*
-       * sends a select sql++ query to return all the indexes
-       * from AsterixDB Metadata
-       */
-       selectIndexes() : Observable<any[]> {
-       let query = "SELECT VALUE ix FROM Metadata.`Index` ix"
-               return this.executeSQLQuery(query);
-       }
-
-       /*
-       * creates a sql++ ddl query to create a Dataverse
-       * from AsterixDB Metadata
-       */
-       createDataverse(dataverse: string) : Observable<any[]> {
-       let ddlQuery = "CREATE DATAVERSE " + dataverse + ";";
-               return this.executeDDLSQLQuery(ddlQuery);
-       }
-
-       /*
-       * creates a sql++ ddl query to drop a Dataverse
-       * from AsterixDB Metadata
-       */
-       dropDataverse(dataverse: string) : Observable<any[]> {
-               let ddlQuery = "DROP DATAVERSE " + dataverse; // " IF EXISTS;";
-               return this.executeDDLSQLQuery(ddlQuery);
-         }
-
-       /*
-       * creates a sql++ ddl query to create a Dataset
-       * from AsterixDB Metadata
-       */
-       createDataset(dataset: string) : Observable<any[]> {
-               let ddlQuery = "CREATE DATASET " + dataset + ";";
-               return this.executeDDLSQLQuery(ddlQuery);
-       }
-
-       /*
-       * creates a sql++ ddl query to drop a Dataset
-       * from AsterixDB Metadata
-       */
-       dropDataset(dataset: string) : Observable<any[]> {
-               let ddlQuery = "DROP DATASET " + dataset; //" IF EXISTS;";
-               return this.executeDDLSQLQuery(ddlQuery);
-       }
-
-       /*
-       * creates a sql++ ddl query to create a Datatype
-       * from AsterixDB Metadata
-       */
-       createDatatype(datatype: string) : Observable<any[]> {
-       let ddlQuery = "CREATE DATATYPE " + datatype + ";";
-               return this.executeDDLSQLQuery(ddlQuery);
-       }
-
-       /*
-       * creates a sql++ ddl query to drop a Datatype
-       * from AsterixDB Metadata
-       */
-       dropDatatype(datatype: string) : Observable<any[]> {
-               let ddlQuery = "DROP TYPE " + datatype; //" IF EXISTS;";
-               return this.executeDDLSQLQuery(ddlQuery);
-       }
-
-       /*
-       * creates a sql++ ddl query to create a Index
-       * from AsterixDB Metadata
-       */
-       createIndex(index: string) : Observable<any[]> {
-               let ddlQuery = "CREATE INDEX " + index + ";";
-               return this.executeDDLSQLQuery(ddlQuery);
-       }
-
-       /*
-       * creates a sql++ ddl query to drop a Index
-       * from AsterixDB Metadata
-       */
-       dropIndex(index: string) : Observable<any[]> {
-               let ddlQuery = "DROP INDEX " + index; // + " IF EXISTS;";
-               return this.executeDDLSQLQuery(ddlQuery);
-       }
-
-       /*
-       * Executes a sql++ ddl query against AsterixDB
-       * response is a JSON object with following structure:
-                 metrics: Metrics;
-                 requestId: string;
-                 results: any[];
-                 signature: string;
-                 status: string;
-       */
-       executeDDLSQLQuery(ddlQuery: string): Observable<any[]> {
-    const apiUrl = AsterixRestApiUrl;
-               return this.http.post(apiUrl, {statement: ddlQuery})
-                       .map((response: Response) => { return response })
-                       .catch((error: any) => 
this.handleExecuteQueryError(error));
-       }
-
-       /*
-       * Executes a sql++ query against AsterixDB
-       * response is a JSON object with following structure:
-                 metrics: Metrics;
-                 requestId: string;
-                 results: any[];
-                 signature: string;
-                 status: string;
-       */
-       executeSQLQuery(query: string): Observable<any[]> {
-    const apiUrl = AsterixRestApiUrl;
-               return this.http.post(apiUrl, {statement: query})
-                       .map((response: Response) => { return response })
-                       .catch((error: any) => 
this.handleExecuteQueryError(error));
-       }
-
-       /*
-       * AsterixDB query-service API raises HTTP errors if the sql++ query has 
some
-       * syntax error, or some elements in the query are not found
-       * this function extract the error JSON object with the relevant 
information
-               response is a JSON object with following structure:
-                 metrics: Metrics;
-                 requestId: string;
-                 errors: any[];
-                 signature: string;
-                 status: string;
-       */
-       private handleExecuteQueryError(error: any): Promise<any> {
-               console.log(error)
-               return Promise.reject(error.error || error);
-       }
-}

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/src/assets/asterixdb_tm.png
----------------------------------------------------------------------
diff --git 
a/asterixdb/asterix-app/src/main/resources/dashboard/src/assets/asterixdb_tm.png
 
b/asterixdb/asterix-app/src/main/resources/dashboard/src/assets/asterixdb_tm.png
deleted file mode 100755
index 0fa2ff0..0000000
Binary files 
a/asterixdb/asterix-app/src/main/resources/dashboard/src/assets/asterixdb_tm.png
 and /dev/null differ

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/src/environments/environment.prod.ts
----------------------------------------------------------------------
diff --git 
a/asterixdb/asterix-app/src/main/resources/dashboard/src/environments/environment.prod.ts
 
b/asterixdb/asterix-app/src/main/resources/dashboard/src/environments/environment.prod.ts
deleted file mode 100755
index ca15503..0000000
--- 
a/asterixdb/asterix-app/src/main/resources/dashboard/src/environments/environment.prod.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-Licensed 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.
-*/
-export const environment = {
-  production: true
-};

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/src/environments/environment.ts
----------------------------------------------------------------------
diff --git 
a/asterixdb/asterix-app/src/main/resources/dashboard/src/environments/environment.ts
 
b/asterixdb/asterix-app/src/main/resources/dashboard/src/environments/environment.ts
deleted file mode 100755
index 2750f0a..0000000
--- 
a/asterixdb/asterix-app/src/main/resources/dashboard/src/environments/environment.ts
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
-Licensed 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.
-*/
-// The file contents for the current environment will overwrite these during 
build.
-// The build system defaults to the dev environment which uses 
`environment.ts`, but if you do
-// `ng build --env=prod` then `environment.prod.ts` will be used instead.
-// The list of which env maps to which file can be found in 
`.angular-cli.json`.
-
-export const environment = {
-  production: false
-};

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/src/favicon.ico
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-app/src/main/resources/dashboard/src/favicon.ico 
b/asterixdb/asterix-app/src/main/resources/dashboard/src/favicon.ico
deleted file mode 100755
index 282c28d..0000000
Binary files 
a/asterixdb/asterix-app/src/main/resources/dashboard/src/favicon.ico and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/src/index.html
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-app/src/main/resources/dashboard/src/index.html 
b/asterixdb/asterix-app/src/main/resources/dashboard/src/index.html
deleted file mode 100755
index 8dab418..0000000
--- a/asterixdb/asterix-app/src/main/resources/dashboard/src/index.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!--/*
-Licensed 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.
-*/-->
-<!DOCTYPE html>
-<html>
-  <head>
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1, 
shrink-to-fit=no">
-    <title>AsterixDb Administration Console</title>
-    <base href="/">
-    <link rel="icon" type="image/x-icon" href="favicon.ico">
-    <link rel="stylesheet" 
href="https://fonts.googleapis.com/css?family=Roboto+Mono";>
-    <link rel="stylesheet" 
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500";>
-    <link rel="stylesheet" 
href="https://fonts.googleapis.com/icon?family=Material+Icons";>
-    <link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css";>
-  </head>
-  <body>
-    <awc-root></awc-root>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/src/main.scss
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-app/src/main/resources/dashboard/src/main.scss 
b/asterixdb/asterix-app/src/main/resources/dashboard/src/main.scss
deleted file mode 100755
index cc02584..0000000
--- a/asterixdb/asterix-app/src/main/resources/dashboard/src/main.scss
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
-Licensed 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.
-*/
-@import './styles/general';
-
-// Include material core styles.
-@import '~@angular/material/theming';
-@include mat-core();
-
-// Define the light theme.
-$primary: mat-palette($mat-grey);
-$accent:  mat-palette($mat-orange, A200, A100, A400);
-
-$theme: mat-light-theme($primary, $accent);
-@include angular-material-theme($theme);
-
-* {
-    font-family: Roboto, "Helvetica Neue", sans-serif;
-  }
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/src/main.ts
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-app/src/main/resources/dashboard/src/main.ts 
b/asterixdb/asterix-app/src/main/resources/dashboard/src/main.ts
deleted file mode 100755
index 446a9dc..0000000
--- a/asterixdb/asterix-app/src/main/resources/dashboard/src/main.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
-Licensed 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.
-*/
-import './polyfills.ts';
-import 'hammerjs';
-import { enableProdMode } from '@angular/core';
-import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
-import { AppModule } from './app/app.module';
-import { environment } from './environments/environment';
-
-if (environment.production) {
-  enableProdMode();
-}
-
-platformBrowserDynamic().bootstrapModule(AppModule)
-  .catch(err => console.log(err));

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/src/polyfills.ts
----------------------------------------------------------------------
diff --git 
a/asterixdb/asterix-app/src/main/resources/dashboard/src/polyfills.ts 
b/asterixdb/asterix-app/src/main/resources/dashboard/src/polyfills.ts
deleted file mode 100755
index 20d4075..0000000
--- a/asterixdb/asterix-app/src/main/resources/dashboard/src/polyfills.ts
+++ /dev/null
@@ -1,76 +0,0 @@
-/**
- * This file includes polyfills needed by Angular and is loaded before the app.
- * You can add your own extra polyfills to this file.
- *
- * This file is divided into 2 sections:
- *   1. Browser polyfills. These are applied before loading ZoneJS and are 
sorted by browsers.
- *   2. Application imports. Files imported after ZoneJS that should be loaded 
before your main
- *      file.
- *
- * The current setup is for so-called "evergreen" browsers; the last versions 
of browsers that
- * automatically update themselves. This includes Safari >= 10, Chrome >= 55 
(including Opera),
- * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile.
- *
- * Learn more in https://angular.io/docs/ts/latest/guide/browser-support.html
- */
-
-/***************************************************************************************************
- * BROWSER POLYFILLS
- */
-
-/** IE9, IE10 and IE11 requires all of the following polyfills. **/
-// import 'core-js/es6/symbol';
-// import 'core-js/es6/object';
-// import 'core-js/es6/function';
-// import 'core-js/es6/parse-int';
-// import 'core-js/es6/parse-float';
-// import 'core-js/es6/number';
-// import 'core-js/es6/math';
-// import 'core-js/es6/string';
-// import 'core-js/es6/date';
-// import 'core-js/es6/array';
-// import 'core-js/es6/regexp';
-// import 'core-js/es6/map';
-// import 'core-js/es6/weak-map';
-// import 'core-js/es6/set';
-
-/** IE10 and IE11 requires the following for NgClass support on SVG elements */
-// import 'classlist.js';  // Run `npm install --save classlist.js`.
-
-/** IE10 and IE11 requires the following for the Reflect API. */
-// import 'core-js/es6/reflect';
-
-
-/** Evergreen browsers require these. **/
-// Used for reflect-metadata in JIT. If you use AOT (and only Angular 
decorators), you can remove.
-import 'core-js/es7/reflect';
-
-
-/**
- * Required to support Web Animations `@angular/platform-browser/animations`.
- * Needed for: All but Chrome, Firefox and Opera. 
http://caniuse.com/#feat=web-animation
- **/
-// import 'web-animations-js';  // Run `npm install --save web-animations-js`.
-
-
-
-/***************************************************************************************************
- * Zone JS is required by Angular itself.
- */
-import 'zone.js/dist/zone';  // Included with Angular CLI.
-
-
-
-/***************************************************************************************************
- * APPLICATION IMPORTS
- */
-
-/**
- * Date, currency, decimal and percent pipes.
- * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10
- */
-// import 'intl';  // Run `npm install --save intl`.
-/**
- * Need to import at least one locale-data with intl.
- */
-// import 'intl/locale-data/jsonp/en';

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/src/styles/_constants.scss
----------------------------------------------------------------------
diff --git 
a/asterixdb/asterix-app/src/main/resources/dashboard/src/styles/_constants.scss 
b/asterixdb/asterix-app/src/main/resources/dashboard/src/styles/_constants.scss
deleted file mode 100755
index b3a5d07..0000000
--- 
a/asterixdb/asterix-app/src/main/resources/dashboard/src/styles/_constants.scss
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
-Licensed 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.
-*/
-@import '../../node_modules/@angular/material/theming';
-
-$small-breakpoint-width: 720px;
-
-/* For desktop, the content should be aligned with the page title. */
-$content-padding-side: 70px;
-$content-padding-side-xs: 15px;
-$awc-spacing-unit: 8px;

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/src/styles/_general.scss
----------------------------------------------------------------------
diff --git 
a/asterixdb/asterix-app/src/main/resources/dashboard/src/styles/_general.scss 
b/asterixdb/asterix-app/src/main/resources/dashboard/src/styles/_general.scss
deleted file mode 100755
index 9691cf8..0000000
--- 
a/asterixdb/asterix-app/src/main/resources/dashboard/src/styles/_general.scss
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
-Licensed 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.
-*/
-html {
-  box-sizing: border-box;
-}
-
-body {
-  font-family: "Roboto Mono", monospace;
-  font-size: 0.80rem;
-       font-weight: 500;
-}
-
-// Tree and table styling
-
-.ui-datatable{
-  //overflow : auto
-}
-
-.ui-datatable .ui-sortable-column div.ui-dt-c {
-  padding-right: 15px !important;
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/src/test.ts
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-app/src/main/resources/dashboard/src/test.ts 
b/asterixdb/asterix-app/src/main/resources/dashboard/src/test.ts
deleted file mode 100755
index 6edcb85..0000000
--- a/asterixdb/asterix-app/src/main/resources/dashboard/src/test.ts
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
-Licensed 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.
-*/
-
-// This file is required by karma.conf.js and loads recursively all the .spec 
and framework files
-
-import 'zone.js/dist/long-stack-trace-zone';
-import 'zone.js/dist/proxy.js';
-import 'zone.js/dist/sync-test';
-import 'zone.js/dist/jasmine-patch';
-import 'zone.js/dist/async-test';
-import 'zone.js/dist/fake-async-test';
-import { getTestBed } from '@angular/core/testing';
-import {
-  BrowserDynamicTestingModule,
-  platformBrowserDynamicTesting
-} from '@angular/platform-browser-dynamic/testing';
-
-// Unfortunately there's no typing for the `__karma__` variable. Just declare 
it as any.
-declare const __karma__: any;
-declare const require: any;
-
-// Prevent Karma from running prematurely.
-__karma__.loaded = function () {};
-
-// First, initialize the Angular testing environment.
-getTestBed().initTestEnvironment(
-  BrowserDynamicTestingModule,
-  platformBrowserDynamicTesting()
-);
-// Then we find all the tests.
-const context = require.context('./', true, /\.spec\.ts$/);
-// And load the modules.
-context.keys().map(context);
-// Finally, start Karma to run the tests.
-__karma__.start();

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/src/tsconfig.app.json
----------------------------------------------------------------------
diff --git 
a/asterixdb/asterix-app/src/main/resources/dashboard/src/tsconfig.app.json 
b/asterixdb/asterix-app/src/main/resources/dashboard/src/tsconfig.app.json
deleted file mode 100755
index 54434df..0000000
--- a/asterixdb/asterix-app/src/main/resources/dashboard/src/tsconfig.app.json
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
-Licensed 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.
-*/
-{
-  "extends": "../tsconfig.json",
-  "compilerOptions": {
-    "outDir": "../out-tsc/app",
-    "baseUrl": "./",
-    "module": "es2015",
-    "types": []
-  },
-  "exclude": [
-    "test.ts",
-    "**/*.spec.ts"
-  ]
-}

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/src/tsconfig.spec.json
----------------------------------------------------------------------
diff --git 
a/asterixdb/asterix-app/src/main/resources/dashboard/src/tsconfig.spec.json 
b/asterixdb/asterix-app/src/main/resources/dashboard/src/tsconfig.spec.json
deleted file mode 100755
index 15bcf37..0000000
--- a/asterixdb/asterix-app/src/main/resources/dashboard/src/tsconfig.spec.json
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
-Licensed 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.
-*/
-{
-  "extends": "../tsconfig.json",
-  "compilerOptions": {
-    "outDir": "../out-tsc/spec",
-    "baseUrl": "./",
-    "module": "commonjs",
-    "target": "es5",
-    "types": [
-      "jasmine",
-      "node"
-    ]
-  },
-  "files": [
-    "test.ts"
-  ],
-  "include": [
-    "**/*.spec.ts",
-    "**/*.d.ts"
-  ]
-}

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/src/typings.d.ts
----------------------------------------------------------------------
diff --git 
a/asterixdb/asterix-app/src/main/resources/dashboard/src/typings.d.ts 
b/asterixdb/asterix-app/src/main/resources/dashboard/src/typings.d.ts
deleted file mode 100755
index ef5c7bd..0000000
--- a/asterixdb/asterix-app/src/main/resources/dashboard/src/typings.d.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-/* SystemJS module definition */
-declare var module: NodeModule;
-interface NodeModule {
-  id: string;
-}

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/static/3rdpartylicenses.txt
----------------------------------------------------------------------
diff --git 
a/asterixdb/asterix-app/src/main/resources/dashboard/static/3rdpartylicenses.txt
 
b/asterixdb/asterix-app/src/main/resources/dashboard/static/3rdpartylicenses.txt
deleted file mode 100644
index 03758a4..0000000
--- 
a/asterixdb/asterix-app/src/main/resources/dashboard/static/3rdpartylicenses.txt
+++ /dev/null
@@ -1,222 +0,0 @@
-@angular/[email protected]
-MIT
-MIT
-
-@angular/[email protected]
-MIT
-MIT
-
-@angular/[email protected]
-MIT
-MIT
-
-@angular/[email protected]
-MIT
-MIT
-
-@ngrx/[email protected]
-MIT
-The MIT License (MIT)
-
-Copyright (c) 2017 Brandon Roberts, Mike Ryan, Victor Savkin, Rob Wormald
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
[email protected]
-MIT
-MIT License
-
-Copyright (C) 2017 by Marijn Haverbeke <[email protected]> and others
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
[email protected]
-MIT
-Copyright (c) 2014-2017 Denis Pushkarev
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
[email protected]
-MIT
-The MIT License
-
-Copyright © 2016 [Eli Grey][1].
-
-Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the "Software"), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all 
copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.
-
-  [1]: http://eligrey.com
-
[email protected]
-MIT
-The MIT License (MIT)
-
-Copyright (C) 2011-2014 by Jorik Tangelder (Eight Media)
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
[email protected]
-MIT
-The MIT License (MIT)
-
-Copyright (c) 2016-2017 PrimeTek
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
-@angular/[email protected]
-MIT
-MIT
-
-@ngrx/[email protected]
-MIT
-The MIT License (MIT)
-
-Copyright (c) 2017 Brandon Roberts, Mike Ryan, Victor Savkin, Rob Wormald
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
[email protected]
-MIT
-Copyright JS Foundation and other contributors
-
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of this software and associated documentation files (the
-'Software'), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
-CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
-TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
-SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
[email protected]
-MIT
-The MIT License
-
-Copyright (c) 2016 Google, Inc.
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/static/assets/asterixdb_tm.png
----------------------------------------------------------------------
diff --git 
a/asterixdb/asterix-app/src/main/resources/dashboard/static/assets/asterixdb_tm.png
 
b/asterixdb/asterix-app/src/main/resources/dashboard/static/assets/asterixdb_tm.png
deleted file mode 100644
index 0fa2ff0..0000000
Binary files 
a/asterixdb/asterix-app/src/main/resources/dashboard/static/assets/asterixdb_tm.png
 and /dev/null differ

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/static/color.c7a33805ffda0d32bd2a.png
----------------------------------------------------------------------
diff --git 
a/asterixdb/asterix-app/src/main/resources/dashboard/static/color.c7a33805ffda0d32bd2a.png
 
b/asterixdb/asterix-app/src/main/resources/dashboard/static/color.c7a33805ffda0d32bd2a.png
deleted file mode 100644
index 561cdd9..0000000
Binary files 
a/asterixdb/asterix-app/src/main/resources/dashboard/static/color.c7a33805ffda0d32bd2a.png
 and /dev/null differ

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/static/favicon.ico
----------------------------------------------------------------------
diff --git 
a/asterixdb/asterix-app/src/main/resources/dashboard/static/favicon.ico 
b/asterixdb/asterix-app/src/main/resources/dashboard/static/favicon.ico
deleted file mode 100644
index 282c28d..0000000
Binary files 
a/asterixdb/asterix-app/src/main/resources/dashboard/static/favicon.ico and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/static/index.html
----------------------------------------------------------------------
diff --git 
a/asterixdb/asterix-app/src/main/resources/dashboard/static/index.html 
b/asterixdb/asterix-app/src/main/resources/dashboard/static/index.html
deleted file mode 100644
index c34009b..0000000
--- a/asterixdb/asterix-app/src/main/resources/dashboard/static/index.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<!--/*
-Licensed 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.
-*/--><!DOCTYPE html><html><head><meta charset="utf-8"><meta name="viewport" 
content="width=device-width,initial-scale=1,shrink-to-fit=no"><title>AsterixDb 
Administration Console</title><base href="/dashboard/static/"><link rel="icon" 
type="image/x-icon" href="favicon.ico"><link rel="stylesheet" 
href="https://fonts.googleapis.com/css?family=Roboto+Mono";><link 
rel="stylesheet" 
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500";><link 
rel="stylesheet" 
href="https://fonts.googleapis.com/icon?family=Material+Icons";><link 
rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css";><link
 href="styles.9f50282210bba5318775.bundle.css" 
rel="stylesheet"/></head><body><awc-root></awc-root><script 
type="text/javascript" 
src="inline.66bd6b83f86cf773a001.bundle.js"></script><script 
type="text/javascript" 
src="polyfills.32ca5670d6503e090789.bundle.js"></script><script 
type="text/javascript" src="scripts.da68998bdd77aff4e764.bundle.js"></s
 cript><script type="text/javascript" 
src="main.37b7b7cad656490b195a.bundle.js"></script></body></html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/static/inline.66bd6b83f86cf773a001.bundle.js
----------------------------------------------------------------------
diff --git 
a/asterixdb/asterix-app/src/main/resources/dashboard/static/inline.66bd6b83f86cf773a001.bundle.js
 
b/asterixdb/asterix-app/src/main/resources/dashboard/static/inline.66bd6b83f86cf773a001.bundle.js
deleted file mode 100644
index 1868b98..0000000
--- 
a/asterixdb/asterix-app/src/main/resources/dashboard/static/inline.66bd6b83f86cf773a001.bundle.js
+++ /dev/null
@@ -1 +0,0 @@
-!function(e){function n(r){if(t[r])return t[r].exports;var 
o=t[r]={i:r,l:!1,exports:{}};return 
e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}var 
r=window.webpackJsonp;window.webpackJsonp=function(t,c,a){for(var 
u,i,f,l=0,s=[];l<t.length;l++)o[i=t[l]]&&s.push(o[i][0]),o[i]=0;for(u in 
c)Object.prototype.hasOwnProperty.call(c,u)&&(e[u]=c[u]);for(r&&r(t,c,a);s.length;)s.shift()();if(a)for(l=0;l<a.length;l++)f=n(n.s=a[l]);return
 f};var t={},o={3:0};n.e=function(e){function 
r(){u.onerror=u.onload=null,clearTimeout(i);var n=o[e];0!==n&&(n&&n[1](new 
Error("Loading chunk "+e+" failed.")),o[e]=void 0)}var t=o[e];if(0===t)return 
new Promise(function(e){e()});if(t)return t[2];var c=new 
Promise(function(n,r){t=o[e]=[n,r]});t[2]=c;var 
a=document.getElementsByTagName("head")[0],u=document.createElement("script");u.type="text/javascript",u.charset="utf-8",u.async=!0,u.timeout=12e4,n.nc&&u.setAttribute("nonce",n.nc),u.src=n.p+""+e+"."+{0:"37b7b7cad656490b195a",1:"32ca5670d6503e090789",2:"bd9c5
 1474f663c9da388"}[e]+".chunk.js";var i=setTimeout(r,12e4);return 
u.onerror=u.onload=r,a.appendChild(u),c},n.m=e,n.c=t,n.d=function(e,r,t){n.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:t})},n.n=function(e){var
 r=e&&e.__esModule?function(){return e.default}:function(){return e};return 
n.d(r,"a",r),r},n.o=function(e,n){return 
Object.prototype.hasOwnProperty.call(e,n)},n.p="",n.oe=function(e){throw 
console.error(e),e}}([]);
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a7e8dbe3/asterixdb/asterix-app/src/main/resources/dashboard/static/line.567f57385ea3dde2c9ae.gif
----------------------------------------------------------------------
diff --git 
a/asterixdb/asterix-app/src/main/resources/dashboard/static/line.567f57385ea3dde2c9ae.gif
 
b/asterixdb/asterix-app/src/main/resources/dashboard/static/line.567f57385ea3dde2c9ae.gif
deleted file mode 100644
index 64e2280..0000000
Binary files 
a/asterixdb/asterix-app/src/main/resources/dashboard/static/line.567f57385ea3dde2c9ae.gif
 and /dev/null differ

Reply via email to