diff options
author | Daniel Brötzmann <35428560+wurstsalat3000@users.noreply.github.com> | 2022-11-07 09:18:08 +0100 |
---|---|---|
committer | badlop <badlop@gmail.com> | 2022-11-07 11:12:10 +0100 |
commit | 811fea14d83eb08c50d9492491312ce1193019ec (patch) | |
tree | a53a28be780679d426c74f57e568c6ae99b1f729 | |
parent | Commit the generated DOAP file (diff) |
Fix DOAP file logo namespace
-rwxr-xr-x | tools/generate-doap.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/generate-doap.sh b/tools/generate-doap.sh index dc3480e8..2fe4f7c8 100755 --- a/tools/generate-doap.sh +++ b/tools/generate-doap.sh @@ -6,7 +6,8 @@ write_doap_head() <?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://usefulinc.com/ns/doap#" - xmlns:xmpp="https://linkmauve.fr/ns/xmpp-doap#"> + xmlns:xmpp="https://linkmauve.fr/ns/xmpp-doap#" + xmlns:schema="https://schema.org/"> <Project> <name>ejabberd</name> <shortdesc>XMPP Server with MQTT Broker and SIP Service</shortdesc> @@ -26,7 +27,7 @@ write_doap_head() <download-page rdf:resource="https://www.process-one.net/en/ejabberd/downloads/"/> <download-mirror rdf:resource="https://github.com/processone/ejabberd/tags"/> <license rdf:resource="https://raw.githubusercontent.com/processone/ejabberd/master/COPYING"/> - <logo rdf:resource="https://docs.ejabberd.im/static/shared/images/footer_logo_e@2x.png"/> + <schema:logo rdf:resource="https://docs.ejabberd.im/static/shared/images/footer_logo_e@2x.png"/> <bug-database rdf:resource="https://github.com/processone/ejabberd/issues"/> <support-forum rdf:resource="xmpp:ejabberd@conference.process-one.net?join"/> <repository> |