-
Notifications
You must be signed in to change notification settings - Fork 293
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upload required files to allow: Fullscreen maps Closeby icon management Markers for Server and Monitor. Route lines for connections between client/server Set FavIcon Layer management for markers Correct Variable Capitilization Update README.md Correct Alias for JS and CSS (copy paste issue) Update Control.FullScreen.js Update setup.py Fix Trailing whitespace Update openvpn-monitor.py Fix indent with tab not spaces Update Control.FullScreen.js fix Strings must use doublequote. (quotes) Update Control.FullScreen.js Strings must use doublequote Update Control.FullScreen.js Fix Expected method shorthand Update Control.FullScreen.js Expected method shorthand. (object-shorthand) Update openvpn-monitor.py Fix Found indentation with tabs instead of spaces Fix Unnecessary semicolon Update setup.py Fix Trailing whitespace Update Control.FullScreen.js Move the invocation into the parens that contain the function. (wrap-iife) Update openvpn-monitor.py Fix Found indentation with tabs instead of spaces Update openvpn-monitor.py convert to bool statements to fix: The if statement can be replaced with 'var = bool(test)' if 'marker' in vpn and vpn['marker'] == 'True': Update openvpn-monitor.py Trailing Whitespace Update Control.FullScreen.js Undo shorthand of functions. Testing proved that it broke ie11 (edge is fine) This will be a change in the future when ie11 is removed from support Update README.md removed references to example .conf file removed Alias references for js and css - move to cdnjs Update setup.py Remove os.walk for css and js Delete Control.FullScreen.js move to cdnjs Delete oms.min.js move to cdnjs Delete Control.FullScreen.css move to cdnjs Delete icon-fullscreen-2x.png move to cdnjs Delete icon-fullscreen.png move to cdnjs Delete openvpn-monitor.conf.example remove pending pip testing Update openvpn-monitor.py fix Avoid using "non-Pythonic" variable name cdnjs - spiderfy OverlappingSpidifier-Leaflet cdnjs commit add missing function brackets add git-lint-diff travis checks replace tabs with spaces travis-ci fixes trailing whitespaces travis-ci fixes travis-ci fixes travis-ci fixes travis-ci fixes travis-ci fixes quantified code fix fix codacy travis-ci fixes travis-ci fixes travis-ci fixes travis ci fixes travis-ci syntax travis-ci fixes travis-ci fixes travis-ci fixes travis-ci fixes travis-ci fixes travis-ci fixes travis-ci fixes travis-ci fixes travis-ci noqa
- Loading branch information
Showing
12 changed files
with
346 additions
and
29 deletions.
There are no files selected for viewing
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
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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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,41 @@ | ||
[tox] | ||
skipsdist = True | ||
envlist = | ||
py27 | ||
py34 | ||
py27-flake8 | ||
|
||
[testenv] | ||
commands = nosetests | ||
deps = | ||
nose | ||
-rrequirements.txt | ||
|
||
[testenv:py27] | ||
basepython = python2.7 | ||
deps = | ||
{[testenv]deps} | ||
|
||
[testenv:py34] | ||
basepython = python3.4 | ||
deps = | ||
{[testenv]deps} | ||
|
||
|
||
[testenv:py27-flake8] | ||
basepython = python2.7 | ||
deps = | ||
flake8 | ||
git+https://github.com/russell/git-lint-diff.git#egg=git-lint-diff | ||
commands = git-lint-diff --linter flake8 -- flake8 | ||
|
||
[testenv:py34-flake8] | ||
basepython = python3.4 | ||
deps = | ||
flake8 | ||
git+https://github.com/russell/git-lint-diff.git#egg=git-lint-diff | ||
commands = git-lint-diff --linter flake8 -- flake8 | ||
|
||
[flake8] | ||
builtins = _ | ||
exclude = .venv,.git,.tox,dist,doc,*lib/python*,*egg,build,*migrations* |