Skip to content

Commit ad53df6

Browse files
committed
chore: ignore more Thymeleaf-related violations from html5validator
Previously the build failed with: "file:src/main/webapp/WEB-INF/views/series/add.html":18.2-21.133: info warning: Attribute "th:data-suggest-category-url" is not serializable as XML 1.0. "file:src/main/webapp/WEB-INF/views/series/add.html":18.2-21.133: info warning: Attribute "th:data-suggest-country-url" is not serializable as XML 1.0. "file:src/main/webapp/WEB-INF/views/series/add.html":18.2-21.133: error: Attribute "th:data-suggest-category-url" not allowed on element "body" at this point. "file:src/main/webapp/WEB-INF/views/series/add.html":18.2-21.133: error: Attribute "th:data-suggest-country-url" not allowed on element "body" at this point. Correction for 1025e57 commit.
1 parent 1025e57 commit ad53df6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: src/main/scripts/ci/check-build-and-verify.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,8 @@ if [ "$RUN_ONLY_INTEGRATION_TESTS" = 'no' ]; then
211211
--no-langdetect \
212212
--ignore-re \
213213
'Attribute “(th|sec|togglz|xmlns):[a-z]+” not allowed' \
214-
'Attribute “(th|sec|togglz):[a-z]+” is not serializable' \
214+
'Attribute “th:[-a-z]+” not allowed on element "body" at this point' \
215+
'Attribute “(th|sec|togglz):[-a-z]+” is not serializable' \
215216
'Attribute with the local name “xmlns:[a-z]+” is not serializable' \
216217
--ignore \
217218
'An "img" element must have an "alt" attribute' \

0 commit comments

Comments
 (0)