Skip to content

Commit

Permalink
Changed organization to veloxian.org.
Browse files Browse the repository at this point in the history
  • Loading branch information
odd committed May 21, 2012
1 parent e01c5cd commit 1a216e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion build.sbt
@@ -1,7 +1,9 @@
name := "stencil"

organization := "org.veloxian"

version := "0.1"

scalaVersion := "2.9.1"

libraryDependencies += "org.scalatest" %% "scalatest" % "1.7.2" % "test" withSources()
libraryDependencies += "org.scalatest" %% "scalatest" % "1.7.2" % "test" withSources()
4 changes: 2 additions & 2 deletions src/main/scala/stencil/stencil.scala
Expand Up @@ -264,7 +264,7 @@ object Main {
case class Product(name: String, price: Double)

def main(args: Array[String]) {
val data = """<html xmlns:x="http://github.com/odd/stencil">
val data = """<html xmlns:x="http://veloxian.org/stencil">
| <body x:let-customer="order.customer">
| <span x:set="customer.name" title="title" x:set-title="order.customer.name">ACME</span> <span x:set="order.date">2012-01-01</span>
| <table x:let-orderLines="order.lines" width="100%">
Expand All @@ -284,4 +284,4 @@ object Main {
println(stencil)
println(stencil("order" Order("2012-04-11", Customer("Foo Intermedia"), OrderLine(Product("Bar", 199d), 12) :: OrderLine(Product("Baz", 79d), 3) :: Nil)))
}
}
}

0 comments on commit 1a216e1

Please sign in to comment.