This is an automated email from the ASF dual-hosted git repository. joewitt pushed a commit to branch support/nifi-1.16 in repository https://gitbox.apache.org/repos/asf/nifi.git
commit 65c7e9929e1621f70d4777d7a68dafd98cb53563 Author: Jonathan Conti-Vock <[email protected]> AuthorDate: Tue Mar 22 23:38:31 2022 +0000 NIFI-9816 Added lang attribute to html tag for WCAG 2.1 Accessibility This closes #5893 Signed-off-by: David Handermann <[email protected]> --- .../nifi-web-api/src/main/resources/templates/index.html.hbs | 2 +- .../nifi-web-content-viewer/src/main/webapp/WEB-INF/jsp/header.jsp | 4 ++-- .../nifi-web-docs/src/main/webapp/WEB-INF/jsp/documentation.jsp | 2 +- .../src/main/webapp/WEB-INF/jsp/no-documentation-found.jsp | 5 +++-- .../nifi-framework/nifi-web/nifi-web-error/src/main/webapp/index.jsp | 2 +- .../nifi-framework/nifi-web/nifi-web-ui/pom.xml | 2 +- .../nifi-web-ui/src/main/webapp/WEB-INF/pages/bulletin-board.jsp | 2 +- .../nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/canvas.jsp | 2 +- .../nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/cluster.jsp | 2 +- .../nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/counters.jsp | 2 +- .../nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/history.jsp | 2 +- .../nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/login.jsp | 4 ++-- .../nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/logout.jsp | 4 ++-- .../nifi-web-ui/src/main/webapp/WEB-INF/pages/message-page.jsp | 2 +- .../nifi-web-ui/src/main/webapp/WEB-INF/pages/provenance.jsp | 2 +- .../nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/summary.jsp | 2 +- .../nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/templates.jsp | 2 +- .../nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/users.jsp | 2 +- .../src/main/webapp/WEB-INF/jsp/worksheet.jsp | 2 +- .../src/main/webapp/WEB-INF/jsp/documentation.jsp | 2 +- .../src/main/webapp/WEB-INF/jsp/no-documentation-found.jsp | 2 +- .../nifi-registry-web-ui/src/main/webapp/template.dev.html | 2 +- .../nifi-registry-web-ui/src/main/webapp/template.html | 2 +- 23 files changed, 28 insertions(+), 27 deletions(-) diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/resources/templates/index.html.hbs b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/resources/templates/index.html.hbs index 4ce9d5653d..b1c02337b1 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/resources/templates/index.html.hbs +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/resources/templates/index.html.hbs @@ -13,7 +13,7 @@ See the License for the specific language governing permissions and limitations under the License. --> -<html> +<html lang="en"> <head> <title>{{info.title}}-{{info.version}}</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-content-viewer/src/main/webapp/WEB-INF/jsp/header.jsp b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-content-viewer/src/main/webapp/WEB-INF/jsp/header.jsp index 8a092c265b..503ebdc7e3 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-content-viewer/src/main/webapp/WEB-INF/jsp/header.jsp +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-content-viewer/src/main/webapp/WEB-INF/jsp/header.jsp @@ -16,7 +16,7 @@ --%> <%@ page contentType="text/html" pageEncoding="UTF-8" session="false" %> <!DOCTYPE html> -<html> +<html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="shortcut icon" href="../nifi/images/nifi16.ico"/> @@ -133,4 +133,4 @@ <div id="view-as" class="pointer button-normal"></div> <div id="content-filename"><span class="content-label">Filename:</span><%= request.getAttribute("filename") == null ? "" : org.apache.nifi.util.EscapeUtils.escapeHtml(request.getAttribute("filename").toString()) %></div> <div id="content-type"><span class="content-label">Content Type:</span><%= request.getAttribute("contentType") == null ? "" : org.apache.nifi.util.EscapeUtils.escapeHtml(request.getAttribute("contentType").toString()) %></div> - <div class="message-pane-message-box"> \ No newline at end of file + <div class="message-pane-message-box"> diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/WEB-INF/jsp/documentation.jsp b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/WEB-INF/jsp/documentation.jsp index 80b07b06a9..c2bfc18304 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/WEB-INF/jsp/documentation.jsp +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/WEB-INF/jsp/documentation.jsp @@ -17,7 +17,7 @@ <%@ page contentType="text/html" pageEncoding="UTF-8" session="false" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <!DOCTYPE html> -<html xmlns="http://www.w3.org/1999/xhtml"> +<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/WEB-INF/jsp/no-documentation-found.jsp b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/WEB-INF/jsp/no-documentation-found.jsp index 567d0bed74..8cfa9e75b5 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/WEB-INF/jsp/no-documentation-found.jsp +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/WEB-INF/jsp/no-documentation-found.jsp @@ -15,8 +15,9 @@ limitations under the License. --%> <%@ page contentType="text/html" pageEncoding="UTF-8" session="false" %> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <!DOCTYPE html> -<html> +<html lang="en"> <head> <title>NiFi</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> @@ -28,4 +29,4 @@ <h2>Yikes!</h2> <p>Unable to locate the documentation for the selected item.</p> </body> -</html> \ No newline at end of file +</html> diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-error/src/main/webapp/index.jsp b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-error/src/main/webapp/index.jsp index c7cfa921f5..b95c0377c2 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-error/src/main/webapp/index.jsp +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-error/src/main/webapp/index.jsp @@ -16,7 +16,7 @@ --%> <%@ page contentType="text/html" pageEncoding="UTF-8" session="false" %> <!DOCTYPE html> -<html> +<html lang="en"> <% // Sanitize the contextPath to ensure it is on this server // rather than getting it from the header directly diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/pom.xml b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/pom.xml index 53fd38e86a..1c05da533e 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/pom.xml +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/pom.xml @@ -68,7 +68,7 @@ <plugins> <!-- Precompile jsp's and add entries into the web.xml - the web.xml - is automatically places in ${project.build.directory}. Do not + is automatically placed in ${project.build.directory}. Do not precompile canvas.jsp, summary.jsp, history.jsp, etc. These jsp's need to have the artifacts version filtered in to eliminate broswer caching issues and set up the proper includes. diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/bulletin-board.jsp b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/bulletin-board.jsp index e84bf720cd..c9ee08d827 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/bulletin-board.jsp +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/bulletin-board.jsp @@ -16,7 +16,7 @@ --%> <%@ page contentType="text/html" pageEncoding="UTF-8" session="false" %> <!DOCTYPE html> -<html> +<html lang="en"> <head> <title>NiFi Bulletin Board</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/canvas.jsp b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/canvas.jsp index 46a6407a56..7a017e3986 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/canvas.jsp +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/canvas.jsp @@ -16,7 +16,7 @@ --%> <%@ page contentType="text/html" pageEncoding="UTF-8" session="false" %> <!DOCTYPE html> -<html> +<html lang="en"> <head> <title>NiFi</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/cluster.jsp b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/cluster.jsp index b1c8441585..a2c76ca43c 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/cluster.jsp +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/cluster.jsp @@ -16,7 +16,7 @@ --%> <%@ page contentType="text/html" pageEncoding="UTF-8" session="false" %> <!DOCTYPE html> -<html> +<html lang="en"> <head> <title>NiFi Cluster</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/counters.jsp b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/counters.jsp index 1553bd9b24..682338befa 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/counters.jsp +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/counters.jsp @@ -16,7 +16,7 @@ --%> <%@ page contentType="text/html" pageEncoding="UTF-8" session="false" %> <!DOCTYPE html> -<html> +<html lang="en"> <head> <title>NiFi Counters</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/history.jsp b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/history.jsp index 6d988db714..b107a8970a 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/history.jsp +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/history.jsp @@ -16,7 +16,7 @@ --%> <%@ page contentType="text/html" pageEncoding="UTF-8" session="false" %> <!DOCTYPE html> -<html> +<html lang="en"> <head> <title>NiFi History</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/login.jsp b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/login.jsp index 5a666e17df..20327f8d00 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/login.jsp +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/login.jsp @@ -16,7 +16,7 @@ --%> <%@ page contentType="text/html" pageEncoding="UTF-8" session="false" %> <!DOCTYPE html> -<html> +<html lang="en"> <head> <title>NiFi Login</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> @@ -63,4 +63,4 @@ </div> <jsp:include page="/WEB-INF/partials/ok-dialog.jsp"/> </body> -</html> \ No newline at end of file +</html> diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/logout.jsp b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/logout.jsp index 5898b110e8..3bb31f5624 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/logout.jsp +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/logout.jsp @@ -16,7 +16,7 @@ --%> <%@ page contentType="text/html" pageEncoding="UTF-8" session="false" %> <!DOCTYPE html> -<html> +<html lang="en"> <head> <title>NiFi Logout</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> @@ -51,4 +51,4 @@ <jsp:include page="/WEB-INF/partials/logout/logout-message.jsp"/> </div> </body> -</html> \ No newline at end of file +</html> diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/message-page.jsp b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/message-page.jsp index 2ba6ae4a2a..e22d16dc6b 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/message-page.jsp +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/message-page.jsp @@ -16,7 +16,7 @@ --%> <%@ page contentType="text/html" pageEncoding="UTF-8" session="false" %> <!DOCTYPE html> -<html xmlns="http://www.w3.org/1999/xhtml"> +<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"> <% // Sanitize the contextPath to ensure it is on this server // rather than getting it from the header directly diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/provenance.jsp b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/provenance.jsp index a968f99914..fa8d368356 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/provenance.jsp +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/provenance.jsp @@ -16,7 +16,7 @@ --%> <%@ page contentType="text/html" pageEncoding="UTF-8" session="false" %> <!DOCTYPE html> -<html> +<html lang="en"> <head> <title>NiFi Data Provenance</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/summary.jsp b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/summary.jsp index fa32d39cbf..89e4629f15 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/summary.jsp +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/summary.jsp @@ -16,7 +16,7 @@ --%> <%@ page contentType="text/html" pageEncoding="UTF-8" session="false" %> <!DOCTYPE html> -<html> +<html lang="en"> <head> <title>NiFi Summary</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/templates.jsp b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/templates.jsp index 5c17fdb5b7..52f1582b55 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/templates.jsp +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/templates.jsp @@ -16,7 +16,7 @@ --%> <%@ page contentType="text/html" pageEncoding="UTF-8" session="false" %> <!DOCTYPE html> -<html> +<html lang="en"> <head> <title>NiFi Templates</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/users.jsp b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/users.jsp index 10063eb634..e7a0dc8cb1 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/users.jsp +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/users.jsp @@ -16,7 +16,7 @@ --%> <%@ page contentType="text/html" pageEncoding="UTF-8" session="false" %> <!DOCTYPE html> -<html> +<html lang="en"> <head> <title>NiFi Users</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> diff --git a/nifi-nar-bundles/nifi-update-attribute-bundle/nifi-update-attribute-ui/src/main/webapp/WEB-INF/jsp/worksheet.jsp b/nifi-nar-bundles/nifi-update-attribute-bundle/nifi-update-attribute-ui/src/main/webapp/WEB-INF/jsp/worksheet.jsp index 475ff6d850..6383eeb371 100644 --- a/nifi-nar-bundles/nifi-update-attribute-bundle/nifi-update-attribute-ui/src/main/webapp/WEB-INF/jsp/worksheet.jsp +++ b/nifi-nar-bundles/nifi-update-attribute-bundle/nifi-update-attribute-ui/src/main/webapp/WEB-INF/jsp/worksheet.jsp @@ -16,7 +16,7 @@ --%> <%@ page contentType="text/html" pageEncoding="UTF-8" session="false" %> <!DOCTYPE html> -<html> +<html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" href="../nifi/assets/jquery-ui-dist/jquery-ui.min.css" type="text/css" /> diff --git a/nifi-registry/nifi-registry-core/nifi-registry-web-docs/src/main/webapp/WEB-INF/jsp/documentation.jsp b/nifi-registry/nifi-registry-core/nifi-registry-web-docs/src/main/webapp/WEB-INF/jsp/documentation.jsp index c29fca2c88..fbeb9cf840 100644 --- a/nifi-registry/nifi-registry-core/nifi-registry-web-docs/src/main/webapp/WEB-INF/jsp/documentation.jsp +++ b/nifi-registry/nifi-registry-core/nifi-registry-web-docs/src/main/webapp/WEB-INF/jsp/documentation.jsp @@ -17,7 +17,7 @@ <%@ page contentType="text/html" pageEncoding="UTF-8" session="false" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <!DOCTYPE html> -<html xmlns="http://www.w3.org/1999/xhtml"> +<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> diff --git a/nifi-registry/nifi-registry-core/nifi-registry-web-docs/src/main/webapp/WEB-INF/jsp/no-documentation-found.jsp b/nifi-registry/nifi-registry-core/nifi-registry-web-docs/src/main/webapp/WEB-INF/jsp/no-documentation-found.jsp index ce34b1be92..b291df2327 100644 --- a/nifi-registry/nifi-registry-core/nifi-registry-web-docs/src/main/webapp/WEB-INF/jsp/no-documentation-found.jsp +++ b/nifi-registry/nifi-registry-core/nifi-registry-web-docs/src/main/webapp/WEB-INF/jsp/no-documentation-found.jsp @@ -16,7 +16,7 @@ --%> <%@ page contentType="text/html" pageEncoding="UTF-8" session="false" %> <!DOCTYPE html> -<html> +<html lang="en"> <head> <title>NiFi</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> diff --git a/nifi-registry/nifi-registry-core/nifi-registry-web-ui/src/main/webapp/template.dev.html b/nifi-registry/nifi-registry-core/nifi-registry-web-ui/src/main/webapp/template.dev.html index c3f06c0502..fc13d76788 100644 --- a/nifi-registry/nifi-registry-core/nifi-registry-web-ui/src/main/webapp/template.dev.html +++ b/nifi-registry/nifi-registry-core/nifi-registry-web-ui/src/main/webapp/template.dev.html @@ -16,7 +16,7 @@ --> <!DOCTYPE html> -<html> +<html lang="en"> <head> <title>NiFi Registry</title> <meta charset='UTF-8'> diff --git a/nifi-registry/nifi-registry-core/nifi-registry-web-ui/src/main/webapp/template.html b/nifi-registry/nifi-registry-core/nifi-registry-web-ui/src/main/webapp/template.html index c3f06c0502..fc13d76788 100644 --- a/nifi-registry/nifi-registry-core/nifi-registry-web-ui/src/main/webapp/template.html +++ b/nifi-registry/nifi-registry-core/nifi-registry-web-ui/src/main/webapp/template.html @@ -16,7 +16,7 @@ --> <!DOCTYPE html> -<html> +<html lang="en"> <head> <title>NiFi Registry</title> <meta charset='UTF-8'>
