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

test-pr-a11y #2380

Closed
wants to merge 11 commits into from
Closed
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
165 changes: 0 additions & 165 deletions .github/workflows/ftest.yaml

This file was deleted.

42 changes: 0 additions & 42 deletions .github/workflows/lint.yaml

This file was deleted.

48 changes: 0 additions & 48 deletions .github/workflows/test.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,6 @@ All Hyland product names are registered or unregistered trademarks of Hyland Sof

All images, icons, fonts, and videos contained in this folder are copyrighted by Hyland Software, all rights reserved.

## About Nuxeo
## About Nuxeo

Nuxeo dramatically improves how content-based applications are built, managed and deployed, making customers more agile, innovative and successful. Nuxeo provides a next generation, enterprise ready platform for building traditional and cutting-edge content oriented applications. Combining a powerful application development environment with SaaS-based tools and a modular architecture, the Nuxeo Platform and Products provide clear business value to some of the most recognizable brands including Verizon, Electronic Arts, Sharp, FICO, the U.S. Navy, and Boeing. Nuxeo is headquartered in New York and Paris. More information is available at www.nuxeo.com.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@

<script src="vendor/web-animations/web-animations-next-lite.min.js"></script>

<script nonce="dummy">
<script>
/* eslint-disable no-var, no-unused-vars */
var Nuxeo = {
UI: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ limitations under the License.
-->
<%@ page trimDirectiveWhitespaces="true" %>
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ page import="java.util.UUID"%>
<%@ page import="org.nuxeo.common.Environment"%>
<%@ page import="org.nuxeo.runtime.api.Framework"%>
<%@ page import="org.nuxeo.ecm.core.api.repository.RepositoryManager"%>
Expand All @@ -35,6 +36,7 @@ limitations under the License.
} else {
baseUrl = context + "/repo/" + repository + "/ui/";
}
String NX_NONCE_VALUE = UUID.randomUUID().toString();
%>

<!DOCTYPE html>
Expand All @@ -44,6 +46,7 @@ limitations under the License.
<meta charset="UTF-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'nonce-<%= NX_NONCE_VALUE %>' 'strict-dynamic'">

<title><%= Framework.getProperty(Environment.PRODUCT_NAME) %></title>

Expand Down Expand Up @@ -84,6 +87,10 @@ limitations under the License.
</style>
</head>

<script nonce="<%= NX_NONCE_VALUE %>">
const NuxeoNonce = "<%= NX_NONCE_VALUE %>";
</script>

<body>
<nuxeo-connection url="<%= context %>" repository-name="<%= repository %>"></nuxeo-connection>
<nuxeo-app base-url="<%= baseUrl %>"
Expand All @@ -98,15 +105,15 @@ limitations under the License.
</div>
</nuxeo-app>

<script src="vendor/webcomponentsjs/webcomponents-loader.js"></script>
<script src="vendor/webcomponentsjs/webcomponents-loader.js" nonce="<%= NX_NONCE_VALUE %>"></script>

<script src="vendor/html-imports/html-imports.min.js"></script>
<script src="vendor/html-imports/html-imports.min.js" nonce="<%= NX_NONCE_VALUE %>"></script>

<script src="vendor/web-animations/web-animations-next-lite.min.js"></script>
<script src="vendor/web-animations/web-animations-next-lite.min.js" nonce="<%= NX_NONCE_VALUE %>"></script>

<script src="config.jsp"></script>
<script src="config.jsp" nonce="<%= NX_NONCE_VALUE %>"></script>

<script src="main.bundle.js"></script>
<script src="main.bundle.js" nonce="<%= NX_NONCE_VALUE %>"></script>

</body>

Expand Down
Loading