<plugin name='nerderg-form-tags' version='2.1' grailsVersion='2.1 &gt; *'>
  <author>Peter McNeil</author>
  <authorEmail>peter@nerderg.com</authorEmail>
  <title>Nerderg Formtags Plugin</title>
  <description>A taglib for forms. see &lt;a href="http://nerderg.com/Nerderg+Form+Taglib"&gt;documentation&lt;/a&gt;

Bringing Readability, Convention, Consistency and CSS to form design.

It gives you:

    * Labels and structure without cluttering up your GSP form
    * Standard error marking and handling without cluttering up your GSP form
    * Compatibility with browsers
    * Javascript assistance with pickers and choosers where appropriate using jQuery
    * CSS themeable rendering of forms

e.g.

&lt;nerderg:formfield label='Select one' field='age' bean='${myCommand}'&gt; &lt;g:select name="age" from="${18..65}" value="${myCommand.age}"/&gt;
&lt;/nerderg:formfield&gt;
&lt;nerderg:inputfield label='First name' field='firstname' bean='${myCommand}'/&gt;
&lt;nerderg:datefield label='Date of birth' field='dob' bean='${myCommand}' format='dd/MM/yyyy'/&gt;
&lt;nerderg:timefield label='Time of accident' field='toa' bean='${myCommand}' format='hh:mm a'/&gt;
&lt;nerderg:datetimefield label='Start' field='eventStart' bean='${myCommand}' format='dd/MM/yyyy hh:mm'/&gt;
&lt;nerderg:checkboxgroup label='Options' field='selOptions' from='${allOptions}' bean='${myCommand}'/&gt;
&lt;nerderg:asJSArray var="options" items='["opt1", "opt2", "opt3"]'/&gt;

</description>
  <documentation>http://grails.org/plugin/nerderg-formtags</documentation>
  <type>NerdergFormTagsGrailsPlugin</type>
  <resources>
    <resource>NerdergFormtagsResources</resource>
    <resource>com.nerderg.taglib.NerdergFormtagsTagLib</resource>
  </resources>
  <repositories>
    <repository name='grailsCentral' url='http://grails.org/plugins' />
    <repository name='http://repo.grails.org/grails/core' url='http://repo.grails.org/grails/core/' />
    <repository name='mavenCentral' url='http://repo1.maven.org/maven2/' />
  </repositories>
  <dependencies>
    <runtime>
      <dependency group='com.rubiconproject.oss' name='jchronic' version='0.2.6' />
    </runtime>
  </dependencies>
  <plugins />
  <runtimePluginRequirements />
  <behavior />
</plugin>