Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tswicegood/activitystream

A simple activity stream application
https://github.com/tswicegood/activitystream

Last synced: 12 days ago
JSON representation

A simple activity stream application

Awesome Lists containing this project

README

        

Activity Stream
===============
This is a simple project for bringing together RSS feeds from a bunch
of different sources and displaying them in a single stream of activity.

Usage
-----

### Vimeo
Vimeo's default item rendering (located in
activitystream/fragments/vimeo_item.html) adds a the `oembeddable` CSS class to
the link for Vimeo objects. You can use this to hook up inline viewing, as is
done in the default project.

Make sure you have [jquery-oembed][jquery-oembed] code loaded, then add
something along the lines of the following to your `base.html` file:

$(document).ready(function() {
$('.oembeddable').click(function() {
console.log("sup?");
$(this).oembed();
return false;
});
});

[jquery-oembed]: http://code.google.com/p/jquery-oembed/