Skip to content

Latest commit

 

History

History
 
 

dust

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Dust Plugin

An updated version of this plugin can be found here: https://github.com/jmparsons/play-dustjs.

This plugin provides build time compilation for Dust templates.

How to install

  • add

play 2.0.2:

addSbtPlugin("com.typesafe" % "play-plugins-dust" % "1.4")

play 2.0.1:

addSbtPlugin("com.typesafe" % "play-plugins-dust" % "1.0-SNAPSHOT")

to your plugin.sbt

How to Use

  • Include dust. Note that this is not provided by the sbt plugin. It can be found here: dust-core-0.6.0.min.js
  • Put your dust template .tl files under the app/assets directory

  • Reference the generated .js in a <script> tag: <script src="@routes.Assets.at("example.tl.js")"></script>

  • Render the template when you receive the json

  $(function() {
	$.get('@routes.Application.data', function(data) {
	  console.log('data = ' + JSON.stringify(data));
	  dust.render('example.tl', data, function(err, out) {
	    $('#dust_pan').html(err ? err : out);
	  });
	});
  });

Sample

For an example, see the bundled sample app

Licence

This software is licensed under the Apache 2 license, quoted below.

Copyright 2012 Typesafe (http://www.typesafe.com).

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this project except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.