Archive for juin, 2007
11
juin
2007
juin
2007
07
juin
2007
juin
2007
PickWick

Jbq, Titom and I are proud to announce the creation of a new WicketStuff Project: PickWick:
- Provides a set of basic pages to render the pictures, organized in folders (called sequences)
- Uses a nice URL displaying the folder name relative to the images directory
- Back-office application to edit the photo gallery
- Thumbnails and scaled images are generated on disk to avoid the complexity of caching systems
- ImageMagick support, for maximum efficiency and to reduce the memory footprint of the JVM
- Java2D support
PickWick has just been started, We will make more « buzz » when the future release will come out
.
04
juin
2007
juin
2007
JXPathContext on java Objects
JxPath is a very usefull API to manipulate XML. But you can also use it to navigate an modify Java object : JXPathContext for java object
[java] public class Employee { public Address getHomeAddress(){ ... } } public class Address { public String getStreetNumber(){ ... } } Employee emp = new Employee(); ... JXPathContext context = JXPathContext.newContext(emp); String sNumber = (String)context.getValue("homeAddress/streetNumber");
A very good way to make introspection…
04
juin
2007
juin
2007
Google and the offline web application : Google Gears

Google Gears is an open source runtime to allow you to build Offline Web applications. Wow : now with Google Gears you can access to a client side DB, run asynchronous javascript, Store and serve application offline. To make Google Gears works, you need to download a plugin available for Firefox and Microsoft Internet Explorer.
Google Offline yes! but what about Dojo Offline? The very good news is Dojo Fundation will work with Google on this Offline framework instead of fragmenting developments.
And when good concept come out, good tools appear very soon : SQLAdmin for Google Gears is a HMI to adaministrate the Google Gears DB, very usefull
. try it !






