├── .gitignore ├── .project ├── Makefile ├── README.md ├── bin ├── .cvsignore ├── polyglot.freebsd.amd64.pyz ├── polyglot.linux.armv7l.pyz ├── polyglot.linux.x86_64.pyz └── polyglot.osx.x86_64.pyz ├── docs ├── Makefile ├── _build │ ├── doctrees │ │ ├── changelog.doctree │ │ ├── environment.pickle │ │ ├── index.doctree │ │ ├── module.doctree │ │ ├── nsapi.doctree │ │ ├── nsdev.doctree │ │ ├── nsexample.doctree │ │ ├── optional.doctree │ │ └── usage.doctree │ └── html │ │ ├── .buildinfo │ │ ├── _images │ │ ├── add_ns.png │ │ ├── settings.png │ │ └── view_ns.png │ │ ├── _modules │ │ ├── collections.html │ │ ├── index.html │ │ └── polyglot │ │ │ ├── config_manager.html │ │ │ ├── core.html │ │ │ ├── nodeserver_api.html │ │ │ ├── nodeserver_helpers.html │ │ │ ├── nodeserver_manager.html │ │ │ └── utils.html │ │ ├── _sources │ │ ├── changelog.txt │ │ ├── index.txt │ │ ├── module.txt │ │ ├── nsapi.txt │ │ ├── nsdev.txt │ │ ├── nsexample.txt │ │ ├── optional.txt │ │ └── usage.txt │ │ ├── _static │ │ ├── ajax-loader.gif │ │ ├── alabaster.css │ │ ├── basic.css │ │ ├── classic.css │ │ ├── comment-bright.png │ │ ├── comment-close.png │ │ ├── comment.png │ │ ├── css │ │ │ ├── badge_only.css │ │ │ └── theme.css │ │ ├── doctools.js │ │ ├── down-pressed.png │ │ ├── down.png │ │ ├── file.png │ │ ├── fonts │ │ │ ├── Inconsolata-Bold.ttf │ │ │ ├── Inconsolata-Regular.ttf │ │ │ ├── Lato-Bold.ttf │ │ │ ├── Lato-Regular.ttf │ │ │ ├── RobotoSlab-Bold.ttf │ │ │ ├── RobotoSlab-Regular.ttf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── jquery-1.11.1.js │ │ ├── jquery.js │ │ ├── js │ │ │ ├── modernizr.min.js │ │ │ └── theme.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── screenshots │ │ │ ├── add_ns.png │ │ │ ├── settings.png │ │ │ └── view_ns.png │ │ ├── searchtools.js │ │ ├── sidebar.js │ │ ├── underscore-1.3.1.js │ │ ├── underscore.js │ │ ├── up-pressed.png │ │ ├── up.png │ │ └── websupport.js │ │ ├── changelog.html │ │ ├── genindex.html │ │ ├── index.html │ │ ├── module.html │ │ ├── nsapi.html │ │ ├── nsdev.html │ │ ├── nsexample.html │ │ ├── objects.inv │ │ ├── optional.html │ │ ├── py-modindex.html │ │ ├── search.html │ │ ├── searchindex.js │ │ └── usage.html ├── _static │ ├── ajax-loader.gif │ ├── alabaster.css │ ├── basic.css │ ├── classic.css │ ├── comment-bright.png │ ├── comment-close.png │ ├── comment.png │ ├── css │ │ ├── badge_only.css │ │ └── theme.css │ ├── doctools.js │ ├── down-pressed.png │ ├── down.png │ ├── file.png │ ├── fonts │ │ ├── Inconsolata-Bold.ttf │ │ ├── Inconsolata-Regular.ttf │ │ ├── Lato-Bold.ttf │ │ ├── Lato-Regular.ttf │ │ ├── RobotoSlab-Bold.ttf │ │ ├── RobotoSlab-Regular.ttf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── jquery-1.11.1.js │ ├── jquery.js │ ├── js │ │ ├── modernizr.min.js │ │ └── theme.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── screenshots │ │ ├── add_ns.png │ │ ├── settings.png │ │ └── view_ns.png │ ├── searchtools.js │ ├── sidebar.js │ ├── underscore-1.3.1.js │ ├── underscore.js │ ├── up-pressed.png │ ├── up.png │ └── websupport.js ├── changelog.rst ├── conf.py ├── index.rst ├── make.bat ├── module.rst ├── nsapi.rst ├── nsdev.rst ├── nsexample.rst ├── optional.rst └── usage.rst ├── license.txt ├── polyglot.service ├── polyglot ├── .cvsignore ├── __init__.py ├── __main__.py ├── config_manager.py ├── core.py ├── element_manager │ ├── .cvsignore │ ├── __init__.py │ ├── api.py │ ├── frontend │ │ ├── .cvsignore │ │ ├── __init__.py │ │ └── www_static │ │ │ ├── bower.json │ │ │ ├── bower_components │ │ │ ├── font-roboto │ │ │ │ ├── .bower.json │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ └── roboto.html │ │ │ ├── iron-a11y-keys-behavior │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ ├── index.html │ │ │ │ │ └── x-key-aware.html │ │ │ │ ├── index.html │ │ │ │ ├── iron-a11y-keys-behavior.html │ │ │ │ └── test │ │ │ │ │ ├── basic-test.html │ │ │ │ │ └── index.html │ │ │ ├── iron-ajax │ │ │ │ ├── .bower.json │ │ │ │ ├── .github │ │ │ │ │ └── ISSUE_TEMPLATE.md │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── hero.svg │ │ │ │ ├── index.html │ │ │ │ ├── iron-ajax.html │ │ │ │ ├── iron-request.html │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ ├── iron-ajax.html │ │ │ │ │ └── iron-request.html │ │ │ ├── iron-autogrow-textarea │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── hero.svg │ │ │ │ ├── index.html │ │ │ │ ├── iron-autogrow-textarea.html │ │ │ │ └── test │ │ │ │ │ ├── basic.html │ │ │ │ │ └── index.html │ │ │ ├── iron-behaviors │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ ├── index.html │ │ │ │ │ └── simple-button.html │ │ │ │ ├── index.html │ │ │ │ ├── iron-button-state.html │ │ │ │ ├── iron-control-state.html │ │ │ │ └── test │ │ │ │ │ ├── active-state.html │ │ │ │ │ ├── disabled-state.html │ │ │ │ │ ├── focused-state.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── test-elements.html │ │ │ ├── iron-checked-element-behavior │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ ├── index.html │ │ │ │ │ └── simple-checkbox.html │ │ │ │ ├── index.html │ │ │ │ ├── iron-checked-element-behavior.html │ │ │ │ └── test │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── simple-checkbox.html │ │ │ ├── iron-collapse │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── hero.svg │ │ │ │ ├── index.html │ │ │ │ ├── iron-collapse.html │ │ │ │ └── test │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── horizontal.html │ │ │ │ │ └── index.html │ │ │ ├── iron-dropdown │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ ├── grow-height-animation.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── x-select.html │ │ │ │ ├── index.html │ │ │ │ ├── iron-dropdown-scroll-manager.html │ │ │ │ ├── iron-dropdown.html │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ ├── iron-dropdown-scroll-manager.html │ │ │ │ │ └── iron-dropdown.html │ │ │ ├── iron-fit-behavior │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ ├── index.html │ │ │ │ │ └── simple-fit.html │ │ │ │ ├── index.html │ │ │ │ ├── iron-fit-behavior.html │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ ├── iron-fit-behavior.html │ │ │ │ │ └── test-fit.html │ │ │ ├── iron-flex-layout │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── classes │ │ │ │ │ ├── iron-flex-layout.html │ │ │ │ │ └── iron-shadow-flex-layout.html │ │ │ │ ├── demo │ │ │ │ │ ├── index.html │ │ │ │ │ └── x-app.html │ │ │ │ └── iron-flex-layout.html │ │ │ ├── iron-form-element-behavior │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ ├── index.html │ │ │ │ │ ├── simple-element.html │ │ │ │ │ └── simple-form.html │ │ │ │ ├── index.html │ │ │ │ └── iron-form-element-behavior.html │ │ │ ├── iron-form │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ ├── index.html │ │ │ │ │ └── simple-element.html │ │ │ │ ├── index.html │ │ │ │ ├── iron-form.html │ │ │ │ └── test │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── simple-element.html │ │ │ ├── iron-icon │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ ├── index.html │ │ │ │ │ └── location.png │ │ │ │ ├── hero.svg │ │ │ │ ├── index.html │ │ │ │ ├── iron-icon.html │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ └── iron-icon.html │ │ │ ├── iron-icons │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── av-icons.html │ │ │ │ ├── bower.json │ │ │ │ ├── communication-icons.html │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── device-icons.html │ │ │ │ ├── editor-icons.html │ │ │ │ ├── hardware-icons.html │ │ │ │ ├── hero.svg │ │ │ │ ├── image-icons.html │ │ │ │ ├── index.html │ │ │ │ ├── iron-icons.html │ │ │ │ ├── maps-icons.html │ │ │ │ ├── notification-icons.html │ │ │ │ └── social-icons.html │ │ │ ├── iron-iconset-svg │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ ├── index.html │ │ │ │ │ └── svg-sample-icons.html │ │ │ │ ├── index.html │ │ │ │ ├── iron-iconset-svg.html │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ └── iron-iconset-svg.html │ │ │ ├── iron-input │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── hero.svg │ │ │ │ ├── index.html │ │ │ │ ├── iron-input.html │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ ├── iron-input.html │ │ │ │ │ └── letters-only.html │ │ │ ├── iron-media-query │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── hero.svg │ │ │ │ ├── index.html │ │ │ │ ├── iron-media-query.html │ │ │ │ └── test │ │ │ │ │ ├── basic.html │ │ │ │ │ └── index.html │ │ │ ├── iron-menu-behavior │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ ├── index.html │ │ │ │ │ ├── simple-menu.html │ │ │ │ │ └── simple-menubar.html │ │ │ │ ├── index.html │ │ │ │ ├── iron-menu-behavior.html │ │ │ │ ├── iron-menubar-behavior.html │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ ├── iron-menu-behavior.html │ │ │ │ │ ├── iron-menubar-behavior.html │ │ │ │ │ ├── test-menu.html │ │ │ │ │ └── test-menubar.html │ │ │ ├── iron-meta │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── hero.svg │ │ │ │ ├── index.html │ │ │ │ ├── iron-meta.html │ │ │ │ └── test │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── iron-meta.html │ │ │ ├── iron-overlay-behavior │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ ├── index.html │ │ │ │ │ └── simple-overlay.html │ │ │ │ ├── index.html │ │ │ │ ├── iron-overlay-backdrop.html │ │ │ │ ├── iron-overlay-behavior.html │ │ │ │ ├── iron-overlay-manager.html │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ ├── iron-overlay-behavior.html │ │ │ │ │ └── test-overlay.html │ │ │ ├── iron-resizable-behavior │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ ├── index.html │ │ │ │ │ └── src │ │ │ │ │ │ └── x-app.html │ │ │ │ ├── index.html │ │ │ │ ├── iron-resizable-behavior.html │ │ │ │ └── test │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── iron-resizable-behavior.html │ │ │ │ │ └── test-elements.html │ │ │ ├── iron-selector │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── iron-multi-selectable.html │ │ │ │ ├── iron-selectable.html │ │ │ │ ├── iron-selection.html │ │ │ │ ├── iron-selector.html │ │ │ │ └── test │ │ │ │ │ ├── activate-event.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── content-element.html │ │ │ │ │ ├── content.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── multi.html │ │ │ │ │ ├── next-previous.html │ │ │ │ │ ├── selected-attribute.html │ │ │ │ │ └── template-repeat.html │ │ │ ├── iron-validatable-behavior │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ ├── cats-only.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── validatable-input.html │ │ │ │ ├── index.html │ │ │ │ ├── iron-validatable-behavior.html │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ ├── iron-validatable-behavior.html │ │ │ │ │ └── test-validatable.html │ │ │ ├── marked-element │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── hero.svg │ │ │ │ ├── index.html │ │ │ │ ├── marked-element.html │ │ │ │ ├── marked-import.html │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ └── marked-element.html │ │ │ ├── marked │ │ │ │ ├── .bower.json │ │ │ │ ├── Gulpfile.js │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ │ └── marked │ │ │ │ ├── bower.json │ │ │ │ ├── component.json │ │ │ │ ├── doc │ │ │ │ │ ├── broken.md │ │ │ │ │ └── todo.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── marked.js │ │ │ │ ├── man │ │ │ │ │ └── marked.1 │ │ │ │ ├── marked.min.js │ │ │ │ └── package.json │ │ │ ├── neon-animation │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── animations │ │ │ │ │ ├── cascaded-animation.html │ │ │ │ │ ├── fade-in-animation.html │ │ │ │ │ ├── fade-out-animation.html │ │ │ │ │ ├── hero-animation.html │ │ │ │ │ ├── opaque-animation.html │ │ │ │ │ ├── reverse-ripple-animation.html │ │ │ │ │ ├── ripple-animation.html │ │ │ │ │ ├── scale-down-animation.html │ │ │ │ │ ├── scale-up-animation.html │ │ │ │ │ ├── slide-down-animation.html │ │ │ │ │ ├── slide-from-left-animation.html │ │ │ │ │ ├── slide-from-right-animation.html │ │ │ │ │ ├── slide-left-animation.html │ │ │ │ │ ├── slide-right-animation.html │ │ │ │ │ ├── slide-up-animation.html │ │ │ │ │ └── transform-animation.html │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ ├── card │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── x-card.html │ │ │ │ │ │ └── x-cards-list.html │ │ │ │ │ ├── declarative │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── basic.html │ │ │ │ │ │ ├── my-animatable.html │ │ │ │ │ │ ├── my-dialog.html │ │ │ │ │ │ └── types.html │ │ │ │ │ ├── dropdown │ │ │ │ │ │ ├── animated-dropdown.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── grid │ │ │ │ │ │ ├── animated-grid.html │ │ │ │ │ │ ├── fullsize-page-with-card.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── list │ │ │ │ │ │ ├── full-view.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── list-demo.html │ │ │ │ │ │ └── list-view.html │ │ │ │ │ ├── load │ │ │ │ │ │ ├── animated-grid.html │ │ │ │ │ │ ├── full-page.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── reprojection │ │ │ │ │ │ ├── animated-grid.html │ │ │ │ │ │ ├── fullsize-page-with-card.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── reprojected-pages.html │ │ │ │ │ ├── shared.css │ │ │ │ │ └── tiles │ │ │ │ │ │ ├── circles-page.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── squares-page.html │ │ │ │ ├── guides │ │ │ │ │ └── neon-animation.md │ │ │ │ ├── index.html │ │ │ │ ├── neon-animatable-behavior.html │ │ │ │ ├── neon-animatable.html │ │ │ │ ├── neon-animated-pages.html │ │ │ │ ├── neon-animation-behavior.html │ │ │ │ ├── neon-animation-runner-behavior.html │ │ │ │ ├── neon-animation.html │ │ │ │ ├── neon-animations.html │ │ │ │ ├── neon-shared-element-animatable-behavior.html │ │ │ │ ├── neon-shared-element-animation-behavior.html │ │ │ │ ├── test │ │ │ │ │ ├── index.html │ │ │ │ │ ├── neon-animated-pages.html │ │ │ │ │ └── test-resizable-pages.html │ │ │ │ └── web-animations.html │ │ │ ├── paper-behaviors │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ ├── index.html │ │ │ │ │ ├── paper-button.html │ │ │ │ │ └── paper-radio-button.html │ │ │ │ ├── index.html │ │ │ │ ├── paper-button-behavior.html │ │ │ │ ├── paper-inky-focus-behavior.html │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ ├── paper-button-behavior.html │ │ │ │ │ ├── paper-radio-button-behavior.html │ │ │ │ │ ├── test-button.html │ │ │ │ │ └── test-radio-button.html │ │ │ ├── paper-button │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── paper-button.html │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ └── paper-button.html │ │ │ ├── paper-checkbox │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── metadata.html │ │ │ │ ├── paper-checkbox.css │ │ │ │ ├── paper-checkbox.html │ │ │ │ └── test │ │ │ │ │ ├── basic.html │ │ │ │ │ └── index.html │ │ │ ├── paper-drawer-panel │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── hero.svg │ │ │ │ ├── index.html │ │ │ │ ├── paper-drawer-panel.css │ │ │ │ └── paper-drawer-panel.html │ │ │ ├── paper-dropdown-menu │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── paper-dropdown-menu.html │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ └── paper-dropdown-menu.html │ │ │ ├── paper-header-panel │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── hero.svg │ │ │ │ ├── index.html │ │ │ │ ├── paper-header-panel.css │ │ │ │ ├── paper-header-panel.html │ │ │ │ └── test │ │ │ │ │ ├── basic.html │ │ │ │ │ └── index.html │ │ │ ├── paper-icon-button │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── paper-icon-button.html │ │ │ │ └── test │ │ │ │ │ ├── a11y.html │ │ │ │ │ ├── basic.html │ │ │ │ │ └── index.html │ │ │ ├── paper-input │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── all-imports.html │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ ├── index.html │ │ │ │ │ ├── ssn-input.html │ │ │ │ │ └── ssn-validator.html │ │ │ │ ├── hero.svg │ │ │ │ ├── index.html │ │ │ │ ├── paper-input-addon-behavior.html │ │ │ │ ├── paper-input-behavior.html │ │ │ │ ├── paper-input-char-counter.html │ │ │ │ ├── paper-input-container.html │ │ │ │ ├── paper-input-error.html │ │ │ │ ├── paper-input.html │ │ │ │ ├── paper-textarea.html │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ ├── letters-only.html │ │ │ │ │ ├── paper-input-char-counter.html │ │ │ │ │ ├── paper-input-container.html │ │ │ │ │ ├── paper-input-error.html │ │ │ │ │ ├── paper-input.html │ │ │ │ │ └── paper-textarea.html │ │ │ ├── paper-item │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── all-imports.html │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── paper-icon-item.html │ │ │ │ ├── paper-item-body.html │ │ │ │ ├── paper-item-shared.css │ │ │ │ ├── paper-item.html │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ └── paper-item.html │ │ │ ├── paper-material │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── paper-material.html │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ └── paper-material.html │ │ │ ├── paper-menu-button │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── hero.svg │ │ │ │ ├── index.html │ │ │ │ ├── paper-menu-button-animations.html │ │ │ │ ├── paper-menu-button.html │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ └── paper-menu-button.html │ │ │ ├── paper-menu │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── hero.svg │ │ │ │ ├── index.html │ │ │ │ ├── paper-menu-shared.css │ │ │ │ ├── paper-menu.html │ │ │ │ ├── paper-submenu.html │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ ├── paper-menu.html │ │ │ │ │ └── paper-submenu.html │ │ │ ├── paper-ripple │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── hero.svg │ │ │ │ ├── index.html │ │ │ │ ├── paper-ripple.html │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ └── paper-ripple.html │ │ │ ├── paper-styles │ │ │ │ ├── .bower.json │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── classes │ │ │ │ │ ├── global.html │ │ │ │ │ ├── shadow-layout.html │ │ │ │ │ ├── shadow.html │ │ │ │ │ └── typography.html │ │ │ │ ├── color.html │ │ │ │ ├── default-theme.html │ │ │ │ ├── demo-pages.html │ │ │ │ ├── demo.css │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── paper-styles-classes.html │ │ │ │ ├── paper-styles.html │ │ │ │ ├── shadow.html │ │ │ │ └── typography.html │ │ │ ├── paper-toolbar │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── paper-toolbar.html │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ └── paper-toolbar.html │ │ │ ├── paper-tooltip │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── demo │ │ │ │ │ ├── index.html │ │ │ │ │ └── test-button.html │ │ │ │ ├── index.html │ │ │ │ ├── paper-tooltip.html │ │ │ │ └── test │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── test-button.html │ │ │ ├── polymer │ │ │ │ ├── .bower.json │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── bower.json │ │ │ │ ├── build.log │ │ │ │ ├── polymer-micro.html │ │ │ │ ├── polymer-mini.html │ │ │ │ └── polymer.html │ │ │ ├── promise-polyfill │ │ │ │ ├── .bower.json │ │ │ │ ├── Gruntfile.js │ │ │ │ ├── LICENSE │ │ │ │ ├── Promise-Statics.js │ │ │ │ ├── Promise.js │ │ │ │ ├── Promise.min.js │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── package.json │ │ │ │ ├── promise-polyfill-lite.html │ │ │ │ └── promise-polyfill.html │ │ │ ├── web-animations-js │ │ │ │ ├── .bower.json │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── COPYING │ │ │ │ ├── History.md │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── web-animations-next-lite.min.js │ │ │ │ ├── web-animations-next-lite.min.js.map │ │ │ │ ├── web-animations-next.min.js │ │ │ │ ├── web-animations-next.min.js.map │ │ │ │ ├── web-animations.html │ │ │ │ ├── web-animations.min.js │ │ │ │ └── web-animations.min.js.map │ │ │ └── webcomponentsjs │ │ │ │ ├── .bower.json │ │ │ │ ├── CustomElements.js │ │ │ │ ├── CustomElements.min.js │ │ │ │ ├── HTMLImports.js │ │ │ │ ├── HTMLImports.min.js │ │ │ │ ├── MutationObserver.js │ │ │ │ ├── MutationObserver.min.js │ │ │ │ ├── README.md │ │ │ │ ├── ShadowDOM.js │ │ │ │ ├── ShadowDOM.min.js │ │ │ │ ├── bower.json │ │ │ │ ├── build.log │ │ │ │ ├── package.json │ │ │ │ ├── webcomponents-lite.js │ │ │ │ ├── webcomponents-lite.min.js │ │ │ │ ├── webcomponents.js │ │ │ │ └── webcomponents.min.js │ │ │ ├── images │ │ │ └── UDLogoOutlined_small.png │ │ │ ├── index.html │ │ │ └── src │ │ │ ├── main-contents.html │ │ │ ├── my-paper-header-panel │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── demo │ │ │ │ └── index.html │ │ │ ├── hero.svg │ │ │ ├── index.html │ │ │ ├── my-paper-header-panel.css │ │ │ ├── my-paper-header-panel.html │ │ │ └── test │ │ │ │ ├── basic.html │ │ │ │ └── index.html │ │ │ ├── partial-addns.html │ │ │ ├── partial-server.html │ │ │ ├── partial-settings.html │ │ │ ├── primary-style.css │ │ │ ├── sidebar-list.html │ │ │ ├── x-app.css │ │ │ └── x-app.html │ ├── http │ │ ├── .cvsignore │ │ ├── __init__.py │ │ └── basic_auth.py │ └── isy │ │ ├── .cvsignore │ │ ├── __init__.py │ │ └── incoming.py ├── node_servers │ ├── .cvsignore │ ├── hue │ │ ├── .cvsignore │ │ ├── converters.py │ │ ├── hue.py │ │ ├── instructions.txt │ │ ├── node_types.py │ │ ├── phue.py │ │ ├── profile.zip │ │ ├── profile │ │ │ ├── editor │ │ │ │ └── editors.xml │ │ │ ├── nls │ │ │ │ └── en_US.txt │ │ │ ├── nodedef │ │ │ │ └── nodedefs.xml │ │ │ └── version.txt │ │ ├── pylintrc │ │ └── server.json │ ├── kodi │ │ ├── .cvsignore │ │ ├── instructions.txt │ │ ├── jsonrpc_requests │ │ │ ├── .cvsignore │ │ │ ├── __init__.py │ │ │ └── jsonrpc.py │ │ ├── kodi.py │ │ ├── node_types.py │ │ ├── profile.zip │ │ ├── profile │ │ │ ├── .cvsignore │ │ │ ├── editor │ │ │ │ ├── .cvsignore │ │ │ │ └── editors.xml │ │ │ ├── nls │ │ │ │ ├── .cvsignore │ │ │ │ └── en_US.txt │ │ │ ├── nodedef │ │ │ │ ├── .cvsignore │ │ │ │ └── nodedefs.xml │ │ │ └── version.txt │ │ ├── pylintrc │ │ ├── server.json │ │ └── xmltodict.py │ └── pulse │ │ ├── diagtst_node.py │ │ ├── instructions.txt │ │ ├── profile.zip │ │ ├── profile │ │ ├── editor │ │ │ └── editors.xml │ │ ├── nls │ │ │ └── en_US.txt │ │ ├── nodedef │ │ │ └── nodedefs.xml │ │ └── version.txt │ │ ├── pulse.py │ │ └── server.json ├── nodeserver_api.py ├── nodeserver_helpers.py ├── nodeserver_manager.py ├── utils.py └── version.py ├── pylintrc ├── requirements-dev.txt ├── requirements.txt ├── scripts ├── check_style.sh ├── clean_project ├── id_rsa_pi ├── make_dist.sh └── make_profile └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | __pycache__ 4 | build 5 | config 6 | *~ 7 | ./.git 8 | .idea/ 9 | .AppleDouble 10 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/.project -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Documentation found here: 2 | http://ud-polyglot.readthedocs.io/ 3 | -------------------------------------------------------------------------------- /bin/.cvsignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | __pycache__ 4 | config 5 | -------------------------------------------------------------------------------- /bin/polyglot.freebsd.amd64.pyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/bin/polyglot.freebsd.amd64.pyz -------------------------------------------------------------------------------- /bin/polyglot.linux.armv7l.pyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/bin/polyglot.linux.armv7l.pyz -------------------------------------------------------------------------------- /bin/polyglot.linux.x86_64.pyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/bin/polyglot.linux.x86_64.pyz -------------------------------------------------------------------------------- /bin/polyglot.osx.x86_64.pyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/bin/polyglot.osx.x86_64.pyz -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_build/doctrees/changelog.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/doctrees/changelog.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/_build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/module.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/doctrees/module.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/nsapi.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/doctrees/nsapi.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/nsdev.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/doctrees/nsdev.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/nsexample.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/doctrees/nsexample.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/optional.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/doctrees/optional.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/usage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/doctrees/usage.doctree -------------------------------------------------------------------------------- /docs/_build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/.buildinfo -------------------------------------------------------------------------------- /docs/_build/html/_images/add_ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_images/add_ns.png -------------------------------------------------------------------------------- /docs/_build/html/_images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_images/settings.png -------------------------------------------------------------------------------- /docs/_build/html/_images/view_ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_images/view_ns.png -------------------------------------------------------------------------------- /docs/_build/html/_modules/collections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_modules/collections.html -------------------------------------------------------------------------------- /docs/_build/html/_modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_modules/index.html -------------------------------------------------------------------------------- /docs/_build/html/_modules/polyglot/config_manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_modules/polyglot/config_manager.html -------------------------------------------------------------------------------- /docs/_build/html/_modules/polyglot/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_modules/polyglot/core.html -------------------------------------------------------------------------------- /docs/_build/html/_modules/polyglot/nodeserver_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_modules/polyglot/nodeserver_api.html -------------------------------------------------------------------------------- /docs/_build/html/_modules/polyglot/nodeserver_helpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_modules/polyglot/nodeserver_helpers.html -------------------------------------------------------------------------------- /docs/_build/html/_modules/polyglot/nodeserver_manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_modules/polyglot/nodeserver_manager.html -------------------------------------------------------------------------------- /docs/_build/html/_modules/polyglot/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_modules/polyglot/utils.html -------------------------------------------------------------------------------- /docs/_build/html/_sources/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_sources/changelog.txt -------------------------------------------------------------------------------- /docs/_build/html/_sources/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_sources/index.txt -------------------------------------------------------------------------------- /docs/_build/html/_sources/module.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_sources/module.txt -------------------------------------------------------------------------------- /docs/_build/html/_sources/nsapi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_sources/nsapi.txt -------------------------------------------------------------------------------- /docs/_build/html/_sources/nsdev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_sources/nsdev.txt -------------------------------------------------------------------------------- /docs/_build/html/_sources/nsexample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_sources/nsexample.txt -------------------------------------------------------------------------------- /docs/_build/html/_sources/optional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_sources/optional.txt -------------------------------------------------------------------------------- /docs/_build/html/_sources/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_sources/usage.txt -------------------------------------------------------------------------------- /docs/_build/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/_build/html/_static/alabaster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/alabaster.css -------------------------------------------------------------------------------- /docs/_build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/basic.css -------------------------------------------------------------------------------- /docs/_build/html/_static/classic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/classic.css -------------------------------------------------------------------------------- /docs/_build/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/_build/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/comment-close.png -------------------------------------------------------------------------------- /docs/_build/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/comment.png -------------------------------------------------------------------------------- /docs/_build/html/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/_build/html/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/css/theme.css -------------------------------------------------------------------------------- /docs/_build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/_build/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/_build/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/down.png -------------------------------------------------------------------------------- /docs/_build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/file.png -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/Inconsolata-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/fonts/Inconsolata-Bold.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/_build/html/_static/jquery-1.11.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/jquery-1.11.1.js -------------------------------------------------------------------------------- /docs/_build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/_build/html/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /docs/_build/html/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/js/theme.js -------------------------------------------------------------------------------- /docs/_build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/minus.png -------------------------------------------------------------------------------- /docs/_build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/plus.png -------------------------------------------------------------------------------- /docs/_build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/_build/html/_static/screenshots/add_ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/screenshots/add_ns.png -------------------------------------------------------------------------------- /docs/_build/html/_static/screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/screenshots/settings.png -------------------------------------------------------------------------------- /docs/_build/html/_static/screenshots/view_ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/screenshots/view_ns.png -------------------------------------------------------------------------------- /docs/_build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_build/html/_static/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/sidebar.js -------------------------------------------------------------------------------- /docs/_build/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/_build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/_build/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/_build/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/up.png -------------------------------------------------------------------------------- /docs/_build/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/_static/websupport.js -------------------------------------------------------------------------------- /docs/_build/html/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/changelog.html -------------------------------------------------------------------------------- /docs/_build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/genindex.html -------------------------------------------------------------------------------- /docs/_build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/index.html -------------------------------------------------------------------------------- /docs/_build/html/module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/module.html -------------------------------------------------------------------------------- /docs/_build/html/nsapi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/nsapi.html -------------------------------------------------------------------------------- /docs/_build/html/nsdev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/nsdev.html -------------------------------------------------------------------------------- /docs/_build/html/nsexample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/nsexample.html -------------------------------------------------------------------------------- /docs/_build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/objects.inv -------------------------------------------------------------------------------- /docs/_build/html/optional.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/optional.html -------------------------------------------------------------------------------- /docs/_build/html/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/py-modindex.html -------------------------------------------------------------------------------- /docs/_build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/search.html -------------------------------------------------------------------------------- /docs/_build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/searchindex.js -------------------------------------------------------------------------------- /docs/_build/html/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_build/html/usage.html -------------------------------------------------------------------------------- /docs/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/_static/alabaster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/alabaster.css -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/classic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/classic.css -------------------------------------------------------------------------------- /docs/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/comment-close.png -------------------------------------------------------------------------------- /docs/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/comment.png -------------------------------------------------------------------------------- /docs/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/css/theme.css -------------------------------------------------------------------------------- /docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/doctools.js -------------------------------------------------------------------------------- /docs/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/down.png -------------------------------------------------------------------------------- /docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/file.png -------------------------------------------------------------------------------- /docs/_static/fonts/Inconsolata-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/fonts/Inconsolata-Bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/_static/jquery-1.11.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/jquery-1.11.1.js -------------------------------------------------------------------------------- /docs/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/jquery.js -------------------------------------------------------------------------------- /docs/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /docs/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/js/theme.js -------------------------------------------------------------------------------- /docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/minus.png -------------------------------------------------------------------------------- /docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/plus.png -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/_static/screenshots/add_ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/screenshots/add_ns.png -------------------------------------------------------------------------------- /docs/_static/screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/screenshots/settings.png -------------------------------------------------------------------------------- /docs/_static/screenshots/view_ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/screenshots/view_ns.png -------------------------------------------------------------------------------- /docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_static/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/sidebar.js -------------------------------------------------------------------------------- /docs/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/underscore.js -------------------------------------------------------------------------------- /docs/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/up.png -------------------------------------------------------------------------------- /docs/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/_static/websupport.js -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/module.rst -------------------------------------------------------------------------------- /docs/nsapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/nsapi.rst -------------------------------------------------------------------------------- /docs/nsdev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/nsdev.rst -------------------------------------------------------------------------------- /docs/nsexample.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/nsexample.rst -------------------------------------------------------------------------------- /docs/optional.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/optional.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/license.txt -------------------------------------------------------------------------------- /polyglot.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot.service -------------------------------------------------------------------------------- /polyglot/.cvsignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /polyglot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/__init__.py -------------------------------------------------------------------------------- /polyglot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/__main__.py -------------------------------------------------------------------------------- /polyglot/config_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/config_manager.py -------------------------------------------------------------------------------- /polyglot/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/core.py -------------------------------------------------------------------------------- /polyglot/element_manager/.cvsignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /polyglot/element_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/__init__.py -------------------------------------------------------------------------------- /polyglot/element_manager/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/api.py -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/.cvsignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/__init__.py -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/font-roboto/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/font-roboto/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/font-roboto/README.md: -------------------------------------------------------------------------------- 1 | # font-roboto 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/font-roboto/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/font-roboto/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/font-roboto/roboto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/font-roboto/roboto.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-a11y-keys-behavior/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-a11y-keys-behavior/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-a11y-keys-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-a11y-keys-behavior/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-a11y-keys-behavior/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-a11y-keys-behavior/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-a11y-keys-behavior/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-a11y-keys-behavior/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-a11y-keys-behavior/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/.travis.yml -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/CONTRIBUTING.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/hero.svg -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/iron-ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/iron-ajax.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/iron-request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/iron-request.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/test/iron-ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/test/iron-ajax.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/test/iron-request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-ajax/test/iron-request.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-autogrow-textarea/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-autogrow-textarea/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-autogrow-textarea/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-autogrow-textarea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-autogrow-textarea/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-autogrow-textarea/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-autogrow-textarea/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-autogrow-textarea/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-autogrow-textarea/hero.svg -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-autogrow-textarea/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-autogrow-textarea/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-behaviors/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-behaviors/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-behaviors/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-behaviors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-behaviors/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-behaviors/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-behaviors/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-behaviors/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-behaviors/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-behaviors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-behaviors/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-behaviors/iron-button-state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-behaviors/iron-button-state.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-behaviors/test/active-state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-behaviors/test/active-state.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-behaviors/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-behaviors/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-checked-element-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-collapse/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-collapse/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-collapse/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-collapse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-collapse/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-collapse/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-collapse/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-collapse/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-collapse/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-collapse/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-collapse/hero.svg -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-collapse/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-collapse/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-collapse/iron-collapse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-collapse/iron-collapse.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-collapse/test/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-collapse/test/basic.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-collapse/test/horizontal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-collapse/test/horizontal.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-collapse/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-collapse/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-dropdown/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-dropdown/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-dropdown/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-dropdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-dropdown/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-dropdown/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-dropdown/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-dropdown/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-dropdown/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-dropdown/demo/x-select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-dropdown/demo/x-select.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-dropdown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-dropdown/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-dropdown/iron-dropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-dropdown/iron-dropdown.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-dropdown/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-dropdown/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-dropdown/test/iron-dropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-dropdown/test/iron-dropdown.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-fit-behavior/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-fit-behavior/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-fit-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-fit-behavior/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-fit-behavior/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-fit-behavior/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-fit-behavior/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-fit-behavior/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-fit-behavior/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-fit-behavior/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-fit-behavior/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-fit-behavior/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-fit-behavior/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-fit-behavior/test/test-fit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-fit-behavior/test/test-fit.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-flex-layout/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-flex-layout/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-flex-layout/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | 3 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-flex-layout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-flex-layout/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-flex-layout/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-flex-layout/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-flex-layout/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-flex-layout/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-flex-layout/demo/x-app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-flex-layout/demo/x-app.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-form-element-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-form-element-behavior/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-form-element-behavior/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-form-element-behavior/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-form-element-behavior/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-form-element-behavior/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-form-element-behavior/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-form/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-form/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-form/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-form/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-form/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-form/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-form/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-form/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-form/demo/simple-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-form/demo/simple-element.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-form/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-form/iron-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-form/iron-form.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-form/test/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-form/test/basic.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-form/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-form/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-form/test/simple-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-form/test/simple-element.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icon/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icon/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icon/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icon/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icon/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icon/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icon/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icon/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icon/demo/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icon/demo/location.png -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icon/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icon/hero.svg -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icon/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icon/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icon/iron-icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icon/iron-icon.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icon/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icon/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icon/test/iron-icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icon/test/iron-icon.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icons/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icons/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icons/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icons/.gitignore -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icons/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icons/av-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icons/av-icons.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icons/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icons/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icons/communication-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icons/communication-icons.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icons/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icons/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icons/device-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icons/device-icons.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icons/editor-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icons/editor-icons.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icons/hardware-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icons/hardware-icons.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icons/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icons/hero.svg -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icons/image-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icons/image-icons.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icons/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icons/iron-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icons/iron-icons.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icons/maps-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icons/maps-icons.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icons/notification-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icons/notification-icons.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-icons/social-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-icons/social-icons.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-iconset-svg/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-iconset-svg/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-iconset-svg/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-iconset-svg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-iconset-svg/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-iconset-svg/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-iconset-svg/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-iconset-svg/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-iconset-svg/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-iconset-svg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-iconset-svg/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-iconset-svg/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-iconset-svg/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-input/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-input/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-input/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-input/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-input/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-input/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-input/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-input/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-input/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-input/hero.svg -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-input/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-input/iron-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-input/iron-input.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-input/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-input/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-input/test/iron-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-input/test/iron-input.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-input/test/letters-only.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-input/test/letters-only.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-media-query/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-media-query/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-media-query/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-media-query/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-media-query/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-media-query/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-media-query/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-media-query/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-media-query/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-media-query/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-media-query/hero.svg -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-media-query/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-media-query/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-media-query/test/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-media-query/test/basic.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-media-query/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-media-query/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-menu-behavior/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-menu-behavior/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-menu-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-menu-behavior/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-menu-behavior/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-menu-behavior/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-menu-behavior/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-menu-behavior/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-menu-behavior/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-menu-behavior/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-menu-behavior/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-menu-behavior/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-menu-behavior/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-meta/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-meta/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-meta/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-meta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-meta/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-meta/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-meta/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-meta/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-meta/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-meta/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-meta/hero.svg -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-meta/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-meta/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-meta/iron-meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-meta/iron-meta.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-meta/test/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-meta/test/basic.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-meta/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-meta/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-meta/test/iron-meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-meta/test/iron-meta.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-overlay-behavior/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-overlay-behavior/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-overlay-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-overlay-behavior/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-overlay-behavior/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-overlay-behavior/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-overlay-behavior/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-overlay-behavior/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-overlay-behavior/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-overlay-behavior/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-overlay-behavior/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-overlay-behavior/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-overlay-behavior/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-resizable-behavior/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-resizable-behavior/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-resizable-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-resizable-behavior/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-resizable-behavior/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-resizable-behavior/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-resizable-behavior/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-resizable-behavior/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-resizable-behavior/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-selector/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-selector/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-selector/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-selector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-selector/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-selector/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-selector/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-selector/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-selector/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-selector/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-selector/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-selector/iron-selectable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-selector/iron-selectable.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-selector/iron-selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-selector/iron-selection.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-selector/iron-selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-selector/iron-selector.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-selector/test/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-selector/test/basic.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-selector/test/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-selector/test/content.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-selector/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-selector/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-selector/test/multi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-selector/test/multi.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-selector/test/next-previous.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-selector/test/next-previous.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-validatable-behavior/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-validatable-behavior/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-validatable-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-validatable-behavior/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-validatable-behavior/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-validatable-behavior/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-validatable-behavior/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/iron-validatable-behavior/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/iron-validatable-behavior/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked-element/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked-element/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked-element/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked-element/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked-element/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked-element/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked-element/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked-element/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked-element/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked-element/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked-element/hero.svg -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked-element/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked-element/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked-element/marked-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked-element/marked-element.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked-element/marked-import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked-element/marked-import.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked-element/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked-element/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked/Gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked/Gulpfile.js -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked/LICENSE -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked/Makefile -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked/bin/marked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked/bin/marked -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked/component.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked/doc/broken.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked/doc/broken.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked/doc/todo.md: -------------------------------------------------------------------------------- 1 | # Todo 2 | 3 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/marked'); 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked/lib/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked/lib/marked.js -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked/man/marked.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked/man/marked.1 -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked/marked.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked/marked.min.js -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/marked/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/marked/package.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/neon-animation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/neon-animation/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/neon-animation/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/neon-animation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/neon-animation/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/neon-animation/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/neon-animation/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/neon-animation/demo/card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/neon-animation/demo/card/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/neon-animation/demo/card/x-card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/neon-animation/demo/card/x-card.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/neon-animation/demo/doc/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/neon-animation/demo/doc/basic.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/neon-animation/demo/doc/types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/neon-animation/demo/doc/types.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/neon-animation/demo/grid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/neon-animation/demo/grid/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/neon-animation/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/neon-animation/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/neon-animation/demo/list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/neon-animation/demo/list/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/neon-animation/demo/load/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/neon-animation/demo/load/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/neon-animation/demo/shared.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/neon-animation/demo/shared.css -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/neon-animation/demo/tiles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/neon-animation/demo/tiles/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/neon-animation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/neon-animation/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/neon-animation/neon-animatable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/neon-animation/neon-animatable.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/neon-animation/neon-animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/neon-animation/neon-animation.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/neon-animation/neon-animations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/neon-animation/neon-animations.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/neon-animation/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/neon-animation/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/neon-animation/web-animations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/neon-animation/web-animations.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-behaviors/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-behaviors/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-behaviors/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-behaviors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-behaviors/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-behaviors/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-behaviors/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-behaviors/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-behaviors/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-behaviors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-behaviors/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-behaviors/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-behaviors/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-behaviors/test/test-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-behaviors/test/test-button.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-button/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-button/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-button/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-button/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-button/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-button/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-button/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-button/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-button/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-button/paper-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-button/paper-button.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-button/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-button/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-button/test/paper-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-button/test/paper-button.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-checkbox/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-checkbox/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-checkbox/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-checkbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-checkbox/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-checkbox/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-checkbox/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-checkbox/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-checkbox/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-checkbox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-checkbox/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-checkbox/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-checkbox/metadata.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-checkbox/paper-checkbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-checkbox/paper-checkbox.css -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-checkbox/paper-checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-checkbox/paper-checkbox.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-checkbox/test/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-checkbox/test/basic.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-checkbox/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-checkbox/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-drawer-panel/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-drawer-panel/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-drawer-panel/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-drawer-panel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-drawer-panel/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-drawer-panel/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-drawer-panel/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-drawer-panel/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-drawer-panel/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-drawer-panel/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-drawer-panel/hero.svg -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-drawer-panel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-drawer-panel/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-dropdown-menu/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-dropdown-menu/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-dropdown-menu/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-dropdown-menu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-dropdown-menu/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-dropdown-menu/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-dropdown-menu/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-dropdown-menu/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-dropdown-menu/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-dropdown-menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-dropdown-menu/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-dropdown-menu/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-dropdown-menu/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-header-panel/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-header-panel/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-header-panel/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-header-panel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-header-panel/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-header-panel/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-header-panel/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-header-panel/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-header-panel/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-header-panel/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-header-panel/hero.svg -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-header-panel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-header-panel/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-header-panel/test/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-header-panel/test/basic.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-header-panel/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-header-panel/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-icon-button/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-icon-button/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-icon-button/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-icon-button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-icon-button/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-icon-button/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-icon-button/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-icon-button/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-icon-button/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-icon-button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-icon-button/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-icon-button/test/a11y.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-icon-button/test/a11y.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-icon-button/test/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-icon-button/test/basic.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-icon-button/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-icon-button/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-input/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-input/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-input/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-input/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-input/all-imports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-input/all-imports.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-input/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-input/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-input/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-input/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-input/demo/ssn-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-input/demo/ssn-input.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-input/demo/ssn-validator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-input/demo/ssn-validator.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-input/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-input/hero.svg -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-input/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-input/paper-input-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-input/paper-input-behavior.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-input/paper-input-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-input/paper-input-error.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-input/paper-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-input/paper-input.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-input/paper-textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-input/paper-textarea.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-input/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-input/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-input/test/letters-only.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-input/test/letters-only.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-input/test/paper-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-input/test/paper-input.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-input/test/paper-textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-input/test/paper-textarea.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-item/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-item/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-item/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-item/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-item/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-item/all-imports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-item/all-imports.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-item/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-item/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-item/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-item/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-item/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-item/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-item/paper-icon-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-item/paper-icon-item.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-item/paper-item-body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-item/paper-item-body.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-item/paper-item-shared.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-item/paper-item-shared.css -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-item/paper-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-item/paper-item.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-item/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-item/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-item/test/paper-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-item/test/paper-item.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-material/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-material/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-material/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-material/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-material/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-material/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-material/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-material/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-material/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-material/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-material/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-material/paper-material.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-material/paper-material.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-material/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-material/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-menu-button/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-menu-button/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-menu-button/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-menu-button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-menu-button/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-menu-button/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-menu-button/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-menu-button/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-menu-button/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-menu-button/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-menu-button/hero.svg -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-menu-button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-menu-button/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-menu-button/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-menu-button/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-menu/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-menu/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-menu/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-menu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-menu/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-menu/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-menu/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-menu/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-menu/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-menu/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-menu/hero.svg -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-menu/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-menu/paper-menu-shared.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-menu/paper-menu-shared.css -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-menu/paper-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-menu/paper-menu.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-menu/paper-submenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-menu/paper-submenu.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-menu/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-menu/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-menu/test/paper-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-menu/test/paper-menu.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-menu/test/paper-submenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-menu/test/paper-submenu.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-ripple/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-ripple/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-ripple/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-ripple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-ripple/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-ripple/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-ripple/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-ripple/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-ripple/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-ripple/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-ripple/hero.svg -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-ripple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-ripple/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-ripple/paper-ripple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-ripple/paper-ripple.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-ripple/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-ripple/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-ripple/test/paper-ripple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-ripple/test/paper-ripple.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-styles/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-styles/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-styles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-styles/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-styles/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-styles/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-styles/classes/global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-styles/classes/global.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-styles/classes/shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-styles/classes/shadow.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-styles/classes/typography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-styles/classes/typography.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-styles/color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-styles/color.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-styles/default-theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-styles/default-theme.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-styles/demo-pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-styles/demo-pages.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-styles/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-styles/demo.css -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-styles/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-styles/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-styles/paper-styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-styles/paper-styles.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-styles/shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-styles/shadow.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-styles/typography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-styles/typography.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-toolbar/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-toolbar/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-toolbar/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-toolbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-toolbar/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-toolbar/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-toolbar/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-toolbar/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-toolbar/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-toolbar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-toolbar/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-toolbar/paper-toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-toolbar/paper-toolbar.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-toolbar/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-toolbar/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-toolbar/test/paper-toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-toolbar/test/paper-toolbar.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-tooltip/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-tooltip/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-tooltip/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-tooltip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-tooltip/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-tooltip/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-tooltip/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-tooltip/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-tooltip/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-tooltip/demo/test-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-tooltip/demo/test-button.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-tooltip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-tooltip/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-tooltip/paper-tooltip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-tooltip/paper-tooltip.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-tooltip/test/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-tooltip/test/basic.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-tooltip/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-tooltip/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/paper-tooltip/test/test-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/paper-tooltip/test/test-button.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/polymer/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/polymer/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/polymer/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/polymer/LICENSE.txt -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/polymer/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/polymer/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/polymer/build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/polymer/build.log -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/polymer/polymer-micro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/polymer/polymer-micro.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/polymer/polymer-mini.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/polymer/polymer-mini.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/polymer/polymer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/polymer/polymer.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/promise-polyfill/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/promise-polyfill/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/promise-polyfill/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/promise-polyfill/Gruntfile.js -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/promise-polyfill/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/promise-polyfill/LICENSE -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/promise-polyfill/Promise-Statics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/promise-polyfill/Promise-Statics.js -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/promise-polyfill/Promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/promise-polyfill/Promise.js -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/promise-polyfill/Promise.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/promise-polyfill/Promise.min.js -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/promise-polyfill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/promise-polyfill/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/promise-polyfill/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/promise-polyfill/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/promise-polyfill/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/promise-polyfill/package.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/web-animations-js/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/web-animations-js/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/web-animations-js/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/web-animations-js/CONTRIBUTING.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/web-animations-js/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/web-animations-js/COPYING -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/web-animations-js/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/web-animations-js/History.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/web-animations-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/web-animations-js/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/web-animations-js/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/web-animations-js/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/.bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/CustomElements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/CustomElements.js -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/HTMLImports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/HTMLImports.js -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/HTMLImports.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/HTMLImports.min.js -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/MutationObserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/MutationObserver.js -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/ShadowDOM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/ShadowDOM.js -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/ShadowDOM.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/ShadowDOM.min.js -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/build.log -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/package.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/webcomponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/bower_components/webcomponentsjs/webcomponents.js -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/images/UDLogoOutlined_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/images/UDLogoOutlined_small.png -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/src/main-contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/src/main-contents.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/src/my-paper-header-panel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/src/my-paper-header-panel/README.md -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/src/my-paper-header-panel/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/src/my-paper-header-panel/bower.json -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/src/my-paper-header-panel/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/src/my-paper-header-panel/demo/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/src/my-paper-header-panel/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/src/my-paper-header-panel/hero.svg -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/src/my-paper-header-panel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/src/my-paper-header-panel/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/src/my-paper-header-panel/my-paper-header-panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/src/my-paper-header-panel/my-paper-header-panel.css -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/src/my-paper-header-panel/my-paper-header-panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/src/my-paper-header-panel/my-paper-header-panel.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/src/my-paper-header-panel/test/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/src/my-paper-header-panel/test/basic.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/src/my-paper-header-panel/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/src/my-paper-header-panel/test/index.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/src/partial-addns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/src/partial-addns.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/src/partial-server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/src/partial-server.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/src/partial-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/src/partial-settings.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/src/primary-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/src/primary-style.css -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/src/sidebar-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/src/sidebar-list.html -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/src/x-app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/src/x-app.css -------------------------------------------------------------------------------- /polyglot/element_manager/frontend/www_static/src/x-app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/frontend/www_static/src/x-app.html -------------------------------------------------------------------------------- /polyglot/element_manager/http/.cvsignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /polyglot/element_manager/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/http/__init__.py -------------------------------------------------------------------------------- /polyglot/element_manager/http/basic_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/http/basic_auth.py -------------------------------------------------------------------------------- /polyglot/element_manager/isy/.cvsignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /polyglot/element_manager/isy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/isy/__init__.py -------------------------------------------------------------------------------- /polyglot/element_manager/isy/incoming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/element_manager/isy/incoming.py -------------------------------------------------------------------------------- /polyglot/node_servers/.cvsignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /polyglot/node_servers/hue/.cvsignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /polyglot/node_servers/hue/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/hue/converters.py -------------------------------------------------------------------------------- /polyglot/node_servers/hue/hue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/hue/hue.py -------------------------------------------------------------------------------- /polyglot/node_servers/hue/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/hue/instructions.txt -------------------------------------------------------------------------------- /polyglot/node_servers/hue/node_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/hue/node_types.py -------------------------------------------------------------------------------- /polyglot/node_servers/hue/phue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/hue/phue.py -------------------------------------------------------------------------------- /polyglot/node_servers/hue/profile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/hue/profile.zip -------------------------------------------------------------------------------- /polyglot/node_servers/hue/profile/editor/editors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/hue/profile/editor/editors.xml -------------------------------------------------------------------------------- /polyglot/node_servers/hue/profile/nls/en_US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/hue/profile/nls/en_US.txt -------------------------------------------------------------------------------- /polyglot/node_servers/hue/profile/nodedef/nodedefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/hue/profile/nodedef/nodedefs.xml -------------------------------------------------------------------------------- /polyglot/node_servers/hue/profile/version.txt: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /polyglot/node_servers/hue/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/hue/pylintrc -------------------------------------------------------------------------------- /polyglot/node_servers/hue/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/hue/server.json -------------------------------------------------------------------------------- /polyglot/node_servers/kodi/.cvsignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /polyglot/node_servers/kodi/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/kodi/instructions.txt -------------------------------------------------------------------------------- /polyglot/node_servers/kodi/jsonrpc_requests/.cvsignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /polyglot/node_servers/kodi/jsonrpc_requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/kodi/jsonrpc_requests/__init__.py -------------------------------------------------------------------------------- /polyglot/node_servers/kodi/jsonrpc_requests/jsonrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/kodi/jsonrpc_requests/jsonrpc.py -------------------------------------------------------------------------------- /polyglot/node_servers/kodi/kodi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/kodi/kodi.py -------------------------------------------------------------------------------- /polyglot/node_servers/kodi/node_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/kodi/node_types.py -------------------------------------------------------------------------------- /polyglot/node_servers/kodi/profile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/kodi/profile.zip -------------------------------------------------------------------------------- /polyglot/node_servers/kodi/profile/.cvsignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /polyglot/node_servers/kodi/profile/editor/.cvsignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /polyglot/node_servers/kodi/profile/editor/editors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/kodi/profile/editor/editors.xml -------------------------------------------------------------------------------- /polyglot/node_servers/kodi/profile/nls/.cvsignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /polyglot/node_servers/kodi/profile/nls/en_US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/kodi/profile/nls/en_US.txt -------------------------------------------------------------------------------- /polyglot/node_servers/kodi/profile/nodedef/.cvsignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /polyglot/node_servers/kodi/profile/nodedef/nodedefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/kodi/profile/nodedef/nodedefs.xml -------------------------------------------------------------------------------- /polyglot/node_servers/kodi/profile/version.txt: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /polyglot/node_servers/kodi/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/kodi/pylintrc -------------------------------------------------------------------------------- /polyglot/node_servers/kodi/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/kodi/server.json -------------------------------------------------------------------------------- /polyglot/node_servers/kodi/xmltodict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/kodi/xmltodict.py -------------------------------------------------------------------------------- /polyglot/node_servers/pulse/diagtst_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/pulse/diagtst_node.py -------------------------------------------------------------------------------- /polyglot/node_servers/pulse/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/pulse/instructions.txt -------------------------------------------------------------------------------- /polyglot/node_servers/pulse/profile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/pulse/profile.zip -------------------------------------------------------------------------------- /polyglot/node_servers/pulse/profile/editor/editors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/pulse/profile/editor/editors.xml -------------------------------------------------------------------------------- /polyglot/node_servers/pulse/profile/nls/en_US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/pulse/profile/nls/en_US.txt -------------------------------------------------------------------------------- /polyglot/node_servers/pulse/profile/nodedef/nodedefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/pulse/profile/nodedef/nodedefs.xml -------------------------------------------------------------------------------- /polyglot/node_servers/pulse/profile/version.txt: -------------------------------------------------------------------------------- 1 | 0.0.4 2 | -------------------------------------------------------------------------------- /polyglot/node_servers/pulse/pulse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/pulse/pulse.py -------------------------------------------------------------------------------- /polyglot/node_servers/pulse/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/node_servers/pulse/server.json -------------------------------------------------------------------------------- /polyglot/nodeserver_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/nodeserver_api.py -------------------------------------------------------------------------------- /polyglot/nodeserver_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/nodeserver_helpers.py -------------------------------------------------------------------------------- /polyglot/nodeserver_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/nodeserver_manager.py -------------------------------------------------------------------------------- /polyglot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/polyglot/utils.py -------------------------------------------------------------------------------- /polyglot/version.py: -------------------------------------------------------------------------------- 1 | """ 2 | Polyglot Version number 3 | """ 4 | PGVERSION = "0.0.8" 5 | -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/pylintrc -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/check_style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/scripts/check_style.sh -------------------------------------------------------------------------------- /scripts/clean_project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/scripts/clean_project -------------------------------------------------------------------------------- /scripts/id_rsa_pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/scripts/id_rsa_pi -------------------------------------------------------------------------------- /scripts/make_dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/scripts/make_dist.sh -------------------------------------------------------------------------------- /scripts/make_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/scripts/make_profile -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalDevicesInc/Polyglot/HEAD/setup.py --------------------------------------------------------------------------------