[Libreoffice-commits] core.git: extras/source
Julien Nabet (via logerrit)
logerrit at kemper.freedesktop.org
Wed Oct 14 00:15:33 UTC 2020
extras/source/autocorr/lang/vro/META-INF/manifest.xml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
New commits:
commit fead31c2c08c08023a237595f69b5da502ad5d18
Author: Julien Nabet <serval2412 at yahoo.fr>
AuthorDate: Tue Oct 13 22:03:54 2020 +0200
Commit: Eike Rathke <erack at redhat.com>
CommitDate: Wed Oct 14 02:14:50 2020 +0200
Fix namespace errors in new "vro" manifest.xml
Fix these:
/home/julien/lo/libo_perf/extras/source/autocorr/lang/vro/META-INF/manifest.xml:2: namespace error : Namespace prefix manifest on manifest is not defined
<manifest:manifest>
^
/home/julien/lo/libo_perf/extras/source/autocorr/lang/vro/META-INF/manifest.xml:3: namespace error : Namespace prefix manifest for full-path on file-entry is not defined
<manifest:file-entry manifest:full-path="/" manifest:media-type=""/>
^
/home/julien/lo/libo_perf/extras/source/autocorr/lang/vro/META-INF/manifest.xml:3: namespace error : Namespace prefix manifest for media-type on file-entry is not defined
<manifest:file-entry manifest:full-path="/" manifest:media-type=""/>
^
/home/julien/lo/libo_perf/extras/source/autocorr/lang/vro/META-INF/manifest.xml:3: namespace error : Namespace prefix manifest on file-entry is not defined
<manifest:file-entry manifest:full-path="/" manifest:media-type=""/>
^
/home/julien/lo/libo_perf/extras/source/autocorr/lang/vro/META-INF/manifest.xml:4: namespace error : Namespace prefix manifest for full-path on file-entry is not defined
:file-entry manifest:full-path="DocumentList.xml" manifest:media-type="text/xml"
^
/home/julien/lo/libo_perf/extras/source/autocorr/lang/vro/META-INF/manifest.xml:4: namespace error : Namespace prefix manifest for media-type on file-entry is not defined
:file-entry manifest:full-path="DocumentList.xml" manifest:media-type="text/xml"
^
/home/julien/lo/libo_perf/extras/source/autocorr/lang/vro/META-INF/manifest.xml:4: namespace error : Namespace prefix manifest on file-entry is not defined
:file-entry manifest:full-path="DocumentList.xml" manifest:media-type="text/xml"
^
Remark: I don't know why these errors don't appear for "pt-PT" which has the same way to declare manifest.xml
Perhaps because only "pt" and "pt-BR" are used and don't use this buggy way?
Change-Id: Ibe8e03ec3d2e307be5ba96eb07ad710801f43eaf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104260
Reviewed-by: Mihkel Tõnnov <mihhkel at gmail.com>
Reviewed-by: Eike Rathke <erack at redhat.com>
Tested-by: Jenkins
diff --git a/extras/source/autocorr/lang/vro/META-INF/manifest.xml b/extras/source/autocorr/lang/vro/META-INF/manifest.xml
index bd8de6e3524c..4f8fb0d56bcc 100644
--- a/extras/source/autocorr/lang/vro/META-INF/manifest.xml
+++ b/extras/source/autocorr/lang/vro/META-INF/manifest.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<manifest:manifest>
- <manifest:file-entry manifest:full-path="/" manifest:media-type=""/>
- <manifest:file-entry manifest:full-path="DocumentList.xml" manifest:media-type="text/xml"/>
-</manifest:manifest>
\ No newline at end of file
+<manifest>
+ <file-entry full-path="/" media-type=""/>
+ <file-entry full-path="DocumentList.xml" media-type="text/xml"/>
+</manifest>
More information about the Libreoffice-commits
mailing list