Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tswicegood/activitystream
- Owner: tswicegood
- License: other
- Created: 2009-10-06T16:00:27.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2010-05-13T20:55:04.000Z (over 14 years ago)
- Last Synced: 2024-04-14T14:50:11.020Z (7 months ago)
- Language: Python
- Homepage:
- Size: 141 KB
- Stars: 6
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
- License: LICENSE.cddl
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/