Webthumb Wrapper for Python
Wednesday, June 13th, 2007Rossp.org has a API Wrapper for Webthumb written in Python. If your a python user take a look.
The weblog of Joshua Eichorn, AJAX, PHP and Open Source
Rossp.org has a API Wrapper for Webthumb written in Python. If your a python user take a look.
If you’ve ran into problems with the menus at phpdoc.org in IE7 you should be good now.
I switched from them being CSS driven to them being jquery driven.
There is nothing like jquery for dom manipulation.
$(document).ready(function() {
$('#nav ul > li').mouseover(function(e) {
$('#nav ul ul').hide();
$(this).find('ul').toggle();
});
});
The PEAR group and president now have a blog. We will be using it to make announcements and to ask the community for feedback. I think this is a big step towards making PEAR a more transparent project.
I just quickly hacked up a theme for it so if you don’t how the blog looks you can blame me. Of course a more useful thing to do in that case would be to send me an updated css file.