swagger-ui
Advanced tools
Comparing version 2.2.5 to 2.2.6
@@ -29,6 +29,8 @@ 'use strict'; | ||
"Expand Operations":"操作の展開", | ||
"Raw":"Raw", | ||
"Raw":"未加工", | ||
"can't parse JSON. Raw result":"JSONへ解釈できません. 未加工の結果", | ||
"Example Value":"値の例", | ||
"Model Schema":"モデルスキーマ", | ||
"Model":"モデル", | ||
"Click to set as parameter value":"パラメータ値と設定するにはクリック", | ||
"apply":"実行", | ||
@@ -39,9 +41,10 @@ "Username":"ユーザ名", | ||
"Created by":"Created by", | ||
"See more at":"See more at", | ||
"See more at":"詳細を見る", | ||
"Contact the developer":"開発者に連絡", | ||
"api version":"APIバージョン", | ||
"Response Content Type":"レスポンス コンテンツタイプ", | ||
"Parameter content type:":"パラメータコンテンツタイプ:", | ||
"fetching resource":"リソースの取得", | ||
"fetching resource list":"リソース一覧の取得", | ||
"Explore":"Explore", | ||
"Explore":"調査", | ||
"Show Swagger Petstore Example Apis":"SwaggerペットストアAPIの表示", | ||
@@ -48,0 +51,0 @@ "Can't read from server. It may not have the appropriate access-control-origin settings.":"サーバから読み込めません. 適切なaccess-control-origin設定を持っていない可能性があります.", |
@@ -31,2 +31,4 @@ 'use strict'; | ||
"can't parse JSON. Raw result":"无法解析JSON. 原始结果", | ||
"Example Value":"示例", | ||
"Click to set as parameter value":"点击设置参数", | ||
"Model Schema":"模型架构", | ||
@@ -43,2 +45,3 @@ "Model":"模型", | ||
"Response Content Type":"响应Content Type", | ||
"Parameter content type:":"参数类型:", | ||
"fetching resource":"正在获取资源", | ||
@@ -45,0 +48,0 @@ "fetching resource list":"正在获取资源列表", |
@@ -29,6 +29,8 @@ 'use strict'; | ||
"Expand Operations":"操作の展開", | ||
"Raw":"Raw", | ||
"Raw":"未加工", | ||
"can't parse JSON. Raw result":"JSONへ解釈できません. 未加工の結果", | ||
"Example Value":"値の例", | ||
"Model Schema":"モデルスキーマ", | ||
"Model":"モデル", | ||
"Click to set as parameter value":"パラメータ値と設定するにはクリック", | ||
"apply":"実行", | ||
@@ -39,9 +41,10 @@ "Username":"ユーザ名", | ||
"Created by":"Created by", | ||
"See more at":"See more at", | ||
"See more at":"詳細を見る", | ||
"Contact the developer":"開発者に連絡", | ||
"api version":"APIバージョン", | ||
"Response Content Type":"レスポンス コンテンツタイプ", | ||
"Parameter content type:":"パラメータコンテンツタイプ:", | ||
"fetching resource":"リソースの取得", | ||
"fetching resource list":"リソース一覧の取得", | ||
"Explore":"Explore", | ||
"Explore":"調査", | ||
"Show Swagger Petstore Example Apis":"SwaggerペットストアAPIの表示", | ||
@@ -48,0 +51,0 @@ "Can't read from server. It may not have the appropriate access-control-origin settings.":"サーバから読み込めません. 適切なaccess-control-origin設定を持っていない可能性があります.", |
@@ -31,2 +31,4 @@ 'use strict'; | ||
"can't parse JSON. Raw result":"无法解析JSON. 原始结果", | ||
"Example Value":"示例", | ||
"Click to set as parameter value":"点击设置参数", | ||
"Model Schema":"模型架构", | ||
@@ -43,2 +45,3 @@ "Model":"模型", | ||
"Response Content Type":"响应Content Type", | ||
"Parameter content type:":"参数类型:", | ||
"fetching resource":"正在获取资源", | ||
@@ -45,0 +48,0 @@ "fetching resource list":"正在获取资源列表", |
@@ -11,3 +11,3 @@ { | ||
"description": "Swagger UI is a dependency-free collection of HTML, JavaScript, and CSS assets that dynamically generate beautiful documentation from a Swagger-compliant API", | ||
"version": "2.2.5", | ||
"version": "2.2.6", | ||
"homepage": "http://swagger.io", | ||
@@ -64,4 +64,4 @@ "license": "Apache-2.0", | ||
"sinon-chai": "2.8.0", | ||
"swagger-client": "2.1.21" | ||
"swagger-client": "2.1.23" | ||
} | ||
} |
@@ -27,3 +27,3 @@ # Swagger UI | ||
------------------ | ------------ | -------------------------- | ----- | ------ | ||
2.2.4 | 2016-09-20 | 1.1, 1.2, 2.0 | [tag v.2.2.4](https://github.com/swagger-api/swagger-ui/tree/v2.2.4) | | ||
2.2.6 | 2016-10-14 | 1.1, 1.2, 2.0 | [tag v.2.2.6](https://github.com/swagger-api/swagger-ui/tree/v2.2.6) | | ||
2.1.5 | 2016-07-20 | 1.1, 1.2, 2.0 | [tag v.2.1.5](https://github.com/swagger-api/swagger-ui/tree/v2.1.5) | | ||
@@ -30,0 +30,0 @@ 2.0.24 | 2014-09-12 | 1.1, 1.2 | [tag v2.0.24](https://github.com/swagger-api/swagger-ui/tree/v2.0.24) | |
@@ -654,3 +654,2 @@ 'use strict'; | ||
showStatus: function(response) { | ||
console.log(response.headers); | ||
var url, content; | ||
@@ -699,5 +698,13 @@ if (response.content === undefined) { | ||
var type = contentType || 'text/html'; | ||
var a = document.createElement('a'); | ||
var href; | ||
var a = document.createElement('a'); | ||
var href = window.URL.createObjectURL(content); | ||
if({}.toString.apply(content) === '[object Blob]') { | ||
href = window.URL.createObjectURL(content); | ||
} | ||
else { | ||
var binaryData = []; | ||
binaryData.push(content); | ||
href = window.URL.createObjectURL(new Blob(binaryData, {type: type})); | ||
} | ||
var fileName = response.url.substr(response.url.lastIndexOf('/') + 1); | ||
@@ -704,0 +711,0 @@ var download = [type, fileName, href].join(':'); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5091693
59207