summaryrefslogtreecommitdiff
path: root/extras
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2020-10-13 22:03:54 +0200
committerEike Rathke <erack@redhat.com>2020-10-14 02:14:50 +0200
commitfead31c2c08c08023a237595f69b5da502ad5d18 (patch)
tree0a8aea927c12a96ee8dfd99cbf5bd51ba7d25a0d /extras
parent94e6e140491de31c0788c91af855a75a3bb12709 (diff)
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@gmail.com> Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Jenkins
Diffstat (limited to 'extras')
-rw-r--r--extras/source/autocorr/lang/vro/META-INF/manifest.xml8
1 files changed, 4 insertions, 4 deletions
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>