removed console log, updated swagger.js

This commit is contained in:
Tony Tam
2013-07-31 08:11:51 -07:00
parent c6f2aada45
commit b2637fc4bc
5 changed files with 13 additions and 5 deletions

7
dist/lib/swagger.js vendored
View File

@@ -216,6 +216,7 @@
produces = [];
consumes = [];
this.path = this.api.resourcePath != null ? this.api.resourcePath : resourceObj.path;
console.log('using path ' + this.path);
this.description = resourceObj.description;
parts = this.path.split("/");
this.name = parts[parts.length - 1].replace('.{format}', '');
@@ -230,7 +231,11 @@
if (this.path == null) {
this.api.fail("SwaggerResources must have a path.");
}
this.url = this.api.basePath + this.path.replace('{format}', 'json');
if (this.path.substring(0, 4) === 'http') {
this.url = this.path.replace('{format}', 'json');
} else {
this.url = this.api.basePath + this.path.replace('{format}', 'json');
}
this.api.progress('fetching resource ' + this.name + ': ' + this.url);
obj = {
url: this.url,

1
dist/swagger-ui.js vendored
View File

@@ -1757,7 +1757,6 @@ templates['status_code'] = template(function (Handlebars,depth0,helpers,partials
_ref = this.model.parameters;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
param = _ref[_i];
console.log("looking at " + param.dataType);
if (param.dataType.toLowerCase() === 'file') {
if (!contentTypeModel.consumes) {
console.log("set content type ");

File diff suppressed because one or more lines are too long

View File

@@ -216,6 +216,7 @@
produces = [];
consumes = [];
this.path = this.api.resourcePath != null ? this.api.resourcePath : resourceObj.path;
console.log('using path ' + this.path);
this.description = resourceObj.description;
parts = this.path.split("/");
this.name = parts[parts.length - 1].replace('.{format}', '');
@@ -230,7 +231,11 @@
if (this.path == null) {
this.api.fail("SwaggerResources must have a path.");
}
this.url = this.api.basePath + this.path.replace('{format}', 'json');
if (this.path.substring(0, 4) === 'http') {
this.url = this.path.replace('{format}', 'json');
} else {
this.url = this.api.basePath + this.path.replace('{format}', 'json');
}
this.api.progress('fetching resource ' + this.name + ': ' + this.url);
obj = {
url: this.url,

View File

@@ -32,7 +32,6 @@ class OperationView extends Backbone.View
contentTypeModel.produces = @model.produces
for param in @model.parameters
console.log "looking at " + param.dataType
if param.dataType.toLowerCase() == 'file'
if !contentTypeModel.consumes
console.log "set content type "