mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Upgrade biber-log-parser.js
This commit is contained in:
parent
f6d02090d2
commit
08de7b8abe
1 changed files with 9 additions and 2 deletions
|
@ -12,7 +12,7 @@ define(function() {
|
|||
throw new Error("BiberLogParser Error: text parameter must be a string");
|
||||
}
|
||||
this.text = text.replace(/(\r\n)|\r/g, '\n');
|
||||
this.options = options;
|
||||
this.options = options || {};
|
||||
this.lines = text.split('\n');
|
||||
};
|
||||
(function() {
|
||||
|
@ -26,7 +26,7 @@ define(function() {
|
|||
typesetting: []
|
||||
};
|
||||
this.lines.forEach(function(line) {
|
||||
var fullLine, lineNumber, match, message, messageType, newEntry;
|
||||
var _, fileName, fullLine, lineMatch, lineNumber, match, message, messageType, newEntry, realMessage;
|
||||
match = line.match(LINE_SPLITTER_REGEX);
|
||||
if (match) {
|
||||
fullLine = match[0], lineNumber = match[1], messageType = match[2], message = match[3];
|
||||
|
@ -37,6 +37,13 @@ define(function() {
|
|||
line: null,
|
||||
raw: fullLine
|
||||
};
|
||||
lineMatch = newEntry.message.match(/^BibTeX subsystem: \/.*\/(\w*\.\w*)_.*, line (\d+), (.*)$/);
|
||||
if (lineMatch && lineMatch.length === 4) {
|
||||
_ = lineMatch[0], fileName = lineMatch[1], lineNumber = lineMatch[2], realMessage = lineMatch[3];
|
||||
newEntry.file = fileName;
|
||||
newEntry.line = lineNumber;
|
||||
newEntry.message = realMessage;
|
||||
}
|
||||
result.all.push(newEntry);
|
||||
switch (newEntry.level) {
|
||||
case 'error':
|
||||
|
|
Loading…
Reference in a new issue