Initialisation depot

This commit is contained in:
Serge NOEL
2026-06-17 14:00:51 +02:00
commit efdf1683af
33190 changed files with 5907629 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#! /bin/bash
# scan the help files for HMTL errors, used in Jenkins as "tidy-scan.sh help/en/*/*"
# formats output for Jenkins presentation
# if an argument is provided, i.e. "help/en/*/*" scan there, otherwise scan all the help
if [[ "$@" == "" ]] ; then
WHERE=help/*/*
else
WHERE=$@
fi
# first, scan for whether there's an issue (omitting known fragment files)
# THree files are excluded since they have excess html (empty <ul></ul> pairs) due to the XSLT transformation.
find ${WHERE} -name \*html -exec grep -q DOCTYPE {} \; -exec echo Filename: {} \; -exec tidy -e -access 0 {} \; 2>&1 | awk -f scripts/tidy.awk | egrep -v "local/index.html|webindex.shtml|webtoc.shtml"