This release is a pre-release and may not be stable for production use.
Introduction
This addon register the jquery plugin oembed in the Plone resource registry.
Version: 1.1.0 RC
How to use jquery.oembed
Explicit example:
<script type="text/javascript">
$(document).ready(function() {
$("#container").oembed("http://www.flickr.com/photos/14516334@N00/345009210/");
});
</script>
<div id="container"></div>
Implicit example:
<script type="text/javascript">
$(document).ready(function() {
$("a.oembed").oembed();
});
</script>
<div><a href="http://www.flickr.com/photos/14516334@N00/345009210/" class="oembed">Flickr Image</a></div>
<div><a href="http://vimeo.com/3108686" class="oembed">Vimeo Video</a></div>
Configuring multiple providers example
<script type="text/javascript">
$(document).ready(function() {
$(".oembed").oembed(null,
{
embedMethod: "append",
maxWidth: 1024,
maxHeight: 768,
vimeo: { autoplay: true, maxWidth: 200, maxHeight: 200}
});
});
</script>
<div><a href="http://vimeo.com/3108686" class="oembed">Vimeo Video</a></div>
<div><a href="http://www.flickr.com/photos/14516334@N00/345009210/" class="oembed">Flickr Image</a></div>
Supported OEmbed providers
5min
Amazon Product Images
Flickr
Google Video
Hulu
Imdb
Metacafe
Myspace Videos
Qik
Revision3
Screenr
Slideshare
Twitpic
Viddler
vVimeo
Wikipedia
WordPress
YouTube
This javascript plugin relays in ‘jsonp’, so only oEmbed providers that support callback methods are directly implemented.
Any other oEmbed provider uses embedly service.
How to manage providers
‘greedy’ option let you activate a fallback service to not natively supported services, by default the service used is oohembed.
allowed providers:
$(".oembed").oembed(null, { allowedProviders: ["flickr", "youtube"] });
custom providers:
$(".oembed").oembed(null, {
greedy: false,
customProviders: [{
"name": "streetfire.net",
"urlschemes": ["streetfire\\.net\/video\/.*"],
"apiendpoint": "http://api.embed.ly/v1/api/oembed?"
}]
});
disallowed providers:
$(".oembed").oembed(null, { disallowedProviders: ["flickr", "youtube"] });
default oembed provider:
$(".oembed").oembed(null, {defaultOEmbedProvider: "embed.ly"});
embeded method
append:
$(".oembed").oembed(null, {embedMethod: "append"});
It append to the .oembed container the result with a container classified:
<a href="..." class="oembed">...</a> <div class="oembed-container oembed-container-Vimeo">...</div>
fill:
$(".oembed").oembed(null, {embedMethod: "fill"});
It fill the link with the results:
<a href="..." class="oembed"> <div>...</div> </a>
replace:
$(".oembed").oembed(null, {embedMethod: "replace"});
It replaces the link with the html snippet
manage size
You can add a size constraint to the html snippet. You can set maxWidth and/or maxHeight:
$(".oembed").oembed(null, {
maxWidth: 400,
maxHeight: 300 });
});
Credits
Companies
Authors
JeanMichel FRANCOIS aka toutpt <toutpt@gmail.com>
Changelog
1.0a (2012-01-02)
Initial release
Release files for collective.js.oembed 1.0a
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| collective.js.oembed-1.0a.tar.gz | 12.2 kB | Details |
Release files / collective.js.oembed-1.0a.tar.gz
| Download URL | collective.js.oembed-1.0a.tar.gz |
|---|---|
| Size | 12.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
f1d984a2cb5071e8bca1ce259cf593ee21130ba4805ea3be0e10295fd7c906ff
|
|
BLAKE2b-256 checksum How to use checksums |
172e4eab04a90c6189a508fba4bd54c9937240d93d48571b38eb1b2e708b3f57
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |