Fixes #302
This commit is contained in:
parent
ce6aac5a3b
commit
12ea6710ad
|
@ -79,7 +79,17 @@ angular
|
||||||
parse: function() {
|
parse: function() {
|
||||||
return _
|
return _
|
||||||
.chain(this.uris.trim().split(/\r?\n/g))
|
.chain(this.uris.trim().split(/\r?\n/g))
|
||||||
.map(function(d) { return d.trim().split(/\s+/g) })
|
.map(function(d) {
|
||||||
|
return _(d)
|
||||||
|
.replace(/("[^"]*")/g, function(c) {
|
||||||
|
return c.replace('%','%25').replace(' ','%20');
|
||||||
|
})
|
||||||
|
.trim()
|
||||||
|
.split(/\s+/g)
|
||||||
|
.map(function(c) {
|
||||||
|
return c.replace('%20',' ').replace('%25','%').replace(/"/g,'');
|
||||||
|
});
|
||||||
|
})
|
||||||
.filter(function(d) { return d.length })
|
.filter(function(d) { return d.length })
|
||||||
.value();
|
.value();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user