Browse Source

fix for #381

bubble
Tony Tam 10 years ago
parent
commit
7dd5142df2
3 changed files with 67 additions and 13 deletions
  1. +33
    -6
      dist/lib/swagger.js
  2. +33
    -6
      lib/swagger.js
  3. +1
    -1
      package.json

+ 33
- 6
dist/lib/swagger.js View File

@@ -1188,19 +1188,46 @@
}
cb = obj.on;
res = {
error: function(response) {
error: function(raw) {
var headers, out;
if (obj) {
return cb.error(response);
headers = raw._headers;
out = {
headers: headers,
url: raw.request.url,
method: raw.request.method,
status: raw.status,
data: raw.content.data
};
return cb.error(out);
}
},
redirect: function(response) {
redirect: function(raw) {
var headers, out;
if (obj) {
return cb.redirect(response);
headers = raw._headers;
out = {
headers: headers,
url: raw.request.url,
method: raw.request.method,
status: raw.status,
data: raw.content.data
};
return cb.redirect(out);
}
},
307: function(response) {
307: function(raw) {
var headers, out;
if (obj) {
return cb.redirect(response);
headers = raw._headers;
out = {
headers: headers,
url: raw.request.url,
method: raw.request.method,
status: raw.status,
data: raw.content.data
};
return cb.redirect(out);
}
},
response: function(raw) {


+ 33
- 6
lib/swagger.js View File

@@ -1188,19 +1188,46 @@
}
cb = obj.on;
res = {
error: function(response) {
error: function(raw) {
var headers, out;
if (obj) {
return cb.error(response);
headers = raw._headers;
out = {
headers: headers,
url: raw.request.url,
method: raw.request.method,
status: raw.status,
data: raw.content.data
};
return cb.error(out);
}
},
redirect: function(response) {
redirect: function(raw) {
var headers, out;
if (obj) {
return cb.redirect(response);
headers = raw._headers;
out = {
headers: headers,
url: raw.request.url,
method: raw.request.method,
status: raw.status,
data: raw.content.data
};
return cb.redirect(out);
}
},
307: function(response) {
307: function(raw) {
var headers, out;
if (obj) {
return cb.redirect(response);
headers = raw._headers;
out = {
headers: headers,
url: raw.request.url,
method: raw.request.method,
status: raw.status,
data: raw.content.data
};
return cb.redirect(out);
}
},
response: function(raw) {


+ 1
- 1
package.json View File

@@ -19,7 +19,7 @@
"readmeFilename": "README.md",
"dependencies": {
"coffee-script": "~1.5.0",
"swagger-client": "2.0.9",
"swagger-client": "2.0.10",
"handlebars": "~1.0.10",
"less": "~1.4.2"
}


Loading…
Cancel
Save