Skip to content
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

remove 'ERROR' in the informative "under review" message #1059

Merged
merged 1 commit into from
Jul 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/com/adobe/epubcheck/opf/XRefChecker.java
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ private void checkReadingOrder(Queue<Reference> references, int lastSpinePositio
EPUBLocation.create(ref.source, ref.lineNumber, ref.columnNumber),
(ref.type == Type.NAV_TOC_LINK) ? "toc" : "page-list", ref.value, orderContext);
report.message(MessageId.INF_001,
EPUBLocation.create(ref.source, ref.lineNumber, ref.columnNumber), "ERROR", "https:/w3c/publ-epub-revision/issues/1283");
EPUBLocation.create(ref.source, ref.lineNumber, ref.columnNumber), "https:/w3c/publ-epub-revision/issues/1283");
lastSpinePosition = targetSpinePosition;
lastAnchorPosition = -1;
}
Expand All @@ -573,7 +573,7 @@ private void checkReadingOrder(Queue<Reference> references, int lastSpinePositio
EPUBLocation.create(ref.source, ref.lineNumber, ref.columnNumber),
(ref.type == Type.NAV_TOC_LINK) ? "toc" : "page-list", ref.value, orderContext);
report.message(MessageId.INF_001,
EPUBLocation.create(ref.source, ref.lineNumber, ref.columnNumber), "ERROR", "https:/w3c/publ-epub-revision/issues/1283");
EPUBLocation.create(ref.source, ref.lineNumber, ref.columnNumber), "https:/w3c/publ-epub-revision/issues/1283");
}
lastAnchorPosition = targetAnchorPosition;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This is the default MessageBundle.properties file

#Info
INF_001=The previous rule is under review and may change to an '%1$s' in a future release. See the discussion at %2$s
INF_001=The previous rule is under review and its severity may change in a future release. See the discussion at %1$s

#Accessibility
ACC_001='img' or 'area' HTML element has no 'alt' attribute.
Expand Down