Monday, November 28, 2011

Wiz WebServer 0.2.0 Released

Version 0.2.0 of Wiz WebServer, a tiny web-server written in Java is available for download. The new version sports better command-line parameter support, and fixes a bug which was mapping the URL parameters also to the file-system path.

Thursday, November 17, 2011

Release 0.2.0 of WizTools.org oEmbed Java API

The new version has the OEmbedUrlBuilder convenience class, which simplifies building oEmbed Urls. The project is hosted at Google Code and downloads are available here. Maven users can easily link to the dependency:

<dependency>
    <groupId>org.wiztools</groupId>
    <artifactId>wiztools-oembed</artifactId>
    <version>0.2.0</version>
</dependency>

Friday, November 11, 2011

Version 0.1.0 of WizTools.org oEmbed API Released

The first ever release of WizTools.org oEmbed API is published. This is not yet available in the Maven central repository, so it is recommended to build from the source after checking out 0.1.0 release:


$ hg clone -r wiztools-oembed-0.1.0 https://code.google.com/p/wiztools-oembed/


The JavaDoc API is also available.

Friday, November 4, 2011

Launching Java API for oEmbed 1.0 Specification

I am happy to announce the launch of WizTools.org oEmbed Java API project. This is an implementation of the oEmbed specification. The aim of this project:


  • Minimal external dependency. Maybe, the only external dependency I forsee is for JSON parsing.

  • XML parsing is done by super-fast StAX.

  • API should be easily extendable.

  • Validation for compliance to the specification should be in place.

  • Should be available in Maven public repository.



The initial version of the code is committed in the mercurial repository---interested hackers, have a look!