Replace resource ID special characters to fix path expansion issue

This commit is contained in:
Javier Quiroz
2016-12-16 14:12:15 -08:00
parent 58460145f3
commit 673613129f

View File

@@ -111,7 +111,7 @@ SwaggerUi.Views.MainView = Backbone.View.extend({
addResource: function(resource, auths){
// Render a resource and add it to resources li
resource.id = resource.id.replace(/[[\]{}()*+?,\\/^$|#\s]/g, '_');
resource.id = resource.id.replace(/[^a-zA-Z\d]/g, function(str) { return str.charCodeAt(0); });
// Make all definitions available at the root of the resource so that they can
// be loaded by the JSonEditor