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:
rbs%maths.uq.edu.au 2001-05-16 02:49:24 +00:00
Родитель 1c15d53c81
Коммит 447c8e4ab3
4 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -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