summaryrefslogtreecommitdiff
path: root/actions/shownotice.php
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2009-07-15 15:11:29 -0400
committerCraig Andrews <candrews@integralblue.com>2009-07-15 15:11:29 -0400
commit6308539c1d669ad0b6072b48deeaa95969ebe318 (patch)
tree08e102d0bc3a66e5e0597a2db42498812fbdcc35 /actions/shownotice.php
parente637e5a8a97d5a30710046e70b1994007d65b939 (diff)
Added oEmbed discovery for attachments and notices
Diffstat (limited to 'actions/shownotice.php')
-rw-r--r--actions/shownotice.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/actions/shownotice.php b/actions/shownotice.php
index 1ec38a76b..4cf226f1c 100644
--- a/actions/shownotice.php
+++ b/actions/shownotice.php
@@ -275,6 +275,20 @@ class ShownoticeAction extends OwnerDesignAction
$this->element('meta', array('name' => 'microid',
'content' => $id->toString()));
}
+ $this->element('link',array('rel'=>'alternate',
+ 'type'=>'application/json+oembed',
+ 'href'=>common_local_url(
+ 'api',
+ array('apiaction'=>'laconica','method'=>'oembed.json'),
+ array('url'=>$this->notice->uri)),
+ 'title'=>'oEmbed'),null);
+ $this->element('link',array('rel'=>'alternate',
+ 'type'=>'text/xml+oembed',
+ 'href'=>common_local_url(
+ 'api',
+ array('apiaction'=>'laconica','method'=>'oembed.xml'),
+ array('url'=>$this->notice->uri)),
+ 'title'=>'oEmbed'),null);
}
}