-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #315 from SpiderOak/management_console_3.4.0
Management console 3.4.0
- Loading branch information
Showing
27 changed files
with
959 additions
and
175 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
django/apps/blue_management/blue_mgnt/static/css/console-min.css
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
...ps/blue_management/blue_mgnt/static/vendor/password-strength-meter-1.2.1/.codeclimate.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
engines: | ||
eslint: | ||
enabled: true | ||
csslint: | ||
enabled: true | ||
duplication: | ||
enabled: true | ||
config: | ||
languages: | ||
- javascript | ||
fixme: | ||
enabled: true | ||
ratings: | ||
paths: | ||
- src/** | ||
exclude_paths: | ||
- dist/**/* | ||
- test/**/* | ||
- src/index.html |
13 changes: 13 additions & 0 deletions
13
.../apps/blue_management/blue_mgnt/static/vendor/password-strength-meter-1.2.1/.editorconfig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
charset = utf-8 | ||
|
||
[*.html] | ||
indent_size = 4 |
7 changes: 7 additions & 0 deletions
7
django/apps/blue_management/blue_mgnt/static/vendor/password-strength-meter-1.2.1/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/node_modules | ||
/dist | ||
*.log | ||
/bower_components | ||
/coverage | ||
|
||
yarn.lock |
35 changes: 35 additions & 0 deletions
35
...go/apps/blue_management/blue_mgnt/static/vendor/password-strength-meter-1.2.1/.travis.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
language: node_js | ||
node_js: | ||
- '6' | ||
|
||
git: | ||
depth: 1 | ||
|
||
branches: | ||
except: | ||
- gh-pages | ||
|
||
env: | ||
global: | ||
secure: bye5+hTpxM3+hC1CMrFWJKhaNgle+D1EYy+WyNFEh+GWD3UpHhrkIAzxk66CZaSaBf2FOf/3Asw8E7ZBokSJ1mQGcyvSHpy4DTniNcI69BW0QI5SoGTXHKhpbfNfZUaUwUchIYZdc7VR0MN7P+Vs1nW5xZE2VgyAsY641yVRy/uvpqQeKIqcZqY5CGgwt2AceBjgxR3arJdcgA0ASW/0uIp+NaE5Mfj/Uf2KCItGAEcg1UV8Wcq45yB8sNyhYnMO51h5aMozFMIJmgheeISbEZSFa/kGb1rGK+jvjwsRLKzGb6bMeYTcYACVGdI78pI3KaWkmDS0+WeQw2hOU76ugsJHYEl/CmVkQ2TKpmjQaK7SsRi6nS95G82mI08ZJcx+X1q8hSQ7rXtPoM9f+juk3Zv8xdOKxYR1M5p7REu053Nhp+RwfTFljWTdFAYBxaKAtAmt4VYE+MnOz8PDvrlc+o24kJJSMahPonpI4EKRW/Pm/XJwzEKnC8Voy4a6623RdO7gzG5ZRf5DNDLCAaqiziseLZRKHRx1dFDefnNuNgOUGIeRfbWY9Dwbde5G2KG15ZYcIMfqrJpaSWfqBcgag/2iU/WLahF/7pbeHdYHI1fVMz01GXyf+yn4Hcpt4r5A+jHzB0Td9BLkb2TqTvTaUqQk2gHrbsS1P0XORjIacJQ= | ||
|
||
addons: | ||
sauce_connect: true | ||
|
||
cache: | ||
yarn: true | ||
|
||
install: | ||
- npm install -g yarn | ||
|
||
before_script: | ||
- yarn install | ||
- yarn add codecov -g | ||
|
||
script: | ||
- yarn test | ||
|
||
after_success: | ||
- cat coverage/*/lcov.info > coverage/lcov.info | ||
- codecov | ||
- if [ $TRAVIS_BRANCH = 'master' ]; then sh build.sh; fi |
Oops, something went wrong.