├── .gitignore ├── COPYING ├── LICENSE.txt ├── Makefile ├── Makefile.sub ├── README.md ├── admin ├── .bowerrc ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── Makefile ├── README.md ├── app │ ├── .buildignore │ ├── .htaccess │ ├── 404.html │ ├── bower_components │ │ ├── angular-cookies │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── angular-cookies.js │ │ │ ├── angular-cookies.min.js │ │ │ └── bower.json │ │ ├── angular-mocks │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── angular-mocks.js │ │ │ └── bower.json │ │ ├── angular-resource │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── angular-resource.js │ │ │ ├── angular-resource.min.js │ │ │ └── bower.json │ │ ├── angular-sanitize │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── angular-sanitize.js │ │ │ ├── angular-sanitize.min.js │ │ │ └── bower.json │ │ ├── angular-scenario │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── angular-scenario.js │ │ │ ├── bower.json │ │ │ ├── jstd-scenario-adapter-config.js │ │ │ └── jstd-scenario-adapter.js │ │ ├── angular-ui-bootstrap-bower │ │ │ ├── .bower.json │ │ │ ├── bower.json │ │ │ ├── ui-bootstrap-tpls.js │ │ │ ├── ui-bootstrap-tpls.min.js │ │ │ ├── ui-bootstrap.js │ │ │ └── ui-bootstrap.min.js │ │ ├── angular │ │ │ ├── .bower.json │ │ │ ├── angular.js │ │ │ ├── angular.min.js │ │ │ └── bower.json │ │ ├── bootstrap-sass │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── bootstrap-2.3.2.css │ │ │ ├── bootstrap-2.3.2.min.css │ │ │ ├── bootstrap-responsive-2.3.2.css │ │ │ ├── bootstrap-responsive-2.3.2.min.css │ │ │ ├── component.json │ │ │ ├── composer.json │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ ├── js │ │ │ │ ├── .jshintrc │ │ │ │ ├── bootstrap-affix.js │ │ │ │ ├── bootstrap-alert.js │ │ │ │ ├── bootstrap-button.js │ │ │ │ ├── bootstrap-carousel.js │ │ │ │ ├── bootstrap-collapse.js │ │ │ │ ├── bootstrap-dropdown.js │ │ │ │ ├── bootstrap-modal.js │ │ │ │ ├── bootstrap-popover.js │ │ │ │ ├── bootstrap-scrollspy.js │ │ │ │ ├── bootstrap-tab.js │ │ │ │ ├── bootstrap-tooltip.js │ │ │ │ ├── bootstrap-transition.js │ │ │ │ ├── bootstrap-typeahead.js │ │ │ │ └── tests │ │ │ │ │ ├── index.html │ │ │ │ │ ├── phantom.js │ │ │ │ │ ├── server.js │ │ │ │ │ ├── unit │ │ │ │ │ ├── bootstrap-affix.js │ │ │ │ │ ├── bootstrap-alert.js │ │ │ │ │ ├── bootstrap-button.js │ │ │ │ │ ├── bootstrap-carousel.js │ │ │ │ │ ├── bootstrap-collapse.js │ │ │ │ │ ├── bootstrap-dropdown.js │ │ │ │ │ ├── bootstrap-modal.js │ │ │ │ │ ├── bootstrap-phantom.js │ │ │ │ │ ├── bootstrap-popover.js │ │ │ │ │ ├── bootstrap-scrollspy.js │ │ │ │ │ ├── bootstrap-tab.js │ │ │ │ │ ├── bootstrap-tooltip.js │ │ │ │ │ ├── bootstrap-transition.js │ │ │ │ │ └── bootstrap-typeahead.js │ │ │ │ │ └── vendor │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── qunit.css │ │ │ │ │ └── qunit.js │ │ │ ├── lib │ │ │ │ ├── _accordion.scss │ │ │ │ ├── _alerts.scss │ │ │ │ ├── _breadcrumbs.scss │ │ │ │ ├── _button-groups.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _close.scss │ │ │ │ ├── _code.scss │ │ │ │ ├── _component-animations.scss │ │ │ │ ├── _dropdowns.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _hero-unit.scss │ │ │ │ ├── _labels-badges.scss │ │ │ │ ├── _layouts.scss │ │ │ │ ├── _media.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _modals.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _navs.scss │ │ │ │ ├── _pager.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _popovers.scss │ │ │ │ ├── _progress-bars.scss │ │ │ │ ├── _reset.scss │ │ │ │ ├── _responsive-1200px-min.scss │ │ │ │ ├── _responsive-767px-max.scss │ │ │ │ ├── _responsive-768px-979px.scss │ │ │ │ ├── _responsive-navbar.scss │ │ │ │ ├── _responsive-utilities.scss │ │ │ │ ├── _scaffolding.scss │ │ │ │ ├── _sprites.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _thumbnails.scss │ │ │ │ ├── _tooltip.scss │ │ │ │ ├── _type.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── _wells.scss │ │ │ │ ├── bootstrap.scss │ │ │ │ ├── responsive.scss │ │ │ │ └── tests │ │ │ │ │ ├── buttons.html │ │ │ │ │ ├── css-tests.css │ │ │ │ │ ├── css-tests.html │ │ │ │ │ ├── forms-responsive.html │ │ │ │ │ ├── forms.html │ │ │ │ │ ├── navbar-fixed-top.html │ │ │ │ │ ├── navbar-static-top.html │ │ │ │ │ └── navbar.html │ │ │ └── package.json │ │ ├── es5-shim │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── CHANGES │ │ │ ├── CONTRIBUTORS.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── es5-sham.js │ │ │ ├── es5-sham.map │ │ │ ├── es5-sham.min.js │ │ │ ├── es5-shim.js │ │ │ ├── es5-shim.map │ │ │ ├── es5-shim.min.js │ │ │ ├── package.json │ │ │ └── tests │ │ │ │ ├── helpers │ │ │ │ ├── h-kill.js │ │ │ │ ├── h-matchers.js │ │ │ │ └── h.js │ │ │ │ ├── index.html │ │ │ │ ├── index.min.html │ │ │ │ ├── lib │ │ │ │ ├── jasmine-html.js │ │ │ │ ├── jasmine.css │ │ │ │ ├── jasmine.js │ │ │ │ ├── jasmine_favicon.png │ │ │ │ └── json2.js │ │ │ │ └── spec │ │ │ │ ├── s-array.js │ │ │ │ ├── s-date.js │ │ │ │ ├── s-function.js │ │ │ │ ├── s-number.js │ │ │ │ ├── s-object.js │ │ │ │ └── s-string.js │ │ ├── font-awesome │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .ruby-version │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── README.md │ │ │ ├── _config.yml │ │ │ ├── composer.json │ │ │ ├── css │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── font │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── less │ │ │ │ ├── bootstrap.less │ │ │ │ ├── core.less │ │ │ │ ├── extras.less │ │ │ │ ├── font-awesome-ie7.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ └── variables.less │ │ │ ├── package.json │ │ │ ├── scss │ │ │ │ ├── _bootstrap.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _extras.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── font-awesome-ie7.scss │ │ │ │ └── font-awesome.scss │ │ │ └── src │ │ │ │ ├── CNAME │ │ │ │ ├── Makefile │ │ │ │ ├── _includes │ │ │ │ ├── ads │ │ │ │ │ ├── carbon-dark-vertical.html │ │ │ │ │ ├── carbon-light-horizontal.html │ │ │ │ │ └── carbon-light-vertical.html │ │ │ │ ├── brand-license.html │ │ │ │ ├── cheatsheet.html │ │ │ │ ├── community.html │ │ │ │ ├── community │ │ │ │ │ ├── getting-support.html │ │ │ │ │ ├── project-milestones.html │ │ │ │ │ ├── reporting-bugs.html │ │ │ │ │ ├── requesting-new-icons.html │ │ │ │ │ └── submitting-pull-requests.html │ │ │ │ ├── examples.html │ │ │ │ ├── examples │ │ │ │ │ ├── animated-spinner.html │ │ │ │ │ ├── bordered-pulled.html │ │ │ │ │ ├── bulleted-lists.html │ │ │ │ │ ├── button-dropdowns.html │ │ │ │ │ ├── button-groups.html │ │ │ │ │ ├── buttons.html │ │ │ │ │ ├── custom.html │ │ │ │ │ ├── form-inputs.html │ │ │ │ │ ├── inline-icons.html │ │ │ │ │ ├── larger-icons.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── new.html │ │ │ │ │ ├── rotated-flipped.html │ │ │ │ │ └── stacked.html │ │ │ │ ├── footer.html │ │ │ │ ├── get-started.html │ │ │ │ ├── icons.html │ │ │ │ ├── icons │ │ │ │ │ ├── brand.html │ │ │ │ │ ├── currency.html │ │ │ │ │ ├── directional.html │ │ │ │ │ ├── medical.html │ │ │ │ │ ├── new.html │ │ │ │ │ ├── text-editor.html │ │ │ │ │ ├── video-player.html │ │ │ │ │ └── web-application.html │ │ │ │ ├── jumbotron-slider.html │ │ │ │ ├── jumbotron.html │ │ │ │ ├── license-code.less │ │ │ │ ├── license.html │ │ │ │ ├── navbar.html │ │ │ │ ├── stripe-ad.html │ │ │ │ ├── stripe-social.html │ │ │ │ ├── tell-me-thanks.html │ │ │ │ ├── tests │ │ │ │ │ ├── rotated-flipped-inside-anchor.html │ │ │ │ │ ├── rotated-flipped-inside-btn.html │ │ │ │ │ ├── rotated-flipped.html │ │ │ │ │ ├── stacked-inside-anchor.html │ │ │ │ │ └── stacked.html │ │ │ │ ├── thanks-to.html │ │ │ │ ├── whats-new.html │ │ │ │ └── why.html │ │ │ │ ├── _layouts │ │ │ │ ├── base.html │ │ │ │ └── icon.html │ │ │ │ ├── _plugins │ │ │ │ ├── icon_page_generator.rb │ │ │ │ └── site.rb │ │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ ├── prettify.css │ │ │ │ │ └── pygments.css │ │ │ │ ├── font-awesome │ │ │ │ │ ├── font │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ ├── less │ │ │ │ │ │ ├── bootstrap.less │ │ │ │ │ │ ├── core.less │ │ │ │ │ │ ├── extras.less │ │ │ │ │ │ ├── font-awesome-ie7.less │ │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ │ ├── icons.less │ │ │ │ │ │ ├── mixins.less │ │ │ │ │ │ ├── path.less │ │ │ │ │ │ └── variables.less │ │ │ │ │ └── scss │ │ │ │ │ │ ├── _bootstrap.scss │ │ │ │ │ │ ├── _core.scss │ │ │ │ │ │ ├── _extras.scss │ │ │ │ │ │ ├── _icons.scss │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ ├── _path.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ ├── font-awesome-ie7.scss │ │ │ │ │ │ └── font-awesome.scss │ │ │ │ ├── ico │ │ │ │ │ └── favicon.ico │ │ │ │ ├── img │ │ │ │ │ ├── contribution-sample.png │ │ │ │ │ ├── fort_awesome.jpg │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ │ └── icon-flag.pdf │ │ │ │ ├── js │ │ │ │ │ ├── ZeroClipboard-1.1.7.min.js │ │ │ │ │ ├── ZeroClipboard-1.1.7.swf │ │ │ │ │ ├── backbone.min.js │ │ │ │ │ ├── bootstrap-2.3.1.min.js │ │ │ │ │ ├── bootstrap-222.min.js │ │ │ │ │ ├── jquery-1.7.1.min.js │ │ │ │ │ ├── prettify.min.js │ │ │ │ │ ├── site.js │ │ │ │ │ └── underscore.min.js │ │ │ │ └── less │ │ │ │ │ ├── bootstrap-2.3.2 │ │ │ │ │ ├── accordion.less │ │ │ │ │ ├── alerts.less │ │ │ │ │ ├── bootstrap.less │ │ │ │ │ ├── breadcrumbs.less │ │ │ │ │ ├── button-groups.less │ │ │ │ │ ├── buttons.less │ │ │ │ │ ├── carousel.less │ │ │ │ │ ├── close.less │ │ │ │ │ ├── code.less │ │ │ │ │ ├── component-animations.less │ │ │ │ │ ├── dropdowns.less │ │ │ │ │ ├── forms.less │ │ │ │ │ ├── grid.less │ │ │ │ │ ├── hero-unit.less │ │ │ │ │ ├── labels-badges.less │ │ │ │ │ ├── layouts.less │ │ │ │ │ ├── media.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── modals.less │ │ │ │ │ ├── navbar.less │ │ │ │ │ ├── navs.less │ │ │ │ │ ├── pager.less │ │ │ │ │ ├── pagination.less │ │ │ │ │ ├── popovers.less │ │ │ │ │ ├── progress-bars.less │ │ │ │ │ ├── reset.less │ │ │ │ │ ├── responsive-1200px-min.less │ │ │ │ │ ├── responsive-767px-max.less │ │ │ │ │ ├── responsive-768px-979px.less │ │ │ │ │ ├── responsive-navbar.less │ │ │ │ │ ├── responsive-utilities.less │ │ │ │ │ ├── responsive.less │ │ │ │ │ ├── scaffolding.less │ │ │ │ │ ├── sprites.less │ │ │ │ │ ├── tables.less │ │ │ │ │ ├── thumbnails.less │ │ │ │ │ ├── tooltip.less │ │ │ │ │ ├── type.less │ │ │ │ │ ├── utilities.less │ │ │ │ │ ├── variables.less │ │ │ │ │ └── wells.less │ │ │ │ │ ├── lazy.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── responsive-1200px-min.less │ │ │ │ │ ├── responsive-767px-max.less │ │ │ │ │ ├── responsive-768px-979px.less │ │ │ │ │ ├── responsive-navbar.less │ │ │ │ │ ├── responsive.less │ │ │ │ │ ├── site.less │ │ │ │ │ ├── sticky-footer.less │ │ │ │ │ └── variables.less │ │ │ │ ├── cheatsheet.html │ │ │ │ ├── community.html │ │ │ │ ├── design.html │ │ │ │ ├── examples.html │ │ │ │ ├── get-started.html │ │ │ │ ├── icons.html │ │ │ │ ├── icons.yml │ │ │ │ ├── index.html │ │ │ │ ├── license.html │ │ │ │ ├── test.html │ │ │ │ └── whats-new.html │ │ ├── jquery │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── component.json │ │ │ ├── composer.json │ │ │ ├── jquery-migrate.js │ │ │ ├── jquery-migrate.min.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ └── package.json │ │ ├── json3 │ │ │ ├── .bower.json │ │ │ ├── .gitmodules │ │ │ ├── .jshintrc │ │ │ ├── .npmignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── benchmark │ │ │ │ ├── assets │ │ │ │ │ ├── html5.js │ │ │ │ │ ├── jsperf.css │ │ │ │ │ ├── nano.jar │ │ │ │ │ └── ui.js │ │ │ │ ├── benchmark_browser.html │ │ │ │ └── benchmark_json3.js │ │ │ ├── build.js │ │ │ ├── index.html │ │ │ ├── lib │ │ │ │ ├── json3.js │ │ │ │ └── json3.min.js │ │ │ ├── package.json │ │ │ ├── page │ │ │ │ ├── background.png │ │ │ │ ├── logo.png │ │ │ │ ├── page.html │ │ │ │ └── style.css │ │ │ ├── test │ │ │ │ ├── test_browser.html │ │ │ │ ├── test_extendscript.jsx │ │ │ │ └── test_json3.js │ │ │ └── vendor │ │ │ │ ├── benchmark.js │ │ │ │ ├── curl.js │ │ │ │ ├── evalJSON.js │ │ │ │ ├── json2.js │ │ │ │ ├── json_parse.js │ │ │ │ ├── json_parse_state.js │ │ │ │ ├── json_sans_eval.js │ │ │ │ ├── lodash.js │ │ │ │ ├── platform.js │ │ │ │ ├── prototype.js │ │ │ │ └── require.js │ │ └── underscore │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CNAME │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── test │ │ │ ├── arrays.js │ │ │ ├── chaining.js │ │ │ ├── collections.js │ │ │ ├── functions.js │ │ │ ├── index.html │ │ │ ├── objects.js │ │ │ ├── speed.js │ │ │ ├── utility.js │ │ │ └── vendor │ │ │ │ ├── jquery.js │ │ │ │ ├── jslitmus.js │ │ │ │ ├── qunit.css │ │ │ │ ├── qunit.js │ │ │ │ └── runner.js │ │ │ ├── underscore-min.js │ │ │ ├── underscore-min.map │ │ │ └── underscore.js │ ├── favicon.ico │ ├── images │ │ └── logo.png │ ├── index.html │ ├── robots.txt │ ├── scripts │ │ ├── app.js │ │ └── controllers │ │ │ ├── cluster.js │ │ │ ├── general.js │ │ │ ├── main.js │ │ │ ├── user.js │ │ │ └── users.js │ ├── styles │ │ ├── admin.scss │ │ ├── inktank_colors.scss │ │ ├── inktank_fonts.scss │ │ └── main.scss │ └── views │ │ ├── cluster.html │ │ ├── general.html │ │ ├── main.html │ │ ├── removeCluster.html │ │ ├── user.html │ │ └── users.html ├── bower.json ├── karma-e2e.conf.js ├── karma.conf.js ├── package.json └── test │ ├── runner.html │ └── spec │ └── controllers │ └── main.js ├── bootstrap.md ├── calamari-clients.suse.spec ├── clients.spec ├── dashboard ├── .bowerrc ├── .jshintrc ├── Gruntfile.js ├── Makefile ├── README.md ├── app │ ├── .gitignore │ ├── .htaccess │ ├── 404.html │ ├── bower_components │ │ ├── Backbone.Modal │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── Gruntfile.coffee │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backbone.marionette.modals-min.js │ │ │ ├── backbone.marionette.modals.js │ │ │ ├── backbone.modal-bundled-min.js │ │ │ ├── backbone.modal-bundled.js │ │ │ ├── backbone.modal-min.js │ │ │ ├── backbone.modal.css │ │ │ ├── backbone.modal.js │ │ │ ├── backbone.modal.theme.css │ │ │ ├── examples │ │ │ │ ├── 1_single_view.html │ │ │ │ ├── 2_tab_based.html │ │ │ │ ├── 3_stacked_modal_with_marionette.html │ │ │ │ ├── 4_wizard.html │ │ │ │ ├── css │ │ │ │ │ └── style.css │ │ │ │ ├── img │ │ │ │ │ └── tab-icons.png │ │ │ │ ├── style.css │ │ │ │ └── vendor │ │ │ │ │ ├── backbone.js │ │ │ │ │ ├── backbone.marionette.modals.js │ │ │ │ │ ├── backbone.modal.css │ │ │ │ │ ├── backbone.modal.js │ │ │ │ │ ├── backbone.modal.theme.css │ │ │ │ │ ├── jquery-1.9.1.js │ │ │ │ │ ├── marionette.js │ │ │ │ │ └── underscore.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── backbone.marionette.modals.coffee │ │ │ │ ├── backbone.modal.coffee │ │ │ │ ├── backbone.modal.sass │ │ │ │ ├── backbone.modal.theme.sass │ │ │ │ └── style.sass │ │ │ └── test │ │ │ │ ├── spec.html │ │ │ │ ├── spec │ │ │ │ ├── backbone.marionette.modals.spec.js │ │ │ │ └── backbone.modal.spec.js │ │ │ │ └── src │ │ │ │ ├── backbone.marionette.modals.spec.coffee │ │ │ │ └── backbone.modal.spec.coffee │ │ ├── backbone-amd │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── CNAME │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backbone-min.js │ │ │ ├── backbone-min.map │ │ │ ├── backbone.js │ │ │ ├── examples │ │ │ │ ├── backbone.localStorage.js │ │ │ │ └── todos │ │ │ │ │ ├── destroy.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── todos.css │ │ │ │ │ └── todos.js │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── collection.js │ │ │ │ ├── environment.js │ │ │ │ ├── events.js │ │ │ │ ├── index.html │ │ │ │ ├── model.coffee │ │ │ │ ├── model.js │ │ │ │ ├── noconflict.js │ │ │ │ ├── router.js │ │ │ │ ├── sync.js │ │ │ │ ├── vendor │ │ │ │ ├── jquery.js │ │ │ │ ├── json2.js │ │ │ │ ├── qunit.css │ │ │ │ ├── qunit.js │ │ │ │ ├── runner.js │ │ │ │ └── underscore.js │ │ │ │ └── view.js │ │ ├── backbone.babysitter │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .jshintrc │ │ │ ├── CHANGELOG.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE.md │ │ │ ├── lib │ │ │ │ ├── amd │ │ │ │ │ ├── backbone.babysitter.js │ │ │ │ │ └── backbone.babysitter.min.js │ │ │ │ ├── backbone.babysitter.js │ │ │ │ ├── backbone.babysitter.map │ │ │ │ └── backbone.babysitter.min.js │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── javascripts │ │ │ │ │ ├── backbone.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── json2.js │ │ │ │ │ └── underscore.js │ │ │ ├── readme.md │ │ │ ├── reports │ │ │ │ ├── coverage.json │ │ │ │ └── coverage │ │ │ │ │ ├── index.html │ │ │ │ │ ├── prettify.css │ │ │ │ │ ├── prettify.js │ │ │ │ │ └── src │ │ │ │ │ ├── amd.js.html │ │ │ │ │ ├── childviewcontainer.js.html │ │ │ │ │ └── index.html │ │ │ ├── spec │ │ │ │ └── javascripts │ │ │ │ │ ├── childviewContainer.spec.js │ │ │ │ │ └── helpers │ │ │ │ │ └── jasmineMatchers.js │ │ │ └── src │ │ │ │ ├── amd.js │ │ │ │ └── childviewcontainer.js │ │ ├── backbone.marionette │ │ │ ├── .bower.json │ │ │ ├── .jshintrc │ │ │ ├── .tm_properties │ │ │ ├── Gruntfile.js │ │ │ ├── addrem │ │ │ ├── bower.json │ │ │ ├── getdeps │ │ │ ├── lib │ │ │ │ ├── backbone.marionette.js │ │ │ │ ├── backbone.marionette.map │ │ │ │ ├── backbone.marionette.min.js │ │ │ │ └── core │ │ │ │ │ ├── amd │ │ │ │ │ ├── backbone.marionette.js │ │ │ │ │ └── backbone.marionette.min.js │ │ │ │ │ ├── backbone.marionette.js │ │ │ │ │ ├── backbone.marionette.map │ │ │ │ │ └── backbone.marionette.min.js │ │ │ ├── license.txt │ │ │ ├── public │ │ │ │ └── javascripts │ │ │ │ │ ├── backbone.augment.js │ │ │ │ │ ├── backbone.babysitter.js │ │ │ │ │ ├── backbone.js │ │ │ │ │ ├── backbone.wreqr.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── json2.js │ │ │ │ │ └── underscore.js │ │ │ ├── readme.md │ │ │ ├── src │ │ │ │ ├── marionette.application.js │ │ │ │ ├── marionette.approuter.js │ │ │ │ ├── marionette.bindEntityEvents.js │ │ │ │ ├── marionette.callbacks.js │ │ │ │ ├── marionette.collectionview.js │ │ │ │ ├── marionette.compositeview.js │ │ │ │ ├── marionette.controller.js │ │ │ │ ├── marionette.domRefresh.js │ │ │ │ ├── marionette.helpers.js │ │ │ │ ├── marionette.itemview.js │ │ │ │ ├── marionette.layout.js │ │ │ │ ├── marionette.module.js │ │ │ │ ├── marionette.region.js │ │ │ │ ├── marionette.regionManager.js │ │ │ │ ├── marionette.renderer.js │ │ │ │ ├── marionette.templatecache.js │ │ │ │ ├── marionette.triggermethod.js │ │ │ │ └── marionette.view.js │ │ │ └── upgradeGuide.md │ │ ├── backbone.wreqr │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .jshintrc │ │ │ ├── CHANGELOG.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE.md │ │ │ ├── lib │ │ │ │ ├── amd │ │ │ │ │ ├── backbone.wreqr.js │ │ │ │ │ └── backbone.wreqr.min.js │ │ │ │ ├── backbone.wreqr.js │ │ │ │ ├── backbone.wreqr.map │ │ │ │ └── backbone.wreqr.min.js │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── javascripts │ │ │ │ │ ├── backbone.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── json2.js │ │ │ │ │ └── underscore.js │ │ │ ├── readme.md │ │ │ ├── reports │ │ │ │ ├── coverage.json │ │ │ │ └── coverage │ │ │ │ │ ├── index.html │ │ │ │ │ ├── prettify.css │ │ │ │ │ ├── prettify.js │ │ │ │ │ ├── spec │ │ │ │ │ └── javascripts │ │ │ │ │ │ └── support │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── wreqrHelper.js.html │ │ │ │ │ └── src │ │ │ │ │ ├── index.html │ │ │ │ │ ├── wreqr.commandStorage.js.html │ │ │ │ │ ├── wreqr.commands.js.html │ │ │ │ │ ├── wreqr.eventaggregator.js.html │ │ │ │ │ ├── wreqr.handlers.js.html │ │ │ │ │ ├── wreqr.js.html │ │ │ │ │ └── wreqr.requestresponse.js.html │ │ │ ├── spec │ │ │ │ └── javascripts │ │ │ │ │ ├── commandStorage.custom.spec.js │ │ │ │ │ ├── commandStorage.spec.js │ │ │ │ │ ├── commands.spec.js │ │ │ │ │ ├── eventaggregator.spec.js │ │ │ │ │ ├── handlers.setFromHash.spec.js │ │ │ │ │ ├── handlers.spec.js │ │ │ │ │ ├── helpers │ │ │ │ │ └── jasmineMatchers.js │ │ │ │ │ ├── requestResponse.spec.js │ │ │ │ │ └── support │ │ │ │ │ └── wreqrHelper.js │ │ │ └── src │ │ │ │ ├── amd.js │ │ │ │ ├── wreqr.commandStorage.js │ │ │ │ ├── wreqr.commands.js │ │ │ │ ├── wreqr.eventaggregator.js │ │ │ │ ├── wreqr.handlers.js │ │ │ │ ├── wreqr.js │ │ │ │ └── wreqr.requestresponse.js │ │ ├── backbone │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── CNAME │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backbone.js │ │ │ ├── bower.json │ │ │ ├── component.json │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── bean │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .jshintrc │ │ │ ├── .npmignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── bean.js │ │ │ ├── bean.min.js │ │ │ ├── buster.js │ │ │ ├── component.json │ │ │ ├── integration │ │ │ │ ├── ender.js │ │ │ │ └── index.html │ │ │ ├── make │ │ │ │ └── build.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── bean.js │ │ │ │ ├── copyright.js │ │ │ │ └── ender.js │ │ │ └── tests │ │ │ │ ├── add-test.js │ │ │ │ ├── benchmark │ │ │ │ ├── bean_04.js │ │ │ │ ├── bean_05.js │ │ │ │ ├── benchmark.html │ │ │ │ ├── benchmark.js │ │ │ │ ├── nano.jar │ │ │ │ ├── nwevents-pubsub.js │ │ │ │ └── nwevents.js │ │ │ │ ├── clone-test.js │ │ │ │ ├── common.js │ │ │ │ ├── custom-test.js │ │ │ │ ├── custom-types-test.js │ │ │ │ ├── delegate-test.js │ │ │ │ ├── event-object-test.js │ │ │ │ ├── fire-test.js │ │ │ │ ├── namespace-test.js │ │ │ │ ├── noconflict-test.js │ │ │ │ ├── noconflict_fixture.js │ │ │ │ ├── remove-test.js │ │ │ │ ├── support │ │ │ │ └── syn │ │ │ │ │ ├── browsers.js │ │ │ │ │ ├── key.js │ │ │ │ │ ├── mouse.js │ │ │ │ │ └── synthetic.js │ │ │ │ └── tests.html │ │ ├── bootstrap-switch │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── component.json │ │ │ ├── composer.json │ │ │ └── static │ │ │ │ ├── js │ │ │ │ ├── bootstrap-switch.js │ │ │ │ └── bootstrap-switch.min.js │ │ │ │ ├── less │ │ │ │ ├── bootstrap-switch.less │ │ │ │ └── deps │ │ │ │ │ ├── mixins.less │ │ │ │ │ └── variables.less │ │ │ │ └── stylesheets │ │ │ │ ├── bootstrap-switch.css │ │ │ │ └── flat-ui-fonts.css │ │ ├── dygraphs │ │ │ ├── .bower.json │ │ │ ├── .dygraph-combined-clean.js │ │ │ ├── .gitignore │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── NOTES │ │ │ ├── README │ │ │ ├── auto_tests │ │ │ │ ├── README │ │ │ │ ├── lib │ │ │ │ │ ├── Asserts.js │ │ │ │ │ ├── JsTestDriver-1.3.3c.jar │ │ │ │ │ └── jquery-1.4.2.js │ │ │ │ ├── misc │ │ │ │ │ ├── README │ │ │ │ │ ├── fake-jstestdriver.js │ │ │ │ │ ├── local.html │ │ │ │ │ ├── local.js │ │ │ │ │ └── new-test.sh │ │ │ │ └── tests │ │ │ │ │ ├── CanvasAssertions.js │ │ │ │ │ ├── DygraphOps.js │ │ │ │ │ ├── PixelSampler.js │ │ │ │ │ ├── Proxy.js │ │ │ │ │ ├── Util.js │ │ │ │ │ ├── annotations.js │ │ │ │ │ ├── axis_labels-deprecated.js │ │ │ │ │ ├── axis_labels.js │ │ │ │ │ ├── callback.js │ │ │ │ │ ├── connect_separated_points.js │ │ │ │ │ ├── css.js │ │ │ │ │ ├── custom_bars.js │ │ │ │ │ ├── date_formats.js │ │ │ │ │ ├── dygraph-options-tests.js │ │ │ │ │ ├── error_bars.js │ │ │ │ │ ├── formats.js │ │ │ │ │ ├── grid_per_axis.js │ │ │ │ │ ├── interaction_model.js │ │ │ │ │ ├── missing_points.js │ │ │ │ │ ├── multi_csv.js │ │ │ │ │ ├── multiple_axes-old.js │ │ │ │ │ ├── multiple_axes.js │ │ │ │ │ ├── no_hours.js │ │ │ │ │ ├── parser.js │ │ │ │ │ ├── pathological_cases.js │ │ │ │ │ ├── per_series.js │ │ │ │ │ ├── plugins.js │ │ │ │ │ ├── range_selector.js │ │ │ │ │ ├── range_tests.js │ │ │ │ │ ├── resize.js │ │ │ │ │ ├── rolling_average.js │ │ │ │ │ ├── sanity.js │ │ │ │ │ ├── scientific_notation.js │ │ │ │ │ ├── scrolling_div.js │ │ │ │ │ ├── selection.js │ │ │ │ │ ├── simple_drawing.js │ │ │ │ │ ├── stacked.js │ │ │ │ │ ├── step_plot_per_series.js │ │ │ │ │ ├── tickers.disabled-js │ │ │ │ │ ├── to_dom_coords.js │ │ │ │ │ ├── update_options.js │ │ │ │ │ ├── update_while_panning.js │ │ │ │ │ └── utils_test.js │ │ │ ├── closure-todo.txt │ │ │ ├── common │ │ │ │ ├── textarea.css │ │ │ │ └── textarea.js │ │ │ ├── dashed-canvas.js │ │ │ ├── data.js │ │ │ ├── dygraph-canvas.js │ │ │ ├── dygraph-combined.js │ │ │ ├── dygraph-dev.js │ │ │ ├── dygraph-externs.js │ │ │ ├── dygraph-gviz.js │ │ │ ├── dygraph-interaction-model.js │ │ │ ├── dygraph-layout.js │ │ │ ├── dygraph-options-reference.js │ │ │ ├── dygraph-options.js │ │ │ ├── dygraph-plugin-base.js │ │ │ ├── dygraph-plugin-install.js │ │ │ ├── dygraph-tickers.js │ │ │ ├── dygraph-utils.js │ │ │ ├── dygraph.js │ │ │ ├── excanvas.js │ │ │ ├── experimental │ │ │ │ └── palette │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ ├── jquery-1.8.3.min.js │ │ │ │ │ ├── multi-palette.js │ │ │ │ │ ├── options.js │ │ │ │ │ ├── palette.css │ │ │ │ │ ├── palette.js │ │ │ │ │ ├── samples.js │ │ │ │ │ ├── tooltip.css │ │ │ │ │ └── tooltip.js │ │ │ ├── extras │ │ │ │ └── unzoom.js │ │ │ ├── file-size-stats.sh │ │ │ ├── gadget.xml │ │ │ ├── gallery │ │ │ │ ├── README │ │ │ │ ├── annotations-gviz.js │ │ │ │ ├── annotations-native.js │ │ │ │ ├── annotations.js │ │ │ │ ├── avoid-min-zero.js │ │ │ │ ├── border.js │ │ │ │ ├── callbacks.js │ │ │ │ ├── color-cycle.js │ │ │ │ ├── color-visibility.js │ │ │ │ ├── data.js │ │ │ │ ├── demo.js │ │ │ │ ├── drawing.js │ │ │ │ ├── dygraph-simple.js │ │ │ │ ├── dynamic-update.js │ │ │ │ ├── edge-padding.js │ │ │ │ ├── gallery-template.js │ │ │ │ ├── gallery.css │ │ │ │ ├── gallery.js │ │ │ │ ├── highlighted-region.js │ │ │ │ ├── highlighted-series.js │ │ │ │ ├── highlighted-weekends.js │ │ │ │ ├── images │ │ │ │ │ ├── cursor-eraser.png │ │ │ │ │ ├── cursor-pencil.png │ │ │ │ │ ├── dollar.png │ │ │ │ │ └── tool-palette.png │ │ │ │ ├── independent-series.js │ │ │ │ ├── index.html │ │ │ │ ├── interaction-api.js │ │ │ │ ├── interaction.js │ │ │ │ ├── lib │ │ │ │ │ └── jquery-1.4.2.js │ │ │ │ ├── linear-regression.js │ │ │ │ ├── link-interaction.js │ │ │ │ ├── negative.js │ │ │ │ ├── no-range.js │ │ │ │ ├── number-format.js │ │ │ │ ├── per-series.js │ │ │ │ ├── plotter.js │ │ │ │ ├── range-selector.js │ │ │ │ ├── resize.js │ │ │ │ ├── stock.js │ │ │ │ ├── styled-chart-labels.js │ │ │ │ ├── synchronize.js │ │ │ │ ├── temperature-sf-ny.js │ │ │ │ └── two-axes.js │ │ │ ├── generate-combined.sh │ │ │ ├── generate-documentation.py │ │ │ ├── generate-download.py │ │ │ ├── generate-jar.sh │ │ │ ├── generate-jsdoc.sh │ │ │ ├── gwt │ │ │ │ └── org │ │ │ │ │ └── danvk │ │ │ │ │ ├── Dygraphs$Resources.class │ │ │ │ │ ├── Dygraphs.class │ │ │ │ │ ├── Dygraphs.java │ │ │ │ │ └── dygraphs.gwt.xml │ │ │ ├── jsTestDriver.conf │ │ │ ├── jsdoc-toolkit │ │ │ │ ├── README.txt │ │ │ │ ├── app │ │ │ │ │ ├── frame.js │ │ │ │ │ ├── frame │ │ │ │ │ │ ├── Chain.js │ │ │ │ │ │ ├── Dumper.js │ │ │ │ │ │ ├── Hash.js │ │ │ │ │ │ ├── Link.js │ │ │ │ │ │ ├── Namespace.js │ │ │ │ │ │ ├── Opt.js │ │ │ │ │ │ ├── Reflection.js │ │ │ │ │ │ ├── String.js │ │ │ │ │ │ └── Testrun.js │ │ │ │ │ ├── handlers │ │ │ │ │ │ ├── FOODOC.js │ │ │ │ │ │ ├── XMLDOC.js │ │ │ │ │ │ └── XMLDOC │ │ │ │ │ │ │ ├── DomReader.js │ │ │ │ │ │ │ ├── XMLDoc.js │ │ │ │ │ │ │ └── XMLParse.js │ │ │ │ │ ├── lib │ │ │ │ │ │ └── JSDOC.js │ │ │ │ │ ├── main.js │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── commentSrcJson.js │ │ │ │ │ │ ├── frameworkPrototype.js │ │ │ │ │ │ ├── functionCall.js │ │ │ │ │ │ ├── publishSrcHilite.js │ │ │ │ │ │ ├── symbolLink.js │ │ │ │ │ │ ├── tagParamConfig.js │ │ │ │ │ │ └── tagSynonyms.js │ │ │ │ │ ├── run.js │ │ │ │ │ ├── t │ │ │ │ │ │ ├── TestDoc.js │ │ │ │ │ │ └── runner.js │ │ │ │ │ ├── test.js │ │ │ │ │ └── test │ │ │ │ │ │ ├── addon.js │ │ │ │ │ │ ├── anon_inner.js │ │ │ │ │ │ ├── augments.js │ │ │ │ │ │ ├── augments2.js │ │ │ │ │ │ ├── borrows.js │ │ │ │ │ │ ├── borrows2.js │ │ │ │ │ │ ├── config.js │ │ │ │ │ │ ├── constructs.js │ │ │ │ │ │ ├── encoding.js │ │ │ │ │ │ ├── encoding_other.js │ │ │ │ │ │ ├── event.js │ │ │ │ │ │ ├── exports.js │ │ │ │ │ │ ├── functions_anon.js │ │ │ │ │ │ ├── functions_nested.js │ │ │ │ │ │ ├── global.js │ │ │ │ │ │ ├── globals.js │ │ │ │ │ │ ├── ignore.js │ │ │ │ │ │ ├── inner.js │ │ │ │ │ │ ├── jsdoc_test.js │ │ │ │ │ │ ├── lend.js │ │ │ │ │ │ ├── memberof.js │ │ │ │ │ │ ├── memberof2.js │ │ │ │ │ │ ├── memberof3.js │ │ │ │ │ │ ├── memberof_constructor.js │ │ │ │ │ │ ├── module.js │ │ │ │ │ │ ├── multi_methods.js │ │ │ │ │ │ ├── name.js │ │ │ │ │ │ ├── namespace_nested.js │ │ │ │ │ │ ├── nocode.js │ │ │ │ │ │ ├── oblit_anon.js │ │ │ │ │ │ ├── overview.js │ │ │ │ │ │ ├── param_inline.js │ │ │ │ │ │ ├── params_optional.js │ │ │ │ │ │ ├── prototype.js │ │ │ │ │ │ ├── prototype_nested.js │ │ │ │ │ │ ├── prototype_oblit.js │ │ │ │ │ │ ├── prototype_oblit_constructor.js │ │ │ │ │ │ ├── public.js │ │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── code.js │ │ │ │ │ │ └── notcode.txt │ │ │ │ │ │ ├── shared.js │ │ │ │ │ │ ├── shared2.js │ │ │ │ │ │ ├── shortcuts.js │ │ │ │ │ │ ├── static_this.js │ │ │ │ │ │ ├── synonyms.js │ │ │ │ │ │ ├── tosource.js │ │ │ │ │ │ └── variable_redefine.js │ │ │ │ ├── changes.txt │ │ │ │ ├── conf │ │ │ │ │ └── sample.conf │ │ │ │ ├── java │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── build_1.4.xml │ │ │ │ │ ├── classes │ │ │ │ │ │ └── js.jar │ │ │ │ │ └── src │ │ │ │ │ │ ├── JsDebugRun.java │ │ │ │ │ │ └── JsRun.java │ │ │ │ ├── jsdebug.jar │ │ │ │ ├── jsrun.jar │ │ │ │ └── jsrun.sh │ │ │ ├── jshint │ │ │ │ ├── CHANGELOG │ │ │ │ ├── Makefile │ │ │ │ ├── README.markdown │ │ │ │ ├── build │ │ │ │ │ └── jshint-rhino.js │ │ │ │ ├── env │ │ │ │ │ ├── jsc.js │ │ │ │ │ ├── jsc.sh │ │ │ │ │ ├── rhino.js │ │ │ │ │ └── wsh.js │ │ │ │ └── jshint.js │ │ │ ├── lint.sh │ │ │ ├── phantom-driver.js │ │ │ ├── phantom-perf.js │ │ │ ├── plugins │ │ │ │ ├── README │ │ │ │ ├── annotations.js │ │ │ │ ├── axes.js │ │ │ │ ├── chart-labels.js │ │ │ │ ├── grid.js │ │ │ │ ├── legend.js │ │ │ │ └── range-selector.js │ │ │ ├── push-to-web.sh │ │ │ ├── release.sh │ │ │ ├── releases.json │ │ │ ├── rgbcolor │ │ │ │ └── rgbcolor.js │ │ │ ├── screenshot.png │ │ │ ├── stacktrace.js │ │ │ ├── strftime │ │ │ │ ├── Doxyfile │ │ │ │ ├── strftime-min.js │ │ │ │ └── strftime.js │ │ │ ├── test.sh │ │ │ ├── tests │ │ │ │ ├── annotation-gviz.html │ │ │ │ ├── annotation-native.html │ │ │ │ ├── annotation.html │ │ │ │ ├── avoidMinZero.html │ │ │ │ ├── border.html │ │ │ │ ├── callback.html │ │ │ │ ├── century-scale.html │ │ │ │ ├── charting-combinations.html │ │ │ │ ├── color-cycle.html │ │ │ │ ├── color-visibility.html │ │ │ │ ├── connect-separated.html │ │ │ │ ├── crosshair.html │ │ │ │ ├── css-positioning.html │ │ │ │ ├── custom-bars.html │ │ │ │ ├── custom-circles.html │ │ │ │ ├── customLabel.html │ │ │ │ ├── customLabelCss3.html │ │ │ │ ├── dashed-canvas.html │ │ │ │ ├── data.js │ │ │ │ ├── dateWindow.html │ │ │ │ ├── daylight-savings.html │ │ │ │ ├── demo.html │ │ │ │ ├── dollar.png │ │ │ │ ├── draw-points.html │ │ │ │ ├── drawing.html │ │ │ │ ├── drawing │ │ │ │ │ ├── cursor-eraser.png │ │ │ │ │ ├── cursor-pencil.png │ │ │ │ │ └── tool-palette.png │ │ │ │ ├── dygraph-many-points-benchmark.html │ │ │ │ ├── dygraph.html │ │ │ │ ├── dynamic-update.html │ │ │ │ ├── exported-symbols.html │ │ │ │ ├── fillGraph.html │ │ │ │ ├── fractions.html │ │ │ │ ├── grid_dot.html │ │ │ │ ├── gviz-infinity.html │ │ │ │ ├── gviz-selection.html │ │ │ │ ├── gviz.html │ │ │ │ ├── highlighted-region.html │ │ │ │ ├── hourly.html │ │ │ │ ├── iframe.html │ │ │ │ ├── independent-series.html │ │ │ │ ├── interaction.html │ │ │ │ ├── interaction.js │ │ │ │ ├── is-zoomed-ignore-programmatic-zoom.html │ │ │ │ ├── is-zoomed.html │ │ │ │ ├── isolated-points.html │ │ │ │ ├── label-div.html │ │ │ │ ├── labelsKMB.html │ │ │ │ ├── layout-options.html │ │ │ │ ├── linear-regression-addseries.html │ │ │ │ ├── linear-regression-fractions.html │ │ │ │ ├── linear-regression.html │ │ │ │ ├── link-interaction.html │ │ │ │ ├── logscale.html │ │ │ │ ├── missing-data.html │ │ │ │ ├── multi-scale.html │ │ │ │ ├── native-format.html │ │ │ │ ├── negative.html │ │ │ │ ├── no-range.html │ │ │ │ ├── no-visibility.html │ │ │ │ ├── number-format.html │ │ │ │ ├── numeric-axis.html │ │ │ │ ├── numeric-gviz.html │ │ │ │ ├── out-of-order.html │ │ │ │ ├── per-series.html │ │ │ │ ├── perf.html │ │ │ │ ├── plotter.html │ │ │ │ ├── plotters.html │ │ │ │ ├── plugins.html │ │ │ │ ├── range-selector.html │ │ │ │ ├── resize.html │ │ │ │ ├── reverse-y-axis.html │ │ │ │ ├── series-highlight.html │ │ │ │ ├── small-range-zero.html │ │ │ │ ├── spacing.html │ │ │ │ ├── stacked.html │ │ │ │ ├── steps.html │ │ │ │ ├── stock.html │ │ │ │ ├── styled-chart-labels.html │ │ │ │ ├── synchronize.html │ │ │ │ ├── temperature-sf-ny.html │ │ │ │ ├── two-axes-vr.html │ │ │ │ ├── two-axes.html │ │ │ │ ├── unboxed-spark.html │ │ │ │ ├── underlay-callback.html │ │ │ │ ├── value-axis-formatters.html │ │ │ │ ├── visibility.html │ │ │ │ ├── x-axis-formatter.html │ │ │ │ ├── zero-series.html │ │ │ │ └── zoom.html │ │ │ ├── thumbnail.png │ │ │ └── yuicompressor-2.4.2.jar │ │ ├── font-awesome │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── README.md │ │ │ ├── _config.yml │ │ │ ├── component.json │ │ │ ├── composer.json │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── extras.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── spinning.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ ├── package.json │ │ │ ├── scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _extras.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _spinning.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ │ └── src │ │ │ │ ├── 3.2.1 │ │ │ │ ├── CNAME │ │ │ │ ├── Makefile │ │ │ │ ├── assets │ │ │ │ │ ├── css │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ ├── pygments.css │ │ │ │ │ │ └── site.css │ │ │ │ │ ├── font-awesome.zip │ │ │ │ │ ├── font-awesome │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ ├── font │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ │ ├── less │ │ │ │ │ │ │ ├── bootstrap.less │ │ │ │ │ │ │ ├── core.less │ │ │ │ │ │ │ ├── extras.less │ │ │ │ │ │ │ ├── font-awesome-ie7.less │ │ │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ │ │ ├── icons.less │ │ │ │ │ │ │ ├── mixins.less │ │ │ │ │ │ │ ├── path.less │ │ │ │ │ │ │ └── variables.less │ │ │ │ │ │ └── scss │ │ │ │ │ │ │ ├── _bootstrap.scss │ │ │ │ │ │ │ ├── _core.scss │ │ │ │ │ │ │ ├── _extras.scss │ │ │ │ │ │ │ ├── _icons.scss │ │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ │ ├── _path.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ ├── font-awesome-ie7.scss │ │ │ │ │ │ │ └── font-awesome.scss │ │ │ │ │ ├── ico │ │ │ │ │ │ └── favicon.ico │ │ │ │ │ ├── img │ │ │ │ │ │ ├── contribution-sample.png │ │ │ │ │ │ ├── fort_awesome.jpg │ │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ │ │ └── icon-flag.pdf │ │ │ │ │ ├── js │ │ │ │ │ │ ├── ZeroClipboard-1.1.7.min.js │ │ │ │ │ │ ├── ZeroClipboard-1.1.7.swf │ │ │ │ │ │ ├── backbone.min.js │ │ │ │ │ │ ├── bootstrap-2.3.1.min.js │ │ │ │ │ │ ├── bootstrap-222.min.js │ │ │ │ │ │ ├── jquery-1.7.1.min.js │ │ │ │ │ │ ├── prettify.min.js │ │ │ │ │ │ ├── site.js │ │ │ │ │ │ └── underscore.min.js │ │ │ │ │ └── less │ │ │ │ │ │ ├── bootstrap-2.3.2 │ │ │ │ │ │ ├── accordion.less │ │ │ │ │ │ ├── alerts.less │ │ │ │ │ │ ├── bootstrap.less │ │ │ │ │ │ ├── breadcrumbs.less │ │ │ │ │ │ ├── button-groups.less │ │ │ │ │ │ ├── buttons.less │ │ │ │ │ │ ├── carousel.less │ │ │ │ │ │ ├── close.less │ │ │ │ │ │ ├── code.less │ │ │ │ │ │ ├── component-animations.less │ │ │ │ │ │ ├── dropdowns.less │ │ │ │ │ │ ├── forms.less │ │ │ │ │ │ ├── grid.less │ │ │ │ │ │ ├── hero-unit.less │ │ │ │ │ │ ├── labels-badges.less │ │ │ │ │ │ ├── layouts.less │ │ │ │ │ │ ├── media.less │ │ │ │ │ │ ├── mixins.less │ │ │ │ │ │ ├── modals.less │ │ │ │ │ │ ├── navbar.less │ │ │ │ │ │ ├── navs.less │ │ │ │ │ │ ├── pager.less │ │ │ │ │ │ ├── pagination.less │ │ │ │ │ │ ├── popovers.less │ │ │ │ │ │ ├── progress-bars.less │ │ │ │ │ │ ├── reset.less │ │ │ │ │ │ ├── responsive-1200px-min.less │ │ │ │ │ │ ├── responsive-767px-max.less │ │ │ │ │ │ ├── responsive-768px-979px.less │ │ │ │ │ │ ├── responsive-navbar.less │ │ │ │ │ │ ├── responsive-utilities.less │ │ │ │ │ │ ├── responsive.less │ │ │ │ │ │ ├── scaffolding.less │ │ │ │ │ │ ├── sprites.less │ │ │ │ │ │ ├── tables.less │ │ │ │ │ │ ├── thumbnails.less │ │ │ │ │ │ ├── tooltip.less │ │ │ │ │ │ ├── type.less │ │ │ │ │ │ ├── utilities.less │ │ │ │ │ │ ├── variables.less │ │ │ │ │ │ └── wells.less │ │ │ │ │ │ ├── lazy.less │ │ │ │ │ │ ├── mixins.less │ │ │ │ │ │ ├── responsive-1200px-min.less │ │ │ │ │ │ ├── responsive-767px-max.less │ │ │ │ │ │ ├── responsive-768px-979px.less │ │ │ │ │ │ ├── responsive-navbar.less │ │ │ │ │ │ ├── responsive.less │ │ │ │ │ │ ├── site.less │ │ │ │ │ │ ├── sticky-footer.less │ │ │ │ │ │ └── variables.less │ │ │ │ ├── cheatsheet │ │ │ │ │ └── index.html │ │ │ │ ├── community │ │ │ │ │ └── index.html │ │ │ │ ├── design.html │ │ │ │ ├── examples │ │ │ │ │ └── index.html │ │ │ │ ├── get-started │ │ │ │ │ └── index.html │ │ │ │ ├── icon │ │ │ │ │ ├── adjust │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── adn │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── align-center │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── align-justify │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── align-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── align-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ambulance │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── anchor │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── android │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── angle-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── angle-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── angle-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── angle-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── apple │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── archive │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── arrow-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── arrow-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── arrow-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── arrow-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── asterisk │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── backward │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ban-circle │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bar-chart │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── barcode │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── beaker │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── beer │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bell-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bell │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bitbucket-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bitbucket │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bold │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bolt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── book │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bookmark-empty │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bookmark │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── briefcase │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── btc │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bug │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── building │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bullhorn │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bullseye │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── calendar-empty │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── calendar │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── camera-retro │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── camera │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── caret-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── caret-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── caret-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── caret-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── certificate │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── check-empty │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── check-minus │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── check-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── check │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── chevron-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── chevron-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── chevron-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── chevron-sign-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── chevron-sign-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── chevron-sign-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── chevron-sign-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── chevron-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── circle-arrow-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── circle-arrow-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── circle-arrow-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── circle-arrow-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── circle-blank │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── circle │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cloud-download │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cloud-upload │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cloud │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cny │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── code-fork │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── code │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── coffee │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cog │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cogs │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── collapse-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── collapse-top │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── collapse │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── columns │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── comment-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── comment │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── comments-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── comments │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── compass │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── copy │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── credit-card │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── crop │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── css3 │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cut │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dashboard │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── desktop │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── double-angle-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── double-angle-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── double-angle-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── double-angle-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── download-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── download │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dribbble │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dropbox │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── edit-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── edit │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── eject │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ellipsis-horizontal │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ellipsis-vertical │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── envelope-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── envelope │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── eraser │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── eur │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── exchange │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── exclamation-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── exclamation │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── expand-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── expand │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── external-link-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── external-link │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── eye-close │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── eye-open │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── facebook-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── facebook │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── facetime-video │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fast-backward │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fast-forward │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── female │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fighter-jet │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── file-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── file-text-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── file-text │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── file │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── film │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── filter │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fire-extinguisher │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fire │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── flag-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── flag-checkered │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── flag │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── flickr │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── folder-close-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── folder-close │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── folder-open-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── folder-open │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── font │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── food │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── forward │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── foursquare │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── frown │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fullscreen │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gamepad │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gbp │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gift │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── github-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── github-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── github │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gittip │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── glass │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── globe │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── google-plus-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── google-plus │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── group │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── h-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hand-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hand-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hand-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hand-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hdd │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── headphones │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── heart-empty │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── heart │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── home │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hospital │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── html5 │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── inbox │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── indent-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── indent-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── info-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── info │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── inr │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── instagram │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── italic │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── jpy │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── key │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── keyboard │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── krw │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── laptop │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── leaf │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── legal │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── lemon │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── level-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── level-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── lightbulb │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── link │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── linkedin-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── linkedin │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── linux │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── list-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── list-ol │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── list-ul │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── list │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── location-arrow │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── lock │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── long-arrow-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── long-arrow-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── long-arrow-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── long-arrow-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── magic │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── magnet │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── mail-reply-all │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── male │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── map-marker │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── maxcdn │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── medkit │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── meh │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── microphone-off │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── microphone │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── minus-sign-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── minus-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── minus │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── mobile-phone │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── money │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── moon │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── move │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── music │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── off │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ok-circle │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ok-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ok │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── paper-clip │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── paste │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── pause │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── pencil │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── phone-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── phone │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── picture │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── pinterest-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── pinterest │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── plane │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── play-circle │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── play-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── play │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── plus-sign-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── plus-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── plus │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── print │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── pushpin │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── puzzle-piece │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── qrcode │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── question-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── question │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── quote-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── quote-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── random │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── refresh │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── remove-circle │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── remove-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── remove │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── renren │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── reorder │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── repeat │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── reply-all │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── reply │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── resize-full │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── resize-horizontal │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── resize-small │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── resize-vertical │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── retweet │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── road │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── rocket │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── rss-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── rss │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── save │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── screenshot │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── search │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── share-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── share-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── share │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── shield │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── shopping-cart │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sign-blank │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── signal │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── signin │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── signout │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sitemap │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── skype │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── smile │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sort-by-alphabet-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sort-by-alphabet │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sort-by-attributes-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sort-by-attributes │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sort-by-order-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sort-by-order │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sort-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sort-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sort │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── spinner │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── stackexchange │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── star-empty │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── star-half-empty │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── star-half │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── star │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── step-backward │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── step-forward │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── stethoscope │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── stop │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── strikethrough │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── subscript │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── suitcase │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sun │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── superscript │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── table │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── tablet │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── tag │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── tags │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── tasks │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── terminal │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── text-height │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── text-width │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── th-large │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── th-list │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── th │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── thumbs-down-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── thumbs-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── thumbs-up-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── thumbs-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ticket │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── time │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── tint │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── trash │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── trello │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── trophy │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── truck │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── tumblr-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── tumblr │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── twitter-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── twitter │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── umbrella │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── underline │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── undo │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── unlink │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── unlock-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── unlock │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── upload-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── upload │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── usd │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── user-md │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── user │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── vk │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── volume-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── volume-off │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── volume-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── warning-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── weibo │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── windows │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── wrench │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── xing-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── xing │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── youtube-play │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── youtube-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── youtube │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── zoom-in │ │ │ │ │ │ └── index.html │ │ │ │ │ └── zoom-out │ │ │ │ │ │ └── index.html │ │ │ │ ├── icons.yml │ │ │ │ ├── icons │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── license │ │ │ │ │ └── index.html │ │ │ │ ├── test │ │ │ │ │ └── index.html │ │ │ │ └── whats-new │ │ │ │ │ └── index.html │ │ │ │ ├── CNAME │ │ │ │ ├── Makefile │ │ │ │ ├── _includes │ │ │ │ ├── ads │ │ │ │ │ ├── carbon-dark-vertical.html │ │ │ │ │ ├── carbon-light-horizontal.html │ │ │ │ │ └── carbon-light-vertical.html │ │ │ │ ├── brand-license.html │ │ │ │ ├── community │ │ │ │ │ ├── getting-support.html │ │ │ │ │ ├── project-milestones.html │ │ │ │ │ ├── reporting-bugs.html │ │ │ │ │ ├── requesting-new-icons.html │ │ │ │ │ └── submitting-pull-requests.html │ │ │ │ ├── examples │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── bordered-pulled.html │ │ │ │ │ ├── custom.html │ │ │ │ │ ├── fixed-width.html │ │ │ │ │ ├── inline.html │ │ │ │ │ ├── larger.html │ │ │ │ │ ├── list.html │ │ │ │ │ ├── rotated-flipped.html │ │ │ │ │ ├── spinning.html │ │ │ │ │ └── stacked.html │ │ │ │ ├── footer.html │ │ │ │ ├── icons │ │ │ │ │ ├── brand.html │ │ │ │ │ ├── currency.html │ │ │ │ │ ├── directional.html │ │ │ │ │ ├── form-control.html │ │ │ │ │ ├── medical.html │ │ │ │ │ ├── new.html │ │ │ │ │ ├── text-editor.html │ │ │ │ │ ├── video-player.html │ │ │ │ │ └── web-application.html │ │ │ │ ├── jumbotron-carousel.html │ │ │ │ ├── jumbotron.html │ │ │ │ ├── license-code.less │ │ │ │ ├── navbar.html │ │ │ │ ├── new-features.html │ │ │ │ ├── new-naming.html │ │ │ │ ├── new-upgrading.html │ │ │ │ ├── stripe-ad.html │ │ │ │ ├── stripe-social.html │ │ │ │ ├── tell-me-thanks.html │ │ │ │ ├── tests │ │ │ │ │ ├── rotated-flipped-inside-anchor.html │ │ │ │ │ ├── rotated-flipped-inside-btn.html │ │ │ │ │ ├── rotated-flipped.html │ │ │ │ │ ├── stacked-inside-anchor.html │ │ │ │ │ └── stacked.html │ │ │ │ ├── thanks-to.html │ │ │ │ └── why.html │ │ │ │ ├── _layouts │ │ │ │ ├── base.html │ │ │ │ └── icon.html │ │ │ │ ├── _plugins │ │ │ │ ├── icon_page_generator.rb │ │ │ │ └── site.rb │ │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ ├── prettify.css │ │ │ │ │ └── pygments.css │ │ │ │ ├── font-awesome │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ ├── less │ │ │ │ │ │ ├── bordered-pulled.less │ │ │ │ │ │ ├── core.less │ │ │ │ │ │ ├── fixed-width.less │ │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ │ ├── icons.less │ │ │ │ │ │ ├── larger.less │ │ │ │ │ │ ├── list.less │ │ │ │ │ │ ├── mixins.less │ │ │ │ │ │ ├── path.less │ │ │ │ │ │ ├── rotated-flipped.less │ │ │ │ │ │ ├── spinning.less │ │ │ │ │ │ ├── stacked.less │ │ │ │ │ │ └── variables.less │ │ │ │ │ └── scss │ │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ │ ├── _core.scss │ │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ │ ├── _icons.scss │ │ │ │ │ │ ├── _larger.scss │ │ │ │ │ │ ├── _list.scss │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ ├── _path.scss │ │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ │ ├── _spinning.scss │ │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font-awesome.scss │ │ │ │ ├── ico │ │ │ │ │ └── favicon.ico │ │ │ │ ├── js │ │ │ │ │ ├── ZeroClipboard-1.1.7.min.js │ │ │ │ │ ├── ZeroClipboard-1.1.7.swf │ │ │ │ │ ├── backbone.min.js │ │ │ │ │ ├── bootstrap-2.3.1.min.js │ │ │ │ │ ├── bootstrap-222.min.js │ │ │ │ │ ├── bootstrap-3.0.0.min.js │ │ │ │ │ ├── html5shiv.js │ │ │ │ │ ├── jquery-1.10.2.js │ │ │ │ │ ├── jquery-1.10.2.min.js │ │ │ │ │ ├── jquery-1.10.2.min.map │ │ │ │ │ ├── jquery-1.7.1.min.js │ │ │ │ │ ├── prettify.min.js │ │ │ │ │ ├── respond.min.js │ │ │ │ │ ├── site.js │ │ │ │ │ └── underscore.min.js │ │ │ │ └── less │ │ │ │ │ ├── bootstrap-3.0.0 │ │ │ │ │ ├── alerts.less │ │ │ │ │ ├── badges.less │ │ │ │ │ ├── bootstrap.less │ │ │ │ │ ├── breadcrumbs.less │ │ │ │ │ ├── button-groups.less │ │ │ │ │ ├── buttons.less │ │ │ │ │ ├── carousel.less │ │ │ │ │ ├── close.less │ │ │ │ │ ├── code.less │ │ │ │ │ ├── component-animations.less │ │ │ │ │ ├── dropdowns.less │ │ │ │ │ ├── forms.less │ │ │ │ │ ├── glyphicons.less │ │ │ │ │ ├── grid.less │ │ │ │ │ ├── input-groups.less │ │ │ │ │ ├── jumbotron.less │ │ │ │ │ ├── labels.less │ │ │ │ │ ├── list-group.less │ │ │ │ │ ├── media.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── modals.less │ │ │ │ │ ├── navbar.less │ │ │ │ │ ├── navs.less │ │ │ │ │ ├── normalize.less │ │ │ │ │ ├── pager.less │ │ │ │ │ ├── pagination.less │ │ │ │ │ ├── panels.less │ │ │ │ │ ├── popovers.less │ │ │ │ │ ├── print.less │ │ │ │ │ ├── progress-bars.less │ │ │ │ │ ├── responsive-utilities.less │ │ │ │ │ ├── scaffolding.less │ │ │ │ │ ├── tables.less │ │ │ │ │ ├── theme.less │ │ │ │ │ ├── thumbnails.less │ │ │ │ │ ├── tooltip.less │ │ │ │ │ ├── type.less │ │ │ │ │ ├── utilities.less │ │ │ │ │ ├── variables.less │ │ │ │ │ └── wells.less │ │ │ │ │ ├── site.less │ │ │ │ │ └── site │ │ │ │ │ ├── bootstrap │ │ │ │ │ ├── buttons.less │ │ │ │ │ ├── jumbotron.less │ │ │ │ │ ├── navbar.less │ │ │ │ │ ├── type.less │ │ │ │ │ ├── variables.less │ │ │ │ │ └── wells.less │ │ │ │ │ ├── carbonad.less │ │ │ │ │ ├── example-rating.less │ │ │ │ │ ├── feature-list.less │ │ │ │ │ ├── fontawesome-icon-list.less │ │ │ │ │ ├── footer.less │ │ │ │ │ ├── jumbotron-carousel.less │ │ │ │ │ ├── layout.less │ │ │ │ │ ├── lazy.less │ │ │ │ │ ├── responsive │ │ │ │ │ ├── screen-lg.less │ │ │ │ │ ├── screen-md.less │ │ │ │ │ ├── screen-sm.less │ │ │ │ │ └── screen-xs.less │ │ │ │ │ ├── social-buttons.less │ │ │ │ │ ├── stripe-ad.less │ │ │ │ │ └── textured-bg.less │ │ │ │ ├── cheatsheet.html │ │ │ │ ├── community.html │ │ │ │ ├── design.html │ │ │ │ ├── examples.html │ │ │ │ ├── get-started.html │ │ │ │ ├── glyphicons-test.html │ │ │ │ ├── icons.html │ │ │ │ ├── icons.yml │ │ │ │ ├── index.html │ │ │ │ ├── license.html │ │ │ │ ├── test-2.3.2.html │ │ │ │ ├── test.html │ │ │ │ └── whats-new.html │ │ ├── gauge.js │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ ├── arrow.gif │ │ │ │ ├── bg.png │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── browsers.png │ │ │ │ ├── cross.gif │ │ │ │ ├── crosshair.gif │ │ │ │ ├── excanvas.compiled.js │ │ │ │ ├── fd-slider │ │ │ │ │ ├── fd-slider-tooltip.css │ │ │ │ │ ├── fd-slider.css │ │ │ │ │ └── fd-slider.js │ │ │ │ ├── github.gif │ │ │ │ ├── hs.png │ │ │ │ ├── hv.png │ │ │ │ ├── jscolor.js │ │ │ │ ├── main.css │ │ │ │ ├── prettify.css │ │ │ │ ├── prettify.js │ │ │ │ ├── preview.jpg │ │ │ │ ├── ribbon.png │ │ │ │ └── strike.png │ │ │ ├── bower.json │ │ │ ├── favicon.ico │ │ │ └── index.html │ │ ├── humanize │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── humanize.js │ │ │ ├── package.json │ │ │ └── specs │ │ │ │ ├── dateData.js │ │ │ │ └── humanize.spec.js │ │ ├── idbwrapper │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .jshintrc │ │ │ ├── .npmignore │ │ │ ├── CHANGELOG │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── example │ │ │ │ ├── basic │ │ │ │ │ ├── app.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── style.css │ │ │ │ ├── index.html │ │ │ │ ├── index │ │ │ │ │ ├── app.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── style.css │ │ │ │ ├── lib │ │ │ │ │ └── requirejs │ │ │ │ │ │ └── require.js │ │ │ │ ├── objectstore │ │ │ │ │ ├── app.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── style.css │ │ │ │ ├── quicktest │ │ │ │ │ ├── index.html │ │ │ │ │ └── style.css │ │ │ │ ├── style.css │ │ │ │ └── worker │ │ │ │ │ ├── app.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── style.css │ │ │ │ │ └── worker.js │ │ │ ├── idbstore.js │ │ │ ├── idbstore.min.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── idbwrapper_spec.js │ │ │ │ └── index.html │ │ ├── javascript-state-machine │ │ │ ├── .bower.json │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── RELEASE_NOTES.md │ │ │ ├── Rakefile │ │ │ ├── demo │ │ │ │ ├── demo.css │ │ │ │ ├── demo.js │ │ │ │ └── images │ │ │ │ │ ├── alerts.green.png │ │ │ │ │ ├── alerts.red.png │ │ │ │ │ └── alerts.yellow.png │ │ │ ├── index.html │ │ │ ├── minifier │ │ │ │ ├── LICENSE.TXT │ │ │ │ ├── minifier.rb │ │ │ │ └── yuicompressor-2.4.6.jar │ │ │ ├── state-machine.js │ │ │ ├── state-machine.min.js │ │ │ └── test │ │ │ │ ├── index.html │ │ │ │ ├── qunit │ │ │ │ ├── qunit.css │ │ │ │ └── qunit.js │ │ │ │ ├── requirejs │ │ │ │ ├── index.html │ │ │ │ └── require.js │ │ │ │ ├── test_advanced.js │ │ │ │ ├── test_async.js │ │ │ │ ├── test_basics.js │ │ │ │ ├── test_classes.js │ │ │ │ └── test_initialize.js │ │ ├── jquery │ │ │ ├── .bower.json │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── .jshintrc │ │ │ ├── AUTHORS.txt │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── README.md │ │ │ ├── build │ │ │ │ ├── release-notes.js │ │ │ │ └── release.js │ │ │ ├── component.json │ │ │ ├── composer.json │ │ │ ├── jquery-migrate.js │ │ │ ├── jquery-migrate.min.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── package.json │ │ │ ├── speed │ │ │ │ ├── benchmark.js │ │ │ │ ├── benchmarker.css │ │ │ │ ├── benchmarker.js │ │ │ │ ├── closest.html │ │ │ │ ├── css.html │ │ │ │ ├── event.html │ │ │ │ ├── filter.html │ │ │ │ ├── find.html │ │ │ │ ├── index.html │ │ │ │ ├── jquery-basis.js │ │ │ │ └── slice.vs.concat.html │ │ │ ├── src │ │ │ │ ├── .jshintrc │ │ │ │ ├── ajax.js │ │ │ │ ├── ajax │ │ │ │ │ ├── jsonp.js │ │ │ │ │ ├── script.js │ │ │ │ │ └── xhr.js │ │ │ │ ├── attributes.js │ │ │ │ ├── callbacks.js │ │ │ │ ├── core.js │ │ │ │ ├── css.js │ │ │ │ ├── data.js │ │ │ │ ├── deferred.js │ │ │ │ ├── deprecated.js │ │ │ │ ├── dimensions.js │ │ │ │ ├── effects.js │ │ │ │ ├── event-alias.js │ │ │ │ ├── event.js │ │ │ │ ├── exports.js │ │ │ │ ├── intro.js │ │ │ │ ├── manipulation.js │ │ │ │ ├── offset.js │ │ │ │ ├── outro.js │ │ │ │ ├── queue.js │ │ │ │ ├── serialize.js │ │ │ │ ├── sizzle-jquery.js │ │ │ │ ├── support.js │ │ │ │ └── traversing.js │ │ │ └── test │ │ │ │ ├── .jshintignore │ │ │ │ ├── .jshintrc │ │ │ │ ├── csp.php │ │ │ │ ├── data │ │ │ │ ├── 1x1.jpg │ │ │ │ ├── ajax │ │ │ │ │ └── unreleasedXHR.html │ │ │ │ ├── atom+xml.php │ │ │ │ ├── badcall.js │ │ │ │ ├── badjson.js │ │ │ │ ├── cleanScript.html │ │ │ │ ├── core │ │ │ │ │ └── cc_on.html │ │ │ │ ├── dashboard.xml │ │ │ │ ├── dimensions │ │ │ │ │ ├── documentLarge.html │ │ │ │ │ └── documentSmall.html │ │ │ │ ├── echoData.php │ │ │ │ ├── echoQuery.php │ │ │ │ ├── errorWithText.php │ │ │ │ ├── etag.php │ │ │ │ ├── evalScript.php │ │ │ │ ├── event │ │ │ │ │ ├── longLoadScript.php │ │ │ │ │ ├── promiseReady.html │ │ │ │ │ └── syncReady.html │ │ │ │ ├── headers.php │ │ │ │ ├── if_modified_since.php │ │ │ │ ├── iframe.html │ │ │ │ ├── jquery-1.8.2.ajax_xhr.min.js │ │ │ │ ├── json.php │ │ │ │ ├── json_obj.js │ │ │ │ ├── jsonp.php │ │ │ │ ├── manipulation │ │ │ │ │ └── iframe-denied.html │ │ │ │ ├── name.html │ │ │ │ ├── name.php │ │ │ │ ├── nocontent.php │ │ │ │ ├── offset │ │ │ │ │ ├── absolute.html │ │ │ │ │ ├── body.html │ │ │ │ │ ├── fixed.html │ │ │ │ │ ├── relative.html │ │ │ │ │ ├── scroll.html │ │ │ │ │ ├── static.html │ │ │ │ │ └── table.html │ │ │ │ ├── params_html.php │ │ │ │ ├── readywaitasset.js │ │ │ │ ├── readywaitloader.js │ │ │ │ ├── script.php │ │ │ │ ├── selector │ │ │ │ │ ├── html5_selector.html │ │ │ │ │ └── sizzle_cache.html │ │ │ │ ├── statusText.php │ │ │ │ ├── support │ │ │ │ │ ├── bodyBackground.html │ │ │ │ │ ├── shrinkWrapBlocks.html │ │ │ │ │ └── testElementCrash.html │ │ │ │ ├── test.html │ │ │ │ ├── test.js │ │ │ │ ├── test.php │ │ │ │ ├── test2.html │ │ │ │ ├── test3.html │ │ │ │ ├── testinit.js │ │ │ │ ├── testrunner.js │ │ │ │ ├── testsuite.css │ │ │ │ ├── text.php │ │ │ │ ├── ua.txt │ │ │ │ ├── with_fries.xml │ │ │ │ └── with_fries_over_jsonp.php │ │ │ │ ├── delegatetest.html │ │ │ │ ├── hovertest.html │ │ │ │ ├── index.html │ │ │ │ ├── localfile.html │ │ │ │ ├── networkerror.html │ │ │ │ ├── polluted.php │ │ │ │ ├── readywait.html │ │ │ │ ├── unit │ │ │ │ ├── ajax.js │ │ │ │ ├── attributes.js │ │ │ │ ├── callbacks.js │ │ │ │ ├── core.js │ │ │ │ ├── css.js │ │ │ │ ├── data.js │ │ │ │ ├── deferred.js │ │ │ │ ├── deprecated.js │ │ │ │ ├── dimensions.js │ │ │ │ ├── effects.js │ │ │ │ ├── event.js │ │ │ │ ├── exports.js │ │ │ │ ├── manipulation.js │ │ │ │ ├── offset.js │ │ │ │ ├── queue.js │ │ │ │ ├── selector.js │ │ │ │ ├── serialize.js │ │ │ │ ├── support.js │ │ │ │ └── traversing.js │ │ │ │ └── xhtml.php │ │ ├── jsuri │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .jshintrc │ │ │ ├── Jakefile │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Uri.js │ │ │ ├── Uri.min.js │ │ │ ├── package.json │ │ │ └── spec │ │ │ │ ├── Uri.spec.js │ │ │ │ └── runner.html │ │ ├── kineticjs │ │ │ ├── .bower.json │ │ │ ├── Gruntfile.js │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── doc-includes │ │ │ │ ├── ContainerParams.txt │ │ │ │ ├── NodeParams.txt │ │ │ │ └── ShapeParams.txt │ │ │ ├── package.json │ │ │ ├── presentation-schedule.md │ │ │ ├── server.js │ │ │ ├── src │ │ │ │ ├── Animation.js │ │ │ │ ├── Canvas.js │ │ │ │ ├── Container.js │ │ │ │ ├── Context.js │ │ │ │ ├── DragAndDrop.js │ │ │ │ ├── Factory.js │ │ │ │ ├── Global.js │ │ │ │ ├── Group.js │ │ │ │ ├── Layer.js │ │ │ │ ├── Node.js │ │ │ │ ├── Shape.js │ │ │ │ ├── Stage.js │ │ │ │ ├── Tween.js │ │ │ │ ├── Util.js │ │ │ │ ├── filters │ │ │ │ │ ├── Blur.js │ │ │ │ │ ├── Brighten.js │ │ │ │ │ ├── ColorPack.js │ │ │ │ │ ├── ConvolvePack.js │ │ │ │ │ ├── Grayscale.js │ │ │ │ │ ├── Invert.js │ │ │ │ │ └── Mask.js │ │ │ │ ├── plugins │ │ │ │ │ ├── Label.js │ │ │ │ │ ├── Path.js │ │ │ │ │ ├── RegularPolygon.js │ │ │ │ │ ├── Star.js │ │ │ │ │ └── TextPath.js │ │ │ │ └── shapes │ │ │ │ │ ├── Blob.js │ │ │ │ │ ├── Circle.js │ │ │ │ │ ├── Ellipse.js │ │ │ │ │ ├── Image.js │ │ │ │ │ ├── Line.js │ │ │ │ │ ├── Polygon.js │ │ │ │ │ ├── Rect.js │ │ │ │ │ ├── Spline.js │ │ │ │ │ ├── Sprite.js │ │ │ │ │ ├── Text.js │ │ │ │ │ └── Wedge.js │ │ │ └── test-old │ │ │ │ ├── assets │ │ │ │ ├── Ghostscript_Tiger.svg │ │ │ │ ├── bamoon.jpg │ │ │ │ ├── cropped-darth.jpg │ │ │ │ ├── cropped-darth.png │ │ │ │ ├── darth-vader.jpg │ │ │ │ ├── dataUrls.js │ │ │ │ ├── lion.png │ │ │ │ ├── scorpion-sprite.png │ │ │ │ ├── tiger.js │ │ │ │ └── worldMap.js │ │ │ │ ├── base.css │ │ │ │ ├── html │ │ │ │ ├── filterTests.html │ │ │ │ ├── index.html │ │ │ │ ├── manualTests.html │ │ │ │ ├── performanceTests.html │ │ │ │ ├── special │ │ │ │ │ ├── coreCustomBuild.html │ │ │ │ │ ├── dragAndDropCustomBuild.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── requirejs.html │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── kinetic-vcurrent.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ └── require.js │ │ │ │ │ ├── stageBelowFold.html │ │ │ │ │ ├── tallStage.html │ │ │ │ │ └── transitionCustomBuild.html │ │ │ │ └── visualTests.html │ │ │ │ └── js │ │ │ │ ├── Test.js │ │ │ │ ├── filterTests.js │ │ │ │ ├── manualTests.js │ │ │ │ ├── performanceTests.js │ │ │ │ └── visualTests.js │ │ ├── loglevel │ │ │ ├── .bower.json │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE-MIT │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── loglevel.js │ │ │ │ └── loglevel.min.js │ │ │ ├── lib │ │ │ │ └── loglevel.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── console-fallback-test.js │ │ │ │ ├── cookie-test.js │ │ │ │ ├── global-integration.js │ │ │ │ ├── integration-smoke-test.js │ │ │ │ ├── level-setting-test.js │ │ │ │ ├── local-storage-test.js │ │ │ │ ├── manual-test.html │ │ │ │ ├── node-integration.js │ │ │ │ ├── test-helpers.js │ │ │ │ └── vendor │ │ │ │ └── json2.js │ │ ├── modernizr │ │ │ ├── .bower.json │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── feature-detects │ │ │ │ ├── a-download.js │ │ │ │ ├── audio-audiodata-api.js │ │ │ │ ├── audio-webaudio-api.js │ │ │ │ ├── battery-api.js │ │ │ │ ├── battery-level.js │ │ │ │ ├── blob-constructor.js │ │ │ │ ├── canvas-todataurl-type.js │ │ │ │ ├── contenteditable.js │ │ │ │ ├── contentsecuritypolicy.js │ │ │ │ ├── contextmenu.js │ │ │ │ ├── cookies.js │ │ │ │ ├── cors.js │ │ │ │ ├── css-backgroundposition-shorthand.js │ │ │ │ ├── css-backgroundposition-xy.js │ │ │ │ ├── css-backgroundrepeat.js │ │ │ │ ├── css-backgroundsizecover.js │ │ │ │ ├── css-boxsizing.js │ │ │ │ ├── css-calc.js │ │ │ │ ├── css-cubicbezierrange.js │ │ │ │ ├── css-displayrunin.js │ │ │ │ ├── css-displaytable.js │ │ │ │ ├── css-filters.js │ │ │ │ ├── css-hyphens.js │ │ │ │ ├── css-lastchild.js │ │ │ │ ├── css-mask.js │ │ │ │ ├── css-mediaqueries.js │ │ │ │ ├── css-objectfit.js │ │ │ │ ├── css-overflow-scrolling.js │ │ │ │ ├── css-pointerevents.js │ │ │ │ ├── css-positionsticky.js │ │ │ │ ├── css-regions.js │ │ │ │ ├── css-remunit.js │ │ │ │ ├── css-resize.js │ │ │ │ ├── css-scrollbars.js │ │ │ │ ├── css-subpixelfont.js │ │ │ │ ├── css-supports.js │ │ │ │ ├── css-userselect.js │ │ │ │ ├── css-vhunit.js │ │ │ │ ├── css-vmaxunit.js │ │ │ │ ├── css-vminunit.js │ │ │ │ ├── css-vwunit.js │ │ │ │ ├── custom-protocol-handler.js │ │ │ │ ├── dart.js │ │ │ │ ├── dataview-api.js │ │ │ │ ├── dom-classlist.js │ │ │ │ ├── dom-createElement-attrs.js │ │ │ │ ├── dom-dataset.js │ │ │ │ ├── dom-microdata.js │ │ │ │ ├── elem-datalist.js │ │ │ │ ├── elem-details.js │ │ │ │ ├── elem-output.js │ │ │ │ ├── elem-progress-meter.js │ │ │ │ ├── elem-ruby.js │ │ │ │ ├── elem-time.js │ │ │ │ ├── elem-track.js │ │ │ │ ├── emoji.js │ │ │ │ ├── es5-strictmode.js │ │ │ │ ├── event-deviceorientation-motion.js │ │ │ │ ├── exif-orientation.js │ │ │ │ ├── file-api.js │ │ │ │ ├── file-filesystem.js │ │ │ │ ├── forms-fileinput.js │ │ │ │ ├── forms-formattribute.js │ │ │ │ ├── forms-inputnumber-l10n.js │ │ │ │ ├── forms-placeholder.js │ │ │ │ ├── forms-speechinput.js │ │ │ │ ├── forms-validation.js │ │ │ │ ├── fullscreen-api.js │ │ │ │ ├── gamepad.js │ │ │ │ ├── getusermedia.js │ │ │ │ ├── ie8compat.js │ │ │ │ ├── iframe-sandbox.js │ │ │ │ ├── iframe-seamless.js │ │ │ │ ├── iframe-srcdoc.js │ │ │ │ ├── img-apng.js │ │ │ │ ├── img-webp.js │ │ │ │ ├── json.js │ │ │ │ ├── lists-reversed.js │ │ │ │ ├── mathml.js │ │ │ │ ├── network-connection.js │ │ │ │ ├── network-eventsource.js │ │ │ │ ├── network-xhr2.js │ │ │ │ ├── notification.js │ │ │ │ ├── performance.js │ │ │ │ ├── pointerlock-api.js │ │ │ │ ├── quota-management-api.js │ │ │ │ ├── requestanimationframe.js │ │ │ │ ├── script-async.js │ │ │ │ ├── script-defer.js │ │ │ │ ├── style-scoped.js │ │ │ │ ├── svg-filters.js │ │ │ │ ├── unicode.js │ │ │ │ ├── url-data-uri.js │ │ │ │ ├── userdata.js │ │ │ │ ├── vibration.js │ │ │ │ ├── web-intents.js │ │ │ │ ├── webgl-extensions.js │ │ │ │ ├── websockets-binary.js │ │ │ │ ├── window-framed.js │ │ │ │ ├── workers-blobworkers.js │ │ │ │ ├── workers-dataworkers.js │ │ │ │ └── workers-sharedworkers.js │ │ │ ├── grunt.js │ │ │ ├── media │ │ │ │ ├── Modernizr 2 Logo.ai │ │ │ │ ├── Modernizr 2 Logo.eps │ │ │ │ ├── Modernizr 2 Logo.pdf │ │ │ │ ├── Modernizr 2 Logo.png │ │ │ │ └── Modernizr 2 Logo.svg │ │ │ ├── modernizr.js │ │ │ ├── readme.md │ │ │ └── test │ │ │ │ ├── basic.html │ │ │ │ ├── caniuse.html │ │ │ │ ├── caniuse_files │ │ │ │ ├── Windsong-webfont.eot │ │ │ │ ├── Windsong-webfont.otf │ │ │ │ ├── Windsong-webfont.svg │ │ │ │ ├── Windsong-webfont.ttf │ │ │ │ ├── Windsong-webfont.woff │ │ │ │ ├── alpha.png │ │ │ │ ├── apng_test.png │ │ │ │ ├── before-after.png │ │ │ │ ├── form_validation.html │ │ │ │ ├── ga.js │ │ │ │ ├── green5x5.png │ │ │ │ ├── hashchange.html │ │ │ │ ├── jquery.min.js │ │ │ │ ├── mathml.html │ │ │ │ ├── mathml_ref.png │ │ │ │ ├── modernizr-1.7.min.js │ │ │ │ ├── png_alpha_result.png │ │ │ │ ├── pushstate.html │ │ │ │ ├── red30x30.png │ │ │ │ ├── ruby.png │ │ │ │ ├── stroked-text.png │ │ │ │ ├── style.css │ │ │ │ ├── svg-html-blur.png │ │ │ │ ├── svg-img.svg │ │ │ │ ├── svg-img.svg.1 │ │ │ │ ├── svg_blur.png │ │ │ │ ├── table.png │ │ │ │ ├── text-shadow1.png │ │ │ │ ├── text-shadow2.png │ │ │ │ ├── windsong_font.png │ │ │ │ └── xhtml.html │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── basic.html │ │ │ │ ├── dumpdata.js │ │ │ │ ├── lib │ │ │ │ │ ├── detect-global.js │ │ │ │ │ ├── jquery-1.7b2.js │ │ │ │ │ ├── jsonselect.js │ │ │ │ │ ├── polyfills.js │ │ │ │ │ └── uaparser.js │ │ │ │ ├── setup.js │ │ │ │ ├── unit-caniuse.js │ │ │ │ └── unit.js │ │ │ │ └── qunit │ │ │ │ ├── qunit.css │ │ │ │ ├── qunit.js │ │ │ │ └── run-qunit.js │ │ ├── momentjs │ │ │ ├── .bower.json │ │ │ ├── LICENSE │ │ │ ├── bower.json │ │ │ ├── lang │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── br.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cv.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy-am.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── ko.js │ │ │ │ ├── lb.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ml.js │ │ │ │ ├── mr.js │ │ │ │ ├── ms-my.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── rs.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── ta.js │ │ │ │ ├── th.js │ │ │ │ ├── tl-ph.js │ │ │ │ ├── tr.js │ │ │ │ ├── tzm-la.js │ │ │ │ ├── tzm.js │ │ │ │ ├── uk.js │ │ │ │ ├── uz.js │ │ │ │ ├── vn.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-tw.js │ │ │ ├── min │ │ │ │ ├── langs.js │ │ │ │ ├── langs.min.js │ │ │ │ ├── moment-with-langs.js │ │ │ │ ├── moment-with-langs.min.js │ │ │ │ └── moment.min.js │ │ │ ├── moment.js │ │ │ └── readme.md │ │ ├── noty │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── LICENSE.txt │ │ │ ├── README.markdown │ │ │ ├── demo │ │ │ │ ├── allLayouts.html │ │ │ │ ├── allTypes.html │ │ │ │ ├── api.html │ │ │ │ ├── buttons.css │ │ │ │ ├── consumingAlert.html │ │ │ │ ├── customContainer.html │ │ │ │ ├── index.html │ │ │ │ ├── jquery-1.7.2.min.js │ │ │ │ ├── usingMaxVisible.html │ │ │ │ ├── usingWithButtons.html │ │ │ │ ├── usingWithButtons2.html │ │ │ │ ├── usingWithModal.html │ │ │ │ └── usingWithOldOptions.html │ │ │ ├── js │ │ │ │ └── noty │ │ │ │ │ ├── jquery.noty.js │ │ │ │ │ ├── layouts │ │ │ │ │ ├── bottom.js │ │ │ │ │ ├── bottomCenter.js │ │ │ │ │ ├── bottomLeft.js │ │ │ │ │ ├── bottomRight.js │ │ │ │ │ ├── center.js │ │ │ │ │ ├── centerLeft.js │ │ │ │ │ ├── centerRight.js │ │ │ │ │ ├── inline.js │ │ │ │ │ ├── top.js │ │ │ │ │ ├── topCenter.js │ │ │ │ │ ├── topLeft.js │ │ │ │ │ └── topRight.js │ │ │ │ │ ├── promise.js │ │ │ │ │ └── themes │ │ │ │ │ └── default.js │ │ │ └── noty.jquery.json │ │ ├── q │ │ │ ├── .bower.json │ │ │ ├── .coverignore │ │ │ ├── .gitignore │ │ │ ├── .jshintrc │ │ │ ├── .mailmap │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGES.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── VERSIONS.md │ │ │ ├── benchmark │ │ │ │ ├── compare-with-callbacks.js │ │ │ │ └── scenarios.js │ │ │ ├── design │ │ │ │ ├── README.js │ │ │ │ ├── q0.js │ │ │ │ ├── q1.js │ │ │ │ ├── q2.js │ │ │ │ ├── q3.js │ │ │ │ ├── q4.js │ │ │ │ ├── q5.js │ │ │ │ ├── q6.js │ │ │ │ └── q7.js │ │ │ ├── examples │ │ │ │ ├── all.js │ │ │ │ └── async-generators │ │ │ │ │ ├── 0.html │ │ │ │ │ ├── 1-return.js │ │ │ │ │ ├── 2-error-propagation.js │ │ │ │ │ ├── 3-spawn.js │ │ │ │ │ ├── 4-flow-control.js │ │ │ │ │ └── README.md │ │ │ ├── package.json │ │ │ ├── q.js │ │ │ ├── queue.js │ │ │ ├── ref_send.md │ │ │ └── spec │ │ │ │ ├── aplus-adapter.js │ │ │ │ ├── lib │ │ │ │ ├── jasmine-1.2.0 │ │ │ │ │ ├── MIT.LICENSE │ │ │ │ │ ├── jasmine-html.js │ │ │ │ │ ├── jasmine.css │ │ │ │ │ └── jasmine.js │ │ │ │ └── jasmine-promise.js │ │ │ │ ├── q-spec.html │ │ │ │ ├── q-spec.js │ │ │ │ └── queue-spec.js │ │ ├── raphael │ │ │ ├── .bower.json │ │ │ ├── dev │ │ │ │ ├── amdDev.js │ │ │ │ └── require.js │ │ │ ├── license.txt │ │ │ ├── raphael-min.js │ │ │ └── raphael.js │ │ ├── react │ │ │ ├── .bower.json │ │ │ ├── JSXTransformer.js │ │ │ ├── bower.json │ │ │ ├── react-with-addons.js │ │ │ ├── react-with-addons.min.js │ │ │ ├── react.js │ │ │ └── react.min.js │ │ ├── requirejs-text │ │ │ ├── .bower.json │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── text.js │ │ ├── requirejs │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── require.js │ │ │ ├── tasks.txt │ │ │ ├── testBaseUrl.js │ │ │ ├── tests │ │ │ │ ├── NAMESPACE.html │ │ │ │ ├── afterload.html │ │ │ │ ├── afterloadreadystate.js │ │ │ │ ├── all.js │ │ │ │ ├── anon │ │ │ │ │ ├── a.js │ │ │ │ │ ├── anon-tests.js │ │ │ │ │ ├── anonSimple.html │ │ │ │ │ ├── blue.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── green.js │ │ │ │ │ ├── magenta.js │ │ │ │ │ ├── message.txt │ │ │ │ │ ├── red.js │ │ │ │ │ ├── sub │ │ │ │ │ │ └── b.js │ │ │ │ │ └── yellow.js │ │ │ │ ├── bar │ │ │ │ ├── baseUrl.html │ │ │ │ ├── browsertests │ │ │ │ │ ├── appendbeforeload │ │ │ │ │ │ ├── one.dphpd │ │ │ │ │ │ ├── test.html │ │ │ │ │ │ └── two.js │ │ │ │ │ ├── async │ │ │ │ │ │ ├── async.php │ │ │ │ │ │ ├── one.php │ │ │ │ │ │ └── two.js │ │ │ │ │ ├── common.js │ │ │ │ │ ├── docwritenested │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── one.js │ │ │ │ │ │ └── two.js │ │ │ │ │ ├── functionToString.html │ │ │ │ │ ├── noload │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── server.js │ │ │ │ │ ├── onerror │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── ok.js │ │ │ │ │ │ ├── parseError.js │ │ │ │ │ │ └── scriptError.js │ │ │ │ │ ├── scriptload │ │ │ │ │ │ ├── eight.js │ │ │ │ │ │ ├── five.js │ │ │ │ │ │ ├── four.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nine.js │ │ │ │ │ │ ├── one.js │ │ │ │ │ │ ├── seven.js │ │ │ │ │ │ ├── six.js │ │ │ │ │ │ ├── three.js │ │ │ │ │ │ └── two.js │ │ │ │ │ ├── scriptloadinteractive │ │ │ │ │ │ ├── eight.js │ │ │ │ │ │ ├── five.js │ │ │ │ │ │ ├── four.js │ │ │ │ │ │ ├── four.php │ │ │ │ │ │ ├── index-php.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nine.js │ │ │ │ │ │ ├── one.js │ │ │ │ │ │ ├── seven.js │ │ │ │ │ │ ├── six.js │ │ │ │ │ │ ├── six.php │ │ │ │ │ │ ├── three.js │ │ │ │ │ │ └── two.js │ │ │ │ │ ├── scriptloadinteractiveattach │ │ │ │ │ │ ├── eight.js │ │ │ │ │ │ ├── five.js │ │ │ │ │ │ ├── four.js │ │ │ │ │ │ ├── four.php │ │ │ │ │ │ ├── index-php.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nine.js │ │ │ │ │ │ ├── one.js │ │ │ │ │ │ ├── seven.js │ │ │ │ │ │ ├── six.js │ │ │ │ │ │ ├── six.php │ │ │ │ │ │ ├── three.js │ │ │ │ │ │ └── two.js │ │ │ │ │ └── vardefine │ │ │ │ │ │ ├── define.js │ │ │ │ │ │ ├── four.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── one.js │ │ │ │ │ │ ├── three.js │ │ │ │ │ │ └── two.js │ │ │ │ ├── circular-tests.js │ │ │ │ ├── circular.html │ │ │ │ ├── circular │ │ │ │ │ ├── 414 │ │ │ │ │ │ ├── 414-tests.js │ │ │ │ │ │ ├── 414.html │ │ │ │ │ │ ├── A.js │ │ │ │ │ │ ├── B.js │ │ │ │ │ │ ├── C.js │ │ │ │ │ │ └── MyClass.js │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── circularPlugin-tests.js │ │ │ │ │ ├── circularPlugin.html │ │ │ │ │ ├── complexPlugin │ │ │ │ │ │ ├── complexPlugin-tests.js │ │ │ │ │ │ ├── complexPlugin.html │ │ │ │ │ │ ├── helper.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── slowText.js │ │ │ │ │ │ ├── toolbar.html │ │ │ │ │ │ ├── toolbar.js │ │ │ │ │ │ ├── viewport.html │ │ │ │ │ │ └── viewport.js │ │ │ │ │ ├── dupe │ │ │ │ │ │ ├── dupe.html │ │ │ │ │ │ ├── exported.js │ │ │ │ │ │ └── func.js │ │ │ │ │ ├── plugin.js │ │ │ │ │ └── transpiler │ │ │ │ │ │ ├── a.refine │ │ │ │ │ │ ├── b.refine │ │ │ │ │ │ ├── c.refine │ │ │ │ │ │ ├── d.refine │ │ │ │ │ │ ├── e.refine │ │ │ │ │ │ ├── transpiler-tests.js │ │ │ │ │ │ └── transpiler.html │ │ │ │ ├── cjsSpace │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── cjsDotRequire-tests.js │ │ │ │ │ ├── cjsDotRequire.html │ │ │ │ │ ├── cjsSpace-tests.js │ │ │ │ │ └── cjsSpace.html │ │ │ │ ├── commonjs │ │ │ │ │ └── tests │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── 1.0 │ │ │ │ │ │ ├── absolute │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── program.html │ │ │ │ │ │ ├── program.js │ │ │ │ │ │ ├── submodule │ │ │ │ │ │ │ └── a.js │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── all.html │ │ │ │ │ │ ├── cyclic │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── program.html │ │ │ │ │ │ ├── program.js │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── determinism │ │ │ │ │ │ ├── program.html │ │ │ │ │ │ ├── program.js │ │ │ │ │ │ ├── submodule │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── exactExports │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── program.html │ │ │ │ │ │ ├── program.js │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── hasOwnProperty │ │ │ │ │ │ ├── method │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── program.html │ │ │ │ │ │ ├── program.js │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── missing │ │ │ │ │ │ ├── program.html │ │ │ │ │ │ ├── program.js │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── monkeys │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── program.html │ │ │ │ │ │ ├── program.js │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── nested │ │ │ │ │ │ ├── a │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ │ └── c │ │ │ │ │ │ │ │ └── d.js │ │ │ │ │ │ ├── program.html │ │ │ │ │ │ ├── program.js │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── relative │ │ │ │ │ │ ├── program.html │ │ │ │ │ │ ├── program.js │ │ │ │ │ │ ├── submodule │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── system.js │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── transitive │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ ├── program.html │ │ │ │ │ │ ├── program.js │ │ │ │ │ │ └── test.js │ │ │ │ ├── config.html │ │ │ │ ├── configRequirejs.html │ │ │ │ ├── dataMain │ │ │ │ │ ├── baseUrl │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── dataMainBaseUrl.html │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── dataMain.html │ │ │ │ │ ├── dataMain.js │ │ │ │ │ ├── dataMainIndex │ │ │ │ │ │ ├── dataMainIndex.html │ │ │ │ │ │ └── index.js │ │ │ │ │ └── skipDataMain │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── skipDataMain.html │ │ │ │ ├── datauri │ │ │ │ │ └── datauri.html │ │ │ │ ├── defineDouble │ │ │ │ │ └── defineDouble.html │ │ │ │ ├── definedSpecified │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── definedSpecified-tests.js │ │ │ │ │ └── definedSpecified.html │ │ │ │ ├── delayedDefine │ │ │ │ │ ├── delayedDefine-tests.js │ │ │ │ │ └── delayedDefine.html │ │ │ │ ├── depEmpty.html │ │ │ │ ├── depoverlap.html │ │ │ │ ├── depoverlap.js │ │ │ │ ├── dimple.js │ │ │ │ ├── doh │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README │ │ │ │ │ ├── _browserRunner.js │ │ │ │ │ ├── _nodeRunner.js │ │ │ │ │ ├── _rhinoRunner.js │ │ │ │ │ ├── _sounds │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── doh.wav │ │ │ │ │ │ ├── dohaaa.wav │ │ │ │ │ │ └── woohoo.wav │ │ │ │ │ ├── runner.html │ │ │ │ │ ├── runner.js │ │ │ │ │ ├── runner.sh │ │ │ │ │ └── small_logo.png │ │ │ │ ├── domReady │ │ │ │ │ ├── domReady-tests.js │ │ │ │ │ ├── domReady.html │ │ │ │ │ ├── domReadyExtraConfig-tests.js │ │ │ │ │ ├── domReadyExtraConfig.html │ │ │ │ │ ├── one.js │ │ │ │ │ └── two.js │ │ │ │ ├── dos.js │ │ │ │ ├── error │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── d.js │ │ │ │ │ ├── defineError.js │ │ │ │ │ ├── defineErrorLocal.html │ │ │ │ │ ├── doubleRequire │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── doubleRequire.html │ │ │ │ │ ├── errorContinue.html │ │ │ │ │ ├── errorContinueLocal.html │ │ │ │ │ ├── globalOnError.html │ │ │ │ │ ├── plug.js │ │ │ │ │ ├── pluginErrorContinue.html │ │ │ │ │ ├── pluginErrorContinueLocal.html │ │ │ │ │ └── requireErrback.html │ │ │ │ ├── exports │ │ │ │ │ ├── am.js │ │ │ │ │ ├── assign.js │ │ │ │ │ ├── assign2.js │ │ │ │ │ ├── bm.js │ │ │ │ │ ├── cm.js │ │ │ │ │ ├── exports-tests.js │ │ │ │ │ ├── exports.html │ │ │ │ │ ├── funcSet.js │ │ │ │ │ ├── implicitModule.js │ │ │ │ │ ├── moduleAndExports-tests.js │ │ │ │ │ ├── moduleAndExports.html │ │ │ │ │ ├── simpleReturn.js │ │ │ │ │ ├── usethis.js │ │ │ │ │ └── vanilla.js │ │ │ │ ├── foo │ │ │ │ ├── func.js │ │ │ │ ├── funcFour.js │ │ │ │ ├── funcOne.js │ │ │ │ ├── funcThree.js │ │ │ │ ├── funcTwo.js │ │ │ │ ├── hasOwnProperty │ │ │ │ ├── i18n │ │ │ │ │ ├── common.html │ │ │ │ │ ├── commonA.js │ │ │ │ │ ├── commonB.js │ │ │ │ │ ├── i18n.html │ │ │ │ │ ├── nls │ │ │ │ │ │ ├── colors.js │ │ │ │ │ │ ├── en-us-surfer │ │ │ │ │ │ │ └── colors.js │ │ │ │ │ │ └── fr │ │ │ │ │ │ │ └── colors.js │ │ │ │ │ └── testModule.js │ │ │ │ ├── index.html │ │ │ │ ├── isBrowser │ │ │ │ │ ├── a.js │ │ │ │ │ ├── isBrowser-tests.js │ │ │ │ │ └── isBrowser.html │ │ │ │ ├── issue379 │ │ │ │ │ ├── issue379.html │ │ │ │ │ └── issue379.js │ │ │ │ ├── jquery │ │ │ │ │ ├── jquery.html │ │ │ │ │ ├── jqueryDynamic.html │ │ │ │ │ ├── jqueryDynamic2.html │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ ├── dynamicApp.js │ │ │ │ │ │ ├── jquery-1.7.1.js │ │ │ │ │ │ ├── jquery-GPL-LICENSE.txt │ │ │ │ │ │ ├── jquery-MIT-LICENSE.txt │ │ │ │ │ │ ├── jquery.alpha.js │ │ │ │ │ │ ├── jquery.beta.js │ │ │ │ │ │ ├── jquery.epsilon.js │ │ │ │ │ │ └── jquery.gamma.js │ │ │ │ ├── jsonp │ │ │ │ │ ├── jsonp.html │ │ │ │ │ ├── lamp.js │ │ │ │ │ └── twitter.html │ │ │ │ ├── layers │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── epsilon.js │ │ │ │ │ ├── helloWorld.txt │ │ │ │ │ ├── layer1.js │ │ │ │ │ └── layers.html │ │ │ │ ├── map.js │ │ │ │ ├── mapConfig │ │ │ │ │ ├── a1.js │ │ │ │ │ ├── a1 │ │ │ │ │ │ └── sub │ │ │ │ │ │ │ └── one.js │ │ │ │ │ ├── adapter │ │ │ │ │ │ └── d.js │ │ │ │ │ ├── another │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ ├── c │ │ │ │ │ │ │ ├── dim.js │ │ │ │ │ │ │ └── sub.js │ │ │ │ │ │ └── minor.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── built │ │ │ │ │ │ ├── mapConfig-tests.js │ │ │ │ │ │ ├── mapConfigBuilt.html │ │ │ │ │ │ ├── mapConfigPlugin-tests.js │ │ │ │ │ │ ├── mapConfigPluginBuilt.html │ │ │ │ │ │ ├── mapConfigStar-tests.js │ │ │ │ │ │ ├── mapConfigStarAdapter-tests.js │ │ │ │ │ │ ├── mapConfigStarAdapterBuilt.html │ │ │ │ │ │ └── mapConfigStarBuilt.html │ │ │ │ │ ├── c.js │ │ │ │ │ ├── c │ │ │ │ │ │ └── sub.js │ │ │ │ │ ├── c1.js │ │ │ │ │ ├── c1 │ │ │ │ │ │ └── sub.js │ │ │ │ │ ├── c2.js │ │ │ │ │ ├── c2 │ │ │ │ │ │ └── sub.js │ │ │ │ │ ├── d.js │ │ │ │ │ ├── e.js │ │ │ │ │ ├── mapConfig-tests.js │ │ │ │ │ ├── mapConfig.html │ │ │ │ │ ├── mapConfigDelayed-tests.js │ │ │ │ │ ├── mapConfigDelayed.html │ │ │ │ │ ├── mapConfigMulti-tests.js │ │ │ │ │ ├── mapConfigMulti.html │ │ │ │ │ ├── mapConfigPlugin-tests.js │ │ │ │ │ ├── mapConfigPlugin.html │ │ │ │ │ ├── mapConfigRelative-tests.js │ │ │ │ │ ├── mapConfigRelative.html │ │ │ │ │ ├── mapConfigSpecificity-tests.js │ │ │ │ │ ├── mapConfigSpecificity.html │ │ │ │ │ ├── mapConfigStar-tests.js │ │ │ │ │ ├── mapConfigStar.html │ │ │ │ │ ├── mapConfigStarAdapter-tests.js │ │ │ │ │ ├── mapConfigStarAdapter.html │ │ │ │ │ ├── plug.js │ │ │ │ │ └── plug │ │ │ │ │ │ ├── c1.js │ │ │ │ │ │ ├── c2.js │ │ │ │ │ │ └── main.js │ │ │ │ ├── moduleConfig │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── moduleConfig-tests.js │ │ │ │ │ ├── moduleConfig.html │ │ │ │ │ └── plain.js │ │ │ │ ├── multiversion.html │ │ │ │ ├── nestedDefine │ │ │ │ │ ├── four.js │ │ │ │ │ ├── nestedDefine.html │ │ │ │ │ ├── nestedDefine2.html │ │ │ │ │ ├── nestedDefine2.js │ │ │ │ │ ├── one.js │ │ │ │ │ └── two.js │ │ │ │ ├── nestedRelativeRequire │ │ │ │ │ ├── main.js │ │ │ │ │ ├── nestedRelativeRequire.html │ │ │ │ │ └── sub │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ ├── nestedRequire │ │ │ │ │ ├── a.js │ │ │ │ │ ├── base.js │ │ │ │ │ ├── nestedRequire-tests.js │ │ │ │ │ └── nestedRequire.html │ │ │ │ ├── nestedRequireConfig │ │ │ │ │ ├── nestedRequireConfig.html │ │ │ │ │ └── nestedRequireConfig.js │ │ │ │ ├── onResourceLoad │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── nestedRequire-tests.js │ │ │ │ │ └── nestedRequire.html │ │ │ │ ├── one.js │ │ │ │ ├── packages │ │ │ │ │ ├── bar │ │ │ │ │ │ └── 0.4 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── baz │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── helper.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── config │ │ │ │ │ │ ├── config.html │ │ │ │ │ │ └── pixie │ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── dojox │ │ │ │ │ │ ├── door.js │ │ │ │ │ │ └── window │ │ │ │ │ │ │ ├── pane.js │ │ │ │ │ │ │ └── window.js │ │ │ │ │ ├── foo │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ └── second.js │ │ │ │ │ ├── funky │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── monkey.js │ │ │ │ │ ├── optimizing │ │ │ │ │ │ ├── build.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── optimizing-built.html │ │ │ │ │ │ ├── optimizing.html │ │ │ │ │ │ └── packages │ │ │ │ │ │ │ ├── engine │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ ├── pistons.js │ │ │ │ │ │ │ └── sparkplugs.js │ │ │ │ │ │ │ ├── fuel │ │ │ │ │ │ │ └── main.js │ │ │ │ │ │ │ └── tires │ │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── packages-tests.js │ │ │ │ │ ├── packages.html │ │ │ │ │ ├── pkgs │ │ │ │ │ │ ├── alpha │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ └── replace.js │ │ │ │ │ │ ├── beta │ │ │ │ │ │ │ └── 0.2 │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ ├── beta.js │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ └── dojox │ │ │ │ │ │ │ ├── chair │ │ │ │ │ │ │ ├── legs.js │ │ │ │ │ │ │ └── main.js │ │ │ │ │ │ │ └── table │ │ │ │ │ │ │ ├── legs.js │ │ │ │ │ │ │ └── table.js │ │ │ │ │ └── replace.js │ │ │ │ ├── pathArray │ │ │ │ │ ├── pathArray.html │ │ │ │ │ ├── pathArrayFail.html │ │ │ │ │ └── real.js │ │ │ │ ├── paths │ │ │ │ │ ├── first.js │ │ │ │ │ │ ├── first.js │ │ │ │ │ │ └── second.js │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── array.js │ │ │ │ │ │ └── util.js │ │ │ │ │ ├── paths.html │ │ │ │ │ ├── relativeModuleId-tests.js │ │ │ │ │ ├── relativeModuleId.html │ │ │ │ │ ├── relativeNormalize │ │ │ │ │ │ ├── bar │ │ │ │ │ │ │ └── baz.js │ │ │ │ │ │ ├── foo2.js │ │ │ │ │ │ ├── relativeNormalize-tests.js │ │ │ │ │ │ └── relativeNormalize.html │ │ │ │ │ └── util.js │ │ │ │ ├── plugins │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── delegated │ │ │ │ │ │ ├── a.refine │ │ │ │ │ │ ├── delegated-tests.js │ │ │ │ │ │ ├── delegated.html │ │ │ │ │ │ └── delegated.js │ │ │ │ │ ├── double.html │ │ │ │ │ ├── double.js │ │ │ │ │ ├── earth.js │ │ │ │ │ ├── fromText │ │ │ │ │ │ ├── a.refine │ │ │ │ │ │ ├── b.refine │ │ │ │ │ │ ├── fromText-tests.js │ │ │ │ │ │ ├── fromText.html │ │ │ │ │ │ ├── fromTextConfig-tests.js │ │ │ │ │ │ ├── fromTextConfig.html │ │ │ │ │ │ └── refine.js │ │ │ │ │ ├── fromTextEvalError │ │ │ │ │ │ ├── a.refine │ │ │ │ │ │ ├── b.refine │ │ │ │ │ │ ├── fromTextEvalError-tests.js │ │ │ │ │ │ └── fromTextEvalError.html │ │ │ │ │ ├── fromTextNoDefine │ │ │ │ │ │ ├── a.refine │ │ │ │ │ │ ├── fromTextNoDefine-tests.js │ │ │ │ │ │ ├── fromTextNoDefine.html │ │ │ │ │ │ └── refine.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── indexBuilder.js │ │ │ │ │ ├── nameOnly-tests.js │ │ │ │ │ ├── nameOnly.html │ │ │ │ │ ├── nameOnly.js │ │ │ │ │ ├── onerror │ │ │ │ │ │ ├── onerror-tests.js │ │ │ │ │ │ ├── onerror.html │ │ │ │ │ │ └── thrower.js │ │ │ │ │ ├── pluginLast │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ ├── bigCollection.html │ │ │ │ │ │ ├── bigCollection.js │ │ │ │ │ │ ├── collection.js │ │ │ │ │ │ ├── collectionHelper.js │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── component.html │ │ │ │ │ │ ├── component.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── pluginLast.html │ │ │ │ │ │ ├── specificCollection.html │ │ │ │ │ │ └── specificCollection.js │ │ │ │ │ ├── pluginMap │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ │ ├── employee.js │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ ├── person.js │ │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ │ └── pluginMapDynamic.html │ │ │ │ │ │ ├── pluginMap-tests.js │ │ │ │ │ │ └── pluginMap.html │ │ │ │ │ ├── pluginMapSameName │ │ │ │ │ │ ├── plugin │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ ├── pluginMapSameName-tests.js │ │ │ │ │ │ └── pluginMapSameName.html │ │ │ │ │ ├── pluginShim │ │ │ │ │ │ ├── a.refine │ │ │ │ │ │ ├── legacy.js │ │ │ │ │ │ ├── pluginShim-tests.js │ │ │ │ │ │ └── pluginShim.html │ │ │ │ │ ├── prime │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── earth.js │ │ │ │ │ ├── sync-tests.js │ │ │ │ │ ├── sync.html │ │ │ │ │ └── textDepend │ │ │ │ │ │ ├── test.txt │ │ │ │ │ │ ├── textDepend-tests.js │ │ │ │ │ │ ├── textDepend.html │ │ │ │ │ │ └── textDepend.js │ │ │ │ ├── queryPath.html │ │ │ │ ├── relative │ │ │ │ │ ├── foo │ │ │ │ │ │ ├── bar.js │ │ │ │ │ │ ├── bar │ │ │ │ │ │ │ ├── message.txt │ │ │ │ │ │ │ ├── one.js │ │ │ │ │ │ │ └── two.js │ │ │ │ │ │ └── three.js │ │ │ │ │ ├── greek │ │ │ │ │ │ ├── alpha.js │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── outsideBaseUrl │ │ │ │ │ │ ├── 2.js │ │ │ │ │ │ ├── a │ │ │ │ │ │ │ └── outsideBaseUrl.html │ │ │ │ │ │ └── b │ │ │ │ │ │ │ ├── 1.js │ │ │ │ │ │ │ └── 3.js │ │ │ │ │ ├── relative-tests.js │ │ │ │ │ ├── relative.html │ │ │ │ │ ├── relativeBaseUrl-tests.js │ │ │ │ │ ├── relativeBaseUrl.html │ │ │ │ │ └── top.js │ │ │ │ ├── remoteUrls │ │ │ │ │ ├── jqwrap.js │ │ │ │ │ ├── remoteUrls-tests.js │ │ │ │ │ └── remoteUrls.html │ │ │ │ ├── requireAsync │ │ │ │ │ ├── requireAsync-tests.js │ │ │ │ │ └── requireAsync.html │ │ │ │ ├── requirePluginLoad │ │ │ │ │ ├── requirePluginLoad-tests.js │ │ │ │ │ └── requirePluginLoad.html │ │ │ │ ├── shim │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── basic-tests.js │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── built │ │ │ │ │ │ ├── basic-built.html │ │ │ │ │ │ └── basic-tests.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── d.js │ │ │ │ │ ├── e.js │ │ │ │ │ └── f.js │ │ │ │ ├── simple-badbase.html │ │ │ │ ├── simple-nohead.html │ │ │ │ ├── simple-tests.js │ │ │ │ ├── simple.html │ │ │ │ ├── simple.js │ │ │ │ ├── specialDeps │ │ │ │ │ ├── foo.js │ │ │ │ │ ├── specialDeps-tests.js │ │ │ │ │ └── specialDeps.html │ │ │ │ ├── text │ │ │ │ │ ├── local.js │ │ │ │ │ ├── plain.txt │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── local.html │ │ │ │ │ │ └── sample.html │ │ │ │ │ ├── separate.js │ │ │ │ │ ├── subwidget.html │ │ │ │ │ ├── subwidget.js │ │ │ │ │ ├── subwidget2.html │ │ │ │ │ ├── text.html │ │ │ │ │ ├── textBuilt.html │ │ │ │ │ ├── textBuilt.js │ │ │ │ │ ├── textOnError.html │ │ │ │ │ ├── textOnXhr.html │ │ │ │ │ ├── textOnly.html │ │ │ │ │ ├── widget.html │ │ │ │ │ └── widget.js │ │ │ │ ├── toUrl │ │ │ │ │ ├── .hidden.html │ │ │ │ │ ├── auxil.html │ │ │ │ │ ├── main.html │ │ │ │ │ ├── main.js │ │ │ │ │ ├── sub │ │ │ │ │ │ ├── nested │ │ │ │ │ │ │ └── thing.js │ │ │ │ │ │ ├── noext │ │ │ │ │ │ ├── util.html │ │ │ │ │ │ └── util.js │ │ │ │ │ ├── toUrl-tests.js │ │ │ │ │ └── toUrl.html │ │ │ │ ├── trailingComma │ │ │ │ │ ├── a.js │ │ │ │ │ ├── trailingComma.html │ │ │ │ │ └── trailingComma.js │ │ │ │ ├── tres.js │ │ │ │ ├── two.js │ │ │ │ ├── undef │ │ │ │ │ ├── globalFoo.js │ │ │ │ │ ├── real.js │ │ │ │ │ ├── undef.html │ │ │ │ │ ├── undefEnforceShim.html │ │ │ │ │ ├── undefLocal.html │ │ │ │ │ └── undefNoRequire.html │ │ │ │ ├── uniques │ │ │ │ │ ├── one.js │ │ │ │ │ ├── three.js │ │ │ │ │ ├── two.js │ │ │ │ │ └── uniques.html │ │ │ │ ├── universal │ │ │ │ │ ├── eye.js │ │ │ │ │ ├── newt.js │ │ │ │ │ ├── spell.js │ │ │ │ │ ├── tail.js │ │ │ │ │ ├── universal-built.html │ │ │ │ │ ├── universal-tests-built-expected.js │ │ │ │ │ ├── universal-tests-built.js │ │ │ │ │ ├── universal-tests.js │ │ │ │ │ └── universal.html │ │ │ │ ├── uno.js │ │ │ │ ├── urlArgsToUrl.html │ │ │ │ ├── urlfetch │ │ │ │ │ ├── one.js │ │ │ │ │ ├── three.js │ │ │ │ │ ├── two.js │ │ │ │ │ └── urlfetch.html │ │ │ │ ├── version1 │ │ │ │ │ ├── alpha.js │ │ │ │ │ ├── beta.js │ │ │ │ │ ├── gamma.js │ │ │ │ │ └── omega.js │ │ │ │ ├── version2 │ │ │ │ │ ├── alpha.js │ │ │ │ │ ├── beta.js │ │ │ │ │ ├── epsilon.js │ │ │ │ │ └── omega.js │ │ │ │ ├── workers.html │ │ │ │ └── workers.js │ │ │ └── updatesubs.sh │ │ ├── sass-bootstrap │ │ │ ├── .bower.json │ │ │ ├── CNAME │ │ │ ├── CONTRIBUTING.md │ │ │ ├── DOCS-LICENSE │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── LICENSE-MIT │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── _config.yml │ │ │ ├── _includes │ │ │ │ ├── ads.html │ │ │ │ ├── footer.html │ │ │ │ ├── header.html │ │ │ │ ├── nav-about.html │ │ │ │ ├── nav-components.html │ │ │ │ ├── nav-css.html │ │ │ │ ├── nav-customize.html │ │ │ │ ├── nav-getting-started.html │ │ │ │ ├── nav-javascript.html │ │ │ │ ├── nav-main.html │ │ │ │ ├── old-bs-docs.html │ │ │ │ └── social-buttons.html │ │ │ ├── _layouts │ │ │ │ ├── default.html │ │ │ │ └── home.html │ │ │ ├── about.html │ │ │ ├── bower.json │ │ │ ├── browserstack.json │ │ │ ├── components.html │ │ │ ├── composer.json │ │ │ ├── css.html │ │ │ ├── customize.html │ │ │ ├── docs-assets │ │ │ │ ├── css │ │ │ │ │ ├── docs.css │ │ │ │ │ └── pygments-manni.css │ │ │ │ ├── ico │ │ │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ │ │ └── favicon.png │ │ │ │ └── js │ │ │ │ │ ├── application.js │ │ │ │ │ ├── customizer.js │ │ │ │ │ ├── filesaver.js │ │ │ │ │ ├── holder.js │ │ │ │ │ ├── ie8-responsive-file-warning.js │ │ │ │ │ ├── jszip.js │ │ │ │ │ ├── less.js │ │ │ │ │ ├── raw-files.js │ │ │ │ │ └── uglify.js │ │ │ ├── examples │ │ │ │ ├── carousel │ │ │ │ │ ├── carousel.css │ │ │ │ │ └── index.html │ │ │ │ ├── grid │ │ │ │ │ ├── grid.css │ │ │ │ │ └── index.html │ │ │ │ ├── jumbotron-narrow │ │ │ │ │ ├── index.html │ │ │ │ │ └── jumbotron-narrow.css │ │ │ │ ├── jumbotron │ │ │ │ │ ├── index.html │ │ │ │ │ └── jumbotron.css │ │ │ │ ├── justified-nav │ │ │ │ │ ├── index.html │ │ │ │ │ └── justified-nav.css │ │ │ │ ├── navbar-fixed-top │ │ │ │ │ ├── index.html │ │ │ │ │ └── navbar-fixed-top.css │ │ │ │ ├── navbar-static-top │ │ │ │ │ ├── index.html │ │ │ │ │ └── navbar-static-top.css │ │ │ │ ├── navbar │ │ │ │ │ ├── index.html │ │ │ │ │ └── navbar.css │ │ │ │ ├── non-responsive │ │ │ │ │ ├── index.html │ │ │ │ │ └── non-responsive.css │ │ │ │ ├── offcanvas │ │ │ │ │ ├── index.html │ │ │ │ │ ├── offcanvas.css │ │ │ │ │ └── offcanvas.js │ │ │ │ ├── screenshots │ │ │ │ │ ├── carousel.jpg │ │ │ │ │ ├── grid.jpg │ │ │ │ │ ├── jumbotron-narrow.jpg │ │ │ │ │ ├── jumbotron.jpg │ │ │ │ │ ├── justified-nav.jpg │ │ │ │ │ ├── navbar-fixed.jpg │ │ │ │ │ ├── navbar-static.jpg │ │ │ │ │ ├── navbar.jpg │ │ │ │ │ ├── non-responsive.jpg │ │ │ │ │ ├── offcanvas.jpg │ │ │ │ │ ├── sign-in.jpg │ │ │ │ │ ├── starter-template.jpg │ │ │ │ │ ├── sticky-footer-navbar.jpg │ │ │ │ │ ├── sticky-footer.jpg │ │ │ │ │ └── theme.jpg │ │ │ │ ├── signin │ │ │ │ │ ├── index.html │ │ │ │ │ └── signin.css │ │ │ │ ├── starter-template │ │ │ │ │ ├── index.html │ │ │ │ │ └── starter-template.css │ │ │ │ ├── sticky-footer-navbar │ │ │ │ │ ├── index.html │ │ │ │ │ └── sticky-footer-navbar.css │ │ │ │ ├── sticky-footer │ │ │ │ │ ├── index.html │ │ │ │ │ └── sticky-footer.css │ │ │ │ └── theme │ │ │ │ │ ├── index.html │ │ │ │ │ └── theme.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── getting-started.html │ │ │ ├── index.html │ │ │ ├── javascript.html │ │ │ ├── js │ │ │ │ ├── affix.js │ │ │ │ ├── alert.js │ │ │ │ ├── button.js │ │ │ │ ├── carousel.js │ │ │ │ ├── collapse.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── modal.js │ │ │ │ ├── popover.js │ │ │ │ ├── scrollspy.js │ │ │ │ ├── tab.js │ │ │ │ ├── tests │ │ │ │ │ ├── index.html │ │ │ │ │ ├── unit │ │ │ │ │ │ ├── affix.js │ │ │ │ │ │ ├── alert.js │ │ │ │ │ │ ├── button.js │ │ │ │ │ │ ├── carousel.js │ │ │ │ │ │ ├── collapse.js │ │ │ │ │ │ ├── dropdown.js │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ ├── phantom.js │ │ │ │ │ │ ├── popover.js │ │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ │ ├── tab.js │ │ │ │ │ │ ├── tooltip.js │ │ │ │ │ │ └── transition.js │ │ │ │ │ └── vendor │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── qunit.css │ │ │ │ │ │ └── qunit.js │ │ │ │ ├── tooltip.js │ │ │ │ └── transition.js │ │ │ ├── lib │ │ │ │ ├── _alerts.scss │ │ │ │ ├── _badges.scss │ │ │ │ ├── _breadcrumbs.scss │ │ │ │ ├── _button-groups.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _close.scss │ │ │ │ ├── _code.scss │ │ │ │ ├── _component-animations.scss │ │ │ │ ├── _dropdowns.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _glyphicons.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _input-groups.scss │ │ │ │ ├── _jumbotron.scss │ │ │ │ ├── _labels.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _media.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _modals.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _navs.scss │ │ │ │ ├── _normalize.scss │ │ │ │ ├── _pager.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _panels.scss │ │ │ │ ├── _popovers.scss │ │ │ │ ├── _print.scss │ │ │ │ ├── _progress-bars.scss │ │ │ │ ├── _responsive-utilities.scss │ │ │ │ ├── _scaffolding.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _theme.scss │ │ │ │ ├── _thumbnails.scss │ │ │ │ ├── _tooltip.scss │ │ │ │ ├── _type.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── _wells.scss │ │ │ │ └── bootstrap.scss │ │ │ └── package.json │ │ ├── underscore-amd │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── CNAME │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ ├── arrays.js │ │ │ │ ├── chaining.js │ │ │ │ ├── collections.js │ │ │ │ ├── functions.js │ │ │ │ ├── index.html │ │ │ │ ├── objects.js │ │ │ │ ├── speed.js │ │ │ │ ├── utility.js │ │ │ │ └── vendor │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── jslitmus.js │ │ │ │ │ ├── qunit.css │ │ │ │ │ ├── qunit.js │ │ │ │ │ └── runner.js │ │ │ ├── underscore-min.js │ │ │ └── underscore.js │ │ └── underscore │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CNAME │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── test │ │ │ ├── arrays.js │ │ │ ├── chaining.js │ │ │ ├── collections.js │ │ │ ├── functions.js │ │ │ ├── index.html │ │ │ ├── objects.js │ │ │ ├── speed.js │ │ │ ├── utility.js │ │ │ └── vendor │ │ │ │ ├── jquery.js │ │ │ │ ├── jslitmus.js │ │ │ │ ├── qunit.css │ │ │ │ ├── qunit.js │ │ │ │ └── runner.js │ │ │ ├── underscore-min.js │ │ │ ├── underscore-min.map │ │ │ └── underscore.js │ ├── favicon.ico │ ├── images │ │ └── logo.png │ ├── index.html │ ├── robots.txt │ ├── scripts │ │ ├── app.js │ │ ├── application.js │ │ ├── collections │ │ │ ├── cluster-collection.js │ │ │ ├── filter-collection.js │ │ │ ├── graphs.js │ │ │ ├── notifications.js │ │ │ ├── osd-collection.js │ │ │ ├── pool-collection.js │ │ │ ├── server-collection.js │ │ │ └── user-request-collection.js │ │ ├── helpers │ │ │ ├── animation.js │ │ │ ├── config-loader.js │ │ │ ├── gauge-helper.js │ │ │ ├── graph-utils.js │ │ │ ├── noty-theme.js │ │ │ ├── noty-topRight.js │ │ │ ├── raphael_support.js │ │ │ └── react-mixins.js │ │ ├── l20nCtxPlugin.js │ │ ├── locales │ │ │ └── en │ │ │ │ └── strings.l20n │ │ ├── main.js │ │ ├── models │ │ │ ├── application-model.js │ │ │ ├── cluster-model.js │ │ │ ├── filter-model.js │ │ │ ├── graph-model.js │ │ │ ├── graphite-cpu-model.js │ │ │ ├── graphite-iostat-model.js │ │ │ ├── graphite-model.js │ │ │ ├── graphite-net-model.js │ │ │ ├── graphite-pool-iops-model.js │ │ │ ├── health-model.js │ │ │ ├── notification.js │ │ │ ├── osd-model.js │ │ │ ├── pool-model.js │ │ │ ├── server-model.js │ │ │ ├── status-model.js │ │ │ ├── usage-model.js │ │ │ └── user-request-model.js │ │ ├── plugin.json │ │ ├── plugin_loader.js │ │ ├── poller.js │ │ ├── routes │ │ │ └── application-router.js │ │ ├── templates │ │ │ ├── about-modal.ejs │ │ │ ├── alerts.ejs │ │ │ ├── breadcrumb.ejs │ │ │ ├── clusterdropdown.ejs │ │ │ ├── filter-label.ejs │ │ │ ├── filter.ejs │ │ │ ├── filterBy.ejs │ │ │ ├── gauges.ejs │ │ │ ├── graph.ejs │ │ │ ├── graphite │ │ │ │ ├── CPUDetailedTargets.ejs │ │ │ │ ├── CPUTargets.ejs │ │ │ │ ├── DiskSpaceTargets.ejs │ │ │ │ ├── IOStatIOPSTargets.ejs │ │ │ │ ├── LoadAvgTarget.ejs │ │ │ │ ├── MemoryTarget.ejs │ │ │ │ ├── NetworkTargets.ejs │ │ │ │ ├── OSDFilestoreTarget.ejs │ │ │ │ ├── OSDOpLatencyTarget.ejs │ │ │ │ ├── PoolDiskFreeTarget.ejs │ │ │ │ └── PoolIOPSTarget.ejs │ │ │ ├── graphwall.ejs │ │ │ ├── growl.ejs │ │ │ ├── health-modal.ejs │ │ │ ├── health.ejs │ │ │ ├── hosts-dash.ejs │ │ │ ├── iops-dash.ejs │ │ │ ├── modal.ejs │ │ │ ├── mon-dash.ejs │ │ │ ├── no-request.ejs │ │ │ ├── notification.ejs │ │ │ ├── notifications.ejs │ │ │ ├── osd-dash.ejs │ │ │ ├── osd-details-full.ejs │ │ │ ├── osd-details.ejs │ │ │ ├── osd-hex.ejs │ │ │ ├── pgmap.ejs │ │ │ ├── pools-dash.ejs │ │ │ ├── request-error.ejs │ │ │ ├── request.ejs │ │ │ ├── status-icon.ejs │ │ │ ├── status-line.ejs │ │ │ ├── usage.ejs │ │ │ ├── user-request.ejs │ │ │ ├── userdropdown.ejs │ │ │ └── viz.ejs │ │ ├── tracker.js │ │ ├── vendor │ │ │ ├── backbone.modal.js │ │ │ ├── bootstrap.js │ │ │ ├── dygraph-combined.js │ │ │ ├── gauge.js │ │ │ ├── humanize.js │ │ │ ├── kinetic-v4.7.3.js │ │ │ ├── l20n.min.js │ │ │ ├── raphael.js │ │ │ └── snap.svg.js │ │ └── views │ │ │ ├── alerts-view.js │ │ │ ├── application-view.js │ │ │ ├── breadcrumb-view.js │ │ │ ├── clusterdropdown-view.js │ │ │ ├── dashboard-row.js │ │ │ ├── filter-label-view.js │ │ │ ├── filter-view.js │ │ │ ├── filterBy-view.js │ │ │ ├── gauges-layout.js │ │ │ ├── graphwall-view.js │ │ │ ├── health-view.js │ │ │ ├── hosts-dash-view.js │ │ │ ├── iops-dash-view.js │ │ │ ├── mon-dash-view.js │ │ │ ├── notification-bell-view.js │ │ │ ├── notification-card-view.js │ │ │ ├── notification-collection-view.js │ │ │ ├── notification-item-view.js │ │ │ ├── osd-dash-view.js │ │ │ ├── osd-detail-view.js │ │ │ ├── osd-hex-view.js │ │ │ ├── osd-visualization.js │ │ │ ├── pgmap-view.js │ │ │ ├── pools-dash-view.js │ │ │ ├── status-line-view.js │ │ │ ├── type-one-view.js │ │ │ ├── usage-view.js │ │ │ ├── user-request-view.js │ │ │ └── userdropdown-view.js │ └── styles │ │ ├── main.scss │ │ ├── modules │ │ ├── _bootstrap3_vars.scss │ │ ├── _fade-and-slide.scss │ │ ├── _hex_base.scss │ │ └── _inktank_colors.scss │ │ ├── partials │ │ ├── _animations.scss │ │ ├── _base.scss │ │ ├── _base_cards.scss │ │ ├── _dashboard.scss │ │ ├── _dashboard_animation.scss │ │ ├── _graph.scss │ │ ├── _hex.scss │ │ ├── _hex_base.scss │ │ ├── _inktank_fonts.scss │ │ ├── _notifications.scss │ │ ├── _viz.scss │ │ └── _viz_animation.scss │ │ └── vendor │ │ ├── _backbone.modal.scss │ │ ├── _backbone.modal.theme.scss │ │ ├── _bootstrap-switch.scss │ │ └── _dan_eden_animate.scss ├── bower.json ├── documentation │ ├── Makefile │ ├── docco.css │ ├── docco.jst │ ├── network-errors.md │ ├── states.dot │ └── states.png ├── package.json └── test │ ├── index.html │ ├── lib │ ├── chai.js │ ├── expect.js │ └── mocha │ │ ├── mocha.css │ │ └── mocha.js │ └── spec │ └── test.js ├── debian ├── calamari-clients.install ├── calamari-clients.postinst ├── calamari-clients.prerm ├── changelog ├── compat ├── control ├── copyright └── rules ├── get-versions.sh ├── login ├── .bowerrc ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── Makefile ├── README.md ├── app │ ├── .htaccess │ ├── 404.html │ ├── bower_components │ │ ├── backbone │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── CNAME │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── backbone-min.js │ │ │ ├── backbone-min.map │ │ │ ├── backbone.js │ │ │ ├── examples │ │ │ │ ├── backbone.localStorage.js │ │ │ │ └── todos │ │ │ │ │ ├── destroy.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── todos.css │ │ │ │ │ └── todos.js │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── collection.js │ │ │ │ ├── environment.js │ │ │ │ ├── events.js │ │ │ │ ├── index.html │ │ │ │ ├── model.coffee │ │ │ │ ├── model.js │ │ │ │ ├── noconflict.js │ │ │ │ ├── router.js │ │ │ │ ├── sync.js │ │ │ │ ├── vendor │ │ │ │ ├── jquery.js │ │ │ │ ├── json2.js │ │ │ │ ├── qunit.css │ │ │ │ ├── qunit.js │ │ │ │ ├── runner.js │ │ │ │ └── underscore.js │ │ │ │ └── view.js │ │ ├── font-awesome │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .ruby-version │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── README.md │ │ │ ├── _config.yml │ │ │ ├── composer.json │ │ │ ├── css │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── font │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── less │ │ │ │ ├── bootstrap.less │ │ │ │ ├── core.less │ │ │ │ ├── extras.less │ │ │ │ ├── font-awesome-ie7.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ └── variables.less │ │ │ ├── package.json │ │ │ ├── scss │ │ │ │ ├── _bootstrap.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _extras.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── font-awesome-ie7.scss │ │ │ │ └── font-awesome.scss │ │ │ └── src │ │ │ │ ├── CNAME │ │ │ │ ├── Makefile │ │ │ │ ├── _includes │ │ │ │ ├── ads │ │ │ │ │ ├── carbon-dark-vertical.html │ │ │ │ │ ├── carbon-light-horizontal.html │ │ │ │ │ └── carbon-light-vertical.html │ │ │ │ ├── brand-license.html │ │ │ │ ├── cheatsheet.html │ │ │ │ ├── community.html │ │ │ │ ├── community │ │ │ │ │ ├── getting-support.html │ │ │ │ │ ├── project-milestones.html │ │ │ │ │ ├── reporting-bugs.html │ │ │ │ │ ├── requesting-new-icons.html │ │ │ │ │ └── submitting-pull-requests.html │ │ │ │ ├── examples.html │ │ │ │ ├── examples │ │ │ │ │ ├── animated-spinner.html │ │ │ │ │ ├── bordered-pulled.html │ │ │ │ │ ├── bulleted-lists.html │ │ │ │ │ ├── button-dropdowns.html │ │ │ │ │ ├── button-groups.html │ │ │ │ │ ├── buttons.html │ │ │ │ │ ├── custom.html │ │ │ │ │ ├── form-inputs.html │ │ │ │ │ ├── inline-icons.html │ │ │ │ │ ├── larger-icons.html │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── new.html │ │ │ │ │ ├── rotated-flipped.html │ │ │ │ │ └── stacked.html │ │ │ │ ├── footer.html │ │ │ │ ├── get-started.html │ │ │ │ ├── icons.html │ │ │ │ ├── icons │ │ │ │ │ ├── brand.html │ │ │ │ │ ├── currency.html │ │ │ │ │ ├── directional.html │ │ │ │ │ ├── medical.html │ │ │ │ │ ├── new.html │ │ │ │ │ ├── text-editor.html │ │ │ │ │ ├── video-player.html │ │ │ │ │ └── web-application.html │ │ │ │ ├── jumbotron-slider.html │ │ │ │ ├── jumbotron.html │ │ │ │ ├── license-code.less │ │ │ │ ├── license.html │ │ │ │ ├── navbar.html │ │ │ │ ├── stripe-ad.html │ │ │ │ ├── stripe-social.html │ │ │ │ ├── tell-me-thanks.html │ │ │ │ ├── tests │ │ │ │ │ ├── rotated-flipped-inside-anchor.html │ │ │ │ │ ├── rotated-flipped-inside-btn.html │ │ │ │ │ ├── rotated-flipped.html │ │ │ │ │ ├── stacked-inside-anchor.html │ │ │ │ │ └── stacked.html │ │ │ │ ├── thanks-to.html │ │ │ │ ├── whats-new.html │ │ │ │ └── why.html │ │ │ │ ├── _layouts │ │ │ │ ├── base.html │ │ │ │ └── icon.html │ │ │ │ ├── _plugins │ │ │ │ ├── icon_page_generator.rb │ │ │ │ └── site.rb │ │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ ├── prettify.css │ │ │ │ │ └── pygments.css │ │ │ │ ├── font-awesome │ │ │ │ │ ├── font │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ ├── less │ │ │ │ │ │ ├── bootstrap.less │ │ │ │ │ │ ├── core.less │ │ │ │ │ │ ├── extras.less │ │ │ │ │ │ ├── font-awesome-ie7.less │ │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ │ ├── icons.less │ │ │ │ │ │ ├── mixins.less │ │ │ │ │ │ ├── path.less │ │ │ │ │ │ └── variables.less │ │ │ │ │ └── scss │ │ │ │ │ │ ├── _bootstrap.scss │ │ │ │ │ │ ├── _core.scss │ │ │ │ │ │ ├── _extras.scss │ │ │ │ │ │ ├── _icons.scss │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ ├── _path.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ ├── font-awesome-ie7.scss │ │ │ │ │ │ └── font-awesome.scss │ │ │ │ ├── ico │ │ │ │ │ └── favicon.ico │ │ │ │ ├── img │ │ │ │ │ ├── contribution-sample.png │ │ │ │ │ ├── fort_awesome.jpg │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ │ └── icon-flag.pdf │ │ │ │ ├── js │ │ │ │ │ ├── ZeroClipboard-1.1.7.min.js │ │ │ │ │ ├── ZeroClipboard-1.1.7.swf │ │ │ │ │ ├── backbone.min.js │ │ │ │ │ ├── bootstrap-2.3.1.min.js │ │ │ │ │ ├── bootstrap-222.min.js │ │ │ │ │ ├── jquery-1.7.1.min.js │ │ │ │ │ ├── prettify.min.js │ │ │ │ │ ├── site.js │ │ │ │ │ └── underscore.min.js │ │ │ │ └── less │ │ │ │ │ ├── bootstrap-2.3.2 │ │ │ │ │ ├── accordion.less │ │ │ │ │ ├── alerts.less │ │ │ │ │ ├── bootstrap.less │ │ │ │ │ ├── breadcrumbs.less │ │ │ │ │ ├── button-groups.less │ │ │ │ │ ├── buttons.less │ │ │ │ │ ├── carousel.less │ │ │ │ │ ├── close.less │ │ │ │ │ ├── code.less │ │ │ │ │ ├── component-animations.less │ │ │ │ │ ├── dropdowns.less │ │ │ │ │ ├── forms.less │ │ │ │ │ ├── grid.less │ │ │ │ │ ├── hero-unit.less │ │ │ │ │ ├── labels-badges.less │ │ │ │ │ ├── layouts.less │ │ │ │ │ ├── media.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── modals.less │ │ │ │ │ ├── navbar.less │ │ │ │ │ ├── navs.less │ │ │ │ │ ├── pager.less │ │ │ │ │ ├── pagination.less │ │ │ │ │ ├── popovers.less │ │ │ │ │ ├── progress-bars.less │ │ │ │ │ ├── reset.less │ │ │ │ │ ├── responsive-1200px-min.less │ │ │ │ │ ├── responsive-767px-max.less │ │ │ │ │ ├── responsive-768px-979px.less │ │ │ │ │ ├── responsive-navbar.less │ │ │ │ │ ├── responsive-utilities.less │ │ │ │ │ ├── responsive.less │ │ │ │ │ ├── scaffolding.less │ │ │ │ │ ├── sprites.less │ │ │ │ │ ├── tables.less │ │ │ │ │ ├── thumbnails.less │ │ │ │ │ ├── tooltip.less │ │ │ │ │ ├── type.less │ │ │ │ │ ├── utilities.less │ │ │ │ │ ├── variables.less │ │ │ │ │ └── wells.less │ │ │ │ │ ├── lazy.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── responsive-1200px-min.less │ │ │ │ │ ├── responsive-767px-max.less │ │ │ │ │ ├── responsive-768px-979px.less │ │ │ │ │ ├── responsive-navbar.less │ │ │ │ │ ├── responsive.less │ │ │ │ │ ├── site.less │ │ │ │ │ ├── sticky-footer.less │ │ │ │ │ └── variables.less │ │ │ │ ├── cheatsheet.html │ │ │ │ ├── community.html │ │ │ │ ├── design.html │ │ │ │ ├── examples.html │ │ │ │ ├── get-started.html │ │ │ │ ├── icons.html │ │ │ │ ├── icons.yml │ │ │ │ ├── index.html │ │ │ │ ├── license.html │ │ │ │ ├── test.html │ │ │ │ └── whats-new.html │ │ ├── jquery.cookie │ │ │ ├── .bower.json │ │ │ ├── .tm_properties │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── README.md │ │ │ ├── component.json │ │ │ ├── cookie.jquery.json │ │ │ ├── grunt.js │ │ │ ├── jquery.cookie.js │ │ │ └── test │ │ │ │ ├── index.html │ │ │ │ ├── sandbox.html │ │ │ │ ├── server.js │ │ │ │ └── tests.js │ │ ├── jquery │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── component.json │ │ │ ├── composer.json │ │ │ ├── jquery-migrate.js │ │ │ ├── jquery-migrate.min.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ └── package.json │ │ ├── modernizr │ │ │ ├── .bower.json │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── feature-detects │ │ │ │ ├── a-download.js │ │ │ │ ├── audio-audiodata-api.js │ │ │ │ ├── audio-webaudio-api.js │ │ │ │ ├── battery-api.js │ │ │ │ ├── battery-level.js │ │ │ │ ├── blob-constructor.js │ │ │ │ ├── canvas-todataurl-type.js │ │ │ │ ├── contenteditable.js │ │ │ │ ├── contentsecuritypolicy.js │ │ │ │ ├── contextmenu.js │ │ │ │ ├── cookies.js │ │ │ │ ├── cors.js │ │ │ │ ├── css-backgroundposition-shorthand.js │ │ │ │ ├── css-backgroundposition-xy.js │ │ │ │ ├── css-backgroundrepeat.js │ │ │ │ ├── css-backgroundsizecover.js │ │ │ │ ├── css-boxsizing.js │ │ │ │ ├── css-calc.js │ │ │ │ ├── css-cubicbezierrange.js │ │ │ │ ├── css-displayrunin.js │ │ │ │ ├── css-displaytable.js │ │ │ │ ├── css-filters.js │ │ │ │ ├── css-hyphens.js │ │ │ │ ├── css-lastchild.js │ │ │ │ ├── css-mask.js │ │ │ │ ├── css-mediaqueries.js │ │ │ │ ├── css-objectfit.js │ │ │ │ ├── css-overflow-scrolling.js │ │ │ │ ├── css-pointerevents.js │ │ │ │ ├── css-positionsticky.js │ │ │ │ ├── css-regions.js │ │ │ │ ├── css-remunit.js │ │ │ │ ├── css-resize.js │ │ │ │ ├── css-scrollbars.js │ │ │ │ ├── css-subpixelfont.js │ │ │ │ ├── css-supports.js │ │ │ │ ├── css-userselect.js │ │ │ │ ├── css-vhunit.js │ │ │ │ ├── css-vmaxunit.js │ │ │ │ ├── css-vminunit.js │ │ │ │ ├── css-vwunit.js │ │ │ │ ├── custom-protocol-handler.js │ │ │ │ ├── dart.js │ │ │ │ ├── dataview-api.js │ │ │ │ ├── dom-classlist.js │ │ │ │ ├── dom-createElement-attrs.js │ │ │ │ ├── dom-dataset.js │ │ │ │ ├── dom-microdata.js │ │ │ │ ├── elem-datalist.js │ │ │ │ ├── elem-details.js │ │ │ │ ├── elem-output.js │ │ │ │ ├── elem-progress-meter.js │ │ │ │ ├── elem-ruby.js │ │ │ │ ├── elem-time.js │ │ │ │ ├── elem-track.js │ │ │ │ ├── emoji.js │ │ │ │ ├── es5-strictmode.js │ │ │ │ ├── event-deviceorientation-motion.js │ │ │ │ ├── exif-orientation.js │ │ │ │ ├── file-api.js │ │ │ │ ├── file-filesystem.js │ │ │ │ ├── forms-fileinput.js │ │ │ │ ├── forms-formattribute.js │ │ │ │ ├── forms-inputnumber-l10n.js │ │ │ │ ├── forms-placeholder.js │ │ │ │ ├── forms-speechinput.js │ │ │ │ ├── forms-validation.js │ │ │ │ ├── fullscreen-api.js │ │ │ │ ├── gamepad.js │ │ │ │ ├── getusermedia.js │ │ │ │ ├── ie8compat.js │ │ │ │ ├── iframe-sandbox.js │ │ │ │ ├── iframe-seamless.js │ │ │ │ ├── iframe-srcdoc.js │ │ │ │ ├── img-apng.js │ │ │ │ ├── img-webp.js │ │ │ │ ├── json.js │ │ │ │ ├── lists-reversed.js │ │ │ │ ├── mathml.js │ │ │ │ ├── network-connection.js │ │ │ │ ├── network-eventsource.js │ │ │ │ ├── network-xhr2.js │ │ │ │ ├── notification.js │ │ │ │ ├── performance.js │ │ │ │ ├── pointerlock-api.js │ │ │ │ ├── quota-management-api.js │ │ │ │ ├── requestanimationframe.js │ │ │ │ ├── script-async.js │ │ │ │ ├── script-defer.js │ │ │ │ ├── style-scoped.js │ │ │ │ ├── svg-filters.js │ │ │ │ ├── unicode.js │ │ │ │ ├── url-data-uri.js │ │ │ │ ├── userdata.js │ │ │ │ ├── vibration.js │ │ │ │ ├── web-intents.js │ │ │ │ ├── webgl-extensions.js │ │ │ │ ├── websockets-binary.js │ │ │ │ ├── window-framed.js │ │ │ │ ├── workers-blobworkers.js │ │ │ │ ├── workers-dataworkers.js │ │ │ │ └── workers-sharedworkers.js │ │ │ ├── grunt.js │ │ │ ├── media │ │ │ │ ├── Modernizr 2 Logo.ai │ │ │ │ ├── Modernizr 2 Logo.eps │ │ │ │ ├── Modernizr 2 Logo.pdf │ │ │ │ ├── Modernizr 2 Logo.png │ │ │ │ └── Modernizr 2 Logo.svg │ │ │ ├── modernizr.js │ │ │ ├── readme.md │ │ │ └── test │ │ │ │ ├── basic.html │ │ │ │ ├── caniuse.html │ │ │ │ ├── caniuse_files │ │ │ │ ├── Windsong-webfont.eot │ │ │ │ ├── Windsong-webfont.otf │ │ │ │ ├── Windsong-webfont.svg │ │ │ │ ├── Windsong-webfont.ttf │ │ │ │ ├── Windsong-webfont.woff │ │ │ │ ├── alpha.png │ │ │ │ ├── apng_test.png │ │ │ │ ├── before-after.png │ │ │ │ ├── form_validation.html │ │ │ │ ├── ga.js │ │ │ │ ├── green5x5.png │ │ │ │ ├── hashchange.html │ │ │ │ ├── jquery.min.js │ │ │ │ ├── mathml.html │ │ │ │ ├── mathml_ref.png │ │ │ │ ├── modernizr-1.7.min.js │ │ │ │ ├── png_alpha_result.png │ │ │ │ ├── pushstate.html │ │ │ │ ├── red30x30.png │ │ │ │ ├── ruby.png │ │ │ │ ├── stroked-text.png │ │ │ │ ├── style.css │ │ │ │ ├── svg-html-blur.png │ │ │ │ ├── svg-img.svg │ │ │ │ ├── svg-img.svg.1 │ │ │ │ ├── svg_blur.png │ │ │ │ ├── table.png │ │ │ │ ├── text-shadow1.png │ │ │ │ ├── text-shadow2.png │ │ │ │ ├── windsong_font.png │ │ │ │ └── xhtml.html │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── basic.html │ │ │ │ ├── dumpdata.js │ │ │ │ ├── lib │ │ │ │ │ ├── detect-global.js │ │ │ │ │ ├── jquery-1.7b2.js │ │ │ │ │ ├── jsonselect.js │ │ │ │ │ ├── polyfills.js │ │ │ │ │ └── uaparser.js │ │ │ │ ├── setup.js │ │ │ │ ├── unit-caniuse.js │ │ │ │ └── unit.js │ │ │ │ └── qunit │ │ │ │ ├── qunit.css │ │ │ │ ├── qunit.js │ │ │ │ └── run-qunit.js │ │ ├── requirejs │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── require.js │ │ │ ├── tasks.txt │ │ │ ├── testBaseUrl.js │ │ │ ├── tests │ │ │ │ ├── NAMESPACE.html │ │ │ │ ├── README.md │ │ │ │ ├── afterload.html │ │ │ │ ├── afterloadreadystate.js │ │ │ │ ├── all-server.js │ │ │ │ ├── all.js │ │ │ │ ├── allj.sh │ │ │ │ ├── alln.sh │ │ │ │ ├── anon │ │ │ │ │ ├── a.js │ │ │ │ │ ├── anon-tests.js │ │ │ │ │ ├── anonSimple.html │ │ │ │ │ ├── blue.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── green.js │ │ │ │ │ ├── magenta.js │ │ │ │ │ ├── message.txt │ │ │ │ │ ├── red.js │ │ │ │ │ ├── sub │ │ │ │ │ │ └── b.js │ │ │ │ │ └── yellow.js │ │ │ │ ├── bar │ │ │ │ ├── baseUrl.html │ │ │ │ ├── browsertests │ │ │ │ │ ├── appendbeforeload │ │ │ │ │ │ ├── one.dphpd │ │ │ │ │ │ ├── test.html │ │ │ │ │ │ └── two.js │ │ │ │ │ ├── async │ │ │ │ │ │ ├── async.php │ │ │ │ │ │ ├── one.php │ │ │ │ │ │ └── two.js │ │ │ │ │ ├── common.js │ │ │ │ │ ├── docwritenested │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── one.js │ │ │ │ │ │ └── two.js │ │ │ │ │ ├── functionToString.html │ │ │ │ │ ├── noload │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── server.js │ │ │ │ │ ├── onerror │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── ok.js │ │ │ │ │ │ ├── parseError.js │ │ │ │ │ │ └── scriptError.js │ │ │ │ │ ├── scriptload │ │ │ │ │ │ ├── eight.js │ │ │ │ │ │ ├── five.js │ │ │ │ │ │ ├── four.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nine.js │ │ │ │ │ │ ├── one.js │ │ │ │ │ │ ├── seven.js │ │ │ │ │ │ ├── six.js │ │ │ │ │ │ ├── three.js │ │ │ │ │ │ └── two.js │ │ │ │ │ ├── scriptloadinteractive │ │ │ │ │ │ ├── eight.js │ │ │ │ │ │ ├── five.js │ │ │ │ │ │ ├── four.js │ │ │ │ │ │ ├── four.php │ │ │ │ │ │ ├── index-php.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nine.js │ │ │ │ │ │ ├── one.js │ │ │ │ │ │ ├── seven.js │ │ │ │ │ │ ├── six.js │ │ │ │ │ │ ├── six.php │ │ │ │ │ │ ├── three.js │ │ │ │ │ │ └── two.js │ │ │ │ │ ├── scriptloadinteractiveattach │ │ │ │ │ │ ├── eight.js │ │ │ │ │ │ ├── five.js │ │ │ │ │ │ ├── four.js │ │ │ │ │ │ ├── four.php │ │ │ │ │ │ ├── index-php.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nine.js │ │ │ │ │ │ ├── one.js │ │ │ │ │ │ ├── seven.js │ │ │ │ │ │ ├── six.js │ │ │ │ │ │ ├── six.php │ │ │ │ │ │ ├── three.js │ │ │ │ │ │ └── two.js │ │ │ │ │ └── vardefine │ │ │ │ │ │ ├── define.js │ │ │ │ │ │ ├── four.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── one.js │ │ │ │ │ │ ├── three.js │ │ │ │ │ │ └── two.js │ │ │ │ ├── circular-tests.js │ │ │ │ ├── circular.html │ │ │ │ ├── circular │ │ │ │ │ ├── 414 │ │ │ │ │ │ ├── 414-tests.js │ │ │ │ │ │ ├── 414.html │ │ │ │ │ │ ├── A.js │ │ │ │ │ │ ├── B.js │ │ │ │ │ │ ├── C.js │ │ │ │ │ │ └── MyClass.js │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── circularPlugin-tests.js │ │ │ │ │ ├── circularPlugin.html │ │ │ │ │ ├── complexPlugin │ │ │ │ │ │ ├── complexPlugin-tests.js │ │ │ │ │ │ ├── complexPlugin.html │ │ │ │ │ │ ├── helper.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── slowText.js │ │ │ │ │ │ ├── toolbar.html │ │ │ │ │ │ ├── toolbar.js │ │ │ │ │ │ ├── viewport.html │ │ │ │ │ │ └── viewport.js │ │ │ │ │ ├── plugin.js │ │ │ │ │ └── transpiler │ │ │ │ │ │ ├── a.refine │ │ │ │ │ │ ├── b.refine │ │ │ │ │ │ ├── c.refine │ │ │ │ │ │ ├── d.refine │ │ │ │ │ │ ├── e.refine │ │ │ │ │ │ ├── transpiler-tests.js │ │ │ │ │ │ └── transpiler.html │ │ │ │ ├── cjsSpace │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── cjsDotRequire-tests.js │ │ │ │ │ ├── cjsDotRequire.html │ │ │ │ │ ├── cjsSpace-tests.js │ │ │ │ │ └── cjsSpace.html │ │ │ │ ├── commonjs │ │ │ │ │ └── tests │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── 1.0 │ │ │ │ │ │ ├── absolute │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── program.html │ │ │ │ │ │ ├── program.js │ │ │ │ │ │ ├── submodule │ │ │ │ │ │ │ └── a.js │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── all.html │ │ │ │ │ │ ├── cyclic │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── program.html │ │ │ │ │ │ ├── program.js │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── determinism │ │ │ │ │ │ ├── program.html │ │ │ │ │ │ ├── program.js │ │ │ │ │ │ ├── submodule │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── exactExports │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── program.html │ │ │ │ │ │ ├── program.js │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── hasOwnProperty │ │ │ │ │ │ ├── method │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── program.html │ │ │ │ │ │ ├── program.js │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── missing │ │ │ │ │ │ ├── program.html │ │ │ │ │ │ ├── program.js │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── monkeys │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── program.html │ │ │ │ │ │ ├── program.js │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── nested │ │ │ │ │ │ ├── a │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ │ └── c │ │ │ │ │ │ │ │ └── d.js │ │ │ │ │ │ ├── program.html │ │ │ │ │ │ ├── program.js │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── relative │ │ │ │ │ │ ├── program.html │ │ │ │ │ │ ├── program.js │ │ │ │ │ │ ├── submodule │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── system.js │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── transitive │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ ├── program.html │ │ │ │ │ │ ├── program.js │ │ │ │ │ │ └── test.js │ │ │ │ ├── config.html │ │ │ │ ├── configRequirejs.html │ │ │ │ ├── dataMain │ │ │ │ │ ├── baseUrl │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── dataMainBaseUrl.html │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── dataMain.html │ │ │ │ │ ├── dataMain.js │ │ │ │ │ └── dataMainIndex │ │ │ │ │ │ ├── dataMainIndex.html │ │ │ │ │ │ └── index.js │ │ │ │ ├── defineDouble │ │ │ │ │ └── defineDouble.html │ │ │ │ ├── definedSpecified │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── definedSpecified-tests.js │ │ │ │ │ └── definedSpecified.html │ │ │ │ ├── delayedDefine │ │ │ │ │ ├── delayedDefine-tests.js │ │ │ │ │ └── delayedDefine.html │ │ │ │ ├── depEmpty.html │ │ │ │ ├── depoverlap.html │ │ │ │ ├── depoverlap.js │ │ │ │ ├── dimple.js │ │ │ │ ├── doh │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README │ │ │ │ │ ├── _browserRunner.js │ │ │ │ │ ├── _nodeRunner.js │ │ │ │ │ ├── _rhinoRunner.js │ │ │ │ │ ├── _sounds │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── doh.wav │ │ │ │ │ │ ├── dohaaa.wav │ │ │ │ │ │ └── woohoo.wav │ │ │ │ │ ├── runner.html │ │ │ │ │ ├── runner.js │ │ │ │ │ ├── runner.sh │ │ │ │ │ └── small_logo.png │ │ │ │ ├── domReady │ │ │ │ │ ├── domReady-tests.js │ │ │ │ │ ├── domReady.html │ │ │ │ │ ├── domReadyExtraConfig-tests.js │ │ │ │ │ ├── domReadyExtraConfig.html │ │ │ │ │ ├── one.js │ │ │ │ │ └── two.js │ │ │ │ ├── dos.js │ │ │ │ ├── error │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── d.js │ │ │ │ │ ├── defineError.js │ │ │ │ │ ├── defineErrorLocal.html │ │ │ │ │ ├── doubleRequire │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── doubleRequire.html │ │ │ │ │ ├── errorContinue.html │ │ │ │ │ ├── errorContinueLocal.html │ │ │ │ │ ├── globalOnError.html │ │ │ │ │ ├── plug.js │ │ │ │ │ ├── pluginErrorContinue.html │ │ │ │ │ ├── pluginErrorContinueLocal.html │ │ │ │ │ └── requireErrback.html │ │ │ │ ├── exports │ │ │ │ │ ├── am.js │ │ │ │ │ ├── assign.js │ │ │ │ │ ├── assign2.js │ │ │ │ │ ├── bm.js │ │ │ │ │ ├── cm.js │ │ │ │ │ ├── exports-tests.js │ │ │ │ │ ├── exports.html │ │ │ │ │ ├── funcSet.js │ │ │ │ │ ├── implicitModule.js │ │ │ │ │ ├── moduleAndExports-tests.js │ │ │ │ │ ├── moduleAndExports.html │ │ │ │ │ ├── simpleReturn.js │ │ │ │ │ ├── usethis.js │ │ │ │ │ └── vanilla.js │ │ │ │ ├── foo │ │ │ │ ├── func.js │ │ │ │ ├── funcFour.js │ │ │ │ ├── funcOne.js │ │ │ │ ├── funcThree.js │ │ │ │ ├── funcTwo.js │ │ │ │ ├── hasOwnProperty │ │ │ │ ├── i18n │ │ │ │ │ ├── common.html │ │ │ │ │ ├── commonA.js │ │ │ │ │ ├── commonB.js │ │ │ │ │ ├── i18n.html │ │ │ │ │ ├── nls │ │ │ │ │ │ ├── colors.js │ │ │ │ │ │ ├── en-us-surfer │ │ │ │ │ │ │ └── colors.js │ │ │ │ │ │ └── fr │ │ │ │ │ │ │ └── colors.js │ │ │ │ │ └── testModule.js │ │ │ │ ├── index.html │ │ │ │ ├── isBrowser │ │ │ │ │ ├── a.js │ │ │ │ │ ├── isBrowser-tests.js │ │ │ │ │ └── isBrowser.html │ │ │ │ ├── issue379 │ │ │ │ │ ├── issue379.html │ │ │ │ │ └── issue379.js │ │ │ │ ├── jquery │ │ │ │ │ ├── jquery.html │ │ │ │ │ ├── jqueryDynamic.html │ │ │ │ │ ├── jqueryDynamic2.html │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ ├── dynamicApp.js │ │ │ │ │ │ ├── jquery-1.7.1.js │ │ │ │ │ │ ├── jquery-GPL-LICENSE.txt │ │ │ │ │ │ ├── jquery-MIT-LICENSE.txt │ │ │ │ │ │ ├── jquery.alpha.js │ │ │ │ │ │ ├── jquery.beta.js │ │ │ │ │ │ ├── jquery.epsilon.js │ │ │ │ │ │ └── jquery.gamma.js │ │ │ │ ├── jsonp │ │ │ │ │ ├── jsonp.html │ │ │ │ │ ├── lamp.js │ │ │ │ │ └── twitter.html │ │ │ │ ├── layers │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── epsilon.js │ │ │ │ │ ├── helloWorld.txt │ │ │ │ │ ├── layer1.js │ │ │ │ │ └── layers.html │ │ │ │ ├── map.js │ │ │ │ ├── mapConfig │ │ │ │ │ ├── a1.js │ │ │ │ │ ├── a1 │ │ │ │ │ │ └── sub │ │ │ │ │ │ │ └── one.js │ │ │ │ │ ├── adapter │ │ │ │ │ │ └── d.js │ │ │ │ │ ├── another │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ ├── c │ │ │ │ │ │ │ ├── dim.js │ │ │ │ │ │ │ └── sub.js │ │ │ │ │ │ └── minor.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── built │ │ │ │ │ │ ├── mapConfig-tests.js │ │ │ │ │ │ ├── mapConfigBuilt.html │ │ │ │ │ │ ├── mapConfigPlugin-tests.js │ │ │ │ │ │ ├── mapConfigPluginBuilt.html │ │ │ │ │ │ ├── mapConfigStar-tests.js │ │ │ │ │ │ ├── mapConfigStarAdapter-tests.js │ │ │ │ │ │ ├── mapConfigStarAdapterBuilt.html │ │ │ │ │ │ └── mapConfigStarBuilt.html │ │ │ │ │ ├── c.js │ │ │ │ │ ├── c │ │ │ │ │ │ └── sub.js │ │ │ │ │ ├── c1.js │ │ │ │ │ ├── c1 │ │ │ │ │ │ └── sub.js │ │ │ │ │ ├── c2.js │ │ │ │ │ ├── c2 │ │ │ │ │ │ └── sub.js │ │ │ │ │ ├── d.js │ │ │ │ │ ├── e.js │ │ │ │ │ ├── mapConfig-tests.js │ │ │ │ │ ├── mapConfig.html │ │ │ │ │ ├── mapConfigDelayed-tests.js │ │ │ │ │ ├── mapConfigDelayed.html │ │ │ │ │ ├── mapConfigMulti-tests.js │ │ │ │ │ ├── mapConfigMulti.html │ │ │ │ │ ├── mapConfigPlugin-tests.js │ │ │ │ │ ├── mapConfigPlugin.html │ │ │ │ │ ├── mapConfigRelative-tests.js │ │ │ │ │ ├── mapConfigRelative.html │ │ │ │ │ ├── mapConfigSpecificity-tests.js │ │ │ │ │ ├── mapConfigSpecificity.html │ │ │ │ │ ├── mapConfigStar-tests.js │ │ │ │ │ ├── mapConfigStar.html │ │ │ │ │ ├── mapConfigStarAdapter-tests.js │ │ │ │ │ ├── mapConfigStarAdapter.html │ │ │ │ │ ├── plug.js │ │ │ │ │ └── plug │ │ │ │ │ │ ├── c1.js │ │ │ │ │ │ ├── c2.js │ │ │ │ │ │ └── main.js │ │ │ │ ├── moduleConfig │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── moduleConfig-tests.js │ │ │ │ │ ├── moduleConfig.html │ │ │ │ │ └── plain.js │ │ │ │ ├── multiversion.html │ │ │ │ ├── nestedDefine │ │ │ │ │ ├── four.js │ │ │ │ │ ├── nestedDefine.html │ │ │ │ │ ├── nestedDefine2.html │ │ │ │ │ ├── nestedDefine2.js │ │ │ │ │ ├── one.js │ │ │ │ │ └── two.js │ │ │ │ ├── nestedRelativeRequire │ │ │ │ │ ├── main.js │ │ │ │ │ ├── nestedRelativeRequire.html │ │ │ │ │ └── sub │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ ├── nestedRequire │ │ │ │ │ ├── a.js │ │ │ │ │ ├── base.js │ │ │ │ │ ├── nestedRequire-tests.js │ │ │ │ │ └── nestedRequire.html │ │ │ │ ├── nestedRequireConfig │ │ │ │ │ ├── nestedRequireConfig.html │ │ │ │ │ └── nestedRequireConfig.js │ │ │ │ ├── onResourceLoad │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── nestedRequire-tests.js │ │ │ │ │ └── nestedRequire.html │ │ │ │ ├── one.js │ │ │ │ ├── packages │ │ │ │ │ ├── bar │ │ │ │ │ │ └── 0.4 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── baz │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── helper.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── config │ │ │ │ │ │ ├── config.html │ │ │ │ │ │ └── pixie │ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── dojox │ │ │ │ │ │ ├── door.js │ │ │ │ │ │ └── window │ │ │ │ │ │ │ ├── pane.js │ │ │ │ │ │ │ └── window.js │ │ │ │ │ ├── foo │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ └── second.js │ │ │ │ │ ├── funky │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── monkey.js │ │ │ │ │ ├── optimizing │ │ │ │ │ │ ├── build.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── optimizing-built.html │ │ │ │ │ │ ├── optimizing.html │ │ │ │ │ │ └── packages │ │ │ │ │ │ │ ├── engine │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ ├── pistons.js │ │ │ │ │ │ │ └── sparkplugs.js │ │ │ │ │ │ │ ├── fuel │ │ │ │ │ │ │ └── main.js │ │ │ │ │ │ │ └── tires │ │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── packages-tests.js │ │ │ │ │ ├── packages.html │ │ │ │ │ ├── pkgs │ │ │ │ │ │ ├── alpha │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ └── replace.js │ │ │ │ │ │ ├── beta │ │ │ │ │ │ │ └── 0.2 │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ ├── beta.js │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ └── dojox │ │ │ │ │ │ │ ├── chair │ │ │ │ │ │ │ ├── legs.js │ │ │ │ │ │ │ └── main.js │ │ │ │ │ │ │ └── table │ │ │ │ │ │ │ ├── legs.js │ │ │ │ │ │ │ └── table.js │ │ │ │ │ └── replace.js │ │ │ │ ├── pathArray │ │ │ │ │ ├── pathArray.html │ │ │ │ │ ├── pathArrayFail.html │ │ │ │ │ └── real.js │ │ │ │ ├── paths │ │ │ │ │ ├── first.js │ │ │ │ │ │ ├── first.js │ │ │ │ │ │ └── second.js │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── array.js │ │ │ │ │ │ └── util.js │ │ │ │ │ ├── paths.html │ │ │ │ │ ├── relativeModuleId-tests.js │ │ │ │ │ ├── relativeModuleId.html │ │ │ │ │ ├── relativeNormalize │ │ │ │ │ │ ├── bar │ │ │ │ │ │ │ └── baz.js │ │ │ │ │ │ ├── foo2.js │ │ │ │ │ │ ├── relativeNormalize-tests.js │ │ │ │ │ │ └── relativeNormalize.html │ │ │ │ │ └── util.js │ │ │ │ ├── plugins │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── delegated │ │ │ │ │ │ ├── a.refine │ │ │ │ │ │ ├── delegated-tests.js │ │ │ │ │ │ ├── delegated.html │ │ │ │ │ │ └── delegated.js │ │ │ │ │ ├── double.html │ │ │ │ │ ├── double.js │ │ │ │ │ ├── earth.js │ │ │ │ │ ├── fromText │ │ │ │ │ │ ├── a.refine │ │ │ │ │ │ ├── b.refine │ │ │ │ │ │ ├── fromText-tests.js │ │ │ │ │ │ ├── fromText.html │ │ │ │ │ │ ├── fromTextConfig-tests.js │ │ │ │ │ │ ├── fromTextConfig.html │ │ │ │ │ │ └── refine.js │ │ │ │ │ ├── fromTextEvalError │ │ │ │ │ │ ├── a.refine │ │ │ │ │ │ ├── b.refine │ │ │ │ │ │ ├── fromTextEvalError-tests.js │ │ │ │ │ │ └── fromTextEvalError.html │ │ │ │ │ ├── fromTextNoDefine │ │ │ │ │ │ ├── a.refine │ │ │ │ │ │ ├── fromTextNoDefine-tests.js │ │ │ │ │ │ ├── fromTextNoDefine.html │ │ │ │ │ │ └── refine.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── indexBuilder.js │ │ │ │ │ ├── nameOnly-tests.js │ │ │ │ │ ├── nameOnly.html │ │ │ │ │ ├── nameOnly.js │ │ │ │ │ ├── onerror │ │ │ │ │ │ ├── onerror-tests.js │ │ │ │ │ │ ├── onerror.html │ │ │ │ │ │ └── thrower.js │ │ │ │ │ ├── pluginLast │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ ├── bigCollection.html │ │ │ │ │ │ ├── bigCollection.js │ │ │ │ │ │ ├── collection.js │ │ │ │ │ │ ├── collectionHelper.js │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── component.html │ │ │ │ │ │ ├── component.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── pluginLast.html │ │ │ │ │ │ ├── specificCollection.html │ │ │ │ │ │ └── specificCollection.js │ │ │ │ │ ├── pluginMap │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ │ ├── employee.js │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ ├── person.js │ │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ │ └── pluginMapDynamic.html │ │ │ │ │ │ ├── pluginMap-tests.js │ │ │ │ │ │ └── pluginMap.html │ │ │ │ │ ├── pluginMapSameName │ │ │ │ │ │ ├── plugin │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ ├── pluginMapSameName-tests.js │ │ │ │ │ │ └── pluginMapSameName.html │ │ │ │ │ ├── pluginShim │ │ │ │ │ │ ├── a.refine │ │ │ │ │ │ ├── legacy.js │ │ │ │ │ │ ├── pluginShim-tests.js │ │ │ │ │ │ └── pluginShim.html │ │ │ │ │ ├── prime │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── earth.js │ │ │ │ │ ├── sync-tests.js │ │ │ │ │ ├── sync.html │ │ │ │ │ └── textDepend │ │ │ │ │ │ ├── test.txt │ │ │ │ │ │ ├── textDepend-tests.js │ │ │ │ │ │ ├── textDepend.html │ │ │ │ │ │ └── textDepend.js │ │ │ │ ├── queryPath.html │ │ │ │ ├── relative │ │ │ │ │ ├── foo │ │ │ │ │ │ ├── bar.js │ │ │ │ │ │ ├── bar │ │ │ │ │ │ │ ├── message.txt │ │ │ │ │ │ │ ├── one.js │ │ │ │ │ │ │ └── two.js │ │ │ │ │ │ └── three.js │ │ │ │ │ ├── greek │ │ │ │ │ │ ├── alpha.js │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── outsideBaseUrl │ │ │ │ │ │ ├── 2.js │ │ │ │ │ │ ├── a │ │ │ │ │ │ │ └── outsideBaseUrl.html │ │ │ │ │ │ └── b │ │ │ │ │ │ │ ├── 1.js │ │ │ │ │ │ │ └── 3.js │ │ │ │ │ ├── relative-tests.js │ │ │ │ │ ├── relative.html │ │ │ │ │ ├── relativeBaseUrl-tests.js │ │ │ │ │ ├── relativeBaseUrl.html │ │ │ │ │ └── top.js │ │ │ │ ├── remoteUrls │ │ │ │ │ ├── jqwrap.js │ │ │ │ │ ├── remoteUrls-tests.js │ │ │ │ │ └── remoteUrls.html │ │ │ │ ├── requireAsync │ │ │ │ │ ├── requireAsync-tests.js │ │ │ │ │ └── requireAsync.html │ │ │ │ ├── requirePluginLoad │ │ │ │ │ ├── requirePluginLoad-tests.js │ │ │ │ │ └── requirePluginLoad.html │ │ │ │ ├── shim │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── basic-tests.js │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── built │ │ │ │ │ │ ├── basic-built.html │ │ │ │ │ │ └── basic-tests.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── d.js │ │ │ │ │ ├── e.js │ │ │ │ │ └── f.js │ │ │ │ ├── simple-badbase.html │ │ │ │ ├── simple-nohead.html │ │ │ │ ├── simple-tests.js │ │ │ │ ├── simple.html │ │ │ │ ├── simple.js │ │ │ │ ├── specialDeps │ │ │ │ │ ├── foo.js │ │ │ │ │ ├── specialDeps-tests.js │ │ │ │ │ └── specialDeps.html │ │ │ │ ├── text │ │ │ │ │ ├── local.js │ │ │ │ │ ├── plain.txt │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── local.html │ │ │ │ │ │ └── sample.html │ │ │ │ │ ├── separate.js │ │ │ │ │ ├── subwidget.html │ │ │ │ │ ├── subwidget.js │ │ │ │ │ ├── subwidget2.html │ │ │ │ │ ├── text.html │ │ │ │ │ ├── textBuilt.html │ │ │ │ │ ├── textBuilt.js │ │ │ │ │ ├── textOnError.html │ │ │ │ │ ├── textOnXhr.html │ │ │ │ │ ├── textOnly.html │ │ │ │ │ ├── widget.html │ │ │ │ │ └── widget.js │ │ │ │ ├── toUrl │ │ │ │ │ ├── .hidden.html │ │ │ │ │ ├── auxil.html │ │ │ │ │ ├── main.html │ │ │ │ │ ├── main.js │ │ │ │ │ ├── sub │ │ │ │ │ │ ├── nested │ │ │ │ │ │ │ └── thing.js │ │ │ │ │ │ ├── noext │ │ │ │ │ │ ├── util.html │ │ │ │ │ │ └── util.js │ │ │ │ │ ├── toUrl-tests.js │ │ │ │ │ └── toUrl.html │ │ │ │ ├── trailingComma │ │ │ │ │ ├── a.js │ │ │ │ │ ├── trailingComma.html │ │ │ │ │ └── trailingComma.js │ │ │ │ ├── tres.js │ │ │ │ ├── two.js │ │ │ │ ├── undef │ │ │ │ │ ├── globalFoo.js │ │ │ │ │ ├── real.js │ │ │ │ │ ├── undef.html │ │ │ │ │ ├── undefEnforceShim.html │ │ │ │ │ ├── undefLocal.html │ │ │ │ │ └── undefNoRequire.html │ │ │ │ ├── uniques │ │ │ │ │ ├── one.js │ │ │ │ │ ├── three.js │ │ │ │ │ ├── two.js │ │ │ │ │ └── uniques.html │ │ │ │ ├── universal │ │ │ │ │ ├── eye.js │ │ │ │ │ ├── newt.js │ │ │ │ │ ├── spell.js │ │ │ │ │ ├── tail.js │ │ │ │ │ ├── universal-built.html │ │ │ │ │ ├── universal-tests-built-expected.js │ │ │ │ │ ├── universal-tests-built.js │ │ │ │ │ ├── universal-tests.js │ │ │ │ │ └── universal.html │ │ │ │ ├── uno.js │ │ │ │ ├── urlArgsToUrl.html │ │ │ │ ├── urlfetch │ │ │ │ │ ├── one.js │ │ │ │ │ ├── three.js │ │ │ │ │ ├── two.js │ │ │ │ │ └── urlfetch.html │ │ │ │ ├── version1 │ │ │ │ │ ├── alpha.js │ │ │ │ │ ├── beta.js │ │ │ │ │ ├── gamma.js │ │ │ │ │ └── omega.js │ │ │ │ ├── version2 │ │ │ │ │ ├── alpha.js │ │ │ │ │ ├── beta.js │ │ │ │ │ ├── epsilon.js │ │ │ │ │ └── omega.js │ │ │ │ ├── workers.html │ │ │ │ └── workers.js │ │ │ └── updatesubs.sh │ │ ├── sass-bootstrap │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── bootstrap-2.3.2.css │ │ │ ├── bootstrap-2.3.2.min.css │ │ │ ├── bootstrap-responsive-2.3.2.css │ │ │ ├── bootstrap-responsive-2.3.2.min.css │ │ │ ├── component.json │ │ │ ├── composer.json │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ ├── js │ │ │ │ ├── .jshintrc │ │ │ │ ├── bootstrap-affix.js │ │ │ │ ├── bootstrap-alert.js │ │ │ │ ├── bootstrap-button.js │ │ │ │ ├── bootstrap-carousel.js │ │ │ │ ├── bootstrap-collapse.js │ │ │ │ ├── bootstrap-dropdown.js │ │ │ │ ├── bootstrap-modal.js │ │ │ │ ├── bootstrap-popover.js │ │ │ │ ├── bootstrap-scrollspy.js │ │ │ │ ├── bootstrap-tab.js │ │ │ │ ├── bootstrap-tooltip.js │ │ │ │ ├── bootstrap-transition.js │ │ │ │ ├── bootstrap-typeahead.js │ │ │ │ └── tests │ │ │ │ │ ├── index.html │ │ │ │ │ ├── phantom.js │ │ │ │ │ ├── server.js │ │ │ │ │ ├── unit │ │ │ │ │ ├── bootstrap-affix.js │ │ │ │ │ ├── bootstrap-alert.js │ │ │ │ │ ├── bootstrap-button.js │ │ │ │ │ ├── bootstrap-carousel.js │ │ │ │ │ ├── bootstrap-collapse.js │ │ │ │ │ ├── bootstrap-dropdown.js │ │ │ │ │ ├── bootstrap-modal.js │ │ │ │ │ ├── bootstrap-phantom.js │ │ │ │ │ ├── bootstrap-popover.js │ │ │ │ │ ├── bootstrap-scrollspy.js │ │ │ │ │ ├── bootstrap-tab.js │ │ │ │ │ ├── bootstrap-tooltip.js │ │ │ │ │ ├── bootstrap-transition.js │ │ │ │ │ └── bootstrap-typeahead.js │ │ │ │ │ └── vendor │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── qunit.css │ │ │ │ │ └── qunit.js │ │ │ ├── lib │ │ │ │ ├── _accordion.scss │ │ │ │ ├── _alerts.scss │ │ │ │ ├── _breadcrumbs.scss │ │ │ │ ├── _button-groups.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _close.scss │ │ │ │ ├── _code.scss │ │ │ │ ├── _component-animations.scss │ │ │ │ ├── _dropdowns.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _hero-unit.scss │ │ │ │ ├── _labels-badges.scss │ │ │ │ ├── _layouts.scss │ │ │ │ ├── _media.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _modals.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _navs.scss │ │ │ │ ├── _pager.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _popovers.scss │ │ │ │ ├── _progress-bars.scss │ │ │ │ ├── _reset.scss │ │ │ │ ├── _responsive-1200px-min.scss │ │ │ │ ├── _responsive-767px-max.scss │ │ │ │ ├── _responsive-768px-979px.scss │ │ │ │ ├── _responsive-navbar.scss │ │ │ │ ├── _responsive-utilities.scss │ │ │ │ ├── _scaffolding.scss │ │ │ │ ├── _sprites.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _thumbnails.scss │ │ │ │ ├── _tooltip.scss │ │ │ │ ├── _type.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── _wells.scss │ │ │ │ ├── bootstrap.scss │ │ │ │ ├── responsive.scss │ │ │ │ └── tests │ │ │ │ │ ├── buttons.html │ │ │ │ │ ├── css-tests.css │ │ │ │ │ ├── css-tests.html │ │ │ │ │ ├── forms-responsive.html │ │ │ │ │ ├── forms.html │ │ │ │ │ ├── navbar-fixed-top.html │ │ │ │ │ ├── navbar-static-top.html │ │ │ │ │ └── navbar.html │ │ │ └── package.json │ │ └── underscore-amd │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── CNAME │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ ├── arrays.js │ │ │ ├── chaining.js │ │ │ ├── collections.js │ │ │ ├── functions.js │ │ │ ├── index.html │ │ │ ├── objects.js │ │ │ ├── speed.js │ │ │ ├── utility.js │ │ │ └── vendor │ │ │ │ ├── jquery.js │ │ │ │ ├── jslitmus.js │ │ │ │ ├── qunit.css │ │ │ │ ├── qunit.js │ │ │ │ └── runner.js │ │ │ ├── underscore-min.js │ │ │ ├── underscore-min.map │ │ │ └── underscore.js │ ├── favicon.ico │ ├── images │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ └── logo.png │ ├── index.html │ ├── robots.txt │ ├── scripts │ │ ├── app.js │ │ ├── main.js │ │ └── vendor │ │ │ └── bootstrap.js │ └── styles │ │ ├── inktank_colors.scss │ │ ├── inktank_fonts.scss │ │ ├── login.scss │ │ └── main.scss ├── bower.json ├── package.json └── test │ ├── index.html │ ├── lib │ ├── chai.js │ ├── expect.js │ └── mocha │ │ ├── mocha.css │ │ └── mocha.js │ └── spec │ └── test.js ├── manage ├── .bowerrc ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── Makefile ├── README.md ├── app │ ├── .buildignore │ ├── .htaccess │ ├── 404.html │ ├── bower_components │ │ ├── angular-animate │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── angular-animate.js │ │ │ ├── angular-animate.min.js │ │ │ ├── angular-animate.min.js.map │ │ │ └── bower.json │ │ ├── angular-cookies │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── angular-cookies.js │ │ │ ├── angular-cookies.min.js │ │ │ ├── angular-cookies.min.js.map │ │ │ └── bower.json │ │ ├── angular-growl │ │ │ ├── .bower.json │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build │ │ │ │ ├── angular-growl.js │ │ │ │ ├── angular-growl.min.css │ │ │ │ └── angular-growl.min.js │ │ │ └── doc │ │ │ │ └── screenshot.jpg │ │ ├── angular-mocks │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── angular-mocks.js │ │ │ └── bower.json │ │ ├── angular-resource │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── angular-resource.js │ │ │ ├── angular-resource.min.js │ │ │ ├── angular-resource.min.js.map │ │ │ └── bower.json │ │ ├── angular-route │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── angular-route.js │ │ │ ├── angular-route.min.js │ │ │ ├── angular-route.min.js.map │ │ │ └── bower.json │ │ ├── angular-sanitize │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── angular-sanitize.js │ │ │ ├── angular-sanitize.min.js │ │ │ ├── angular-sanitize.min.js.map │ │ │ └── bower.json │ │ ├── angular-scenario │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── angular-scenario.js │ │ │ ├── bower.json │ │ │ ├── jstd-scenario-adapter-config.js │ │ │ └── jstd-scenario-adapter.js │ │ ├── angular-strap │ │ │ ├── .bower.json │ │ │ ├── .bowerrc │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .jshintrc │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── angular-strap.nuspec │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── angular-strap.js │ │ │ │ ├── angular-strap.min.js │ │ │ │ ├── angular-strap.min.map │ │ │ │ ├── angular-strap.tpl.js │ │ │ │ ├── angular-strap.tpl.min.js │ │ │ │ ├── angular-strap.tpl.min.map │ │ │ │ └── modules │ │ │ │ │ ├── affix.js │ │ │ │ │ ├── affix.min.js │ │ │ │ │ ├── affix.min.map │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── alert.min.js │ │ │ │ │ ├── alert.min.map │ │ │ │ │ ├── alert.tpl.js │ │ │ │ │ ├── alert.tpl.min.js │ │ │ │ │ ├── alert.tpl.min.map │ │ │ │ │ ├── aside.js │ │ │ │ │ ├── aside.min.js │ │ │ │ │ ├── aside.min.map │ │ │ │ │ ├── aside.tpl.js │ │ │ │ │ ├── aside.tpl.min.js │ │ │ │ │ ├── aside.tpl.min.map │ │ │ │ │ ├── button.js │ │ │ │ │ ├── button.min.js │ │ │ │ │ ├── button.min.map │ │ │ │ │ ├── date-parser.js │ │ │ │ │ ├── date-parser.min.js │ │ │ │ │ ├── date-parser.min.map │ │ │ │ │ ├── datepicker.js │ │ │ │ │ ├── datepicker.min.js │ │ │ │ │ ├── datepicker.min.map │ │ │ │ │ ├── datepicker.tpl.js │ │ │ │ │ ├── datepicker.tpl.min.js │ │ │ │ │ ├── datepicker.tpl.min.map │ │ │ │ │ ├── debounce.js │ │ │ │ │ ├── debounce.min.js │ │ │ │ │ ├── debounce.min.map │ │ │ │ │ ├── dimensions.js │ │ │ │ │ ├── dimensions.min.js │ │ │ │ │ ├── dimensions.min.map │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── dropdown.min.js │ │ │ │ │ ├── dropdown.min.map │ │ │ │ │ ├── dropdown.tpl.js │ │ │ │ │ ├── dropdown.tpl.min.js │ │ │ │ │ ├── dropdown.tpl.min.map │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── modal.min.js │ │ │ │ │ ├── modal.min.map │ │ │ │ │ ├── modal.tpl.js │ │ │ │ │ ├── modal.tpl.min.js │ │ │ │ │ ├── modal.tpl.min.map │ │ │ │ │ ├── module.js │ │ │ │ │ ├── module.min.js │ │ │ │ │ ├── module.min.map │ │ │ │ │ ├── navbar.js │ │ │ │ │ ├── navbar.min.js │ │ │ │ │ ├── navbar.min.map │ │ │ │ │ ├── parse-options.js │ │ │ │ │ ├── parse-options.min.js │ │ │ │ │ ├── parse-options.min.map │ │ │ │ │ ├── popover.js │ │ │ │ │ ├── popover.min.js │ │ │ │ │ ├── popover.min.map │ │ │ │ │ ├── popover.tpl.js │ │ │ │ │ ├── popover.tpl.min.js │ │ │ │ │ ├── popover.tpl.min.map │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ ├── scrollspy.min.js │ │ │ │ │ ├── scrollspy.min.map │ │ │ │ │ ├── select.js │ │ │ │ │ ├── select.min.js │ │ │ │ │ ├── select.min.map │ │ │ │ │ ├── select.tpl.js │ │ │ │ │ ├── select.tpl.min.js │ │ │ │ │ ├── select.tpl.min.map │ │ │ │ │ ├── tab.js │ │ │ │ │ ├── tab.min.js │ │ │ │ │ ├── tab.min.map │ │ │ │ │ ├── tab.tpl.js │ │ │ │ │ ├── tab.tpl.min.js │ │ │ │ │ ├── tab.tpl.min.map │ │ │ │ │ ├── timepicker.js │ │ │ │ │ ├── timepicker.min.js │ │ │ │ │ ├── timepicker.min.map │ │ │ │ │ ├── timepicker.tpl.js │ │ │ │ │ ├── timepicker.tpl.min.js │ │ │ │ │ ├── timepicker.tpl.min.map │ │ │ │ │ ├── tooltip.js │ │ │ │ │ ├── tooltip.min.js │ │ │ │ │ ├── tooltip.min.map │ │ │ │ │ ├── tooltip.tpl.js │ │ │ │ │ ├── tooltip.tpl.min.js │ │ │ │ │ ├── tooltip.tpl.min.map │ │ │ │ │ ├── typeahead.js │ │ │ │ │ ├── typeahead.min.js │ │ │ │ │ ├── typeahead.min.map │ │ │ │ │ ├── typeahead.tpl.js │ │ │ │ │ ├── typeahead.tpl.min.js │ │ │ │ │ └── typeahead.tpl.min.map │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── affix │ │ │ │ └── affix.js │ │ │ │ ├── alert │ │ │ │ ├── alert.js │ │ │ │ └── alert.tpl.html │ │ │ │ ├── aside │ │ │ │ ├── aside.js │ │ │ │ └── aside.tpl.html │ │ │ │ ├── button │ │ │ │ └── button.js │ │ │ │ ├── datepicker │ │ │ │ ├── datepicker.js │ │ │ │ └── datepicker.tpl.html │ │ │ │ ├── dropdown │ │ │ │ ├── dropdown.js │ │ │ │ └── dropdown.tpl.html │ │ │ │ ├── helpers │ │ │ │ ├── date-parser.js │ │ │ │ ├── debounce.js │ │ │ │ ├── dimensions.js │ │ │ │ └── parse-options.js │ │ │ │ ├── modal │ │ │ │ ├── modal.js │ │ │ │ └── modal.tpl.html │ │ │ │ ├── module.js │ │ │ │ ├── navbar │ │ │ │ └── navbar.js │ │ │ │ ├── popover │ │ │ │ ├── popover.js │ │ │ │ └── popover.tpl.html │ │ │ │ ├── scrollspy │ │ │ │ └── scrollspy.js │ │ │ │ ├── select │ │ │ │ ├── select.js │ │ │ │ └── select.tpl.html │ │ │ │ ├── tab │ │ │ │ ├── tab.js │ │ │ │ └── tab.tpl.html │ │ │ │ ├── timepicker │ │ │ │ ├── timepicker.js │ │ │ │ └── timepicker.tpl.html │ │ │ │ ├── tooltip │ │ │ │ ├── tooltip.js │ │ │ │ └── tooltip.tpl.html │ │ │ │ └── typeahead │ │ │ │ ├── typeahead.js │ │ │ │ └── typeahead.tpl.html │ │ ├── angular │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── angular-csp.css │ │ │ ├── angular.js │ │ │ ├── angular.min.js │ │ │ ├── angular.min.js.gzip │ │ │ ├── angular.min.js.map │ │ │ └── bower.json │ │ ├── bootstrap │ │ │ ├── .bower.json │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── browserstack.json │ │ │ ├── dist │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ └── bootstrap.min.js │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── js │ │ │ │ ├── affix.js │ │ │ │ ├── alert.js │ │ │ │ ├── button.js │ │ │ │ ├── carousel.js │ │ │ │ ├── collapse.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── modal.js │ │ │ │ ├── popover.js │ │ │ │ ├── scrollspy.js │ │ │ │ ├── tab.js │ │ │ │ ├── tooltip.js │ │ │ │ └── transition.js │ │ │ ├── less │ │ │ │ ├── alerts.less │ │ │ │ ├── badges.less │ │ │ │ ├── bootstrap.less │ │ │ │ ├── breadcrumbs.less │ │ │ │ ├── button-groups.less │ │ │ │ ├── buttons.less │ │ │ │ ├── carousel.less │ │ │ │ ├── close.less │ │ │ │ ├── code.less │ │ │ │ ├── component-animations.less │ │ │ │ ├── dropdowns.less │ │ │ │ ├── forms.less │ │ │ │ ├── glyphicons.less │ │ │ │ ├── grid.less │ │ │ │ ├── input-groups.less │ │ │ │ ├── jumbotron.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── media.less │ │ │ │ ├── mixins.less │ │ │ │ ├── modals.less │ │ │ │ ├── navbar.less │ │ │ │ ├── navs.less │ │ │ │ ├── normalize.less │ │ │ │ ├── pager.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── popovers.less │ │ │ │ ├── print.less │ │ │ │ ├── progress-bars.less │ │ │ │ ├── responsive-utilities.less │ │ │ │ ├── scaffolding.less │ │ │ │ ├── tables.less │ │ │ │ ├── theme.less │ │ │ │ ├── thumbnails.less │ │ │ │ ├── tooltip.less │ │ │ │ ├── type.less │ │ │ │ ├── utilities.less │ │ │ │ ├── variables.less │ │ │ │ └── wells.less │ │ │ ├── package.json │ │ │ └── test-infra │ │ │ │ ├── README.md │ │ │ │ ├── npm-shrinkwrap.canonical.json │ │ │ │ ├── requirements.txt │ │ │ │ ├── s3_cache.py │ │ │ │ ├── sauce_browsers.yml │ │ │ │ ├── shrinkwrap.js │ │ │ │ └── uncached-npm-install.sh │ │ ├── es5-shim │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── CHANGES │ │ │ ├── CONTRIBUTORS.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── es5-sham.js │ │ │ ├── es5-sham.map │ │ │ ├── es5-sham.min.js │ │ │ ├── es5-shim.js │ │ │ ├── es5-shim.map │ │ │ ├── es5-shim.min.js │ │ │ ├── package.json │ │ │ └── tests │ │ │ │ ├── helpers │ │ │ │ ├── h-kill.js │ │ │ │ ├── h-matchers.js │ │ │ │ └── h.js │ │ │ │ ├── index.html │ │ │ │ ├── index.min.html │ │ │ │ ├── lib │ │ │ │ ├── jasmine-html.js │ │ │ │ ├── jasmine.css │ │ │ │ ├── jasmine.js │ │ │ │ ├── jasmine_favicon.png │ │ │ │ └── json2.js │ │ │ │ └── spec │ │ │ │ ├── s-array.js │ │ │ │ ├── s-date.js │ │ │ │ ├── s-function.js │ │ │ │ ├── s-number.js │ │ │ │ ├── s-object.js │ │ │ │ └── s-string.js │ │ ├── font-awesome │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── README.md │ │ │ ├── _config.yml │ │ │ ├── component.json │ │ │ ├── composer.json │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── extras.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── spinning.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ ├── package.json │ │ │ ├── scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _extras.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _spinning.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ │ └── src │ │ │ │ ├── 3.2.1 │ │ │ │ ├── CNAME │ │ │ │ ├── Makefile │ │ │ │ ├── assets │ │ │ │ │ ├── css │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ ├── pygments.css │ │ │ │ │ │ └── site.css │ │ │ │ │ ├── font-awesome.zip │ │ │ │ │ ├── font-awesome │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ ├── font │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ │ ├── less │ │ │ │ │ │ │ ├── bootstrap.less │ │ │ │ │ │ │ ├── core.less │ │ │ │ │ │ │ ├── extras.less │ │ │ │ │ │ │ ├── font-awesome-ie7.less │ │ │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ │ │ ├── icons.less │ │ │ │ │ │ │ ├── mixins.less │ │ │ │ │ │ │ ├── path.less │ │ │ │ │ │ │ └── variables.less │ │ │ │ │ │ └── scss │ │ │ │ │ │ │ ├── _bootstrap.scss │ │ │ │ │ │ │ ├── _core.scss │ │ │ │ │ │ │ ├── _extras.scss │ │ │ │ │ │ │ ├── _icons.scss │ │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ │ ├── _path.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ ├── font-awesome-ie7.scss │ │ │ │ │ │ │ └── font-awesome.scss │ │ │ │ │ ├── ico │ │ │ │ │ │ └── favicon.ico │ │ │ │ │ ├── img │ │ │ │ │ │ ├── contribution-sample.png │ │ │ │ │ │ ├── fort_awesome.jpg │ │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ │ │ └── icon-flag.pdf │ │ │ │ │ ├── js │ │ │ │ │ │ ├── ZeroClipboard-1.1.7.min.js │ │ │ │ │ │ ├── ZeroClipboard-1.1.7.swf │ │ │ │ │ │ ├── backbone.min.js │ │ │ │ │ │ ├── bootstrap-2.3.1.min.js │ │ │ │ │ │ ├── bootstrap-222.min.js │ │ │ │ │ │ ├── jquery-1.7.1.min.js │ │ │ │ │ │ ├── prettify.min.js │ │ │ │ │ │ ├── site.js │ │ │ │ │ │ └── underscore.min.js │ │ │ │ │ └── less │ │ │ │ │ │ ├── bootstrap-2.3.2 │ │ │ │ │ │ ├── accordion.less │ │ │ │ │ │ ├── alerts.less │ │ │ │ │ │ ├── bootstrap.less │ │ │ │ │ │ ├── breadcrumbs.less │ │ │ │ │ │ ├── button-groups.less │ │ │ │ │ │ ├── buttons.less │ │ │ │ │ │ ├── carousel.less │ │ │ │ │ │ ├── close.less │ │ │ │ │ │ ├── code.less │ │ │ │ │ │ ├── component-animations.less │ │ │ │ │ │ ├── dropdowns.less │ │ │ │ │ │ ├── forms.less │ │ │ │ │ │ ├── grid.less │ │ │ │ │ │ ├── hero-unit.less │ │ │ │ │ │ ├── labels-badges.less │ │ │ │ │ │ ├── layouts.less │ │ │ │ │ │ ├── media.less │ │ │ │ │ │ ├── mixins.less │ │ │ │ │ │ ├── modals.less │ │ │ │ │ │ ├── navbar.less │ │ │ │ │ │ ├── navs.less │ │ │ │ │ │ ├── pager.less │ │ │ │ │ │ ├── pagination.less │ │ │ │ │ │ ├── popovers.less │ │ │ │ │ │ ├── progress-bars.less │ │ │ │ │ │ ├── reset.less │ │ │ │ │ │ ├── responsive-1200px-min.less │ │ │ │ │ │ ├── responsive-767px-max.less │ │ │ │ │ │ ├── responsive-768px-979px.less │ │ │ │ │ │ ├── responsive-navbar.less │ │ │ │ │ │ ├── responsive-utilities.less │ │ │ │ │ │ ├── responsive.less │ │ │ │ │ │ ├── scaffolding.less │ │ │ │ │ │ ├── sprites.less │ │ │ │ │ │ ├── tables.less │ │ │ │ │ │ ├── thumbnails.less │ │ │ │ │ │ ├── tooltip.less │ │ │ │ │ │ ├── type.less │ │ │ │ │ │ ├── utilities.less │ │ │ │ │ │ ├── variables.less │ │ │ │ │ │ └── wells.less │ │ │ │ │ │ ├── lazy.less │ │ │ │ │ │ ├── mixins.less │ │ │ │ │ │ ├── responsive-1200px-min.less │ │ │ │ │ │ ├── responsive-767px-max.less │ │ │ │ │ │ ├── responsive-768px-979px.less │ │ │ │ │ │ ├── responsive-navbar.less │ │ │ │ │ │ ├── responsive.less │ │ │ │ │ │ ├── site.less │ │ │ │ │ │ ├── sticky-footer.less │ │ │ │ │ │ └── variables.less │ │ │ │ ├── cheatsheet │ │ │ │ │ └── index.html │ │ │ │ ├── community │ │ │ │ │ └── index.html │ │ │ │ ├── design.html │ │ │ │ ├── examples │ │ │ │ │ └── index.html │ │ │ │ ├── get-started │ │ │ │ │ └── index.html │ │ │ │ ├── icon │ │ │ │ │ ├── adjust │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── adn │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── align-center │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── align-justify │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── align-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── align-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ambulance │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── anchor │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── android │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── angle-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── angle-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── angle-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── angle-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── apple │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── archive │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── arrow-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── arrow-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── arrow-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── arrow-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── asterisk │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── backward │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ban-circle │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bar-chart │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── barcode │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── beaker │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── beer │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bell-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bell │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bitbucket-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bitbucket │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bold │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bolt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── book │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bookmark-empty │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bookmark │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── briefcase │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── btc │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bug │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── building │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bullhorn │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bullseye │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── calendar-empty │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── calendar │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── camera-retro │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── camera │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── caret-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── caret-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── caret-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── caret-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── certificate │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── check-empty │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── check-minus │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── check-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── check │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── chevron-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── chevron-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── chevron-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── chevron-sign-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── chevron-sign-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── chevron-sign-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── chevron-sign-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── chevron-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── circle-arrow-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── circle-arrow-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── circle-arrow-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── circle-arrow-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── circle-blank │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── circle │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cloud-download │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cloud-upload │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cloud │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cny │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── code-fork │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── code │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── coffee │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cog │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cogs │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── collapse-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── collapse-top │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── collapse │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── columns │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── comment-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── comment │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── comments-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── comments │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── compass │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── copy │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── credit-card │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── crop │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── css3 │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cut │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dashboard │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── desktop │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── double-angle-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── double-angle-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── double-angle-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── double-angle-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── download-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── download │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dribbble │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dropbox │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── edit-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── edit │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── eject │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ellipsis-horizontal │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ellipsis-vertical │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── envelope-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── envelope │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── eraser │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── eur │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── exchange │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── exclamation-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── exclamation │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── expand-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── expand │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── external-link-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── external-link │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── eye-close │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── eye-open │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── facebook-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── facebook │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── facetime-video │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fast-backward │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fast-forward │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── female │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fighter-jet │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── file-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── file-text-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── file-text │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── file │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── film │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── filter │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fire-extinguisher │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fire │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── flag-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── flag-checkered │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── flag │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── flickr │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── folder-close-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── folder-close │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── folder-open-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── folder-open │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── font │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── food │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── forward │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── foursquare │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── frown │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fullscreen │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gamepad │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gbp │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gift │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── github-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── github-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── github │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gittip │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── glass │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── globe │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── google-plus-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── google-plus │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── group │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── h-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hand-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hand-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hand-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hand-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hdd │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── headphones │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── heart-empty │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── heart │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── home │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hospital │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── html5 │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── inbox │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── indent-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── indent-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── info-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── info │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── inr │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── instagram │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── italic │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── jpy │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── key │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── keyboard │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── krw │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── laptop │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── leaf │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── legal │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── lemon │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── level-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── level-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── lightbulb │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── link │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── linkedin-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── linkedin │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── linux │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── list-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── list-ol │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── list-ul │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── list │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── location-arrow │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── lock │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── long-arrow-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── long-arrow-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── long-arrow-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── long-arrow-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── magic │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── magnet │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── mail-reply-all │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── male │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── map-marker │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── maxcdn │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── medkit │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── meh │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── microphone-off │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── microphone │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── minus-sign-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── minus-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── minus │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── mobile-phone │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── money │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── moon │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── move │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── music │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── off │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ok-circle │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ok-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ok │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── paper-clip │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── paste │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── pause │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── pencil │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── phone-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── phone │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── picture │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── pinterest-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── pinterest │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── plane │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── play-circle │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── play-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── play │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── plus-sign-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── plus-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── plus │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── print │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── pushpin │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── puzzle-piece │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── qrcode │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── question-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── question │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── quote-left │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── quote-right │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── random │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── refresh │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── remove-circle │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── remove-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── remove │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── renren │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── reorder │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── repeat │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── reply-all │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── reply │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── resize-full │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── resize-horizontal │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── resize-small │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── resize-vertical │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── retweet │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── road │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── rocket │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── rss-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── rss │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── save │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── screenshot │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── search │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── share-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── share-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── share │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── shield │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── shopping-cart │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sign-blank │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── signal │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── signin │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── signout │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sitemap │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── skype │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── smile │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sort-by-alphabet-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sort-by-alphabet │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sort-by-attributes-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sort-by-attributes │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sort-by-order-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sort-by-order │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sort-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sort-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sort │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── spinner │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── stackexchange │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── star-empty │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── star-half-empty │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── star-half │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── star │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── step-backward │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── step-forward │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── stethoscope │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── stop │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── strikethrough │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── subscript │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── suitcase │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── sun │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── superscript │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── table │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── tablet │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── tag │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── tags │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── tasks │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── terminal │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── text-height │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── text-width │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── th-large │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── th-list │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── th │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── thumbs-down-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── thumbs-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── thumbs-up-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── thumbs-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ticket │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── time │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── tint │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── trash │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── trello │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── trophy │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── truck │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── tumblr-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── tumblr │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── twitter-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── twitter │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── umbrella │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── underline │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── undo │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── unlink │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── unlock-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── unlock │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── upload-alt │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── upload │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── usd │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── user-md │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── user │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── vk │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── volume-down │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── volume-off │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── volume-up │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── warning-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── weibo │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── windows │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── wrench │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── xing-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── xing │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── youtube-play │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── youtube-sign │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── youtube │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── zoom-in │ │ │ │ │ │ └── index.html │ │ │ │ │ └── zoom-out │ │ │ │ │ │ └── index.html │ │ │ │ ├── icons.yml │ │ │ │ ├── icons │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── license │ │ │ │ │ └── index.html │ │ │ │ ├── test │ │ │ │ │ └── index.html │ │ │ │ └── whats-new │ │ │ │ │ └── index.html │ │ │ │ ├── CNAME │ │ │ │ ├── Makefile │ │ │ │ ├── _includes │ │ │ │ ├── ads │ │ │ │ │ ├── carbon-dark-vertical.html │ │ │ │ │ ├── carbon-light-horizontal.html │ │ │ │ │ └── carbon-light-vertical.html │ │ │ │ ├── brand-license.html │ │ │ │ ├── community │ │ │ │ │ ├── getting-support.html │ │ │ │ │ ├── project-milestones.html │ │ │ │ │ ├── reporting-bugs.html │ │ │ │ │ ├── requesting-new-icons.html │ │ │ │ │ └── submitting-pull-requests.html │ │ │ │ ├── examples │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── bordered-pulled.html │ │ │ │ │ ├── custom.html │ │ │ │ │ ├── fixed-width.html │ │ │ │ │ ├── inline.html │ │ │ │ │ ├── larger.html │ │ │ │ │ ├── list.html │ │ │ │ │ ├── rotated-flipped.html │ │ │ │ │ ├── spinning.html │ │ │ │ │ └── stacked.html │ │ │ │ ├── footer.html │ │ │ │ ├── icons │ │ │ │ │ ├── brand.html │ │ │ │ │ ├── currency.html │ │ │ │ │ ├── directional.html │ │ │ │ │ ├── form-control.html │ │ │ │ │ ├── medical.html │ │ │ │ │ ├── new.html │ │ │ │ │ ├── text-editor.html │ │ │ │ │ ├── video-player.html │ │ │ │ │ └── web-application.html │ │ │ │ ├── jumbotron-carousel.html │ │ │ │ ├── jumbotron.html │ │ │ │ ├── license-code.less │ │ │ │ ├── navbar.html │ │ │ │ ├── new-features.html │ │ │ │ ├── new-naming.html │ │ │ │ ├── new-upgrading.html │ │ │ │ ├── stripe-ad.html │ │ │ │ ├── stripe-social.html │ │ │ │ ├── tell-me-thanks.html │ │ │ │ ├── tests │ │ │ │ │ ├── rotated-flipped-inside-anchor.html │ │ │ │ │ ├── rotated-flipped-inside-btn.html │ │ │ │ │ ├── rotated-flipped.html │ │ │ │ │ ├── stacked-inside-anchor.html │ │ │ │ │ └── stacked.html │ │ │ │ ├── thanks-to.html │ │ │ │ └── why.html │ │ │ │ ├── _layouts │ │ │ │ ├── base.html │ │ │ │ └── icon.html │ │ │ │ ├── _plugins │ │ │ │ ├── icon_page_generator.rb │ │ │ │ └── site.rb │ │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ ├── prettify.css │ │ │ │ │ └── pygments.css │ │ │ │ ├── font-awesome │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ ├── less │ │ │ │ │ │ ├── bordered-pulled.less │ │ │ │ │ │ ├── core.less │ │ │ │ │ │ ├── fixed-width.less │ │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ │ ├── icons.less │ │ │ │ │ │ ├── larger.less │ │ │ │ │ │ ├── list.less │ │ │ │ │ │ ├── mixins.less │ │ │ │ │ │ ├── path.less │ │ │ │ │ │ ├── rotated-flipped.less │ │ │ │ │ │ ├── spinning.less │ │ │ │ │ │ ├── stacked.less │ │ │ │ │ │ └── variables.less │ │ │ │ │ └── scss │ │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ │ ├── _core.scss │ │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ │ ├── _icons.scss │ │ │ │ │ │ ├── _larger.scss │ │ │ │ │ │ ├── _list.scss │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ ├── _path.scss │ │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ │ ├── _spinning.scss │ │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font-awesome.scss │ │ │ │ ├── ico │ │ │ │ │ └── favicon.ico │ │ │ │ ├── js │ │ │ │ │ ├── ZeroClipboard-1.1.7.min.js │ │ │ │ │ ├── ZeroClipboard-1.1.7.swf │ │ │ │ │ ├── backbone.min.js │ │ │ │ │ ├── bootstrap-2.3.1.min.js │ │ │ │ │ ├── bootstrap-222.min.js │ │ │ │ │ ├── bootstrap-3.0.0.min.js │ │ │ │ │ ├── html5shiv.js │ │ │ │ │ ├── jquery-1.10.2.js │ │ │ │ │ ├── jquery-1.10.2.min.js │ │ │ │ │ ├── jquery-1.10.2.min.map │ │ │ │ │ ├── jquery-1.7.1.min.js │ │ │ │ │ ├── prettify.min.js │ │ │ │ │ ├── respond.min.js │ │ │ │ │ ├── site.js │ │ │ │ │ └── underscore.min.js │ │ │ │ └── less │ │ │ │ │ ├── bootstrap-3.0.0 │ │ │ │ │ ├── alerts.less │ │ │ │ │ ├── badges.less │ │ │ │ │ ├── bootstrap.less │ │ │ │ │ ├── breadcrumbs.less │ │ │ │ │ ├── button-groups.less │ │ │ │ │ ├── buttons.less │ │ │ │ │ ├── carousel.less │ │ │ │ │ ├── close.less │ │ │ │ │ ├── code.less │ │ │ │ │ ├── component-animations.less │ │ │ │ │ ├── dropdowns.less │ │ │ │ │ ├── forms.less │ │ │ │ │ ├── glyphicons.less │ │ │ │ │ ├── grid.less │ │ │ │ │ ├── input-groups.less │ │ │ │ │ ├── jumbotron.less │ │ │ │ │ ├── labels.less │ │ │ │ │ ├── list-group.less │ │ │ │ │ ├── media.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── modals.less │ │ │ │ │ ├── navbar.less │ │ │ │ │ ├── navs.less │ │ │ │ │ ├── normalize.less │ │ │ │ │ ├── pager.less │ │ │ │ │ ├── pagination.less │ │ │ │ │ ├── panels.less │ │ │ │ │ ├── popovers.less │ │ │ │ │ ├── print.less │ │ │ │ │ ├── progress-bars.less │ │ │ │ │ ├── responsive-utilities.less │ │ │ │ │ ├── scaffolding.less │ │ │ │ │ ├── tables.less │ │ │ │ │ ├── theme.less │ │ │ │ │ ├── thumbnails.less │ │ │ │ │ ├── tooltip.less │ │ │ │ │ ├── type.less │ │ │ │ │ ├── utilities.less │ │ │ │ │ ├── variables.less │ │ │ │ │ └── wells.less │ │ │ │ │ ├── site.less │ │ │ │ │ └── site │ │ │ │ │ ├── bootstrap │ │ │ │ │ ├── buttons.less │ │ │ │ │ ├── jumbotron.less │ │ │ │ │ ├── navbar.less │ │ │ │ │ ├── type.less │ │ │ │ │ ├── variables.less │ │ │ │ │ └── wells.less │ │ │ │ │ ├── carbonad.less │ │ │ │ │ ├── example-rating.less │ │ │ │ │ ├── feature-list.less │ │ │ │ │ ├── fontawesome-icon-list.less │ │ │ │ │ ├── footer.less │ │ │ │ │ ├── jumbotron-carousel.less │ │ │ │ │ ├── layout.less │ │ │ │ │ ├── lazy.less │ │ │ │ │ ├── responsive │ │ │ │ │ ├── screen-lg.less │ │ │ │ │ ├── screen-md.less │ │ │ │ │ ├── screen-sm.less │ │ │ │ │ └── screen-xs.less │ │ │ │ │ ├── social-buttons.less │ │ │ │ │ ├── stripe-ad.less │ │ │ │ │ └── textured-bg.less │ │ │ │ ├── cheatsheet.html │ │ │ │ ├── community.html │ │ │ │ ├── design.html │ │ │ │ ├── examples.html │ │ │ │ ├── get-started.html │ │ │ │ ├── glyphicons-test.html │ │ │ │ ├── icons.html │ │ │ │ ├── icons.yml │ │ │ │ ├── index.html │ │ │ │ ├── license.html │ │ │ │ ├── test-2.3.2.html │ │ │ │ ├── test.html │ │ │ │ └── whats-new.html │ │ ├── idbwrapper │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .jshintrc │ │ │ ├── .npmignore │ │ │ ├── CHANGELOG │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── example │ │ │ │ ├── basic │ │ │ │ │ ├── app.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── style.css │ │ │ │ ├── index.html │ │ │ │ ├── index │ │ │ │ │ ├── app.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── style.css │ │ │ │ ├── lib │ │ │ │ │ └── requirejs │ │ │ │ │ │ └── require.js │ │ │ │ ├── objectstore │ │ │ │ │ ├── app.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── style.css │ │ │ │ ├── quicktest │ │ │ │ │ ├── index.html │ │ │ │ │ └── style.css │ │ │ │ ├── style.css │ │ │ │ └── worker │ │ │ │ │ ├── app.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── style.css │ │ │ │ │ └── worker.js │ │ │ ├── idbstore.js │ │ │ ├── idbstore.min.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── idbwrapper_spec.js │ │ │ │ └── index.html │ │ ├── jquery │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── component.json │ │ │ ├── composer.json │ │ │ ├── jquery-migrate.js │ │ │ ├── jquery-migrate.min.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ └── package.json │ │ ├── json3 │ │ │ ├── .bower.json │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ └── lib │ │ │ │ ├── json3.js │ │ │ │ └── json3.min.js │ │ ├── lodash │ │ │ ├── .bower.json │ │ │ ├── LICENSE.txt │ │ │ ├── bower.json │ │ │ └── dist │ │ │ │ ├── lodash.compat.js │ │ │ │ ├── lodash.compat.min.js │ │ │ │ ├── lodash.js │ │ │ │ ├── lodash.min.js │ │ │ │ ├── lodash.underscore.js │ │ │ │ └── lodash.underscore.min.js │ │ ├── momentjs │ │ │ ├── .bower.json │ │ │ ├── LICENSE │ │ │ ├── bower.json │ │ │ ├── lang │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── br.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cv.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy-am.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── ko.js │ │ │ │ ├── lb.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ml.js │ │ │ │ ├── mr.js │ │ │ │ ├── ms-my.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── rs.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── ta.js │ │ │ │ ├── th.js │ │ │ │ ├── tl-ph.js │ │ │ │ ├── tr.js │ │ │ │ ├── tzm-la.js │ │ │ │ ├── tzm.js │ │ │ │ ├── uk.js │ │ │ │ ├── uz.js │ │ │ │ ├── vn.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-tw.js │ │ │ ├── min │ │ │ │ ├── langs.js │ │ │ │ ├── langs.min.js │ │ │ │ ├── moment-with-langs.js │ │ │ │ ├── moment-with-langs.min.js │ │ │ │ └── moment.min.js │ │ │ ├── moment.js │ │ │ └── readme.md │ │ └── restangular │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTE.md │ │ │ ├── Gruntfile.js │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ ├── restangular.js │ │ │ ├── restangular.min.js │ │ │ └── restangular.zip │ │ │ ├── karma.conf.js │ │ │ ├── karma.underscore.conf.js │ │ │ ├── license.md │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── restangular.js │ │ │ └── test │ │ │ └── restangularSpec.js │ ├── favicon.ico │ ├── images │ │ └── logo.png │ ├── index.html │ ├── robots.txt │ ├── scripts │ │ ├── ApiModule.js │ │ ├── RouteConfig.js │ │ ├── app.js │ │ ├── controllers │ │ │ ├── bell.js │ │ │ ├── first.js │ │ │ ├── osd-host.js │ │ │ ├── osd.js │ │ │ ├── pool-modify.js │ │ │ ├── pool-new.js │ │ │ ├── pool.js │ │ │ ├── root.js │ │ │ ├── tools.js │ │ │ └── userdropdown.js │ │ ├── directives │ │ │ └── approve.js │ │ ├── helpers │ │ │ ├── cluster-response-helpers.js │ │ │ ├── cluster-settings-helpers.js │ │ │ ├── error-helpers.js │ │ │ ├── grain-helpers.js │ │ │ ├── modal-helpers.js │ │ │ ├── osd-helpers.js │ │ │ ├── pool-helpers.js │ │ │ └── server-helpers.js │ │ ├── main.js │ │ ├── navbar │ │ │ ├── controllers │ │ │ │ └── navbar.js │ │ │ └── navbarModule.js │ │ ├── requests │ │ │ ├── controllers │ │ │ │ └── request.js │ │ │ ├── requestModule.js │ │ │ └── services │ │ │ │ └── request-tracking.js │ │ ├── run.js │ │ └── services │ │ │ ├── cluster-svc.js │ │ │ ├── configuration.js │ │ │ ├── crush-svc.js │ │ │ ├── error.js │ │ │ ├── key-svc.js │ │ │ ├── menu.js │ │ │ ├── osd-config-svc.js │ │ │ ├── osd-svc.js │ │ │ ├── pool-svc.js │ │ │ ├── request-svc.js │ │ │ ├── server-svc.js │ │ │ ├── tool-svc.js │ │ │ └── user-svc.js │ ├── styles │ │ ├── main.scss │ │ ├── modules │ │ │ ├── _angular-growl.min.scss │ │ │ ├── _angular-motion.scss │ │ │ ├── _angular-toggle-switch-bootstrap.scss │ │ │ ├── _angular-toggle-switch.scss │ │ │ ├── _bootstrap-additions.min.scss │ │ │ ├── _bootstrap3_vars.scss │ │ │ └── _inktank_colors.scss │ │ └── partials │ │ │ ├── _aside.scss │ │ │ ├── _base.scss │ │ │ ├── _breadcrumb.scss │ │ │ └── _inktank_fonts.scss │ └── views │ │ ├── about-modal.html │ │ ├── appbar.html │ │ ├── breadcrumb-nav.html │ │ ├── breadcrumb.html │ │ ├── custom-modal.html │ │ ├── delete-modal.html │ │ ├── detail-grains-modal.html │ │ ├── dropdown.tpl.html │ │ ├── first.html │ │ ├── new-install-modal.html │ │ ├── osd-cmd-modal.html │ │ ├── osd-host.html │ │ ├── osd-info-modal.html │ │ ├── osd-repair-warn-modal.html │ │ ├── osd.html │ │ ├── partial-authorize.html │ │ ├── partial-osd-config.html │ │ ├── partial-server.html │ │ ├── partial-viewer.html │ │ ├── pool-modify.html │ │ ├── pool-new.html │ │ ├── pool.html │ │ ├── request.html │ │ ├── root.html │ │ ├── tool.html │ │ ├── userdropdown.html │ │ └── userdropdown.tpl.html ├── bower.json ├── documentation │ ├── Makefile │ ├── docco.css │ ├── docco.jst │ ├── routes.dot │ └── routes.png ├── karma-e2e.conf.js ├── karma.conf.js ├── package.json └── test │ ├── .jshintrc │ ├── runner.html │ └── spec │ └── controllers │ └── main.js ├── screenshots ├── Graph_UI.png ├── Main_Dashboard.png ├── manage_OSDS_by_host.png ├── manage_OSD_hosts_view.png ├── manage_default_view.png ├── manage_pool_view.png ├── screenshots.md ├── summary.jpeg └── workbench_with_pg_state_filtering.png ├── ui.build.instructions.md ├── utils ├── 01-bootstrap-pkg.sh ├── 11-cp-ui.sh ├── 21-run-calamari.sh ├── 31-run-sim.sh ├── 41-approve-minions.sh ├── tmuxinator │ └── session.yml └── urls.py └── vagrant ├── centos-package └── Vagrantfile ├── precise-build ├── README.rst └── Vagrantfile ├── rhel-package └── Vagrantfile ├── rhel7-package └── Vagrantfile ├── salt ├── minion └── roots │ ├── copyin_build_product.sls │ ├── deb_repackage_deps.sls │ ├── full_build_deps.sls │ ├── git_clone.sls │ ├── make_build_product.sls │ ├── make_deb.sls │ ├── make_rpm.sls │ ├── real_make_deb.sls │ ├── rh_repackage_deps.sls │ ├── setvars │ └── top.sls ├── trusty-package └── Vagrantfile ├── urllib-bootstrap-salt.sh └── wheezy-package └── Vagrantfile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/Makefile.sub -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/README.md -------------------------------------------------------------------------------- /admin/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /admin/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/.editorconfig -------------------------------------------------------------------------------- /admin/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /admin/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .tmp 4 | .sass-cache 5 | -------------------------------------------------------------------------------- /admin/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/.jshintrc -------------------------------------------------------------------------------- /admin/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/Gruntfile.js -------------------------------------------------------------------------------- /admin/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.sub 2 | -------------------------------------------------------------------------------- /admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/README.md -------------------------------------------------------------------------------- /admin/app/.buildignore: -------------------------------------------------------------------------------- 1 | *.coffee -------------------------------------------------------------------------------- /admin/app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/.htaccess -------------------------------------------------------------------------------- /admin/app/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/404.html -------------------------------------------------------------------------------- /admin/app/bower_components/angular-mocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/angular-mocks/README.md -------------------------------------------------------------------------------- /admin/app/bower_components/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/angular/.bower.json -------------------------------------------------------------------------------- /admin/app/bower_components/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/angular/angular.js -------------------------------------------------------------------------------- /admin/app/bower_components/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/angular/angular.min.js -------------------------------------------------------------------------------- /admin/app/bower_components/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/angular/bower.json -------------------------------------------------------------------------------- /admin/app/bower_components/bootstrap-sass/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/bootstrap-sass/Gemfile -------------------------------------------------------------------------------- /admin/app/bower_components/bootstrap-sass/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/bootstrap-sass/LICENSE -------------------------------------------------------------------------------- /admin/app/bower_components/es5-shim/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/es5-shim/.bower.json -------------------------------------------------------------------------------- /admin/app/bower_components/es5-shim/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /admin/app/bower_components/es5-shim/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/es5-shim/CHANGES -------------------------------------------------------------------------------- /admin/app/bower_components/es5-shim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/es5-shim/LICENSE -------------------------------------------------------------------------------- /admin/app/bower_components/es5-shim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/es5-shim/README.md -------------------------------------------------------------------------------- /admin/app/bower_components/es5-shim/es5-sham.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/es5-shim/es5-sham.js -------------------------------------------------------------------------------- /admin/app/bower_components/es5-shim/es5-sham.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/es5-shim/es5-sham.map -------------------------------------------------------------------------------- /admin/app/bower_components/es5-shim/es5-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/es5-shim/es5-shim.js -------------------------------------------------------------------------------- /admin/app/bower_components/es5-shim/es5-shim.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/es5-shim/es5-shim.map -------------------------------------------------------------------------------- /admin/app/bower_components/es5-shim/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/es5-shim/package.json -------------------------------------------------------------------------------- /admin/app/bower_components/font-awesome/.ruby-version: -------------------------------------------------------------------------------- 1 | 1.9.3-p392 2 | -------------------------------------------------------------------------------- /admin/app/bower_components/font-awesome/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/font-awesome/Gemfile -------------------------------------------------------------------------------- /admin/app/bower_components/font-awesome/src/CNAME: -------------------------------------------------------------------------------- 1 | fontawesome.io -------------------------------------------------------------------------------- /admin/app/bower_components/font-awesome/src/design.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /admin/app/bower_components/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/jquery/.bower.json -------------------------------------------------------------------------------- /admin/app/bower_components/jquery/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /admin/app/bower_components/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/jquery/README.md -------------------------------------------------------------------------------- /admin/app/bower_components/jquery/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/jquery/component.json -------------------------------------------------------------------------------- /admin/app/bower_components/jquery/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/jquery/composer.json -------------------------------------------------------------------------------- /admin/app/bower_components/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/jquery/jquery.js -------------------------------------------------------------------------------- /admin/app/bower_components/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/jquery/jquery.min.js -------------------------------------------------------------------------------- /admin/app/bower_components/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/jquery/jquery.min.map -------------------------------------------------------------------------------- /admin/app/bower_components/jquery/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/jquery/package.json -------------------------------------------------------------------------------- /admin/app/bower_components/json3/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/json3/.bower.json -------------------------------------------------------------------------------- /admin/app/bower_components/json3/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/json3/.gitmodules -------------------------------------------------------------------------------- /admin/app/bower_components/json3/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/json3/.jshintrc -------------------------------------------------------------------------------- /admin/app/bower_components/json3/.npmignore: -------------------------------------------------------------------------------- 1 | build.js 2 | index.html 3 | jsl.conf 4 | 5 | page 6 | test 7 | vendor -------------------------------------------------------------------------------- /admin/app/bower_components/json3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/json3/LICENSE -------------------------------------------------------------------------------- /admin/app/bower_components/json3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/json3/README.md -------------------------------------------------------------------------------- /admin/app/bower_components/json3/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/json3/build.js -------------------------------------------------------------------------------- /admin/app/bower_components/json3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/json3/index.html -------------------------------------------------------------------------------- /admin/app/bower_components/json3/lib/json3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/json3/lib/json3.js -------------------------------------------------------------------------------- /admin/app/bower_components/json3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/json3/package.json -------------------------------------------------------------------------------- /admin/app/bower_components/json3/page/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/json3/page/logo.png -------------------------------------------------------------------------------- /admin/app/bower_components/json3/page/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/json3/page/page.html -------------------------------------------------------------------------------- /admin/app/bower_components/json3/page/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/json3/page/style.css -------------------------------------------------------------------------------- /admin/app/bower_components/json3/vendor/curl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/json3/vendor/curl.js -------------------------------------------------------------------------------- /admin/app/bower_components/json3/vendor/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/json3/vendor/json2.js -------------------------------------------------------------------------------- /admin/app/bower_components/underscore/.gitignore: -------------------------------------------------------------------------------- 1 | raw 2 | node_modules 3 | -------------------------------------------------------------------------------- /admin/app/bower_components/underscore/CNAME: -------------------------------------------------------------------------------- 1 | underscorejs.org 2 | -------------------------------------------------------------------------------- /admin/app/bower_components/underscore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/underscore/LICENSE -------------------------------------------------------------------------------- /admin/app/bower_components/underscore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/underscore/README.md -------------------------------------------------------------------------------- /admin/app/bower_components/underscore/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/underscore/Rakefile -------------------------------------------------------------------------------- /admin/app/bower_components/underscore/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/bower_components/underscore/index.html -------------------------------------------------------------------------------- /admin/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/favicon.ico -------------------------------------------------------------------------------- /admin/app/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/images/logo.png -------------------------------------------------------------------------------- /admin/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/index.html -------------------------------------------------------------------------------- /admin/app/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /admin/app/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/scripts/app.js -------------------------------------------------------------------------------- /admin/app/scripts/controllers/cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/scripts/controllers/cluster.js -------------------------------------------------------------------------------- /admin/app/scripts/controllers/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/scripts/controllers/general.js -------------------------------------------------------------------------------- /admin/app/scripts/controllers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/scripts/controllers/main.js -------------------------------------------------------------------------------- /admin/app/scripts/controllers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/scripts/controllers/user.js -------------------------------------------------------------------------------- /admin/app/scripts/controllers/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/scripts/controllers/users.js -------------------------------------------------------------------------------- /admin/app/styles/admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/styles/admin.scss -------------------------------------------------------------------------------- /admin/app/styles/inktank_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/styles/inktank_colors.scss -------------------------------------------------------------------------------- /admin/app/styles/inktank_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/styles/inktank_fonts.scss -------------------------------------------------------------------------------- /admin/app/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/styles/main.scss -------------------------------------------------------------------------------- /admin/app/views/cluster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/views/cluster.html -------------------------------------------------------------------------------- /admin/app/views/general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/views/general.html -------------------------------------------------------------------------------- /admin/app/views/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/views/main.html -------------------------------------------------------------------------------- /admin/app/views/removeCluster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/views/removeCluster.html -------------------------------------------------------------------------------- /admin/app/views/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/views/user.html -------------------------------------------------------------------------------- /admin/app/views/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/app/views/users.html -------------------------------------------------------------------------------- /admin/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/bower.json -------------------------------------------------------------------------------- /admin/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/karma-e2e.conf.js -------------------------------------------------------------------------------- /admin/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/karma.conf.js -------------------------------------------------------------------------------- /admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/package.json -------------------------------------------------------------------------------- /admin/test/runner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/test/runner.html -------------------------------------------------------------------------------- /admin/test/spec/controllers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/admin/test/spec/controllers/main.js -------------------------------------------------------------------------------- /bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/bootstrap.md -------------------------------------------------------------------------------- /calamari-clients.suse.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/calamari-clients.suse.spec -------------------------------------------------------------------------------- /clients.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/clients.spec -------------------------------------------------------------------------------- /dashboard/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /dashboard/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/.jshintrc -------------------------------------------------------------------------------- /dashboard/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/Gruntfile.js -------------------------------------------------------------------------------- /dashboard/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.sub 2 | -------------------------------------------------------------------------------- /dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/README.md -------------------------------------------------------------------------------- /dashboard/app/.gitignore: -------------------------------------------------------------------------------- 1 | fonts 2 | graphite 3 | api 4 | plugin 5 | -------------------------------------------------------------------------------- /dashboard/app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/.htaccess -------------------------------------------------------------------------------- /dashboard/app/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/404.html -------------------------------------------------------------------------------- /dashboard/app/bower_components/backbone-amd/.gitignore: -------------------------------------------------------------------------------- 1 | raw 2 | *.sw? 3 | .DS_Store 4 | node_modules 5 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/backbone-amd/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | Rakefile 3 | docs/ 4 | raw/ 5 | examples/ 6 | index.html 7 | .jshintrc 8 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/backbone-amd/CNAME: -------------------------------------------------------------------------------- 1 | backbonejs.org 2 | 3 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/backbone-amd/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./backbone'); 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/backbone.marionette/.tm_properties: -------------------------------------------------------------------------------- 1 | tabSize = 2 2 | softTabs = true -------------------------------------------------------------------------------- /dashboard/app/bower_components/backbone/.gitignore: -------------------------------------------------------------------------------- 1 | raw 2 | *.sw? 3 | .DS_Store 4 | node_modules 5 | bower_components 6 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/backbone/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | Rakefile 3 | docs/ 4 | raw/ 5 | examples/ 6 | index.html 7 | .jshintrc 8 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/backbone/CNAME: -------------------------------------------------------------------------------- 1 | backbonejs.org 2 | 3 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/backbone/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/backbone/LICENSE -------------------------------------------------------------------------------- /dashboard/app/bower_components/backbone/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./backbone'); 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/bean/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/bean/.bower.json -------------------------------------------------------------------------------- /dashboard/app/bower_components/bean/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | node_modules 3 | /build 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/bean/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/bean/.jshintrc -------------------------------------------------------------------------------- /dashboard/app/bower_components/bean/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | tests/benchmark/ 3 | integration/ -------------------------------------------------------------------------------- /dashboard/app/bower_components/bean/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/bean/LICENSE -------------------------------------------------------------------------------- /dashboard/app/bower_components/bean/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/bean/Makefile -------------------------------------------------------------------------------- /dashboard/app/bower_components/bean/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/bean/README.md -------------------------------------------------------------------------------- /dashboard/app/bower_components/bean/bean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/bean/bean.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/bean/bean.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/bean/bean.min.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/bean/buster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/bean/buster.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/bean/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/bean/package.json -------------------------------------------------------------------------------- /dashboard/app/bower_components/bean/src/bean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/bean/src/bean.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/bean/src/ender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/bean/src/ender.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/bean/tests/noconflict_fixture.js: -------------------------------------------------------------------------------- 1 | function bean() { return 'success' } 2 | bean.NOTBEAN = true -------------------------------------------------------------------------------- /dashboard/app/bower_components/bootstrap-switch/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/dygraphs/.gitignore: -------------------------------------------------------------------------------- 1 | jsdoc 2 | docs/options.html 3 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/dygraphs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/dygraphs/Makefile -------------------------------------------------------------------------------- /dashboard/app/bower_components/dygraphs/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/dygraphs/NOTES -------------------------------------------------------------------------------- /dashboard/app/bower_components/dygraphs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/dygraphs/README -------------------------------------------------------------------------------- /dashboard/app/bower_components/dygraphs/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/dygraphs/data.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/dygraphs/jsdoc-toolkit/app/test/scripts/code.js: -------------------------------------------------------------------------------- 1 | /** 2 | @class 3 | */ 4 | function thisiscode() { 5 | } -------------------------------------------------------------------------------- /dashboard/app/bower_components/dygraphs/jsdoc-toolkit/app/test/shared2.js: -------------------------------------------------------------------------------- 1 | startOver = function(){ 2 | } -------------------------------------------------------------------------------- /dashboard/app/bower_components/dygraphs/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/dygraphs/lint.sh -------------------------------------------------------------------------------- /dashboard/app/bower_components/dygraphs/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/dygraphs/test.sh -------------------------------------------------------------------------------- /dashboard/app/bower_components/font-awesome/src/3.2.1/CNAME: -------------------------------------------------------------------------------- 1 | fontawesome.io -------------------------------------------------------------------------------- /dashboard/app/bower_components/font-awesome/src/3.2.1/design.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/font-awesome/src/CNAME: -------------------------------------------------------------------------------- 1 | fontawesome.io -------------------------------------------------------------------------------- /dashboard/app/bower_components/font-awesome/src/assets/less/site/layout.less: -------------------------------------------------------------------------------- 1 | section { margin-top: 40px; } 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/font-awesome/src/design.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/humanize/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | node_modules 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/humanize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/humanize/LICENSE -------------------------------------------------------------------------------- /dashboard/app/bower_components/idbwrapper/.gitignore: -------------------------------------------------------------------------------- 1 | test/polyfills 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/idbwrapper/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .git* 3 | node_modules 4 | test/polyfills 5 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/jquery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/jquery/.gitignore -------------------------------------------------------------------------------- /dashboard/app/bower_components/jquery/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/jquery/.jshintrc -------------------------------------------------------------------------------- /dashboard/app/bower_components/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/jquery/README.md -------------------------------------------------------------------------------- /dashboard/app/bower_components/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/jquery/jquery.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/jquery/src/css.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | 2 | })( window ); 3 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/jquery/test/data/badcall.js: -------------------------------------------------------------------------------- 1 | undefined(); 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/jquery/test/data/badjson.js: -------------------------------------------------------------------------------- 1 | {bad: toTheBone} 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/jquery/test/data/echoData.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/jquery/test/data/echoQuery.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/jquery/test/data/errorWithText.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/jquery/test/data/readywaitasset.js: -------------------------------------------------------------------------------- 1 | var delayedMessage = "It worked!"; 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/jquery/test/unit/deprecated.js: -------------------------------------------------------------------------------- 1 | module("deprecated"); 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/jsuri/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/jsuri/.bower.json -------------------------------------------------------------------------------- /dashboard/app/bower_components/jsuri/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.swp 3 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/jsuri/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/jsuri/.jshintrc -------------------------------------------------------------------------------- /dashboard/app/bower_components/jsuri/Jakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/jsuri/Jakefile -------------------------------------------------------------------------------- /dashboard/app/bower_components/jsuri/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/jsuri/LICENSE -------------------------------------------------------------------------------- /dashboard/app/bower_components/jsuri/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/jsuri/README.md -------------------------------------------------------------------------------- /dashboard/app/bower_components/jsuri/Uri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/jsuri/Uri.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/jsuri/Uri.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/jsuri/Uri.min.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/modernizr/.gitignore: -------------------------------------------------------------------------------- 1 | modernizr.min.js 2 | .DS_Store -------------------------------------------------------------------------------- /dashboard/app/bower_components/momentjs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/momentjs/LICENSE -------------------------------------------------------------------------------- /dashboard/app/bower_components/noty/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/noty/.bower.json -------------------------------------------------------------------------------- /dashboard/app/bower_components/noty/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/noty/.gitignore -------------------------------------------------------------------------------- /dashboard/app/bower_components/noty/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/noty/LICENSE.txt -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/.bower.json -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/.coverignore: -------------------------------------------------------------------------------- 1 | spec/ 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/.gitignore -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/.jshintrc -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/.mailmap -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/.npmignore -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/.travis.yml -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/CHANGES.md -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/CONTRIBUTING.md -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/Gruntfile.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/LICENSE -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/README.md -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/VERSIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/VERSIONS.md -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/design/q0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/design/q0.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/design/q1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/design/q1.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/design/q2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/design/q2.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/design/q3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/design/q3.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/design/q4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/design/q4.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/design/q5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/design/q5.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/design/q6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/design/q6.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/design/q7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/design/q7.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/examples/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/examples/all.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/package.json -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/q.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/queue.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/ref_send.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/ref_send.md -------------------------------------------------------------------------------- /dashboard/app/bower_components/q/spec/q-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/q/spec/q-spec.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/react/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/react/.bower.json -------------------------------------------------------------------------------- /dashboard/app/bower_components/react/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/react/bower.json -------------------------------------------------------------------------------- /dashboard/app/bower_components/react/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/react/react.js -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/bower_components/requirejs/LICENSE -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/afterloadreadystate.js: -------------------------------------------------------------------------------- 1 | doh.is("complete", document.readyState); 2 | d.callback(true); 3 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/anon/green.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: "green" 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/anon/message.txt: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/browsertests/appendbeforeload/one.dphpd: -------------------------------------------------------------------------------- 1 | 4 | 5 | console.log("ONE"); -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/browsertests/appendbeforeload/two.js: -------------------------------------------------------------------------------- 1 | console.log("TWO"); 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/browsertests/async/one.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | window.log("one.php script"); 6 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/browsertests/async/two.js: -------------------------------------------------------------------------------- 1 | window.log("two.js script"); 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/browsertests/docwritenested/two.js: -------------------------------------------------------------------------------- 1 | two = { 2 | name: "two" 3 | }; 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/browsertests/onerror/ok.js: -------------------------------------------------------------------------------- 1 | log("ok has executed"); -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/browsertests/scriptload/eight.js: -------------------------------------------------------------------------------- 1 | log("eight.js script"); 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/browsertests/scriptload/five.js: -------------------------------------------------------------------------------- 1 | log("five.js script"); 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/browsertests/scriptload/nine.js: -------------------------------------------------------------------------------- 1 | log("nine.js script"); 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/browsertests/scriptload/one.js: -------------------------------------------------------------------------------- 1 | log("one.js script"); 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/browsertests/scriptload/seven.js: -------------------------------------------------------------------------------- 1 | log("seven.js script"); 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/browsertests/scriptload/six.js: -------------------------------------------------------------------------------- 1 | log("six.js script"); 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/browsertests/scriptload/three.js: -------------------------------------------------------------------------------- 1 | log("three.js script"); 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/circular/complexPlugin/toolbar.html: -------------------------------------------------------------------------------- 1 | toolbarTemplate -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/circular/complexPlugin/viewport.html: -------------------------------------------------------------------------------- 1 | viewportTemplate -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/cjsSpace/b.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'b' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/dataMain/baseUrl/a.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'a' 3 | }); 4 | 5 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/dataMain/skipDataMain/a.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'a' 3 | }); 4 | 5 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/definedSpecified/a.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'a' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/definedSpecified/b.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'b' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/error/a.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'a' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/error/b.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'b' 3 | }); 4 | 5 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/error/doubleRequire/b.js: -------------------------------------------------------------------------------- 1 | define(['myShim'], function (broken) { 2 | return { name: 'b' }; 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/error/doubleRequire/c.js: -------------------------------------------------------------------------------- 1 | define(['myShim'], function (broken) { 2 | return { name: 'c' }; 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/hasOwnProperty/hasOwnProperty.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'hasOwnProperty' 3 | }); -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/hasOwnProperty/prototype.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'prototype' 3 | }); -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/hasOwnProperty/toString.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'toString' 3 | }); -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/jsonp/lamp.js: -------------------------------------------------------------------------------- 1 | define("lamp", { 2 | color: "blue" 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/layers/helloWorld.txt: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/mapConfig/another/c/dim.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'another/c/dim' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/mapConfig/another/minor.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'another/minor' 3 | }); 4 | 5 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/mapConfig/c.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'c' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/mapConfig/c/sub.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'c/sub' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/mapConfig/c1.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'c1' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/mapConfig/c1/sub.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'c1/sub' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/mapConfig/c2.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'c2' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/mapConfig/c2/sub.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'c2/sub' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/mapConfig/d.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'd' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/mapConfig/plug/c1.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'plug!c1' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/mapConfig/plug/c2.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'plug!c2' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/mapConfig/plug/main.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'plug!main' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/nestedDefine/one.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'one' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/nestedDefine/two.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'two' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/nestedRelativeRequire/main.js: -------------------------------------------------------------------------------- 1 | require(['sub/a']); 2 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/nestedRequire/base.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'base' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/onResourceLoad/b.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'b' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/packages/baz/lib/helper.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: "baz/helper" 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/packages/dojox/door.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'dojox/door' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/packages/dojox/window/pane.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'dojox/window/pane' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/packages/foo/lib/second.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'foo/second' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/packages/funky/lib/monkey.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'monkey' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/packages/optimizing/packages/engine/pistons.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'pistons' 3 | }); -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/packages/optimizing/packages/engine/sparkplugs.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'sparkplugs' 3 | }); -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/packages/optimizing/packages/fuel/main.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'fuel' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/packages/optimizing/packages/tires/main.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'tires' 3 | }); -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/packages/pkgs/alpha/main.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'alpha' 3 | }); -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/packages/pkgs/alpha/replace.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'alpha/replace' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/packages/pkgs/beta/0.2/scripts/beta.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | return 'beta'; 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/packages/pkgs/beta/0.2/scripts/util.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'beta/util' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/packages/pkgs/dojox/chair/legs.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'dojox/chair/legs' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/packages/pkgs/dojox/table/legs.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'dojox/table/legs' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/pathArray/real.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'real' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/paths/impl/util.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'impl/util' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/paths/relativeNormalize/foo2.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'foo2' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/paths/util.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'util' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/plugins/a.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'a' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/plugins/c.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: "c" 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/plugins/pluginLast/bigCollection.html: -------------------------------------------------------------------------------- 1 | bigCollection -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/plugins/pluginLast/common.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'common' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/plugins/pluginLast/component.html: -------------------------------------------------------------------------------- 1 | component -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/plugins/pluginLast/specificCollection.html: -------------------------------------------------------------------------------- 1 | specificCollection -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/plugins/prime/a.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'aPrime' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/plugins/prime/c.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: "cPrime" 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/plugins/textDepend/test.txt: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/relative/foo/bar.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'bar' 3 | }); 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/relative/foo/bar/message.txt: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/shim/d.js: -------------------------------------------------------------------------------- 1 | function D() { 2 | this.name = 'd'; 3 | }; 4 | -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/text/plain.txt: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /dashboard/app/bower_components/requirejs/tests/text/resources/local.html: -------------------------------------------------------------------------------- 1 |
Your content here.
2 | 3 | -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/breadcrumb.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/breadcrumb.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/filter-label.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/filter-label.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/filter.ejs: -------------------------------------------------------------------------------- 1 | filter by 2 | -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/filterBy.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/filterBy.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/gauges.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/gauges.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/graph.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/graph.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/graphwall.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/graphwall.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/growl.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/growl.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/health-modal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/health-modal.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/health.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/health.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/hosts-dash.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/hosts-dash.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/iops-dash.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/iops-dash.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/modal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/modal.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/mon-dash.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/mon-dash.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/no-request.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/no-request.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/notification.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/notification.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/osd-dash.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/osd-dash.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/osd-details.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/osd-details.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/osd-hex.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/osd-hex.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/pgmap.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/pgmap.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/pools-dash.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/pools-dash.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/request.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/request.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/status-icon.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/status-icon.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/status-line.ejs: -------------------------------------------------------------------------------- 1 | Updating Now 2 | -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/usage.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/usage.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/user-request.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/user-request.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/userdropdown.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/userdropdown.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/templates/viz.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/templates/viz.ejs -------------------------------------------------------------------------------- /dashboard/app/scripts/tracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/tracker.js -------------------------------------------------------------------------------- /dashboard/app/scripts/vendor/backbone.modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/vendor/backbone.modal.js -------------------------------------------------------------------------------- /dashboard/app/scripts/vendor/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/vendor/bootstrap.js -------------------------------------------------------------------------------- /dashboard/app/scripts/vendor/dygraph-combined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/vendor/dygraph-combined.js -------------------------------------------------------------------------------- /dashboard/app/scripts/vendor/gauge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/vendor/gauge.js -------------------------------------------------------------------------------- /dashboard/app/scripts/vendor/humanize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/vendor/humanize.js -------------------------------------------------------------------------------- /dashboard/app/scripts/vendor/kinetic-v4.7.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/vendor/kinetic-v4.7.3.js -------------------------------------------------------------------------------- /dashboard/app/scripts/vendor/l20n.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/vendor/l20n.min.js -------------------------------------------------------------------------------- /dashboard/app/scripts/vendor/raphael.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/vendor/raphael.js -------------------------------------------------------------------------------- /dashboard/app/scripts/vendor/snap.svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/vendor/snap.svg.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/alerts-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/alerts-view.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/application-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/application-view.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/breadcrumb-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/breadcrumb-view.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/dashboard-row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/dashboard-row.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/filter-label-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/filter-label-view.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/filter-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/filter-view.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/filterBy-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/filterBy-view.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/gauges-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/gauges-layout.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/graphwall-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/graphwall-view.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/health-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/health-view.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/hosts-dash-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/hosts-dash-view.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/iops-dash-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/iops-dash-view.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/mon-dash-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/mon-dash-view.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/osd-dash-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/osd-dash-view.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/osd-detail-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/osd-detail-view.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/osd-hex-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/osd-hex-view.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/osd-visualization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/osd-visualization.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/pgmap-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/pgmap-view.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/pools-dash-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/pools-dash-view.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/status-line-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/status-line-view.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/type-one-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/type-one-view.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/usage-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/usage-view.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/user-request-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/user-request-view.js -------------------------------------------------------------------------------- /dashboard/app/scripts/views/userdropdown-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/scripts/views/userdropdown-view.js -------------------------------------------------------------------------------- /dashboard/app/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/styles/main.scss -------------------------------------------------------------------------------- /dashboard/app/styles/modules/_hex_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/styles/modules/_hex_base.scss -------------------------------------------------------------------------------- /dashboard/app/styles/partials/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/styles/partials/_animations.scss -------------------------------------------------------------------------------- /dashboard/app/styles/partials/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/styles/partials/_base.scss -------------------------------------------------------------------------------- /dashboard/app/styles/partials/_base_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/styles/partials/_base_cards.scss -------------------------------------------------------------------------------- /dashboard/app/styles/partials/_dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/styles/partials/_dashboard.scss -------------------------------------------------------------------------------- /dashboard/app/styles/partials/_graph.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/styles/partials/_graph.scss -------------------------------------------------------------------------------- /dashboard/app/styles/partials/_hex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/styles/partials/_hex.scss -------------------------------------------------------------------------------- /dashboard/app/styles/partials/_hex_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/styles/partials/_hex_base.scss -------------------------------------------------------------------------------- /dashboard/app/styles/partials/_viz.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/styles/partials/_viz.scss -------------------------------------------------------------------------------- /dashboard/app/styles/vendor/_backbone.modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/app/styles/vendor/_backbone.modal.scss -------------------------------------------------------------------------------- /dashboard/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/bower.json -------------------------------------------------------------------------------- /dashboard/documentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/documentation/Makefile -------------------------------------------------------------------------------- /dashboard/documentation/docco.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/documentation/docco.css -------------------------------------------------------------------------------- /dashboard/documentation/docco.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/documentation/docco.jst -------------------------------------------------------------------------------- /dashboard/documentation/network-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/documentation/network-errors.md -------------------------------------------------------------------------------- /dashboard/documentation/states.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/documentation/states.dot -------------------------------------------------------------------------------- /dashboard/documentation/states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/documentation/states.png -------------------------------------------------------------------------------- /dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/package.json -------------------------------------------------------------------------------- /dashboard/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/test/index.html -------------------------------------------------------------------------------- /dashboard/test/lib/chai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/test/lib/chai.js -------------------------------------------------------------------------------- /dashboard/test/lib/expect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/test/lib/expect.js -------------------------------------------------------------------------------- /dashboard/test/lib/mocha/mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/test/lib/mocha/mocha.css -------------------------------------------------------------------------------- /dashboard/test/lib/mocha/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/test/lib/mocha/mocha.js -------------------------------------------------------------------------------- /dashboard/test/spec/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/dashboard/test/spec/test.js -------------------------------------------------------------------------------- /debian/calamari-clients.install: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/calamari-clients.postinst: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /debian/calamari-clients.prerm: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- 1 | ../COPYING -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/debian/rules -------------------------------------------------------------------------------- /get-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/get-versions.sh -------------------------------------------------------------------------------- /login/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /login/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/.editorconfig -------------------------------------------------------------------------------- /login/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /login/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .tmp 4 | .sass-cache 5 | -------------------------------------------------------------------------------- /login/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/.jshintrc -------------------------------------------------------------------------------- /login/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/Gruntfile.js -------------------------------------------------------------------------------- /login/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.sub 2 | -------------------------------------------------------------------------------- /login/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/README.md -------------------------------------------------------------------------------- /login/app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/.htaccess -------------------------------------------------------------------------------- /login/app/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/404.html -------------------------------------------------------------------------------- /login/app/bower_components/backbone/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/backbone/.bower.json -------------------------------------------------------------------------------- /login/app/bower_components/backbone/.gitignore: -------------------------------------------------------------------------------- 1 | raw 2 | *.sw? 3 | .DS_Store 4 | node_modules 5 | -------------------------------------------------------------------------------- /login/app/bower_components/backbone/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | Rakefile 3 | docs/ 4 | raw/ 5 | examples/ 6 | index.html 7 | .jshintrc 8 | -------------------------------------------------------------------------------- /login/app/bower_components/backbone/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/backbone/.travis.yml -------------------------------------------------------------------------------- /login/app/bower_components/backbone/CNAME: -------------------------------------------------------------------------------- 1 | backbonejs.org 2 | 3 | -------------------------------------------------------------------------------- /login/app/bower_components/backbone/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/backbone/LICENSE -------------------------------------------------------------------------------- /login/app/bower_components/backbone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/backbone/README.md -------------------------------------------------------------------------------- /login/app/bower_components/backbone/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/backbone/Rakefile -------------------------------------------------------------------------------- /login/app/bower_components/backbone/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/backbone/backbone.js -------------------------------------------------------------------------------- /login/app/bower_components/backbone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/backbone/index.html -------------------------------------------------------------------------------- /login/app/bower_components/backbone/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./backbone'); 2 | -------------------------------------------------------------------------------- /login/app/bower_components/backbone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/backbone/package.json -------------------------------------------------------------------------------- /login/app/bower_components/backbone/test/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/backbone/test/sync.js -------------------------------------------------------------------------------- /login/app/bower_components/backbone/test/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/backbone/test/view.js -------------------------------------------------------------------------------- /login/app/bower_components/font-awesome/.ruby-version: -------------------------------------------------------------------------------- 1 | 1.9.3-p392 2 | -------------------------------------------------------------------------------- /login/app/bower_components/font-awesome/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/font-awesome/Gemfile -------------------------------------------------------------------------------- /login/app/bower_components/font-awesome/src/CNAME: -------------------------------------------------------------------------------- 1 | fontawesome.io -------------------------------------------------------------------------------- /login/app/bower_components/font-awesome/src/design.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /login/app/bower_components/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/jquery/.bower.json -------------------------------------------------------------------------------- /login/app/bower_components/jquery/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /login/app/bower_components/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/jquery/README.md -------------------------------------------------------------------------------- /login/app/bower_components/jquery/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/jquery/component.json -------------------------------------------------------------------------------- /login/app/bower_components/jquery/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/jquery/composer.json -------------------------------------------------------------------------------- /login/app/bower_components/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/jquery/jquery.js -------------------------------------------------------------------------------- /login/app/bower_components/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/jquery/jquery.min.js -------------------------------------------------------------------------------- /login/app/bower_components/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/jquery/jquery.min.map -------------------------------------------------------------------------------- /login/app/bower_components/jquery/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/jquery/package.json -------------------------------------------------------------------------------- /login/app/bower_components/modernizr/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/modernizr/.bower.json -------------------------------------------------------------------------------- /login/app/bower_components/modernizr/.gitignore: -------------------------------------------------------------------------------- 1 | modernizr.min.js 2 | .DS_Store -------------------------------------------------------------------------------- /login/app/bower_components/modernizr/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/modernizr/.travis.yml -------------------------------------------------------------------------------- /login/app/bower_components/modernizr/grunt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/modernizr/grunt.js -------------------------------------------------------------------------------- /login/app/bower_components/modernizr/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/modernizr/readme.md -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/requirejs/.bower.json -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/requirejs/.gitignore -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/requirejs/LICENSE -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/requirejs/README.md -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/requirejs/index.html -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/requirejs/require.js -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tasks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/requirejs/tasks.txt -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/afterloadreadystate.js: -------------------------------------------------------------------------------- 1 | doh.is("complete", document.readyState); 2 | d.callback(true); 3 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/anon/green.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: "green" 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/anon/message.txt: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/bar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/requirejs/tests/bar -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/browsertests/appendbeforeload/one.dphpd: -------------------------------------------------------------------------------- 1 | 4 | 5 | console.log("ONE"); -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/browsertests/appendbeforeload/two.js: -------------------------------------------------------------------------------- 1 | console.log("TWO"); 2 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/browsertests/async/one.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | window.log("one.php script"); 6 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/browsertests/async/two.js: -------------------------------------------------------------------------------- 1 | window.log("two.js script"); 2 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/browsertests/docwritenested/two.js: -------------------------------------------------------------------------------- 1 | two = { 2 | name: "two" 3 | }; 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/browsertests/onerror/ok.js: -------------------------------------------------------------------------------- 1 | log("ok has executed"); -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/browsertests/scriptload/eight.js: -------------------------------------------------------------------------------- 1 | log("eight.js script"); 2 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/browsertests/scriptload/five.js: -------------------------------------------------------------------------------- 1 | log("five.js script"); 2 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/browsertests/scriptload/nine.js: -------------------------------------------------------------------------------- 1 | log("nine.js script"); 2 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/browsertests/scriptload/one.js: -------------------------------------------------------------------------------- 1 | log("one.js script"); 2 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/browsertests/scriptload/seven.js: -------------------------------------------------------------------------------- 1 | log("seven.js script"); 2 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/browsertests/scriptload/six.js: -------------------------------------------------------------------------------- 1 | log("six.js script"); 2 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/browsertests/scriptload/three.js: -------------------------------------------------------------------------------- 1 | log("three.js script"); 2 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/circular/complexPlugin/toolbar.html: -------------------------------------------------------------------------------- 1 | toolbarTemplate -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/circular/complexPlugin/viewport.html: -------------------------------------------------------------------------------- 1 | viewportTemplate -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/cjsSpace/b.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'b' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/dataMain/baseUrl/a.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'a' 3 | }); 4 | 5 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/definedSpecified/a.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'a' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/definedSpecified/b.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'b' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/error/a.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'a' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/error/b.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'b' 3 | }); 4 | 5 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/error/doubleRequire/b.js: -------------------------------------------------------------------------------- 1 | define(['myShim'], function (broken) { 2 | return { name: 'b' }; 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/error/doubleRequire/c.js: -------------------------------------------------------------------------------- 1 | define(['myShim'], function (broken) { 2 | return { name: 'c' }; 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/foo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/calamari-clients/HEAD/login/app/bower_components/requirejs/tests/foo -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/hasOwnProperty/hasOwnProperty.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'hasOwnProperty' 3 | }); -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/hasOwnProperty/prototype.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'prototype' 3 | }); -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/hasOwnProperty/toString.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'toString' 3 | }); -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/jsonp/lamp.js: -------------------------------------------------------------------------------- 1 | define("lamp", { 2 | color: "blue" 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/layers/helloWorld.txt: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/mapConfig/another/c/dim.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'another/c/dim' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/mapConfig/another/minor.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'another/minor' 3 | }); 4 | 5 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/mapConfig/c.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'c' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/mapConfig/c/sub.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'c/sub' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/mapConfig/c1.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'c1' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/mapConfig/c1/sub.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'c1/sub' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/mapConfig/c2.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'c2' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/mapConfig/c2/sub.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'c2/sub' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/mapConfig/d.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'd' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/mapConfig/plug/c1.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'plug!c1' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/mapConfig/plug/c2.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'plug!c2' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/mapConfig/plug/main.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'plug!main' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/nestedDefine/one.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'one' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/nestedDefine/two.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'two' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/nestedRelativeRequire/main.js: -------------------------------------------------------------------------------- 1 | require(['sub/a']); 2 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/nestedRequire/base.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'base' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/onResourceLoad/b.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'b' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/packages/baz/lib/helper.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: "baz/helper" 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/packages/dojox/door.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'dojox/door' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/packages/dojox/window/pane.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'dojox/window/pane' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/packages/foo/lib/second.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'foo/second' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/packages/funky/lib/monkey.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'monkey' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/packages/optimizing/packages/engine/pistons.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'pistons' 3 | }); -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/packages/optimizing/packages/engine/sparkplugs.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'sparkplugs' 3 | }); -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/packages/optimizing/packages/fuel/main.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'fuel' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/packages/optimizing/packages/tires/main.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'tires' 3 | }); -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/packages/pkgs/alpha/main.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'alpha' 3 | }); -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/packages/pkgs/alpha/replace.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'alpha/replace' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/packages/pkgs/beta/0.2/scripts/beta.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | return 'beta'; 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/packages/pkgs/beta/0.2/scripts/util.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'beta/util' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/packages/pkgs/dojox/chair/legs.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'dojox/chair/legs' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/packages/pkgs/dojox/table/legs.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'dojox/table/legs' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/pathArray/real.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'real' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/paths/impl/util.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'impl/util' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/paths/relativeNormalize/foo2.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'foo2' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/paths/util.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'util' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/plugins/a.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'a' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/plugins/c.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: "c" 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/plugins/pluginLast/bigCollection.html: -------------------------------------------------------------------------------- 1 | bigCollection -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/plugins/pluginLast/common.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'common' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/plugins/pluginLast/component.html: -------------------------------------------------------------------------------- 1 | component -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/plugins/pluginLast/specificCollection.html: -------------------------------------------------------------------------------- 1 | specificCollection -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/plugins/prime/a.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'aPrime' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/plugins/prime/c.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: "cPrime" 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/plugins/textDepend/test.txt: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/relative/foo/bar.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'bar' 3 | }); 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/relative/foo/bar/message.txt: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/shim/d.js: -------------------------------------------------------------------------------- 1 | function D() { 2 | this.name = 'd'; 3 | }; 4 | -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/text/plain.txt: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /login/app/bower_components/requirejs/tests/text/resources/local.html: -------------------------------------------------------------------------------- 1 |