Community contributed extensions

play-gravatar

Integrate Gravatar into your Play application.

Installation

Module installation

Install the gravatar module from the modules repository:

play install gravatar

Enable the module

After installing the module, add the following to your application.conf to enable it:

module.gravatar=${play.path}/modules/gravatar

Using gravatar tag

Gravatar module
After installation you can use gravatar.img tag in your templates to generate an html img tag with the correct url for the email provided:

#{gravatar.img '[email protected]'/}

renders to:

<img src="http://www.gravatar.com/avatar/08aff750c4586c34375a0ebd987c1a7e"></img>

Or you can use gravatar.url to generate a String with the correct url:

#{gravatar.url '[email protected]'/}

renders to:

http://www.gravatar.com/avatar/08aff750c4586c34375a0ebd987c1a7e

Parameters

Size,default,rating and secure parameters explained here
are available.

#{gravatar.url '[email protected]', size:50, default:'mm', rating:'pg', secure:true /}