This is an automated email from the ASF dual-hosted git repository.
kirs pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 17a17cd1034 [fix](doap) Fix DOAP syntax (#36956)
17a17cd1034 is described below
commit 17a17cd10344bf06e63fde04a67458edc443fde2
Author: Arnout Engelen <[email protected]>
AuthorDate: Fri Jun 28 04:29:19 2024 +0200
[fix](doap) Fix DOAP syntax (#36956)
xmlns strings need to match exactly, and these vocabularies are defined
with `http` namespace strings, so we need to follow that.
---
doap_Doris.rdf | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/doap_Doris.rdf b/doap_Doris.rdf
index 8be1d6d2e2f..37513252086 100644
--- a/doap_Doris.rdf
+++ b/doap_Doris.rdf
@@ -2,9 +2,9 @@
<?xml-stylesheet type="text/xsl"?>
<rdf:RDF xml:lang="en"
xmlns="http://usefulinc.com/ns/doap#"
- xmlns:rdf="https://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:asfext="https://projects.apache.org/ns/asfext#"
- xmlns:foaf="https://xmlns.com/foaf/0.1/">
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:asfext="http://projects.apache.org/ns/asfext#"
+ xmlns:foaf="http://xmlns.com/foaf/0.1/">
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]