Archive for février, 2007

A firefox plugin to blog!

PFF Performancing is a very nice firefox plugin to blog in your own blog.
It allows bloggers to connect via XMLRPC to their blog to post content. More than just a simple XMLRPC system, performancing allows WYSIWYG, drag’n'drop from web pages, saving as note, etc…

It is a very nice plugin, see following screen-shots :

Edit your blog using Performancing and Firefox

powered by performancing firefox

Generate on line your own indicator

In a previous post I was talking about a list of Ajax indicator.
Better than a list of indicator ajaxLoad generates indicator which can be downloaded : fun and usefull ;)

Creating a splashScreen for "heavy" web application with Dojo

More and more web application are build with same constraints as « heavy client ». We all want our application looks like an OS native application in a web browser.
A lot of cool framework allow developper to build such application. The problem now is the application loading. A very « heavy » application can take more than 1 or 2 seconds to be loaded and while application loads, end user don’t know if the application works or if it is down.
There is an alternative to this kind of problem : the splashScreen. This kind of feature could be implemented by dojo with the famous dojo.addOnLoad Method.

Here is a simple exemple showing how to make a splashScreen with Dojo :

 function showApp() {     dojo.byId("splash").style.display = "none";     dojo.lfx.fadeShow("real", 100); } dojo.addOnLoad(showApp); <div id="splash" style="position: absolute; top: 200px; width: 100%;z-index: 100;">    <div align=center>        ...     </div> </div> <div id="real" dojoType="LayoutContainer"     style="opacity: 0.01;filter:progid:DXImageTransform.Microsoft.Alpha(opacity=1);">     ...  </div> 


In this exemple, we simply show in simple splash when page is shown and we remove it when all Dojo js has been executed (with a fade – just for fun) for showing the main application. It is very simple… let try it.

A new Wicket Commiter

Wicket team just elected a new commiter in the team. Yes it is my co-worker on Joost JBQ.

Congratulation JB ;)

Wicket 1.2.5 is out!

As I said in a previous post wicket, is now in apache incubator. But waiting for the first release of Apache Wicket, wicket team released its last Sourceforge Wicket which is Wicket 1.2.5.

You can download it on sourceforge.

Playing sounds in javascripts

Ajax and Javascripts allow developpers to make more and more awasone things in a web browser.
The last I found « exciting » is playing sound with very goog javascript APIs?. Take a look at Sound Manager 2 (Using backgrounded flash player to play sound) – Project Home page – , it is crazy what we now can do with Javascript

You can see also: