-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adjust range error for internal DTD declaration #225
Comments
This was referenced Nov 15, 2018
angelozerr
added a commit
that referenced
this issue
Dec 1, 2018
angelozerr
added a commit
that referenced
this issue
Dec 1, 2018
angelozerr
added a commit
that referenced
this issue
Dec 1, 2018
@angelozerr what's the status on this one? |
It starts working with malformed <!ELEMENT. I need to support malformed <!ATTRLIST and <!ENTITY too. But I think I'll find more unsupported errors. My proposition is to support malformed <!ATTRLIST and <!ENTITY and close this issue for now. We will open a new one if we find another unsupported error. |
angelozerr
added a commit
that referenced
this issue
Dec 5, 2018
{
"resource": "/Users/fbricon/Downloads/sample-resources/some.xml",
"owner": "_generated_diagnostic_collection_name_#0",
"code": "MSG_MARKUP_NOT_RECOGNIZED_IN_DTD",
"severity": 8,
"message": "The markup declarations contained or pointed to by the document type declaration must be well-formed.",
"source": "xml",
"startLineNumber": 3,
"startColumn": 7,
"endLineNumber": 3,
"endColumn": 7
} |
angelozerr
added a commit
that referenced
this issue
Dec 5, 2018
angelozerr
added a commit
that referenced
this issue
Dec 5, 2018
angelozerr
added a commit
that referenced
this issue
Dec 5, 2018
All above issues are addressed |
NikolasKomonen
added a commit
to NikolasKomonen/lsp4xml
that referenced
this issue
Jan 11, 2019
Fixes eclipse-lemminx#225 Signed-off-by: Nikolas Komonen <[email protected]>
NikolasKomonen
added a commit
to NikolasKomonen/lsp4xml
that referenced
this issue
Jan 14, 2019
Fixes eclipse-lemminx#225 Signed-off-by: Nikolas Komonen <[email protected]>
NikolasKomonen
added a commit
to NikolasKomonen/lsp4xml
that referenced
this issue
Jan 15, 2019
Fixes eclipse-lemminx#225 Signed-off-by: Nikolas Komonen <[email protected]>
NikolasKomonen
added a commit
to NikolasKomonen/lsp4xml
that referenced
this issue
Jan 15, 2019
Fixes eclipse-lemminx#225 Signed-off-by: Nikolas Komonen <[email protected]>
NikolasKomonen
added a commit
to NikolasKomonen/lsp4xml
that referenced
this issue
Jan 15, 2019
Fixes eclipse-lemminx#225 Signed-off-by: Nikolas Komonen <[email protected]>
wrong ranges for
<!DOCTYPE Folks [
<!ENTITY % Folks "(%bar;)*">
]> |
NikolasKomonen
added a commit
to NikolasKomonen/lsp4xml
that referenced
this issue
Jan 18, 2019
Fixes eclipse-lemminx#225 Signed-off-by: Nikolas Komonen <[email protected]>
NikolasKomonen
added a commit
to NikolasKomonen/lsp4xml
that referenced
this issue
Jan 21, 2019
Fixes eclipse-lemminx#225 Signed-off-by: Nikolas Komonen <[email protected]>
fbricon
pushed a commit
that referenced
this issue
Jan 21, 2019
Fixes #225 Signed-off-by: Nikolas Komonen <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When internal DTD declaration is done with bad syntax, error is not well adjusted:
To fix this issue we need that XMLDocument is able to parse DTD declaration (here <!Element).
UPDATE
Implemented Error Codes:
Refer here for more info on each code.
The text was updated successfully, but these errors were encountered: