test/source/bootstrapfixture.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit 746c35baf6de94f2aaf7c732a9441acd0383e2ba Author: Xisco Fauli <xiscofa...@libreoffice.org> AuthorDate: Mon Sep 2 16:29:30 2024 +0200 Commit: Xisco Fauli <xiscofa...@libreoffice.org> CommitDate: Tue Sep 24 14:21:15 2024 +0200 ODF 1.4: schema: rename to OpenDocument-v1.3* Change-Id: I83ac72accf2bbddd3ca74790654327bb9e86dba4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/172765 Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org> Tested-by: Jenkins diff --git a/schema/libreoffice/OpenDocument-v1.3+libreoffice-dsig-schema.rng b/schema/libreoffice/OpenDocument-v1.4+libreoffice-dsig-schema.rng similarity index 100% rename from schema/libreoffice/OpenDocument-v1.3+libreoffice-dsig-schema.rng rename to schema/libreoffice/OpenDocument-v1.4+libreoffice-dsig-schema.rng diff --git a/schema/libreoffice/OpenDocument-v1.3+libreoffice-manifest-schema.rng b/schema/libreoffice/OpenDocument-v1.4+libreoffice-manifest-schema.rng similarity index 100% rename from schema/libreoffice/OpenDocument-v1.3+libreoffice-manifest-schema.rng rename to schema/libreoffice/OpenDocument-v1.4+libreoffice-manifest-schema.rng diff --git a/schema/libreoffice/OpenDocument-v1.3+libreoffice-metadata.owl b/schema/libreoffice/OpenDocument-v1.4+libreoffice-metadata.owl similarity index 100% rename from schema/libreoffice/OpenDocument-v1.3+libreoffice-metadata.owl rename to schema/libreoffice/OpenDocument-v1.4+libreoffice-metadata.owl diff --git a/schema/libreoffice/OpenDocument-v1.3+libreoffice-package-metadata.owl b/schema/libreoffice/OpenDocument-v1.4+libreoffice-package-metadata.owl similarity index 100% rename from schema/libreoffice/OpenDocument-v1.3+libreoffice-package-metadata.owl rename to schema/libreoffice/OpenDocument-v1.4+libreoffice-package-metadata.owl diff --git a/schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng b/schema/libreoffice/OpenDocument-v1.4+libreoffice-schema.rng similarity index 100% rename from schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng rename to schema/libreoffice/OpenDocument-v1.4+libreoffice-schema.rng diff --git a/test/source/bootstrapfixture.cxx b/test/source/bootstrapfixture.cxx index 4cf04adf3db3..32ebbd01a9e0 100644 --- a/test/source/bootstrapfixture.cxx +++ b/test/source/bootstrapfixture.cxx @@ -229,11 +229,11 @@ void test::BootstrapFixture::validate(const OUString& rPath, test::ValidationFor // invoke without -e so that we know when something new is written // in loext namespace that isn't yet in the custom schema aValidator += " -M " - + m_directories.getPathFromSrc(u"/schema/libreoffice/OpenDocument-v1.3+libreoffice-manifest-schema.rng") + + m_directories.getPathFromSrc(u"/schema/libreoffice/OpenDocument-v1.4+libreoffice-manifest-schema.rng") + " -D " - + m_directories.getPathFromSrc(u"/schema/libreoffice/OpenDocument-v1.3+libreoffice-dsig-schema.rng") + + m_directories.getPathFromSrc(u"/schema/libreoffice/OpenDocument-v1.4+libreoffice-dsig-schema.rng") + " -O " - + m_directories.getPathFromSrc(u"/schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng") + + m_directories.getPathFromSrc(u"/schema/libreoffice/OpenDocument-v1.4+libreoffice-schema.rng") + " -m " + m_directories.getPathFromSrc(u"/schema/mathml2/mathml2.xsd"); }