Skip to content
Markus Kahl edited this page Aug 7, 2011 · 9 revisions

Wandledi

**UNDER CONSTRUCTION **

Wandledi is a Java HTML transformation library whose purpose is to clear the markup of any logic whatsoever.

Features

  • Generate dynamic HTML without an extra language, but instead with the same language your application is written in!
  • The core library is written in Java, making it easy to wrap and use with just about any language on the JVM.
  • A Scala API is already there and will be used for most examples on this page.

Getting started

Once I have published Wandledi to a maven repository, you will be able to include Wandledi like this:

SBT (0.7.x):

// use this for a Servlet API based Scala web app:
val wandletScala = "org.wandledi" % "wandlet-scala_2.8.1" % "1.0"
// or this for a Servlet API based Java web app:
val wandlet = "org.wandledi" % "wandlet_2.8.1" % "1.0"

// of course you can use it outside a Servlet context to
// Scala:
val wandlediScala = "org.wandledi" % "wandledi-scala_2.8.1" % "1.0"
// Java:
val wandledi = "org.wandledi" % "wandledi_2.8.1" % "1.0"

For those unfamiliar with SBT: it's groupId % artifactId % version

Clone this wiki locally