|
TY_PRIVATE void | TY_❪DefineMutedMessage❫ (TidyDocImpl *doc, const TidyOptionImpl *opt, ctmbstr name) |
| Adds a new message ID to the list of muted messages. More...
|
|
TY_PRIVATE void | TY_❪FreeMutedMessageList❫ (TidyDocImpl *doc) |
| Frees the list of muted messages. More...
|
|
TY_PRIVATE TidyIterator | TY_❪getErrorCodeList❫ (void) |
| Initializes the TidyIterator to point to the first item in Tidy's list of error codes that can be return with TidyReportFilter3 . More...
|
|
TY_PRIVATE TidyIterator | TY_❪getMutedMessageList❫ (TidyDocImpl *doc) |
| Start an iterator for muted messages. More...
|
|
TY_PRIVATE uint | TY_❪getNextErrorCode❫ (TidyIterator *iter) |
| Returns the next error code having initialized the iterator with getErrorCodeList() . More...
|
|
TY_PRIVATE ctmbstr | TY_❪getNextMutedMessage❫ (TidyDocImpl *doc, TidyIterator *iter) |
| Get the next priority attribute. More...
|
|
TY_PRIVATE ctmbstr | TY_❪ReleaseDate❫ (void) |
| Returns the release date of this instance of HTML Tidy. More...
|
|
TY_PRIVATE ctmbstr | TY_❪tidyErrorCodeAsKey❫ (uint code) |
| This function returns a string representing the enum value name that can be used as a lookup key independent of changing string values. More...
|
|
TY_PRIVATE uint | TY_❪tidyErrorCodeFromKey❫ (ctmbstr code) |
| Given an error code string, return the integer value of it, or UINT_MAX as an error flag. More...
|
|
TY_PRIVATE ctmbstr | TY_❪tidyLibraryVersion❫ (void) |
| Returns the release version of this instance of HTML Tidy. More...
|
|
|
If one of the convenience reporting functions does not fit your required message signature, then this designated reporting function will fit the bill.
Be sure to see if a message formatter exists that can handle the variable arguments.
|
TY_PRIVATE void | TY_❪Report❫ (TidyDocImpl *doc, Node *element, Node *node, uint code,...) |
| The designated report writing function. More...
|
|
|
These convenience reporting functions are able to handle the bulk of Tidy's necessary reporting, and avoid the danger of using a variadic if you are unfamiliar with Tidy.
|
TY_PRIVATE void | TY_❪ReportAccessError❫ (TidyDocImpl *doc, Node *node, uint code) |
|
TY_PRIVATE void | TY_❪ReportAttrError❫ (TidyDocImpl *doc, Node *node, AttVal *av, uint code) |
|
TY_PRIVATE void | TY_❪ReportBadArgument❫ (TidyDocImpl *doc, ctmbstr option) |
|
TY_PRIVATE void | TY_❪ReportEncodingError❫ (TidyDocImpl *doc, uint code, uint c, Bool discarded) |
|
TY_PRIVATE void | TY_❪ReportEncodingWarning❫ (TidyDocImpl *doc, uint code, uint encoding) |
|
TY_PRIVATE void | TY_❪ReportEntityError❫ (TidyDocImpl *doc, uint code, ctmbstr entity, int c) |
|
TY_PRIVATE void | TY_❪ReportFileError❫ (TidyDocImpl *doc, ctmbstr file, uint code) |
|
TY_PRIVATE void | TY_❪ReportMissingAttr❫ (TidyDocImpl *doc, Node *node, ctmbstr name) |
|
TY_PRIVATE void | TY_❪ReportSurrogateError❫ (TidyDocImpl *doc, uint code, uint c1, uint c2) |
|
TY_PRIVATE void | TY_❪ReportUnknownOption❫ (TidyDocImpl *doc, ctmbstr option) |
|
|
These functions produce dialogue output such as individual messages, or several messages in summary form.
|
TY_PRIVATE void | TY_❪Dialogue❫ (TidyDocImpl *doc, uint code,...) |
| Emits a single dialogue message, and is capable of accepting a variadic that is passed to the correct message formatter as needed. More...
|
|
|
TY_PRIVATE void | TY_❪ErrorSummary❫ (TidyDocImpl *doc) |
| Outputs the footnotes and other dialogue information after document cleanup is complete. More...
|
|
TY_PRIVATE void | TY_❪ReportMarkupVersion❫ (TidyDocImpl *doc) |
| Outputs document HTML version and version-related information as the final report(s) in the report table. More...
|
|
TY_PRIVATE void | TY_❪ReportNumWarnings❫ (TidyDocImpl *doc) |
| Reports the number of warnings and errors found in the document as dialogue information. More...
|
|