Tony Tam
2014-02-16 07:58:18 -08:00
parent cc49093471
commit 65a5bc34eb
3 changed files with 35 additions and 31 deletions

8
dist/lib/swagger.js vendored
View File

@@ -1,5 +1,5 @@
// swagger.js // swagger.js
// version 2.0.14 // version 2.0.15
var __bind = function(fn, me){ var __bind = function(fn, me){
return function(){ return function(){
@@ -392,7 +392,7 @@ SwaggerResource.prototype.addOperations = function(resource_path, ops, consumes,
} }
if (o.errorResponses) { if (o.errorResponses) {
responseMessages = o.errorResponses; responseMessages = o.errorResponses;
for (j = 0; j < responseMessages.length; j++) { for (var j = 0; j < responseMessages.length; j++) {
r = responseMessages[j]; r = responseMessages[j];
r.message = r.reason; r.message = r.reason;
r.reason = null; r.reason = null;
@@ -659,7 +659,8 @@ var SwaggerOperation = function(nickname, path, method, parameters, summary, not
param.isList = true; param.isList = true;
if(param.allowableValues != null) { if(param.allowableValues != null) {
param.allowableValues.descriptiveValues = []; param.allowableValues.descriptiveValues = [];
for(j = 0; j < param.allowableValues.values; j++){ if(param.allowableValues.values) {
for(j = 0; j < param.allowableValues.values.length; j++){
var v = param.allowableValues.values[j]; var v = param.allowableValues.values[j];
if(param.defaultValue != null) { if(param.defaultValue != null) {
param.allowableValues.descriptiveValues.push ({ param.allowableValues.descriptiveValues.push ({
@@ -677,6 +678,7 @@ var SwaggerOperation = function(nickname, path, method, parameters, summary, not
} }
} }
} }
}
this.resource[this.nickname] = function(args, callback, error) { this.resource[this.nickname] = function(args, callback, error) {
return _this["do"](args, callback, error); return _this["do"](args, callback, error);
}; };

View File

@@ -1,5 +1,5 @@
// swagger.js // swagger.js
// version 2.0.14 // version 2.0.15
var __bind = function(fn, me){ var __bind = function(fn, me){
return function(){ return function(){
@@ -392,7 +392,7 @@ SwaggerResource.prototype.addOperations = function(resource_path, ops, consumes,
} }
if (o.errorResponses) { if (o.errorResponses) {
responseMessages = o.errorResponses; responseMessages = o.errorResponses;
for (j = 0; j < responseMessages.length; j++) { for (var j = 0; j < responseMessages.length; j++) {
r = responseMessages[j]; r = responseMessages[j];
r.message = r.reason; r.message = r.reason;
r.reason = null; r.reason = null;
@@ -659,7 +659,8 @@ var SwaggerOperation = function(nickname, path, method, parameters, summary, not
param.isList = true; param.isList = true;
if(param.allowableValues != null) { if(param.allowableValues != null) {
param.allowableValues.descriptiveValues = []; param.allowableValues.descriptiveValues = [];
for(j = 0; j < param.allowableValues.values; j++){ if(param.allowableValues.values) {
for(j = 0; j < param.allowableValues.values.length; j++){
var v = param.allowableValues.values[j]; var v = param.allowableValues.values[j];
if(param.defaultValue != null) { if(param.defaultValue != null) {
param.allowableValues.descriptiveValues.push ({ param.allowableValues.descriptiveValues.push ({
@@ -677,6 +678,7 @@ var SwaggerOperation = function(nickname, path, method, parameters, summary, not
} }
} }
} }
}
this.resource[this.nickname] = function(args, callback, error) { this.resource[this.nickname] = function(args, callback, error) {
return _this["do"](args, callback, error); return _this["do"](args, callback, error);
}; };

View File

@@ -1,6 +1,6 @@
{ {
"name": "swagger-ui", "name": "swagger-ui",
"version": "2.0.8", "version": "2.0.9",
"description": "Swagger UI is a dependency-free collection of HTML, Javascript, and CSS assets that dynamically generate beautiful documentation from a Swagger-compliant API", "description": "Swagger UI is a dependency-free collection of HTML, Javascript, and CSS assets that dynamically generate beautiful documentation from a Swagger-compliant API",
"scripts": { "scripts": {
"build": "PATH=$PATH:./node_modules/.bin cake dist", "build": "PATH=$PATH:./node_modules/.bin cake dist",