diff --git a/demo-shell-ng2/webcomponents/alfresco-file-list/.editorconfig b/demo-shell-ng2/webcomponents/alfresco-file-list/.editorconfig deleted file mode 100644 index 407f794dee..0000000000 --- a/demo-shell-ng2/webcomponents/alfresco-file-list/.editorconfig +++ /dev/null @@ -1,19 +0,0 @@ -# EditorConfig helps developers define and maintain consistent -# coding styles between different editors and IDEs -# http://editorconfig.org - -root = true - -[*] -# Change these settings to your own preference -indent_style = space -indent_size = 4 - -# We recommend you to keep these unchanged -end_of_line = lf -charset = utf-8 -trim_trailing_whitespace = true -insert_final_newline = true - -[*.md] -trim_trailing_whitespace = false diff --git a/demo-shell-ng2/webcomponents/alfresco-file-list/.gitignore b/demo-shell-ng2/webcomponents/alfresco-file-list/.gitignore deleted file mode 100644 index c346b13427..0000000000 --- a/demo-shell-ng2/webcomponents/alfresco-file-list/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -bower_components/ -node_modules/ diff --git a/demo-shell-ng2/webcomponents/alfresco-file-list/README.md b/demo-shell-ng2/webcomponents/alfresco-file-list/README.md deleted file mode 100644 index cdef03c87e..0000000000 --- a/demo-shell-ng2/webcomponents/alfresco-file-list/README.md +++ /dev/null @@ -1,105 +0,0 @@ -# <alfresco-file-list> - -> Alfresco files and Folders viewver list - -## Demo - -[Check it live!](http://eromano.github.io/alfresco-file-list) - -## Install - -Install the component using [Bower](http://bower.io/): - -```sh -$ bower install alfresco-file-list --save -``` - -Or [download as ZIP](https://github.com/eromano/alfresco-file-list/archive/master.zip). - -## Usage - -1. Import Web Components' polyfill: - - ```html - - ``` - -2. Import Custom Element: - - ```html - - ``` - -3. Start using it! - - ```html - - ``` - -## Options - -Attribute | Options | Default | Description ---- | --- | --- | --- -`foo` | *string* | `bar` | Lorem ipsum dolor. - -## Methods - -Method | Parameters | Returns | Description ---- | --- | --- | --- -`unicorn()` | None. | Nothing. | Magic stuff appears. - -## Events - -Event | Description ---- | --- -`onsomething` | Triggers when something happens. - -## Development - -In order to run it locally you'll need to fetch some dependencies and a basic server setup. - -* Install [Bower](http://bower.io/) & [Grunt](http://gruntjs.com/): - - ```sh - $ [sudo] npm install -g bower grunt-cli - ``` - -* Install local dependencies: - - ```sh - $ bower install && npm install - ``` - -* To test your project, start the development server and open `http://localhost:8000`. - - ```sh - $ grunt server - ``` - -* To build the distribution files before releasing a new version. - - ```sh - $ grunt build - ``` - -* To provide a live demo, send everything to `gh-pages` branch. - - ```sh - $ grunt deploy - ``` - -## Contributing - -1. Fork it! -2. Create your feature branch: `git checkout -b my-new-feature` -3. Commit your changes: `git commit -m 'Add some feature'` -4. Push to the branch: `git push origin my-new-feature` -5. Submit a pull request :D - -## History - -For detailed changelog, check [Releases](https://github.com/eromano/alfresco-file-list/releases). - -## License - -[MIT License](http://opensource.org/licenses/MIT) diff --git a/demo-shell-ng2/webcomponents/alfresco-file-list/bower.json b/demo-shell-ng2/webcomponents/alfresco-file-list/bower.json deleted file mode 100644 index 10dc9e7fb5..0000000000 --- a/demo-shell-ng2/webcomponents/alfresco-file-list/bower.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "alfresco-file-list", - "version": "0.0.0", - "description": "Alfresco files and Folders viewver list ", - "license": "MIT", - "main": "dist/alfresco-file-list.html", - "keywords": [ - "polymer", - "web-components" - ], - "ignore": [ - "**/.*", - "node_modules", - "bower_components" - ], - "dependencies": { - "polymer": "Polymer/polymer#^1.4.0", - "iron-list": "PolymerElements/iron-list#^1.2.8", - "iron-ajax": "PolymerElements/iron-ajax#^1.2.0", - "iron-flex-layout": "PolymerElements/iron-flex-layout#^1.3.1", - "paper-styles": "PolymerElements/paper-styles#^1.1.4", - "paper-icon-button": "PolymerElements/paper-icon-button#^1.0.7", - "paper-badge": "PolymerElements/paper-badge#^1.1.1", - "iron-icons": "PolymerElements/iron-icons#^1.1.3", - "app-layout": "PolymerLabs/app-layout#^0.0.14", - "paper-menu": "PolymerElements/paper-menu#^1.2.2", - "paper-item": "PolymerElements/paper-item#^1.1.4" - } -} diff --git a/demo-shell-ng2/webcomponents/alfresco-file-list/index-demo.html b/demo-shell-ng2/webcomponents/alfresco-file-list/index-demo.html deleted file mode 100644 index 0df04e8322..0000000000 --- a/demo-shell-ng2/webcomponents/alfresco-file-list/index-demo.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - <alfresco-file-list> - - - - - - - - -
- - -
- - diff --git a/demo-shell-ng2/webcomponents/alfresco-file-list/index.html b/demo-shell-ng2/webcomponents/alfresco-file-list/index.html deleted file mode 100644 index 0df04e8322..0000000000 --- a/demo-shell-ng2/webcomponents/alfresco-file-list/index.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - <alfresco-file-list> - - - - - - - - -
- - -
- - diff --git a/demo-shell-ng2/webcomponents/alfresco-file-list/package.json b/demo-shell-ng2/webcomponents/alfresco-file-list/package.json deleted file mode 100644 index 205d5305de..0000000000 --- a/demo-shell-ng2/webcomponents/alfresco-file-list/package.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "private": true, - "devDependencies": { - "grunt": "~0.4.1", - "grunt-cli": "~0.1.9", - "grunt-contrib-connect": "~0.9.0", - "grunt-gh-pages": "~0.9.1", - "grunt-text-replace": "~0.4.0" - } -} diff --git a/demo-shell-ng2/webcomponents/alfresco-file-list/src/alfresco-file-list.html b/demo-shell-ng2/webcomponents/alfresco-file-list/src/alfresco-file-list.html deleted file mode 100644 index 0a2e33f7da..0000000000 --- a/demo-shell-ng2/webcomponents/alfresco-file-list/src/alfresco-file-list.html +++ /dev/null @@ -1,282 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/demo-shell-ng2/webcomponents/alfresco-file-list/src/files.json b/demo-shell-ng2/webcomponents/alfresco-file-list/src/files.json deleted file mode 100644 index d7891509e8..0000000000 --- a/demo-shell-ng2/webcomponents/alfresco-file-list/src/files.json +++ /dev/null @@ -1,283 +0,0 @@ -{ - "totalRecords": 4, - "startIndex": 0, - "metadata": { - "repositoryId": "302393f7-5fad-4c61-ab75-05e990bd86d6", - "container": "workspace://SpacesStore/8f2105b4-daaf-4874-9e8a-2152569d109b", - "parent": { - "nodeRef": "workspace://SpacesStore/8f2105b4-daaf-4874-9e8a-2152569d109b", - "permissions": { - "userAccess": { - "create": true, - "edit": true, - "delete": true, - "cancel-checkout": false, - "permissions": true - } - } - }, - "onlineEditing": false, - "itemCounts": { - "folders": 4, - "documents": 0 - } - }, - "items": [ - { - "nodeRef": "workspace://SpacesStore/8bb36efb-c26d-4d2b-9199-ab6922f53c28", - "nodeType": "cm:folder", - "type": "folder", - "mimetype": "", - "isFolder": true, - "isLink": false, - "fileName": "Agency Files", - "displayName": "Agency Files", - "status": "", - "title": "Agency related files", - "description": "This folder holds the agency related files for the project", - "author": "", - "createdOn": "2011-02-15T20:47:03.951Z", - "createdBy": "Mike Jackson", - "createdByUser": "mjackson", - "modifiedOn": "2011-02-15T21:00:43.616Z", - "modifiedBy": "Mike Jackson", - "modifiedByUser": "mjackson", - "lockedBy": "", - "lockedByUser": "", - "size": "0", - "version": "1.0", - "contentUrl": "api/node/content/workspace/SpacesStore/8bb36efb-c26d-4d2b-9199-ab6922f53c28/Agency%20Files", - "webdavUrl": "/webdav/Sites/swsdp/documentLibrary/Agency%20Files", - "actionSet": "folder", - "tags": [], - "activeWorkflows": "", - "likes": { - "isLiked": false, - "totalLikes": 0 - }, - "location": { - "repositoryId": "302393f7-5fad-4c61-ab75-05e990bd86d6", - "site": "swsdp", - "siteTitle": "Sample: Web Site Design Project", - "container": "documentLibrary", - "path": "/", - "file": "Agency Files", - "parent": { - "nodeRef": "workspace://SpacesStore/8f2105b4-daaf-4874-9e8a-2152569d109b" - } - }, - "permissions": { - "inherited": true, - "roles": [ - "ALLOWED;GROUP_site_swsdp_SiteCollaborator;SiteCollaborator;INHERITED", - "ALLOWED;GROUP_EVERYONE;SiteConsumer;INHERITED", - "ALLOWED;GROUP_EVERYONE;ReadPermissions;INHERITED", - "ALLOWED;GROUP_site_swsdp_SiteContributor;SiteContributor;INHERITED", - "ALLOWED;GROUP_site_swsdp_SiteConsumer;SiteConsumer;INHERITED", - "ALLOWED;GROUP_site_swsdp_SiteManager;SiteManager;INHERITED" - ], - "userAccess": { - "create": true, - "edit": true, - "delete": true, - "cancel-checkout": false, - "permissions": true - } - }, - "custom": {}, - "actionLabels": {} - }, - { - "nodeRef": "workspace://SpacesStore/8ab12916-4897-47fb-94eb-1ab699822ecb", - "nodeType": "cm:folder", - "type": "folder", - "mimetype": "", - "isFolder": true, - "isLink": false, - "fileName": "Budget Files", - "displayName": "Budget Files", - "status": "", - "title": "Project finance files", - "description": "This folder holds the project budget and invoices", - "author": "", - "createdOn": "2011-02-15T20:50:25.839Z", - "createdBy": "Mike Jackson", - "createdByUser": "mjackson", - "modifiedOn": "2011-02-15T21:08:20.590Z", - "modifiedBy": "Mike Jackson", - "modifiedByUser": "mjackson", - "lockedBy": "", - "lockedByUser": "", - "size": "0", - "version": "1.0", - "contentUrl": "api/node/content/workspace/SpacesStore/8ab12916-4897-47fb-94eb-1ab699822ecb/Budget%20Files", - "webdavUrl": "/webdav/Sites/swsdp/documentLibrary/Budget%20Files", - "actionSet": "folder", - "tags": [], - "activeWorkflows": "", - "likes": { - "isLiked": false, - "totalLikes": 0 - }, - "location": { - "repositoryId": "302393f7-5fad-4c61-ab75-05e990bd86d6", - "site": "swsdp", - "siteTitle": "Sample: Web Site Design Project", - "container": "documentLibrary", - "path": "/", - "file": "Budget Files", - "parent": { - "nodeRef": "workspace://SpacesStore/8f2105b4-daaf-4874-9e8a-2152569d109b" - } - }, - "permissions": { - "inherited": true, - "roles": [ - "ALLOWED;GROUP_site_swsdp_SiteCollaborator;SiteCollaborator;INHERITED", - "ALLOWED;GROUP_EVERYONE;SiteConsumer;INHERITED", - "ALLOWED;GROUP_EVERYONE;ReadPermissions;INHERITED", - "ALLOWED;GROUP_site_swsdp_SiteContributor;SiteContributor;INHERITED", - "ALLOWED;GROUP_site_swsdp_SiteConsumer;SiteConsumer;INHERITED", - "ALLOWED;GROUP_site_swsdp_SiteManager;SiteManager;INHERITED" - ], - "userAccess": { - "create": true, - "edit": true, - "delete": true, - "cancel-checkout": false, - "permissions": true - } - }, - "custom": {}, - "actionLabels": {} - }, - { - "nodeRef": "workspace://SpacesStore/a211774d-ba6d-4a35-b97f-dacfaac7bde3", - "nodeType": "cm:folder", - "type": "folder", - "mimetype": "", - "isFolder": true, - "isLink": false, - "fileName": "Meeting Notes", - "displayName": "Meeting Notes", - "status": "", - "title": "Project meeting notes", - "description": "This folder holds notes from the project review meetings", - "author": "", - "createdOn": "2011-02-15T21:16:26.500Z", - "createdBy": "Mike Jackson", - "createdByUser": "mjackson", - "modifiedOn": "2011-02-15T21:16:26.500Z", - "modifiedBy": "Mike Jackson", - "modifiedByUser": "mjackson", - "lockedBy": "", - "lockedByUser": "", - "size": "0", - "version": "1.0", - "contentUrl": "api/node/content/workspace/SpacesStore/a211774d-ba6d-4a35-b97f-dacfaac7bde3/Meeting%20Notes", - "webdavUrl": "/webdav/Sites/swsdp/documentLibrary/Meeting%20Notes", - "actionSet": "folder", - "tags": [], - "activeWorkflows": "", - "likes": { - "isLiked": false, - "totalLikes": 0 - }, - "location": { - "repositoryId": "302393f7-5fad-4c61-ab75-05e990bd86d6", - "site": "swsdp", - "siteTitle": "Sample: Web Site Design Project", - "container": "documentLibrary", - "path": "/", - "file": "Meeting Notes", - "parent": { - "nodeRef": "workspace://SpacesStore/8f2105b4-daaf-4874-9e8a-2152569d109b" - } - }, - "permissions": { - "inherited": true, - "roles": [ - "ALLOWED;GROUP_site_swsdp_SiteCollaborator;SiteCollaborator;INHERITED", - "ALLOWED;GROUP_EVERYONE;SiteConsumer;INHERITED", - "ALLOWED;GROUP_EVERYONE;ReadPermissions;INHERITED", - "ALLOWED;GROUP_site_swsdp_SiteContributor;SiteContributor;INHERITED", - "ALLOWED;GROUP_site_swsdp_SiteConsumer;SiteConsumer;INHERITED", - "ALLOWED;GROUP_site_swsdp_SiteManager;SiteManager;INHERITED" - ], - "userAccess": { - "create": true, - "edit": true, - "delete": true, - "cancel-checkout": false, - "permissions": true - } - }, - "custom": {}, - "actionLabels": {} - }, - { - "nodeRef": "workspace://SpacesStore/38745585-816a-403f-8005-0a55c0aec813", - "nodeType": "cm:folder", - "type": "folder", - "mimetype": "", - "isFolder": true, - "isLink": false, - "fileName": "Presentations", - "displayName": "Presentations", - "status": "", - "title": "Project presentations", - "description": "This folder holds presentations from the project", - "author": "", - "createdOn": "2011-02-15T21:18:38.144Z", - "createdBy": "Mike Jackson", - "createdByUser": "mjackson", - "modifiedOn": "2011-02-15T21:18:38.144Z", - "modifiedBy": "Mike Jackson", - "modifiedByUser": "mjackson", - "lockedBy": "", - "lockedByUser": "", - "size": "0", - "version": "1.0", - "contentUrl": "api/node/content/workspace/SpacesStore/38745585-816a-403f-8005-0a55c0aec813/Presentations", - "webdavUrl": "/webdav/Sites/swsdp/documentLibrary/Presentations", - "actionSet": "folder", - "tags": [], - "activeWorkflows": "", - "likes": { - "isLiked": false, - "totalLikes": 0 - }, - "location": { - "repositoryId": "302393f7-5fad-4c61-ab75-05e990bd86d6", - "site": "swsdp", - "siteTitle": "Sample: Web Site Design Project", - "container": "documentLibrary", - "path": "/", - "file": "Presentations", - "parent": { - "nodeRef": "workspace://SpacesStore/8f2105b4-daaf-4874-9e8a-2152569d109b" - } - }, - "permissions": { - "inherited": true, - "roles": [ - "ALLOWED;GROUP_site_swsdp_SiteCollaborator;SiteCollaborator;INHERITED", - "ALLOWED;GROUP_EVERYONE;SiteConsumer;INHERITED", - "ALLOWED;GROUP_EVERYONE;ReadPermissions;INHERITED", - "ALLOWED;GROUP_site_swsdp_SiteContributor;SiteContributor;INHERITED", - "ALLOWED;GROUP_site_swsdp_SiteConsumer;SiteConsumer;INHERITED", - "ALLOWED;GROUP_site_swsdp_SiteManager;SiteManager;INHERITED" - ], - "userAccess": { - "create": true, - "edit": true, - "delete": true, - "cancel-checkout": false, - "permissions": true - } - }, - "custom": {}, - "actionLabels": {} - } - ] -} diff --git a/demo-shell-ng2/webcomponents/alfresco-file-list/src/img/folder.svg b/demo-shell-ng2/webcomponents/alfresco-file-list/src/img/folder.svg deleted file mode 100644 index 8817df8600..0000000000 --- a/demo-shell-ng2/webcomponents/alfresco-file-list/src/img/folder.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - diff --git a/demo-shell-ng2/webcomponents/alfresco-login/.bower.json b/demo-shell-ng2/webcomponents/alfresco-login/.bower.json deleted file mode 100644 index 615867600e..0000000000 --- a/demo-shell-ng2/webcomponents/alfresco-login/.bower.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "alfresco-login", - "description": "Provide the Alfresco login .", - "keywords": [ - "web-component", - "web-components", - "polymer", - "alfresco" - ], - "main": "alfresco-login.html", - "license": "MIT", - "ignore": [ - "/.*", - "/test/", - "/demo/", - "/bower_components/" - ], - "dependencies": { - "polymer": "Polymer/polymer#^1.0.0" - }, - "_originalSource": "alfresco-login", - "_direct": true -} \ No newline at end of file diff --git a/demo-shell-ng2/webcomponents/alfresco-login/README.md b/demo-shell-ng2/webcomponents/alfresco-login/README.md deleted file mode 100755 index f68d160179..0000000000 --- a/demo-shell-ng2/webcomponents/alfresco-login/README.md +++ /dev/null @@ -1,96 +0,0 @@ -# Introduction -This repository contains an element for the Alfresco login REST API. The element is designed for use in Polymer 1.0. - -## Install - -Install the component using [Bower](http://bower.io/): - -```sh -$ bower install alfresco-login --save -``` - -Or [download as ZIP](https://github.com/TODO/master.zip). - -## Usage - -1. Import Web Components' polyfill: - - ```html - - ``` - -2. Import Custom Element: - - ```html - - ``` - -3. Start using it! - - ```html - - ``` - -## Options - -Attribute | Options | Default | Description ---- | --- | --- | --- -`method` | *string* | `GET` | Type of HTTP Request. - -## Events - -Event | Description ---- | --- -`onsubmit` | The event is fired if a user signs in Alfresco successfully. ---- | --- -`onerror` | The event is fired if a user is not signed into Alfresco.. - -## Development - -In order to run it locally you'll need to fetch some dependencies and a basic server setup. - -* Install [Bower](http://bower.io/) & [Grunt](http://gruntjs.com/): - - ```sh - $ [sudo] npm install -g bower grunt-cli - ``` - -* Install local dependencies: - - ```sh - $ bower install && npm install - ``` - -* To test your project, start the development server and open `http://localhost:8000`. - - ```sh - $ grunt server - ``` - -* To build the distribution files before releasing a new version. - - ```sh - $ grunt build - ``` - -* To provide a live demo, send everything to `gh-pages` branch. - - ```sh - $ grunt deploy - ``` - -## Contributing - -1. Fork it! -2. Create your feature branch: `git checkout -b my-new-feature` -3. Commit your changes: `git commit -m 'Add some feature'` -4. Push to the branch: `git push origin my-new-feature` -5. Submit a pull request :D - -## History - -For detailed changelog, check [Releases](https://github.com/TODO/alfresco-file-list/releases). - -## License - -[MIT License](http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/demo-shell-ng2/webcomponents/alfresco-login/alfresco-login.html b/demo-shell-ng2/webcomponents/alfresco-login/alfresco-login.html deleted file mode 100755 index b29138c0b1..0000000000 --- a/demo-shell-ng2/webcomponents/alfresco-login/alfresco-login.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/demo-shell-ng2/webcomponents/alfresco-login/bower.json b/demo-shell-ng2/webcomponents/alfresco-login/bower.json deleted file mode 100644 index 3af12e9304..0000000000 --- a/demo-shell-ng2/webcomponents/alfresco-login/bower.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "name": "alfresco-login", - "description": "Provide the Alfresco login .", - "keywords": [ - "web-component", - "web-components", - "polymer", - "alfresco" - ], - "main": "alfresco-login.html", - "license": "MIT", - "ignore": [ - "/.*", - "/test/", - "/demo/", - "/bower_components/" - ], - "dependencies": { - "polymer": "Polymer/polymer#^1.0.0", - "paper-input": "~1.1.10" - }, - "devDependencies": { - "iron-component-page": "polymerelements/iron-component-page#^1.0.0", - "iron-image": "polymerelements/iron-image#^1.0.0", - "paper-styles": "polymerelements/paper-styles#^1.0.0", - "test-fixture": "polymerelements/test-fixture#^1.0.0", - "web-component-tester": "^4.0.0", - "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" - }, - "_originalSource": "alfresco-login", - "_direct": true -} diff --git a/demo-shell-ng2/webcomponents/alfresco-login/index.html b/demo-shell-ng2/webcomponents/alfresco-login/index.html deleted file mode 100755 index 567c389730..0000000000 --- a/demo-shell-ng2/webcomponents/alfresco-login/index.html +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/demo-shell-ng2/webcomponents/alfresco-login/test/index.html b/demo-shell-ng2/webcomponents/alfresco-login/test/index.html deleted file mode 100644 index 8561a93bca..0000000000 --- a/demo-shell-ng2/webcomponents/alfresco-login/test/index.html +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/demo-shell-ng2/webcomponents/bower.json b/demo-shell-ng2/webcomponents/bower.json deleted file mode 100755 index e89e540bf3..0000000000 --- a/demo-shell-ng2/webcomponents/bower.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "name": "file-upload", - "version": "1.6.4", - "authors": [ - "Winston Howes " - ], - "description": "An element for using ajax to upload files.", - "keywords": [ - "web-component", - "web-components", - "polymer", - "file", - "ajax", - "upload" - ], - "main": "file-upload.html", - "license": "MIT", - "homepage": "https://github.com/winhowes/file-upload/", - "ignore": [ - "/.*", - "/test/", - "/demo/", - "/bower_components/" - ], - "dependencies": { - "polymer": "Polymer/polymer#^1.0.0", - "paper-progress": "PolymerElements/paper-progress#^1.0.0" - }, - "devDependencies": { - "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", - "web-component-tester": "*" - } -} diff --git a/demo-shell-ng2/webcomponents/file-upload/.bower.json b/demo-shell-ng2/webcomponents/file-upload/.bower.json deleted file mode 100644 index 5d24dd80e4..0000000000 --- a/demo-shell-ng2/webcomponents/file-upload/.bower.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "name": "file-upload", - "version": "1.6.4", - "authors": [ - "Winston Howes " - ], - "description": "An element for using ajax to upload files.", - "keywords": [ - "web-component", - "web-components", - "polymer", - "file", - "ajax", - "upload" - ], - "main": "file-upload.html", - "license": "MIT", - "homepage": "https://github.com/winhowes/file-upload/", - "ignore": [ - "/.*", - "/test/", - "/demo/", - "/bower_components/" - ], - "dependencies": { - "polymer": "Polymer/polymer#^1.0.0", - "paper-progress": "PolymerElements/paper-progress#^1.0.0" - }, - "devDependencies": { - "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", - "web-component-tester": "*" - }, - "_release": "1.6.4", - "_resolution": { - "type": "version", - "tag": "v1.6.4", - "commit": "eeaa8d62ac0d7ae2f5adb9531c427bfba3952f1c" - }, - "_source": "git://github.com/winhowes/file-upload.git", - "_target": "~1.6.4", - "_originalSource": "file-upload", - "_direct": true -} \ No newline at end of file diff --git a/demo-shell-ng2/webcomponents/file-upload/LICENSE b/demo-shell-ng2/webcomponents/file-upload/LICENSE deleted file mode 100644 index f400d49829..0000000000 --- a/demo-shell-ng2/webcomponents/file-upload/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2015 Winston Howes - -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. diff --git a/demo-shell-ng2/webcomponents/file-upload/README.md b/demo-shell-ng2/webcomponents/file-upload/README.md deleted file mode 100755 index 540032943e..0000000000 --- a/demo-shell-ng2/webcomponents/file-upload/README.md +++ /dev/null @@ -1,10 +0,0 @@ -# Introduction -This repository contains an element for file uploads using ajax. It supports multi-file selection as well as optional drop zones for drag-and-drop. The element is designed for use in Polymer 1.0. - -Check out the demo and docs here: https://winhowes.github.io/file-upload/components/file-upload/. - -# Installation -To install simply run: -``` -bower install --save file-upload -``` diff --git a/demo-shell-ng2/webcomponents/file-upload/file-upload.html b/demo-shell-ng2/webcomponents/file-upload/file-upload.html deleted file mode 100755 index 7bd877bac6..0000000000 --- a/demo-shell-ng2/webcomponents/file-upload/file-upload.html +++ /dev/null @@ -1,529 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/demo-shell-ng2/webcomponents/file-upload/index.html b/demo-shell-ng2/webcomponents/file-upload/index.html deleted file mode 100755 index 0557d150fa..0000000000 --- a/demo-shell-ng2/webcomponents/file-upload/index.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - -