mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Remove OStatus legacy code
This commit is contained in:
parent
7fc5b350f3
commit
0a9a98973d
1 changed files with 2 additions and 7 deletions
|
@ -2,25 +2,20 @@
|
|||
/* Using an echo tag here so the `<? ... ?>` won't get parsed as short tags */
|
||||
'<?xml version="1.0" encoding="UTF-8"?>'.PHP_EOL
|
||||
?>
|
||||
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:activity="http://activitystrea.ms/spec/1.0/" xmlns:poco="http://portablecontacts.net/spec/1.0" xmlns:media="http://purl.org/syndication/atommedia" xmlns:ostatus="http://ostatus.org/schema/1.0" xmlns:mastodon="http://mastodon.social/schema/1.0">
|
||||
<feed xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>{{$profile->permalink('.atom')}}</id>
|
||||
<title>{{$profile->username}}</title>
|
||||
<title>{{$profile->username}} on Pixelfed</title>
|
||||
<subtitle>{{$profile->bio}}</subtitle>
|
||||
<updated>{{$profile->updated_at->toAtomString()}}</updated>
|
||||
<logo></logo>
|
||||
<author>
|
||||
<id>{{$profile->permalink()}}</id>
|
||||
<activity:object-type>http://activitystrea.ms/schema/1.0/person</activity:object-type>
|
||||
<uri>{{$profile->permalink()}}</uri>
|
||||
<name>{{$profile->permalink()}}</name>
|
||||
<email>{{$profile->emailUrl()}}</email>
|
||||
<summary type="html">{{$profile->bio}}</summary>
|
||||
<link rel="alternate" type="text/html" href="{{$profile->url()}}"/>
|
||||
<link rel="avatar" type="image/jpeg" media:width="120" media:height="120" href="{{$profile->avatarUrl()}}"/>
|
||||
<poco:preferredUsername>{{$profile->username}}</poco:preferredUsername>
|
||||
<poco:displayName>{{$profile->name}}</poco:displayName>
|
||||
<poco:note>{{$profile->bio}}</poco:note>
|
||||
<mastodon:scope>public</mastodon:scope>
|
||||
</author>
|
||||
<link rel="alternate" type="text/html" href="{{$profile->url()}}"/>
|
||||
<link rel="self" type="application/atom+xml" href="{{$profile->permalink('.atom')}}"/>
|
||||
|
|
Loading…
Reference in a new issue