[postgis-tickets] [SCM] PostGIS branch master updated. 3.4.0rc1-499-g4d57cbcdf
git at osgeo.org
git at osgeo.org
Wed Sep 13 00:55:57 PDT 2023
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".
The branch, master has been updated
via 4d57cbcdfe1fe6e6b56b7902f51aae40a9ce577e (commit)
from 813f796d33279cfc756c8584afcddb8b179e69fa (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 4d57cbcdfe1fe6e6b56b7902f51aae40a9ce577e
Author: Sandro Santilli <strk at kbt.io>
Date: Wed Sep 13 09:55:22 2023 +0200
Add relaxng validation
References #5532
diff --git a/doc/Makefile.in b/doc/Makefile.in
index 5d0d6fd46..f2f45e93f 100644
--- a/doc/Makefile.in
+++ b/doc/Makefile.in
@@ -576,7 +576,13 @@ check-xml: requirements_not_met_xmllint
check-cheatsheets: requirements_not_met_xmllint
else
check-xml: postgis-out.xml
- $(XMLLINT) --loaddtd $(XSLTPROC_PATH_OPT) --xinclude --valid postgis-out.xml --noout --nonet
+ # TODO: --schematron http://docbook.org/xml/5.0/sch/docbook.sch
+ # See https://trac.osgeo.org/postgis/ticket/5532
+ $(XMLLINT) --noout --nonet \
+ --valid --loaddtd \
+ --relaxng http://docbook.org/xml/5.0/rng/docbook.rng \
+ $<
+
check-cheatsheets: cheatsheets
for f in $(html_builddir)/*_cheatsheet-en.html; do \
-----------------------------------------------------------------------
Summary of changes:
doc/Makefile.in | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list