зеркало из https://github.com/mozilla/gecko-dev.git
Report the name of the faulty file when there is an XML parsing error. Useful for popup windows or XUL files. b=47416 r=heikki sr=jst
This commit is contained in:
Родитель
1c15d53c81
Коммит
447c8e4ab3
|
@ -303,6 +303,8 @@ CreateErrorText(const nsParserError* aError, nsString& aErrorString)
|
|||
|
||||
if (aError) {
|
||||
aErrorString.Append(aError->description);
|
||||
aErrorString.AppendWithConversion("\nLocation: ");
|
||||
aErrorString.Append(aError->sourceURL);
|
||||
aErrorString.AppendWithConversion("\nLine Number ");
|
||||
aErrorString.AppendInt(aError->lineNumber, 10);
|
||||
aErrorString.AppendWithConversion(", Column ");
|
||||
|
@ -402,6 +404,7 @@ nsExpatTokenizer::PushXMLErrorTokens(const char *aBuffer, PRUint32 aLength, PRBo
|
|||
// Adjust the column number so that it is one based rather than zero based.
|
||||
error->colNumber = XML_GetCurrentColumnNumber(mExpatParser) + 1;
|
||||
error->description.AssignWithConversion(XML_ErrorString(error->code));
|
||||
error->sourceURL = mState->scanner->GetFilename();
|
||||
if (!aIsFinal) {
|
||||
PRInt32 byteIndexRelativeToFile = 0;
|
||||
byteIndexRelativeToFile = XML_GetCurrentByteIndex(mExpatParser);
|
||||
|
|
|
@ -41,6 +41,7 @@ typedef struct _nsParserError {
|
|||
PRInt32 colNumber;
|
||||
nsString description;
|
||||
nsString sourceLine;
|
||||
nsString sourceURL;
|
||||
} nsParserError;
|
||||
|
||||
#endif
|
||||
|
|
|
@ -303,6 +303,8 @@ CreateErrorText(const nsParserError* aError, nsString& aErrorString)
|
|||
|
||||
if (aError) {
|
||||
aErrorString.Append(aError->description);
|
||||
aErrorString.AppendWithConversion("\nLocation: ");
|
||||
aErrorString.Append(aError->sourceURL);
|
||||
aErrorString.AppendWithConversion("\nLine Number ");
|
||||
aErrorString.AppendInt(aError->lineNumber, 10);
|
||||
aErrorString.AppendWithConversion(", Column ");
|
||||
|
@ -402,6 +404,7 @@ nsExpatTokenizer::PushXMLErrorTokens(const char *aBuffer, PRUint32 aLength, PRBo
|
|||
// Adjust the column number so that it is one based rather than zero based.
|
||||
error->colNumber = XML_GetCurrentColumnNumber(mExpatParser) + 1;
|
||||
error->description.AssignWithConversion(XML_ErrorString(error->code));
|
||||
error->sourceURL = mState->scanner->GetFilename();
|
||||
if (!aIsFinal) {
|
||||
PRInt32 byteIndexRelativeToFile = 0;
|
||||
byteIndexRelativeToFile = XML_GetCurrentByteIndex(mExpatParser);
|
||||
|
|
|
@ -41,6 +41,7 @@ typedef struct _nsParserError {
|
|||
PRInt32 colNumber;
|
||||
nsString description;
|
||||
nsString sourceLine;
|
||||
nsString sourceURL;
|
||||
} nsParserError;
|
||||
|
||||
#endif
|
||||
|
|
Загрузка…
Ссылка в новой задаче