Issue 14145: Fix communication with Hubzilla

This commit is contained in:
Michael 2024-10-21 06:08:28 +00:00
parent e8ab8a84af
commit 58cd216eb7
2 changed files with 13 additions and 0 deletions

View file

@ -58,6 +58,9 @@ class JsonLD
case 'http://joinmastodon.org/ns': case 'http://joinmastodon.org/ns':
$url = DI::basePath() . '/static/joinmastodon.jsonld'; $url = DI::basePath() . '/static/joinmastodon.jsonld';
break; break;
case 'https://purl.archive.org/socialweb/webfinger':
$url = DI::basePath() . '/static/socialweb-webfinger.jsonld';
break;
default: default:
switch (parse_url($url, PHP_URL_PATH)) { switch (parse_url($url, PHP_URL_PATH)) {
case '/schemas/litepub-0.1.jsonld'; case '/schemas/litepub-0.1.jsonld';

View file

@ -0,0 +1,10 @@
{
"@context": {
"wf": "https://purl.archive.org/socialweb/webfinger#",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"webfinger": {
"@id": "wf:webfinger",
"@type": "xsd:string"
}
}
}