forked from python-restx/flask-restx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to Swagger UI 3.4.0 (fix python-restx#338)
- Loading branch information
1 parent
9b27879
commit 962a100
Showing
12 changed files
with
130 additions
and
158 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,4 +58,5 @@ prof/ | |
doc/_build/ | ||
|
||
# Specifics | ||
flask_restplus/static/bower | ||
flask_restplus/static | ||
node_modules |
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 was deleted.
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
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 |
---|---|---|
@@ -1,28 +1,11 @@ | ||
<script src="{{ swagger_static('lib/object-assign-pollyfill.js') }}" type="text/javascript"></script> | ||
<script src="{{ swagger_static('lib/jquery-1.8.0.min.js') }}" type="text/javascript"></script> | ||
<script src="{{ swagger_static('lib/jquery.slideto.min.js') }}" type="text/javascript"></script> | ||
<script src="{{ swagger_static('lib/jquery.wiggle.min.js') }}" type="text/javascript"></script> | ||
<script src="{{ swagger_static('lib/jquery.ba-bbq.min.js') }}" type="text/javascript"></script> | ||
<script src="{{ swagger_static('lib/handlebars-4.0.5.js') }}" type="text/javascript"></script> | ||
<script src="{{ swagger_static('lib/lodash.min.js') }}" type="text/javascript"></script> | ||
<script src="{{ swagger_static('lib/backbone-min.js') }}" type="text/javascript"></script> | ||
{% if config.DEBUG %} | ||
<script src="{{ swagger_static('swagger-ui.js') }}" type="text/javascript"></script> | ||
{% else %} | ||
<script src="{{ swagger_static('swagger-ui.min.js') }}" type="text/javascript"></script> | ||
{% endif %} | ||
<script src="{{ swagger_static('lib/highlight.9.1.0.pack.js') }}" type="text/javascript"></script> | ||
<script src="{{ swagger_static('lib/highlight.9.1.0.pack_extended.js') }}" type="text/javascript"></script> | ||
<script src="{{ swagger_static('lib/jsoneditor.min.js') }}" type='text/javascript'></script> | ||
<script src="{{ swagger_static('lib/marked.js') }}" type="text/javascript"></script> | ||
|
||
<!-- enabling this will enable oauth2 implicit scope support --> | ||
<script src="{{ swagger_static('lib/swagger-oauth.js') }}" type="text/javascript"></script> | ||
|
||
{# | ||
{% if config.SWAGGER_UI_LANGUAGES %} | ||
<script src="{{ swagger_static('lang/translator.js') }}" type='text/javascript'></script> | ||
{% for lang in config.SWAGGER_UI_LANGUAGES %} | ||
{% set filename = 'lang/{0}.js'.format(lang) %} | ||
<script src="{{ swagger_static(filename) }}" type='text/javascript'></script> | ||
{% endfor%} | ||
{% endif %} | ||
#} | ||
<script src="{{ swagger_static('swagger-ui-bundle.js') }}"></script> | ||
<script src="{{ swagger_static('swagger-ui-standalone-preset.js') }}"></script> |
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,16 @@ | ||
{ | ||
"name": "flask-restplus", | ||
"version": "0.10.1", | ||
"description": "Fully featured framework for fast, easy and documented API development with Flask", | ||
"repository": "noirbizarre/flask-restplus", | ||
"keywords": [ | ||
"swagger", | ||
"flask" | ||
], | ||
"author": "Axel Haustant", | ||
"license": "ISC", | ||
"dependencies": { | ||
"swagger-ui-dist": "^3.4.0", | ||
"typeface-droid-sans": "0.0.40" | ||
} | ||
} |
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