Skip to content
This repository has been archived by the owner on Sep 21, 2020. It is now read-only.

Commit

Permalink
Update: Updating import paths to match web spec
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrodek committed Apr 4, 2019
1 parent 58d683f commit aaaa761
Show file tree
Hide file tree
Showing 19 changed files with 77 additions and 77 deletions.
2 changes: 1 addition & 1 deletion import-auth-data-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ License for the specific language governing permissions and limitations under
the License.
*/
import {ImportBaseTable} from './import-base-table.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';
import {html} from '../../@polymer/polymer/lib/utils/html-tag.js';
/**
* An element to display list of authorization data to import.
*
Expand Down
16 changes: 8 additions & 8 deletions import-base-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ 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 {PolymerElement} from '@polymer/polymer/polymer-element.js';
import '@polymer/iron-collapse/iron-collapse.js';
import '@advanced-rest-client/arc-icons/arc-icons.js';
import '@polymer/paper-icon-button/paper-icon-button.js';
import '@polymer/paper-checkbox/paper-checkbox.js';
import '@polymer/paper-item/paper-icon-item.js';
import '@polymer/paper-item/paper-item-body.js';
import {PolymerElement} from '../../@polymer/polymer/polymer-element.js';
import '../../@polymer/iron-collapse/iron-collapse.js';
import '../../@advanced-rest-client/arc-icons/arc-icons.js';
import '../../@polymer/paper-icon-button/paper-icon-button.js';
import '../../@polymer/paper-checkbox/paper-checkbox.js';
import '../../@polymer/paper-item/paper-icon-item.js';
import '../../@polymer/paper-item/paper-item-body.js';
import './import-table-common-styles.js';
import {ImportTableMixin} from './import-table-mixin.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';
import {html} from '../../@polymer/polymer/lib/utils/html-tag.js';
/**
* Base table class. Contains methods and templates to be
* used by other tables.
Expand Down
2 changes: 1 addition & 1 deletion import-cookies-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ License for the specific language governing permissions and limitations under
the License.
*/
import {ImportBaseTable} from './import-base-table.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';
import {html} from '../../@polymer/polymer/lib/utils/html-tag.js';
/**
* An element to display list of cookies to import.
*
Expand Down
8 changes: 4 additions & 4 deletions import-data-inspector.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ 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 {PolymerElement} from '@polymer/polymer/polymer-element.js';
import '@advanced-rest-client/date-time/date-time.js';
import '@polymer/paper-button/paper-button.js';
import {PolymerElement} from '../../@polymer/polymer/polymer-element.js';
import '../../@advanced-rest-client/date-time/date-time.js';
import '../../@polymer/paper-button/paper-button.js';
import './import-requests-table.js';
import './import-history-table.js';
import './import-variables-table.js';
Expand All @@ -22,7 +22,7 @@ import './import-cookies-table.js';
import './import-auth-data-table.js';
import './import-url-history-table.js';
import './import-websocket-url-history-table.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';
import {html} from '../../@polymer/polymer/lib/utils/html-tag.js';
/**
* An element to display tables of import data.
*
Expand Down
2 changes: 1 addition & 1 deletion import-headers-sets-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ License for the specific language governing permissions and limitations under
the License.
*/
import {ImportBaseTable} from './import-base-table.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';
import {html} from '../../@polymer/polymer/lib/utils/html-tag.js';
/**
* An element to display list of headers sets to import.
*
Expand Down
6 changes: 3 additions & 3 deletions import-history-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ 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 '@api-components/http-method-label/http-method-label.js';
import '@advanced-rest-client/date-time/date-time.js';
import '../../@api-components/http-method-label/http-method-label.js';
import '../../@advanced-rest-client/date-time/date-time.js';
import {ImportBaseTable} from './import-base-table.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';
import {html} from '../../@polymer/polymer/lib/utils/html-tag.js';
/**
* An element to display list of history objects to import.
*
Expand Down
26 changes: 13 additions & 13 deletions import-panel.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ 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 {PolymerElement} from '@polymer/polymer/polymer-element.js';
import '@advanced-rest-client/google-drive-browser/google-drive-browser.js';
import '@advanced-rest-client/file-reader/file-reader.js';
import '@polymer/paper-button/paper-button.js';
import '@polymer/iron-pages/iron-pages.js';
import '@polymer/iron-icon/iron-icon.js';
import '@advanced-rest-client/arc-icons/arc-icons.js';
import '@polymer/paper-icon-button/paper-icon-button.js';
import '@polymer/iron-flex-layout/iron-flex-layout.js';
import '@polymer/paper-styles/shadow.js';
import '@polymer/paper-input/paper-textarea.js';
import '@polymer/paper-toast/paper-toast.js';
import {PolymerElement} from '../../@polymer/polymer/polymer-element.js';
import '../../@advanced-rest-client/google-drive-browser/google-drive-browser.js';
import '../../@advanced-rest-client/file-reader/file-reader.js';
import '../../@polymer/paper-button/paper-button.js';
import '../../@polymer/iron-pages/iron-pages.js';
import '../../@polymer/iron-icon/iron-icon.js';
import '../../@advanced-rest-client/arc-icons/arc-icons.js';
import '../../@polymer/paper-icon-button/paper-icon-button.js';
import '../../@polymer/iron-flex-layout/iron-flex-layout.js';
import '../../@polymer/paper-styles/shadow.js';
import '../../@polymer/paper-input/paper-textarea.js';
import '../../@polymer/paper-toast/paper-toast.js';
import './import-data-inspector.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';
import {html} from '../../@polymer/polymer/lib/utils/html-tag.js';
/**
* The data import view for ARC.
*
Expand Down
18 changes: 9 additions & 9 deletions import-requests-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ 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 {PolymerElement} from '@polymer/polymer/polymer-element.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';
import '@polymer/iron-collapse/iron-collapse.js';
import '@advanced-rest-client/arc-icons/arc-icons.js';
import '@polymer/paper-icon-button/paper-icon-button.js';
import '@polymer/paper-checkbox/paper-checkbox.js';
import '@api-components/http-method-label/http-method-label.js';
import '@polymer/paper-item/paper-icon-item.js';
import '@polymer/paper-item/paper-item-body.js';
import {PolymerElement} from '../../@polymer/polymer/polymer-element.js';
import {html} from '../../@polymer/polymer/lib/utils/html-tag.js';
import '../../@polymer/iron-collapse/iron-collapse.js';
import '../../@advanced-rest-client/arc-icons/arc-icons.js';
import '../../@polymer/paper-icon-button/paper-icon-button.js';
import '../../@polymer/paper-checkbox/paper-checkbox.js';
import '../../@api-components/http-method-label/http-method-label.js';
import '../../@polymer/paper-item/paper-icon-item.js';
import '../../@polymer/paper-item/paper-item-body.js';
import './import-table-common-styles.js';
import {ImportTableMixin} from './import-table-mixin.js';
/**
Expand Down
2 changes: 1 addition & 1 deletion import-table-mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ 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 {dedupingMixin} from '@polymer/polymer/lib/utils/mixin.js';
import {dedupingMixin} from '../../@polymer/polymer/lib/utils/mixin.js';
/**
* A set of common functions for import panel
*
Expand Down
2 changes: 1 addition & 1 deletion import-url-history-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ License for the specific language governing permissions and limitations under
the License.
*/
import {ImportBaseTable} from './import-base-table.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';
import {html} from '../../@polymer/polymer/lib/utils/html-tag.js';
/**
* An element to display list of URLs hsitory to import.
*
Expand Down
2 changes: 1 addition & 1 deletion import-variables-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ License for the specific language governing permissions and limitations under
the License.
*/
import {ImportBaseTable} from './import-base-table.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';
import {html} from '../../@polymer/polymer/lib/utils/html-tag.js';
/**
* An element to display list of variables to import.
*
Expand Down
2 changes: 1 addition & 1 deletion import-websocket-url-history-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ License for the specific language governing permissions and limitations under
the License.
*/
import {ImportBaseTable} from './import-base-table.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';
import {html} from '../../@polymer/polymer/lib/utils/html-tag.js';
/**
* An element to display list of URLs hsitory to import.
*
Expand Down
10 changes: 5 additions & 5 deletions test/basic-test.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">

<script src="../node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script src="../node_modules/@polymer/test-fixture/test-fixture.js"></script>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../node_modules/chai/chai.js"></script>
<script src="../node_modules/wct-mocha/wct-mocha.js"></script>
<script src="../../../@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script src="../../../@polymer/test-fixture/test-fixture.js"></script>
<script src="../../../mocha/mocha.js"></script>
<script src="../../../chai/chai.js"></script>
<script src="../../../wct-mocha/wct-mocha.js"></script>

</head>
<body>
Expand Down
12 changes: 6 additions & 6 deletions test/data-import-flow-test.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">

<script src="../node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script src="../node_modules/@polymer/test-fixture/test-fixture.js"></script>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../node_modules/chai/chai.js"></script>
<script src="../node_modules/wct-mocha/wct-mocha.js"></script>
<script src="../../../@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script src="../../../@polymer/test-fixture/test-fixture.js"></script>
<script src="../../../mocha/mocha.js"></script>
<script src="../../../chai/chai.js"></script>
<script src="../../../wct-mocha/wct-mocha.js"></script>

</head>
<body>

Expand Down
10 changes: 5 additions & 5 deletions test/data-normalize-flow-test.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">

<script src="../node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script src="../node_modules/@polymer/test-fixture/test-fixture.js"></script>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../node_modules/chai/chai.js"></script>
<script src="../node_modules/wct-mocha/wct-mocha.js"></script>
<script src="../../../@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script src="../../../@polymer/test-fixture/test-fixture.js"></script>
<script src="../../../mocha/mocha.js"></script>
<script src="../../../chai/chai.js"></script>
<script src="../../../wct-mocha/wct-mocha.js"></script>

</head>
<body>
Expand Down
10 changes: 5 additions & 5 deletions test/import-requests-table-test.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">

<script src="../node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script src="../node_modules/@polymer/test-fixture/test-fixture.js"></script>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../node_modules/chai/chai.js"></script>
<script src="../node_modules/wct-mocha/wct-mocha.js"></script>
<script src="../../../@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script src="../../../@polymer/test-fixture/test-fixture.js"></script>
<script src="../../../mocha/mocha.js"></script>
<script src="../../../chai/chai.js"></script>
<script src="../../../wct-mocha/wct-mocha.js"></script>

</head>
<body>
Expand Down
10 changes: 5 additions & 5 deletions test/import-table-mixin-test.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">

<script src="../node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script src="../node_modules/@polymer/test-fixture/test-fixture.js"></script>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../node_modules/chai/chai.js"></script>
<script src="../node_modules/wct-mocha/wct-mocha.js"></script>
<script src="../../../@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script src="../../../@polymer/test-fixture/test-fixture.js"></script>
<script src="../../../mocha/mocha.js"></script>
<script src="../../../chai/chai.js"></script>
<script src="../../../wct-mocha/wct-mocha.js"></script>

</head>
<body>
Expand Down
10 changes: 5 additions & 5 deletions test/import-table-test.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">

<script src="../node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script src="../node_modules/@polymer/test-fixture/test-fixture.js"></script>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../node_modules/chai/chai.js"></script>
<script src="../node_modules/wct-mocha/wct-mocha.js"></script>
<script src="../../../@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script src="../../../@polymer/test-fixture/test-fixture.js"></script>
<script src="../../../mocha/mocha.js"></script>
<script src="../../../chai/chai.js"></script>
<script src="../../../wct-mocha/wct-mocha.js"></script>


<script type="module" src="../import-panel.js"></script>
Expand Down
4 changes: 2 additions & 2 deletions test/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../node_modules/wct-mocha/wct-mocha.js"></script>
<script src="../../../mocha/mocha.js"></script>
<script src="../../../wct-mocha/wct-mocha.js"></script>
</head>

<body>
Expand Down

0 comments on commit aaaa761

Please sign in to comment.