jQuery Lifestream Plug-in
Show a stream of your online activity.
Check out the example or create your own lifestream instantly.
Requirements
Supported feeds
Currently supports the following feeds:
Feel free to fork the project and add your own feeds in.
Just send a pull request to christianv/jquery-lifestream when you're finished.
Usage
Add the following to the <head> or <body> tag of your HTML page.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script src="https://raw.github.com/christianv/jquery-lifestream/master/jquery.lifestream-compiled.js"></script>
<script>
$("#lifestream").lifestream({
list:[
{
service: "github",
user: "christianv"
},
{
service: "twitter",
user: "denbuzze"
}
]
});
</script>
The above code will always use the latest version of the script.
If you want to use it in production, download the compressed
or uncompressed file and host it yourself.
jQuery Templates
You have the ability to use jQuery templates for your feed.
Checkout the template page to see an overview of the current available templates.
Usage:
{
service: 'deviantart',
user: 'gabbyd70',
template: {
deviationpost: 'heeft hetvolgende gepost: <a href="${url}">${title}</a>'
}
}
Configuration
The plug-in accepts one configuration JSON object:
$("#lifestream").lifestream({
classname: "lifestream",
feedloaded: feedcallback,
limit: 30,
list:[
{
service: "github",
user: "christianv"
},
{
service: "twitter",
user: "denbuzze"
}
]
});
classname
: The name of the main lifestream class. We use this for the main ul class e.g. lifestream and for the specific feeds e.g. lifestream-twitter
feedloaded
: (function) A callback function which is triggered each time a feed was loaded.
limit
: (integer) Specify how many elements you want in your lifestream (default = 10).
list
: (array) Array containing other JSON objects with information about each item.
Each item should have a service and a user.
For more information about each service, check out the source code of the example page.
Commit to the project
Add your own feed
Adding in your own feed is pretty easy.
Have a look at this commit which adds support for the last.fm feed.
Create data:URI for an icon
- Convert the favicon.ico of a site to a .png file. (e.g. http://google.com/favicon.ico)
- Make a data:URI for it.
- Put the data:URI in css/lifestream.css (alphabetical order).
How to commit?
- Push the finished code to your own remote repository.
- Send a pull request to christianv/jquery-lifestream.
Code Style Guidelines
- Indentation: 2 spaces
- Max column width: 78 characters
- Trailing spaces: not allowed
- Always use curly brackets {} for if/else/for
- Put all
var
statements in the beginning of a function
- Use === & !== for comparing variables
- Use the following spacing rules:
javascript
for (var i = 0, j = length; i < j; i++) {
## Ideas
Stuff that isn"t implemented yet, but would be nice to have:
* Add support for Twitter Web Intents
## Mentions
Places on the web where this plug-in got mentioned:
* BlogUpstairs
* DailyJS
* DesignBeep
* doejo
* HTML.it - Italian
* jQuery Rain
* jqueryitalia
* Softpedia - Softpedia pick
* phpspot - Japanese
* ProgrammableWeb - Mashup of the Day on 17/06/2011
* Smashing Magazine
* The Changelog
## Special Thanks
Special thanks all the committers and gabbyd70 for letting us use her DeviantART username.
## Version log
* 0.1.3 Mlkshk support
* 0.1.2 Foomark support
* 0.1.1 Blogger, Formspring, Posterous & Wordpress support
* 0.1.0 jQuery Template support
* 0.0.17 Forrst & PicPlz support
* 0.0.16 Iusethis support
* 0.0.15 Dailymotion & Pinboard support
* 0.0.14 Slideshare support
* 0.0.13 Vimeo support
* 0.0.12 Reddit support
* 0.0.11 Tumblr support
* 0.0.10 DeviantART support
* 0.0.9 Foursquare support
* 0.0.8 Add support for Github tags
* 0.0.7 Dribbble support
* 0.0.6 Update links in twitter to be able to have hashes in them
* 0.0.5 Flickr support
* 0.0.4 Last.fm support
* 0.0.3 Delicious support + minor bug fix in the stackoverflow code
* 0.0.2 Youtube support
* 0.0.1 Initial version