Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
New Extensions: Flickrizer Beta && HideSuccess
Mark
Vanilla Staff
Go to my profile to see Flickrizer in action. Go to your profile and edit your personal information to add your own Flickr photostream feed. You'll also notice the HideSuccess extension in action when you save your personal information.
Here they are in the addons directory:
Flickrizer Beta: http://lussumo.com/addons/index.php?PostBackAction=AddOn&AddOnID=43
Hide Success: http://lussumo.com/addons/index.php?PostBackAction=AddOn&AddOnID=44
0
This discussion has been closed.
Comments
And secondly, would it perhaps be a good idea if you added a cache system to that (hence why I suggested MagpieRSS)? If this extension becomes more widely-used, there's a good chance numerous people won't update their flickr feed as often as their profile is viewed. If a server-side cache system isn't implemented, such situations could very well lead to longer-than-necessary load times and excess use of flickr's bandwidth.
And on the topic of caching, perhaps it'd be a good idea to allow caching of your own RSS/Atom feeds. A lot of feed readers check feeds as often as once every five minutes, and without some form of caching you're going to use up a lot of excess bandwidth. This site has some good info on it: http://annevankesteren.nl/2005/05/http-304.
$ImageCount = count($Images);
to
$ImageCount = count($Images); $DisplayCount = 10; if ($ImageCount > $DisplayCount) $ImageCount = $DisplayCount;
That should do it.