├── .gitignore ├── .idea └── libraries │ └── GOPATH__ceph_web_.xml ├── Dockerfile ├── LICENSE ├── README.md ├── apitest ├── auth_list.json ├── auth_list.sh ├── health.json ├── health.sh ├── list_api.sh ├── mds_compat_show.json ├── mds_compat_show.md ├── mds_stat.json ├── mds_stat.sh ├── osd_blacklist.sh ├── osd_blacklist_ls.json ├── osd_crush_dump.json ├── osd_crush_dump.sh ├── osd_crush_rule_list.json ├── osd_crush_rule_list.md ├── osd_df.json ├── osd_df.sh ├── osd_tree.json ├── osd_tree.sh ├── pg_stat.json ├── pg_stat.sh ├── quorum_status.json └── quorum_status.sh ├── conf └── app.conf ├── controllers └── default.go ├── main.go ├── routers └── router.go ├── run ├── screenshot.png ├── static ├── bower.json ├── bower_components │ ├── bootstrap-material-design │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── Gruntfile.js │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bootstrap-elements.html │ │ ├── bower.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── material-fullpalette.css │ │ │ │ ├── material-fullpalette.css.map │ │ │ │ ├── material-fullpalette.min.css │ │ │ │ ├── material-fullpalette.min.css.map │ │ │ │ ├── material.css │ │ │ │ ├── material.css.map │ │ │ │ ├── material.min.css │ │ │ │ ├── material.min.css.map │ │ │ │ ├── ripples.css │ │ │ │ ├── ripples.css.map │ │ │ │ ├── ripples.min.css │ │ │ │ ├── ripples.min.css.map │ │ │ │ ├── roboto.css │ │ │ │ ├── roboto.css.map │ │ │ │ ├── roboto.min.css │ │ │ │ └── roboto.min.css.map │ │ │ ├── fonts │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Material-Design-Icons.eot │ │ │ │ ├── Material-Design-Icons.svg │ │ │ │ ├── Material-Design-Icons.ttf │ │ │ │ ├── Material-Design-Icons.woff │ │ │ │ ├── RobotoDraftBold.woff │ │ │ │ ├── RobotoDraftBold.woff2 │ │ │ │ ├── RobotoDraftItalic.woff │ │ │ │ ├── RobotoDraftItalic.woff2 │ │ │ │ ├── RobotoDraftMedium.woff │ │ │ │ ├── RobotoDraftMedium.woff2 │ │ │ │ ├── RobotoDraftRegular.woff │ │ │ │ └── RobotoDraftRegular.woff2 │ │ │ ├── js │ │ │ │ ├── material.js │ │ │ │ ├── material.min.js │ │ │ │ ├── material.min.js.map │ │ │ │ ├── ripples.js │ │ │ │ ├── ripples.min.js │ │ │ │ └── ripples.min.js.map │ │ │ └── test.html │ │ ├── fonts │ │ │ ├── LICENSE.txt │ │ │ ├── Material-Design-Icons.eot │ │ │ ├── Material-Design-Icons.svg │ │ │ ├── Material-Design-Icons.ttf │ │ │ ├── Material-Design-Icons.woff │ │ │ ├── RobotoDraftBold.woff │ │ │ ├── RobotoDraftBold.woff2 │ │ │ ├── RobotoDraftItalic.woff │ │ │ ├── RobotoDraftItalic.woff2 │ │ │ ├── RobotoDraftMedium.woff │ │ │ ├── RobotoDraftMedium.woff2 │ │ │ ├── RobotoDraftRegular.woff │ │ │ └── RobotoDraftRegular.woff2 │ │ ├── less │ │ │ ├── _alerts.less │ │ │ ├── _buttons.less │ │ │ ├── _cards.less │ │ │ ├── _checkboxes.less │ │ │ ├── _colors.less │ │ │ ├── _dialogs.less │ │ │ ├── _dividers.less │ │ │ ├── _icons-material-design.less │ │ │ ├── _icons.less │ │ │ ├── _inputs.less │ │ │ ├── _labels.less │ │ │ ├── _lists.less │ │ │ ├── _mixins-fullpalette.less │ │ │ ├── _mixins.less │ │ │ ├── _navbar.less │ │ │ ├── _panels.less │ │ │ ├── _plugin-dropdownjs.less │ │ │ ├── _plugin-nouislider.less │ │ │ ├── _plugin-selectize.less │ │ │ ├── _plugin-snackbarjs.less │ │ │ ├── _popups.less │ │ │ ├── _progress.less │ │ │ ├── _radios.less │ │ │ ├── _shadows.less │ │ │ ├── _tabs.less │ │ │ ├── _togglebutton.less │ │ │ ├── _variables.less │ │ │ ├── _welljumbo.less │ │ │ ├── material-fullpalette.less │ │ │ ├── material.less │ │ │ ├── ripples.less │ │ │ └── roboto.less │ │ ├── meteor │ │ │ ├── README.md │ │ │ ├── example │ │ │ │ ├── client │ │ │ │ │ ├── bmd.css │ │ │ │ │ ├── bmd.html │ │ │ │ │ └── bmd.js │ │ │ │ ├── run.bat │ │ │ │ └── run.sh │ │ │ ├── init.js │ │ │ ├── package-fullpalette.js │ │ │ ├── package-noglyph.js │ │ │ ├── package-noicons.js │ │ │ ├── package.js │ │ │ ├── test-noicons.js │ │ │ └── test.js │ │ ├── package.js │ │ ├── package.json │ │ ├── sass │ │ │ ├── _alerts.scss │ │ │ ├── _animations.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _checkboxes.scss │ │ │ ├── _icons-material-design.scss │ │ │ ├── _icons.scss │ │ │ ├── _inputs.scss │ │ │ ├── _lists.scss │ │ │ ├── _mixins.scss │ │ │ ├── _navbar.scss │ │ │ ├── _plugin-nouislider.scss │ │ │ ├── _plugin-snackbarjs.scss │ │ │ ├── _popups.scss │ │ │ ├── _progress.scss │ │ │ ├── _radios.scss │ │ │ ├── _shadows.scss │ │ │ ├── _tabs.scss │ │ │ ├── _variables.scss │ │ │ ├── _welljumbo.scss │ │ │ ├── material-wfont.scss │ │ │ ├── material.scss │ │ │ └── ripples.scss │ │ └── scripts │ │ │ ├── material.js │ │ │ └── ripples.js │ ├── bootstrap │ │ ├── .bower.json │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.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 │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── grunt │ │ │ ├── .jshintrc │ │ │ ├── bs-commonjs-generator.js │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ ├── bs-lessdoc-parser.js │ │ │ ├── bs-raw-files-generator.js │ │ │ ├── configBridge.json │ │ │ └── sauce_browsers.yml │ │ ├── js │ │ │ ├── .jscsrc │ │ │ ├── .jshintrc │ │ │ ├── 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 │ │ │ ├── .csscomb.json │ │ │ ├── .csslintrc │ │ │ ├── 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 │ │ │ ├── mixins │ │ │ │ ├── alerts.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-block.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── forms.less │ │ │ │ ├── gradients.less │ │ │ │ ├── grid-framework.less │ │ │ │ ├── grid.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── image.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── opacity.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── reset-text.less │ │ │ │ ├── resize.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── size.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── table-row.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ └── vendor-prefixes.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-embed.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ ├── package.js │ │ └── package.json │ └── jquery │ │ ├── .bower.json │ │ ├── MIT-LICENSE.txt │ │ ├── bower.json │ │ ├── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ │ └── src │ │ ├── ajax.js │ │ ├── ajax │ │ ├── jsonp.js │ │ ├── load.js │ │ ├── parseJSON.js │ │ ├── parseXML.js │ │ ├── script.js │ │ ├── var │ │ │ ├── nonce.js │ │ │ └── rquery.js │ │ └── xhr.js │ │ ├── attributes.js │ │ ├── attributes │ │ ├── attr.js │ │ ├── classes.js │ │ ├── prop.js │ │ ├── support.js │ │ └── val.js │ │ ├── callbacks.js │ │ ├── core.js │ │ ├── core │ │ ├── access.js │ │ ├── init.js │ │ ├── parseHTML.js │ │ ├── ready.js │ │ └── var │ │ │ └── rsingleTag.js │ │ ├── css.js │ │ ├── css │ │ ├── addGetHookIf.js │ │ ├── curCSS.js │ │ ├── defaultDisplay.js │ │ ├── hiddenVisibleSelectors.js │ │ ├── support.js │ │ ├── swap.js │ │ └── var │ │ │ ├── cssExpand.js │ │ │ ├── getStyles.js │ │ │ ├── isHidden.js │ │ │ ├── rmargin.js │ │ │ └── rnumnonpx.js │ │ ├── data.js │ │ ├── data │ │ ├── Data.js │ │ ├── accepts.js │ │ └── var │ │ │ ├── data_priv.js │ │ │ └── data_user.js │ │ ├── deferred.js │ │ ├── deprecated.js │ │ ├── dimensions.js │ │ ├── effects.js │ │ ├── effects │ │ ├── Tween.js │ │ └── animatedSelector.js │ │ ├── event.js │ │ ├── event │ │ ├── ajax.js │ │ ├── alias.js │ │ └── support.js │ │ ├── exports │ │ ├── amd.js │ │ └── global.js │ │ ├── intro.js │ │ ├── jquery.js │ │ ├── manipulation.js │ │ ├── manipulation │ │ ├── _evalUrl.js │ │ ├── support.js │ │ └── var │ │ │ └── rcheckableType.js │ │ ├── offset.js │ │ ├── outro.js │ │ ├── queue.js │ │ ├── queue │ │ └── delay.js │ │ ├── selector-native.js │ │ ├── selector-sizzle.js │ │ ├── selector.js │ │ ├── serialize.js │ │ ├── sizzle │ │ └── dist │ │ │ ├── sizzle.js │ │ │ ├── sizzle.min.js │ │ │ └── sizzle.min.map │ │ ├── traversing.js │ │ ├── traversing │ │ ├── findFilter.js │ │ └── var │ │ │ └── rneedsContext.js │ │ ├── var │ │ ├── arr.js │ │ ├── class2type.js │ │ ├── concat.js │ │ ├── hasOwn.js │ │ ├── indexOf.js │ │ ├── pnum.js │ │ ├── push.js │ │ ├── rnotwhite.js │ │ ├── slice.js │ │ ├── strundefined.js │ │ ├── support.js │ │ └── toString.js │ │ └── wrap.js ├── css │ └── style.css └── js │ └── style.js ├── tests └── default_test.go └── views └── index.tpl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/libraries/GOPATH__ceph_web_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/.idea/libraries/GOPATH__ceph_web_.xml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/README.md -------------------------------------------------------------------------------- /apitest/auth_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/apitest/auth_list.json -------------------------------------------------------------------------------- /apitest/auth_list.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | bat 192.168.99.100:5000/api/v0.1/auth/list 4 | -------------------------------------------------------------------------------- /apitest/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/apitest/health.json -------------------------------------------------------------------------------- /apitest/health.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | bat 192.168.99.100:5000/api/v0.1/health 4 | -------------------------------------------------------------------------------- /apitest/list_api.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | bat 192.168.99.100:5000/api/v0.1 4 | -------------------------------------------------------------------------------- /apitest/mds_compat_show.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/apitest/mds_compat_show.json -------------------------------------------------------------------------------- /apitest/mds_compat_show.md: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | bat 192.168.99.100:5000/api/v0.1/mds/compat/show 4 | -------------------------------------------------------------------------------- /apitest/mds_stat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/apitest/mds_stat.json -------------------------------------------------------------------------------- /apitest/mds_stat.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | bat 192.168.99.100:5000/api/v0.1/mds/stat 4 | -------------------------------------------------------------------------------- /apitest/osd_blacklist.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | bat 192.168.99.100:5000/api/v0.1/osd/blacklist/ls 4 | -------------------------------------------------------------------------------- /apitest/osd_blacklist_ls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/apitest/osd_blacklist_ls.json -------------------------------------------------------------------------------- /apitest/osd_crush_dump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/apitest/osd_crush_dump.json -------------------------------------------------------------------------------- /apitest/osd_crush_dump.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | bat 192.168.99.100:5000/api/v0.1/osd/crush/dump 4 | -------------------------------------------------------------------------------- /apitest/osd_crush_rule_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/apitest/osd_crush_rule_list.json -------------------------------------------------------------------------------- /apitest/osd_crush_rule_list.md: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | bat 192.168.99.100:5000/api/v0.1/osd/crush/rule/list 4 | -------------------------------------------------------------------------------- /apitest/osd_df.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/apitest/osd_df.json -------------------------------------------------------------------------------- /apitest/osd_df.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | bat 192.168.99.100:5000/api/v0.1/osd/df 4 | -------------------------------------------------------------------------------- /apitest/osd_tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/apitest/osd_tree.json -------------------------------------------------------------------------------- /apitest/osd_tree.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | bat 192.168.99.100:5000/api/v0.1/osd/tree 4 | -------------------------------------------------------------------------------- /apitest/pg_stat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/apitest/pg_stat.json -------------------------------------------------------------------------------- /apitest/pg_stat.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | bat 192.168.99.100:5000/api/v0.1/pg/stat 4 | -------------------------------------------------------------------------------- /apitest/quorum_status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/apitest/quorum_status.json -------------------------------------------------------------------------------- /apitest/quorum_status.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | bat 192.168.99.100:5000/api/v0.1/quorum_status 4 | -------------------------------------------------------------------------------- /conf/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/conf/app.conf -------------------------------------------------------------------------------- /controllers/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/controllers/default.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/main.go -------------------------------------------------------------------------------- /routers/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/routers/router.go -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sudo docker run -d --net=host tobegit3hub/ceph-web -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/screenshot.png -------------------------------------------------------------------------------- /static/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower.json -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/.bower.json -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/CHANGELOG.md -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/Gruntfile.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/LICENSE.md -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/README.md -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/bootstrap-elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/bootstrap-elements.html -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/bower.json -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/css/material-fullpalette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/css/material-fullpalette.css -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/css/material-fullpalette.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/css/material-fullpalette.css.map -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/css/material-fullpalette.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/css/material-fullpalette.min.css -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/css/material-fullpalette.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/css/material-fullpalette.min.css.map -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/css/material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/css/material.css -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/css/material.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/css/material.css.map -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/css/material.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/css/material.min.css -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/css/material.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/css/material.min.css.map -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/css/ripples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/css/ripples.css -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/css/ripples.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/css/ripples.css.map -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/css/ripples.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/css/ripples.min.css -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/css/ripples.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/css/ripples.min.css.map -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/css/roboto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/css/roboto.css -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/css/roboto.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/css/roboto.css.map -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/css/roboto.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/css/roboto.min.css -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/css/roboto.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/css/roboto.min.css.map -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/fonts/LICENSE.txt -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/fonts/Material-Design-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/fonts/Material-Design-Icons.eot -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/fonts/Material-Design-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/fonts/Material-Design-Icons.svg -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/fonts/Material-Design-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/fonts/Material-Design-Icons.ttf -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/fonts/Material-Design-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/fonts/Material-Design-Icons.woff -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/fonts/RobotoDraftBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/fonts/RobotoDraftBold.woff -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/fonts/RobotoDraftBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/fonts/RobotoDraftBold.woff2 -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/fonts/RobotoDraftItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/fonts/RobotoDraftItalic.woff -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/fonts/RobotoDraftItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/fonts/RobotoDraftItalic.woff2 -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/fonts/RobotoDraftMedium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/fonts/RobotoDraftMedium.woff -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/fonts/RobotoDraftMedium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/fonts/RobotoDraftMedium.woff2 -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/fonts/RobotoDraftRegular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/fonts/RobotoDraftRegular.woff -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/fonts/RobotoDraftRegular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/fonts/RobotoDraftRegular.woff2 -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/js/material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/js/material.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/js/material.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/js/material.min.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/js/material.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/js/material.min.js.map -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/js/ripples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/js/ripples.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/js/ripples.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/js/ripples.min.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/js/ripples.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/js/ripples.min.js.map -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/dist/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/dist/test.html -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/fonts/LICENSE.txt -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/fonts/Material-Design-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/fonts/Material-Design-Icons.eot -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/fonts/Material-Design-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/fonts/Material-Design-Icons.svg -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/fonts/Material-Design-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/fonts/Material-Design-Icons.ttf -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/fonts/Material-Design-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/fonts/Material-Design-Icons.woff -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/fonts/RobotoDraftBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/fonts/RobotoDraftBold.woff -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/fonts/RobotoDraftBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/fonts/RobotoDraftBold.woff2 -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/fonts/RobotoDraftItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/fonts/RobotoDraftItalic.woff -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/fonts/RobotoDraftItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/fonts/RobotoDraftItalic.woff2 -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/fonts/RobotoDraftMedium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/fonts/RobotoDraftMedium.woff -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/fonts/RobotoDraftMedium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/fonts/RobotoDraftMedium.woff2 -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/fonts/RobotoDraftRegular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/fonts/RobotoDraftRegular.woff -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/fonts/RobotoDraftRegular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/fonts/RobotoDraftRegular.woff2 -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_alerts.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_buttons.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_cards.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_cards.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_checkboxes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_checkboxes.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_colors.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_colors.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_dialogs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_dialogs.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_dividers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_dividers.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_icons-material-design.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_icons-material-design.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_icons.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_inputs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_inputs.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_labels.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_lists.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_lists.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_mixins-fullpalette.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_mixins-fullpalette.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_mixins.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_navbar.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_panels.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_plugin-dropdownjs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_plugin-dropdownjs.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_plugin-nouislider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_plugin-nouislider.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_plugin-selectize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_plugin-selectize.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_plugin-snackbarjs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_plugin-snackbarjs.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_popups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_popups.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_progress.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_progress.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_radios.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_radios.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_shadows.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_shadows.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_tabs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_tabs.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_togglebutton.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_togglebutton.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_variables.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/_welljumbo.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/_welljumbo.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/material-fullpalette.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/material-fullpalette.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/material.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/material.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/ripples.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/ripples.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/less/roboto.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/less/roboto.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/meteor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/meteor/README.md -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/meteor/example/client/bmd.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: #8BC34A; 3 | } 4 | -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/meteor/example/client/bmd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/meteor/example/client/bmd.html -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/meteor/example/client/bmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/meteor/example/client/bmd.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/meteor/example/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/meteor/example/run.bat -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/meteor/example/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/meteor/example/run.sh -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/meteor/init.js: -------------------------------------------------------------------------------- 1 | Meteor.startup(function () { 2 | $.material.init(); 3 | }); 4 | -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/meteor/package-fullpalette.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/meteor/package-fullpalette.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/meteor/package-noglyph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/meteor/package-noglyph.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/meteor/package-noicons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/meteor/package-noicons.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/meteor/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/meteor/package.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/meteor/test-noicons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/meteor/test-noicons.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/meteor/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/meteor/test.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/package.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/package.json -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/_alerts.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/_animations.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/_buttons.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/_cards.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/_checkboxes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/_checkboxes.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/_icons-material-design.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/_icons-material-design.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/_icons.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/_inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/_inputs.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/_lists.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/_mixins.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/_navbar.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/_plugin-nouislider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/_plugin-nouislider.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/_plugin-snackbarjs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/_plugin-snackbarjs.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/_popups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/_popups.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/_progress.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/_radios.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/_radios.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/_shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/_shadows.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/_tabs.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/_variables.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/_welljumbo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/_welljumbo.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/material-wfont.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/material-wfont.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/material.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/material.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/sass/ripples.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/sass/ripples.scss -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/scripts/material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/scripts/material.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap-material-design/scripts/ripples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap-material-design/scripts/ripples.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/.bower.json -------------------------------------------------------------------------------- /static/bower_components/bootstrap/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/Gruntfile.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/LICENSE -------------------------------------------------------------------------------- /static/bower_components/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/README.md -------------------------------------------------------------------------------- /static/bower_components/bootstrap/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/bower.json -------------------------------------------------------------------------------- /static/bower_components/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/bower_components/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/bower_components/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/bower_components/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /static/bower_components/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/bower_components/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/bower_components/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/bower_components/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/bower_components/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/bower_components/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/grunt/.jshintrc -------------------------------------------------------------------------------- /static/bower_components/bootstrap/grunt/bs-commonjs-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/grunt/bs-commonjs-generator.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/grunt/bs-glyphicons-data-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/grunt/bs-glyphicons-data-generator.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/grunt/bs-lessdoc-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/grunt/bs-lessdoc-parser.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/grunt/bs-raw-files-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/grunt/bs-raw-files-generator.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/grunt/configBridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/grunt/configBridge.json -------------------------------------------------------------------------------- /static/bower_components/bootstrap/grunt/sauce_browsers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/grunt/sauce_browsers.yml -------------------------------------------------------------------------------- /static/bower_components/bootstrap/js/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/js/.jscsrc -------------------------------------------------------------------------------- /static/bower_components/bootstrap/js/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/js/.jshintrc -------------------------------------------------------------------------------- /static/bower_components/bootstrap/js/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/js/affix.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/js/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/js/alert.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/js/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/js/button.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/js/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/js/carousel.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/js/collapse.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/js/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/js/dropdown.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/js/modal.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/js/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/js/popover.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/js/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/js/scrollspy.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/js/tab.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/js/tooltip.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/js/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/js/transition.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/.csscomb.json -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/.csslintrc -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/alerts.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/badges.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/bootstrap.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/breadcrumbs.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/button-groups.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/buttons.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/carousel.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/close.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/code.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/component-animations.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/dropdowns.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/forms.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/glyphicons.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/grid.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/input-groups.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/jumbotron.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/labels.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/list-group.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/media.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/alerts.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/background-variant.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/background-variant.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/border-radius.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/border-radius.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/buttons.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/center-block.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/center-block.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/clearfix.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/clearfix.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/forms.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/gradients.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/gradients.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/grid-framework.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/grid-framework.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/grid.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/hide-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/hide-text.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/image.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/labels.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/list-group.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/nav-divider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/nav-divider.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/nav-vertical-align.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/opacity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/opacity.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/pagination.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/panels.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/progress-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/progress-bar.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/reset-filter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/reset-filter.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/reset-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/reset-text.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/resize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/resize.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/responsive-visibility.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/size.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/tab-focus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/tab-focus.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/table-row.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/table-row.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/text-emphasis.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/text-overflow.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/text-overflow.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/mixins/vendor-prefixes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/mixins/vendor-prefixes.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/modals.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/navbar.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/navs.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/normalize.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/pager.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/pagination.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/panels.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/popovers.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/print.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/progress-bars.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/responsive-embed.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/responsive-embed.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/responsive-utilities.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/scaffolding.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/tables.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/theme.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/thumbnails.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/tooltip.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/type.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/utilities.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/variables.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/less/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/less/wells.less -------------------------------------------------------------------------------- /static/bower_components/bootstrap/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/package.js -------------------------------------------------------------------------------- /static/bower_components/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/bootstrap/package.json -------------------------------------------------------------------------------- /static/bower_components/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/.bower.json -------------------------------------------------------------------------------- /static/bower_components/jquery/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/MIT-LICENSE.txt -------------------------------------------------------------------------------- /static/bower_components/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/bower.json -------------------------------------------------------------------------------- /static/bower_components/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/dist/jquery.js -------------------------------------------------------------------------------- /static/bower_components/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /static/bower_components/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /static/bower_components/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/ajax.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/ajax/parseJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/ajax/parseJSON.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/ajax/parseXML.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/ajax/var/nonce.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\?/); 3 | }); 4 | -------------------------------------------------------------------------------- /static/bower_components/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/attributes.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/attributes/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/attributes/attr.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/attributes/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/attributes/classes.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/attributes/prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/attributes/prop.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/attributes/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/attributes/support.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/attributes/val.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/attributes/val.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/callbacks.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/core.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/core/access.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/core/init.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/core/parseHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/core/parseHTML.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/core/ready.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // Match a standalone tag 3 | return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); 4 | }); 5 | -------------------------------------------------------------------------------- /static/bower_components/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/css.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/css/addGetHookIf.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/css/defaultDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/css/defaultDisplay.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/css/hiddenVisibleSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/css/hiddenVisibleSelectors.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/css/support.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/css/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/css/swap.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/css/var/cssExpand.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/css/var/getStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/css/var/getStyles.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/css/var/isHidden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/css/var/isHidden.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /static/bower_components/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/css/var/rnumnonpx.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/data.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/data/Data.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/data/accepts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/data/accepts.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/data/var/data_priv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/data/var/data_priv.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/data/var/data_user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/data/var/data_user.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/deferred.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/deprecated.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/dimensions.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/effects.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/effects/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/effects/Tween.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/effects/animatedSelector.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/event.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/event/ajax.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/event/alias.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/event/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/event/support.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/exports/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/exports/global.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/intro.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/jquery.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/manipulation.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/manipulation/_evalUrl.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/manipulation/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/manipulation/support.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^(?:checkbox|radio)$/i); 3 | }); 4 | -------------------------------------------------------------------------------- /static/bower_components/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/offset.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /static/bower_components/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/queue.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/selector-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/selector-native.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/selector-sizzle.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /static/bower_components/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/serialize.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/sizzle/dist/sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/sizzle/dist/sizzle.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/sizzle/dist/sizzle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/sizzle/dist/sizzle.min.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/sizzle/dist/sizzle.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/sizzle/dist/sizzle.min.map -------------------------------------------------------------------------------- /static/bower_components/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/traversing.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/traversing/findFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/traversing/findFilter.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/traversing/var/rneedsContext.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /static/bower_components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // [[Class]] -> type pairs 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /static/bower_components/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/var/concat.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/var/push.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /static/bower_components/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/var/slice.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/var/strundefined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/var/strundefined.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/var/support.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/var/toString.js -------------------------------------------------------------------------------- /static/bower_components/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/static/bower_components/jquery/src/wrap.js -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/js/style.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/default_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/tests/default_test.go -------------------------------------------------------------------------------- /views/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/ceph-web/HEAD/views/index.tpl --------------------------------------------------------------------------------