diff --git a/website/config.toml b/website/config.toml index 9009a1a8..adcd027f 100644 --- a/website/config.toml +++ b/website/config.toml @@ -6,4 +6,4 @@ theme = "daisy" publishDir = "site" [params] - description = "**[Ace](/ace)**, an accessibility checker for EPUB! A **[DAISY Consortium](http://daisy.org)** project. Latest version: v1.1.1 (and v1.2.0 'beta')" + description = "**[Ace](/ace)**, an accessibility checker for EPUB! A **[DAISY Consortium](http://daisy.org)** project. Latest version: v1.2" diff --git a/website/content/_index.md b/website/content/_index.md index 6e38667c..f5f3b4c5 100644 --- a/website/content/_index.md +++ b/website/content/_index.md @@ -6,6 +6,6 @@ Ace, the Accessibility Checker for EPUB, is a tool developed by the [DAISY Conso Read more about the Ace project on [Inclusive Publishing](http://inclusivepublishing.org/ace). -Latest version: v1.1.1 (and v1.2.0 'beta'). +Latest version: v1.2 _Note: the Ace by DAISY "desktop application" (as known as the Ace App) is a software project based on the Ace core components. For more information, please [visit this page]({{}})._ \ No newline at end of file diff --git a/website/content/docs/report-html.md b/website/content/docs/report-html.md index eb852d2d..c7a90ebb 100644 --- a/website/content/docs/report-html.md +++ b/website/content/docs/report-html.md @@ -21,7 +21,7 @@ This table details each violation and provides information about: * `Impact`: the severity of the violation * `Ruleset`: the category that this rule is in -* `Rule`: identifier for the rule, as well as the underlying engine that checks for it (e.g. _aXe_ or _Ace_) +* `Rule`: identifier for the rule, as well as the underlying engine that checks for it (e.g. _axe_ or _Ace_) * `Location`: where in the book the violation occurred, as well as an HTML code snippet of the relevant portion. * `Details`: suggestions on how to fix the problem, as well as a link to the relevant topic page in our online knowledge base. diff --git a/website/content/docs/report-json.md b/website/content/docs/report-json.md index 9d041fe3..e7d25c02 100644 --- a/website/content/docs/report-json.md +++ b/website/content/docs/report-json.md @@ -169,7 +169,7 @@ An example of an assertion for an individual test is shown below. Note that it i ``` { "@type": "earl:assertion", - "earl:assertedBy": "aXe", + "earl:assertedBy": "axe", "earl:mode": "automatic", "earl:test": { "earl:impact": "critical", diff --git a/website/content/getting-started/why-ace.md b/website/content/getting-started/why-ace.md index b9d1d474..7832f15b 100644 --- a/website/content/getting-started/why-ace.md +++ b/website/content/getting-started/why-ace.md @@ -18,7 +18,7 @@ Specifically, Ace: - extracts other various content features to facilitate human-driven accessibility audits - can be run as a command line tool, or integrated as a Javascript node module, or driven by an HTTP API -Under the hood, Ace currently runs [aXe](https://github.com/dequelabs/axe-core), an engine for automated testing of HTML developed by the good folks at Deque Systems. +Under the hood, Ace currently runs [axe](https://github.com/dequelabs/axe-core), an engine for automated testing of HTML developed by the good folks at Deque Systems. ## What Ace doesn’t do? diff --git a/website/content/rules/html.md b/website/content/rules/html.md index 6ebd6f26..d7233944 100644 --- a/website/content/rules/html.md +++ b/website/content/rules/html.md @@ -3,11 +3,11 @@ title = "HTML Rules" weight = 1 +++ -Under the hood, most of the accessibility checks ran by Ace are powered by [aXe](https://github.com/dequelabs/axe-core), an engine for automated testing of HTML. Ace uses aXe's rules, with some modifications (described [here](#modifications)). +Under the hood, most of the accessibility checks ran by Ace are powered by [Deque axe](https://github.com/dequelabs/axe-core), an engine for automated testing of HTML. Ace uses axe's rules, with some modifications (described [here](#modifications)). ## Rules -Here is a list of aXe's rules used by Ace, taken from [their documentation](https://github.com/dequelabs/axe-core/blob/v4.1.1/doc/rule-descriptions.md): +Here is a list of axe's rules used by Ace (see the full up to date documentation [in GitHub](https://github.com/daisy/axe-core/blob/v4.1.4_DAISY/doc/rule-descriptions.md) ): | Rule ID | Description | | :------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------ | @@ -99,8 +99,8 @@ Developer note: regular expression replace all: `(\| .+? \| .+? \|) .+? \| .+? \ ## Modifications -Certain aspects of HTML accessibility checking don't apply to EPUBs, so Ace has modified aXe's default ruleset slightly. +Certain aspects of HTML accessibility checking don't apply to EPUBs, so Ace has modified axe's default ruleset slightly. -* Ace disables aXe's `bypass`, `region`, `page-has-heading-one`, and `landmark-complementary-is-top-level` rules. -* Ace changes aXe's `landmark-one-main` rule to add the `page-no-duplicate-main` check (was `has-no-more-than-one-main`, see https://github.com/dequelabs/axe-core/blob/develop/CHANGELOG.md#300-2018-03-19 ). -* DAISY Axe fork: https://github.com/daisy/axe-core/pull/3 +* Ace disables axe's `bypass`, `region`, `page-has-heading-one`, and `landmark-complementary-is-top-level` rules. +* Ace changes axe's `landmark-one-main` rule to add the `page-no-duplicate-main` check (was `has-no-more-than-one-main`, see https://github.com/dequelabs/axe-core/blob/develop/CHANGELOG.md#300-2018-03-19 ). +* DAISY Axe fork: https://github.com/daisy/axe-core/pull/4