Index: trunk/grails-app/views/authority/create.gsp
===================================================================
--- trunk/grails-app/views/authority/create.gsp	(revision 149)
+++ trunk/grails-app/views/authority/create.gsp	(revision 150)
@@ -1,51 +1,51 @@
 <head>
-	<meta name="layout" content="main" />
-	<title>Create Authority</title>
+    <meta name="layout" content="main" />
+    <title>Create Authority</title>
 </head>
 
 <body>
 
-	<div class="nav">
-		<span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
-		<span class="menuButton"><g:link class="list" action="list">Authority List</g:link></span>
-	</div>
+    <div class="nav">
+        <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
+        <span class="menuButton"><g:link class="list" action="list">Authority List</g:link></span>
+    </div>
 
-	<div class="body">
+    <div class="body">
 
-		<h1>Create Authority</h1>
-		<g:if test="${flash.message}">
-		<div class="message">${flash.message}</div>
-		</g:if>
-		<g:hasErrors bean="${authority}">
-		<div class="errors">
-		<g:renderErrors bean="${authority}" as="list" />
-		</div>
-		</g:hasErrors>
+        <h1>Create Authority</h1>
+        <g:if test="${flash.message}">
+        <div class="message">${flash.message}</div>
+        </g:if>
+        <g:hasErrors bean="${authority}">
+        <div class="errors">
+        <g:renderErrors bean="${authority}" as="list" />
+        </div>
+        </g:hasErrors>
 
-		<g:form action="save">
-		<div class="dialog">
-		<table>
-		<tbody>
-			<tr class="prop">
-				<td valign="top" class="name"><label for="authority">Authority Name:</label></td>
-				<td valign="top" class="value ${hasErrors(bean:authority,field:'authority','errors')}">
-					<input type="text" id="authority" name="authority" value="${authority?.authority?.encodeAsHTML()}"/>
-				</td>
-			</tr>
+        <g:form action="save">
+        <div class="dialog">
+        <table>
+        <tbody>
+            <tr class="prop">
+                <td valign="top" class="name"><label for="authority">Authority Name:</label></td>
+                <td valign="top" class="value ${hasErrors(bean:authority,field:'authority','errors')}">
+                    <input type="text" id="authority" name="authority" value="${authority?.authority?.encodeAsHTML()}"/>
+                </td>
+            </tr>
 
-			<tr class="prop">
-				<td valign="top" class="name"><label for="description">Description:</label></td>
-				<td valign="top" class="value ${hasErrors(bean:authority,field:'description','errors')}">
-					<input type="text" id="description" name="description" value="${authority?.description?.encodeAsHTML()}"/>
-				</td>
-			</tr>
-		</tbody>
-		</table>
-		</div>
+            <tr class="prop">
+                <td valign="top" class="name"><label for="description">Description:</label></td>
+                <td valign="top" class="value ${hasErrors(bean:authority,field:'description','errors')}">
+                    <input type="text" id="description" name="description" value="${authority?.description?.encodeAsHTML()}"/>
+                </td>
+            </tr>
+        </tbody>
+        </table>
+        </div>
 
-		<div class="buttons">
-			<span class="button"><input class="save" type="submit" value="Create" /></span>
-		</div>
-		</g:form>
-	</div>
+        <div class="buttons">
+            <span class="button"><input class="save" type="submit" value="Create" /></span>
+        </div>
+        </g:form>
+    </div>
 </body>
Index: trunk/grails-app/views/authority/edit.gsp
===================================================================
--- trunk/grails-app/views/authority/edit.gsp	(revision 149)
+++ trunk/grails-app/views/authority/edit.gsp	(revision 150)
@@ -1,69 +1,69 @@
 <head>
-	<meta name="layout" content="main" />
-	<title>Edit Authority</title>
+    <meta name="layout" content="main" />
+    <title>Edit Authority</title>
 </head>
 
 <body>
 
-	<div class="nav">
-		<span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
-		<span class="menuButton"><g:link class="list" action="list">Authority List</g:link></span>
-		<span class="menuButton"><g:link class="create" action="create">New Authority</g:link></span>
-	</div>
+    <div class="nav">
+        <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
+        <span class="menuButton"><g:link class="list" action="list">Authority List</g:link></span>
+        <span class="menuButton"><g:link class="create" action="create">New Authority</g:link></span>
+    </div>
 
-	<div class="body">
-		<h1>Edit Authority</h1>
-		<g:if test="${flash.message}">
-		<div class="message">${flash.message}</div>
-		</g:if>
-		<g:hasErrors bean="${authority}">
-		<div class="errors">
-			<g:renderErrors bean="${authority}" as="list" />
-		</div>
-		</g:hasErrors>
-		<div class="prop">
-			<span class="name">ID:</span>
-			<span class="value">${authority.id}</span>
-		</div>
-		<g:form>
-			<input type="hidden" name="id" value="${authority.id}" />
-			<input type="hidden" name="version" value="${authority.version}" />
-			<div class="dialog">
-			<table>
-			<tbody>
-				<tr class="prop">
-					<td valign="top" class="name"><label for="authority">Authority Name:</label></td>
-					<td valign="top" class="value ${hasErrors(bean:authority,field:'authority','errors')}">
-						<input type="text" id="authority" name="authority" value="${authority.authority?.encodeAsHTML()}"/>
-					</td>
-				</tr>
+    <div class="body">
+        <h1>Edit Authority</h1>
+        <g:if test="${flash.message}">
+        <div class="message">${flash.message}</div>
+        </g:if>
+        <g:hasErrors bean="${authority}">
+        <div class="errors">
+            <g:renderErrors bean="${authority}" as="list" />
+        </div>
+        </g:hasErrors>
+        <div class="prop">
+            <span class="name">ID:</span>
+            <span class="value">${authority.id}</span>
+        </div>
+        <g:form>
+            <input type="hidden" name="id" value="${authority.id}" />
+            <input type="hidden" name="version" value="${authority.version}" />
+            <div class="dialog">
+            <table>
+            <tbody>
+                <tr class="prop">
+                    <td valign="top" class="name"><label for="authority">Authority Name:</label></td>
+                    <td valign="top" class="value ${hasErrors(bean:authority,field:'authority','errors')}">
+                        <input type="text" id="authority" name="authority" value="${authority.authority?.encodeAsHTML()}"/>
+                    </td>
+                </tr>
 
-				<tr class="prop">
-					<td valign="top" class="name"><label for="description">Description:</label></td>
-					<td valign="top" class="value ${hasErrors(bean:authority,field:'description','errors')}">
-						<input type="text" id="description" name="description" value="${authority.description?.encodeAsHTML()}"/>
-					</td>
-				</tr>
+                <tr class="prop">
+                    <td valign="top" class="name"><label for="description">Description:</label></td>
+                    <td valign="top" class="value ${hasErrors(bean:authority,field:'description','errors')}">
+                        <input type="text" id="description" name="description" value="${authority.description?.encodeAsHTML()}"/>
+                    </td>
+                </tr>
 
-				<tr class="prop">
-					<td valign="top" class="name"><label for="persons">Persons:</label></td>
-					<td valign="top" class="value ${hasErrors(bean:authority,field:'persons','errors')}">
-						<ul>
-						<g:each var="p" in="${authority.persons?}">
-							<li>${p}</li>
-						</g:each>
-						</ul>
-					</td>
-				</tr>
-			</tbody>
-			</table>
-			</div>
+                <tr class="prop">
+                    <td valign="top" class="name"><label for="persons">Persons:</label></td>
+                    <td valign="top" class="value ${hasErrors(bean:authority,field:'persons','errors')}">
+                        <ul>
+                        <g:each var="p" in="${authority.persons?}">
+                            <li>${p}</li>
+                        </g:each>
+                        </ul>
+                    </td>
+                </tr>
+            </tbody>
+            </table>
+            </div>
 
-			<div class="buttons">
-				<span class="button"><g:actionSubmit class="save" value="Update" /></span>
-				<span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
-			</div>
+            <div class="buttons">
+                <span class="button"><g:actionSubmit class="save" value="Update" /></span>
+                <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
+            </div>
 
-		</g:form>
-	</div>
+        </g:form>
+    </div>
 </body>
Index: trunk/grails-app/views/authority/list.gsp
===================================================================
--- trunk/grails-app/views/authority/list.gsp	(revision 149)
+++ trunk/grails-app/views/authority/list.gsp	(revision 150)
@@ -1,49 +1,49 @@
 <head>
-	<meta name="layout" content="main" />
-	<title>Authority List</title>
+    <meta name="layout" content="main" />
+    <title>Authority List</title>
 </head>
 
 <body>
 
-	<div class="nav">
-		<span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
-		<span class="menuButton"><g:link class="create" action="create">New Authority</g:link></span>
-	</div>
+    <div class="nav">
+        <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
+        <span class="menuButton"><g:link class="create" action="create">New Authority</g:link></span>
+    </div>
 
-	<div class="body">
-		<h1>Authority List</h1>
-		<g:if test="${flash.message}">
-		<div class="message">${flash.message}</div>
-		</g:if>
-		<div class="list">
-			<table>
-			<thead>
-				<tr>
-					<g:sortableColumn property="id" title="ID" />
-					<g:sortableColumn property="authority" title="Authority Name" />
-					<g:sortableColumn property="description" title="Description" />
-					<th>&nbsp;</th>
-				</tr>
-			</thead>
-			<tbody>
-			<g:each in="${authorityList}" status="i" var="authority">
-				<tr class="${(i % 2) == 0 ? 'odd' : 'even'}">
-					<td>${authority.id}</td>
-					<td>${authority.authority?.encodeAsHTML()}</td>
-					<td>${authority.description?.encodeAsHTML()}</td>
-					<td class="actionButtons">
-						<span class="actionButton">
-							<g:link action="show" id="${authority.id}">Show</g:link>
-						</span>
-					</td>
-				</tr>
-			</g:each>
-			</tbody>
-			</table>
-		</div>
+    <div class="body">
+        <h1>Authority List</h1>
+        <g:if test="${flash.message}">
+        <div class="message">${flash.message}</div>
+        </g:if>
+        <div class="list">
+            <table>
+            <thead>
+                <tr>
+                    <g:sortableColumn property="id" title="ID" />
+                    <g:sortableColumn property="authority" title="Authority Name" />
+                    <g:sortableColumn property="description" title="Description" />
+                    <th>&nbsp;</th>
+                </tr>
+            </thead>
+            <tbody>
+            <g:each in="${authorityList}" status="i" var="authority">
+                <tr class="${(i % 2) == 0 ? 'odd' : 'even'}">
+                    <td>${authority.id}</td>
+                    <td>${authority.authority?.encodeAsHTML()}</td>
+                    <td>${authority.description?.encodeAsHTML()}</td>
+                    <td class="actionButtons">
+                        <span class="actionButton">
+                            <g:link action="show" id="${authority.id}">Show</g:link>
+                        </span>
+                    </td>
+                </tr>
+            </g:each>
+            </tbody>
+            </table>
+        </div>
 
-		<div class="paginateButtons">
-			<g:paginate total="${Authority.count()}" />
-		</div>
-	</div>
+        <div class="paginateButtons">
+            <g:paginate total="${Authority.count()}" />
+        </div>
+    </div>
 </body>
Index: trunk/grails-app/views/authority/show.gsp
===================================================================
--- trunk/grails-app/views/authority/show.gsp	(revision 149)
+++ trunk/grails-app/views/authority/show.gsp	(revision 150)
@@ -1,57 +1,57 @@
 <head>
-	<meta name="layout" content="main" />
-	<title>Show Authority</title>
+    <meta name="layout" content="main" />
+    <title>Show Authority</title>
 </head>
 
 <body>
 
-	<div class="nav">
-		<span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
-		<span class="menuButton"><g:link class="list" action="list">Authority List</g:link></span>
-		<span class="menuButton"><g:link class="create" action="create">New Authority</g:link></span>
-	</div>
+    <div class="nav">
+        <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
+        <span class="menuButton"><g:link class="list" action="list">Authority List</g:link></span>
+        <span class="menuButton"><g:link class="create" action="create">New Authority</g:link></span>
+    </div>
 
-	<div class="body">
-		<h1>Show Authority</h1>
-		<g:if test="${flash.message}">
-		<div class="message">${flash.message}</div>
-		</g:if>
-		<div class="dialog">
-			<table>
-			<tbody>
+    <div class="body">
+        <h1>Show Authority</h1>
+        <g:if test="${flash.message}">
+        <div class="message">${flash.message}</div>
+        </g:if>
+        <div class="dialog">
+            <table>
+            <tbody>
 
-				<tr class="prop">
-					<td valign="top" class="name">ID:</td>
-					<td valign="top" class="value">${authority.id}</td>
-				</tr>
+                <tr class="prop">
+                    <td valign="top" class="name">ID:</td>
+                    <td valign="top" class="value">${authority.id}</td>
+                </tr>
 
-				<tr class="prop">
-					<td valign="top" class="name">Authority Name:</td>
-					<td valign="top" class="value">${authority.authority}</td>
-				</tr>
+                <tr class="prop">
+                    <td valign="top" class="name">Authority Name:</td>
+                    <td valign="top" class="value">${authority.authority}</td>
+                </tr>
 
-				<tr class="prop">
-					<td valign="top" class="name">Description:</td>
-					<td valign="top" class="value">${authority.description}</td>
-				</tr>
+                <tr class="prop">
+                    <td valign="top" class="name">Description:</td>
+                    <td valign="top" class="value">${authority.description}</td>
+                </tr>
 
-				<tr class="prop">
-					<td valign="top" class="name">Persons:</td>
-					<td valign="top" class="value">${authority.persons}</td>
-				</tr>
+                <tr class="prop">
+                    <td valign="top" class="name">Persons:</td>
+                    <td valign="top" class="value">${authority.persons}</td>
+                </tr>
 
-			</tbody>
-			</table>
-		</div>
+            </tbody>
+            </table>
+        </div>
 
-		<div class="buttons">
-			<g:form>
-				<input type="hidden" name="id" value="${authority?.id}" />
-				<span class="button"><g:actionSubmit class="edit" value="Edit" /></span>
-				<span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
-			</g:form>
-		</div>
+        <div class="buttons">
+            <g:form>
+                <input type="hidden" name="id" value="${authority?.id}" />
+                <span class="button"><g:actionSubmit class="edit" value="Edit" /></span>
+                <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
+            </g:form>
+        </div>
 
-	</div>
+    </div>
 
 </body>
Index: trunk/grails-app/views/person/create.gsp
===================================================================
--- trunk/grails-app/views/person/create.gsp	(revision 149)
+++ trunk/grails-app/views/person/create.gsp	(revision 150)
@@ -1,5 +1,5 @@
 <head>
-	<meta name="layout" content="main" />
-	<title>Create Person</title>
+    <meta name="layout" content="main" />
+    <title>Create Person</title>
     <nav:resources override="true"/>
 </head>
@@ -7,35 +7,38 @@
 <body>
 
-	<div class="nav">
+    <div class="nav">
         <nav:renderSubItems group="navAlt"/>
-	</div>
+    </div>
 
-	<div class="body">
-		<g:if test="${flash.message}">
-		<div class="message">${flash.message}</div>
-		</g:if>
-		<g:hasErrors bean="${person}">
-		<div class="errors">
-			<g:renderErrors bean="${person}" as="list" />
-		</div>
-		</g:hasErrors>
-		<g:form action="save">
-			<div class="dialog">
-				<table>
-				<tbody>
+    <div class="body">
+        <g:if test="${flash.message}">
+        <div class="message">${flash.message}</div>
+        </g:if>
+        <g:if test="${params.message}">
+            <div class="message">${params.message}</div>
+        </g:if>
+        <g:hasErrors bean="${person}">
+        <div class="errors">
+            <g:renderErrors bean="${person}" as="list" />
+        </div>
+        </g:hasErrors>
+        <g:form action="save">
+            <div class="dialog">
+                <table>
+                <tbody>
 
-					<tr class="prop">
-						<td valign="top" class="name"><label for="loginName">Login Name:</label></td>
-						<td valign="top" class="value ${hasErrors(bean:person,field:'loginName','errors')}">
-							<input type="text" id="loginName" name="loginName" value="${person.loginName?.encodeAsHTML()}"/>
-						</td>
-					</tr>
+                    <tr class="prop">
+                        <td valign="top" class="name"><label for="loginName">Login Name:</label></td>
+                        <td valign="top" class="value ${hasErrors(bean:person,field:'loginName','errors')}">
+                            <input type="text" id="loginName" name="loginName" value="${person.loginName?.encodeAsHTML()}"/>
+                        </td>
+                    </tr>
 
-					<tr class="prop">
-						<td valign="top" class="name"><label for="firstName">First Name:</label></td>
-						<td valign="top" class="value ${hasErrors(bean:person,field:'firstName','errors')}">
-							<input type="text" id="firstName" name="firstName" value="${person.firstName?.encodeAsHTML()}"/>
-						</td>
-					</tr>
+                    <tr class="prop">
+                        <td valign="top" class="name"><label for="firstName">First Name:</label></td>
+                        <td valign="top" class="value ${hasErrors(bean:person,field:'firstName','errors')}">
+                            <input type="text" id="firstName" name="firstName" value="${person.firstName?.encodeAsHTML()}"/>
+                        </td>
+                    </tr>
 
                     <tr class="prop">
@@ -47,38 +50,38 @@
 
 
-					<tr class="prop">
-						<td valign="top" class="name"><label for="pass">Password:</label></td>
-						<td valign="top" class="value ${hasErrors(bean:person,field:'pass','errors')}">
-							<input type="password" id="pass" name="pass"/>
-						</td>
-					</tr>
+                    <tr class="prop">
+                        <td valign="top" class="name"><label for="pass">Password:</label></td>
+                        <td valign="top" class="value ${hasErrors(bean:person,field:'pass','errors')}">
+                            <input type="password" id="pass" name="pass"/>
+                        </td>
+                    </tr>
 
-					<tr class="prop">
-						<td valign="top" class="name"><label for="isActive">isActive:</label></td>
-						<td valign="top" class="value ${hasErrors(bean:person,field:'isActive','errors')}">
-							<g:checkBox name="isActive" value="${person.isActive}" ></g:checkBox>
-						</td>
-					</tr>
+                    <tr class="prop">
+                        <td valign="top" class="name"><label for="isActive">isActive:</label></td>
+                        <td valign="top" class="value ${hasErrors(bean:person,field:'isActive','errors')}">
+                            <g:checkBox name="isActive" value="${person.isActive}" ></g:checkBox>
+                        </td>
+                    </tr>
 
-					<tr class="prop">
-						<td valign="top" class="name"><label for="description">Description:</label></td>
-						<td valign="top" class="value ${hasErrors(bean:person,field:'description','errors')}">
-							<input type="text" id="description" name="description" value="${person.description?.encodeAsHTML()}"/>
-						</td>
-					</tr>
+                    <tr class="prop">
+                        <td valign="top" class="name"><label for="description">Description:</label></td>
+                        <td valign="top" class="value ${hasErrors(bean:person,field:'description','errors')}">
+                            <input type="text" id="description" name="description" value="${person.description?.encodeAsHTML()}"/>
+                        </td>
+                    </tr>
 
-					<tr class="prop">
-						<td valign="top" class="name"><label for="email">Email:</label></td>
-						<td valign="top" class="value ${hasErrors(bean:person,field:'email','errors')}">
-							<input type="text" id="email" name="email" value="${person.email?.encodeAsHTML()}"/>
-						</td>
-					</tr>
+                    <tr class="prop">
+                        <td valign="top" class="name"><label for="email">Email:</label></td>
+                        <td valign="top" class="value ${hasErrors(bean:person,field:'email','errors')}">
+                            <input type="text" id="email" name="email" value="${person.email?.encodeAsHTML()}"/>
+                        </td>
+                    </tr>
 
-					<tr class="prop">
-						<td valign="top" class="name"><label for="emailShow">Show Email:</label></td>
-						<td valign="top" class="value ${hasErrors(bean:person,field:'emailShow','errors')}">
-							<g:checkBox name="emailShow" value="${person.emailShow}"/>
-						</td>
-					</tr>
+                    <tr class="prop">
+                        <td valign="top" class="name"><label for="emailShow">Show Email:</label></td>
+                        <td valign="top" class="value ${hasErrors(bean:person,field:'emailShow','errors')}">
+                            <g:checkBox name="emailShow" value="${person.emailShow}"/>
+                        </td>
+                    </tr>
 
                     <tr class="prop">
@@ -89,25 +92,25 @@
                     </tr>
 
-					<tr class="prop">
-						<td valign="top" class="name" align="left">Authorities:</td>
-					</tr>
+                    <tr class="prop">
+                        <td valign="top" class="name" align="left">Authorities:</td>
+                    </tr>
 
-					<g:each in="${authorityList}">
-					<tr>
-						<td valign="top" class="name" align="left">${it.authority.encodeAsHTML()}</td>
-						<td align="left"><g:checkBox name="${it.authority}"/></td>
-					</tr>
-					</g:each>
+                    <g:each in="${authorityList}">
+                    <tr>
+                        <td valign="top" class="name" align="left">${it.authority.encodeAsHTML()}</td>
+                        <td align="left"><g:checkBox name="${it.authority}"/></td>
+                    </tr>
+                    </g:each>
 
-				</tbody>
-				</table>
-			</div>
+                </tbody>
+                </table>
+            </div>
 
-			<div class="buttons">
-				<span class="button"><input class="save" type="submit" value="Create" /></span>
-			</div>
+            <div class="buttons">
+                <span class="button"><input class="save" type="submit" value="Create" /></span>
+            </div>
 
-		</g:form>
+        </g:form>
 
-	</div>
+    </div>
 </body>
Index: trunk/grails-app/views/person/edit.gsp
===================================================================
--- trunk/grails-app/views/person/edit.gsp	(revision 149)
+++ trunk/grails-app/views/person/edit.gsp	(revision 150)
@@ -1,5 +1,5 @@
 <head>
-	<meta name="layout" content="main" />
-	<title>Edit Person</title>
+    <meta name="layout" content="main" />
+    <title>Edit Person</title>
     <nav:resources override="true"/>
 </head>
@@ -7,43 +7,46 @@
 <body>
 
-	<div class="nav">
+    <div class="nav">
         <nav:renderSubItems group="navAlt"/>
-	</div>
+    </div>
 
-	<div class="body">
-		<g:if test="${flash.message}">
-		<div class="message">${flash.message}</div>
-		</g:if>
-		<g:hasErrors bean="${person}">
-		<div class="errors">
-			<g:renderErrors bean="${person}" as="list" />
-		</div>
-		</g:hasErrors>
+    <div class="body">
+        <g:if test="${flash.message}">
+        <div class="message">${flash.message}</div>
+        </g:if>
+        <g:if test="${params.message}">
+            <div class="message">${params.message}</div>
+        </g:if>
+        <g:hasErrors bean="${person}">
+        <div class="errors">
+            <g:renderErrors bean="${person}" as="list" />
+        </div>
+        </g:hasErrors>
 
-<!--		<div class="prop">
-			<span class="name">ID: ${person.id}</span>
-		</div>-->
+    <!--<div class="prop">
+            <span class="name">ID: ${person.id}</span>
+        </div>-->
 
-		<g:form>
-			<input type="hidden" name="id" value="${person.id}" />
-			<input type="hidden" name="version" value="${person.version}" />
+        <g:form>
+            <input type="hidden" name="id" value="${person.id}" />
+            <input type="hidden" name="version" value="${person.version}" />
             <input type="hidden" name="password" value="${person.password}" />
-			<div class="dialog">
-				<table>
-				<tbody>
+            <div class="dialog">
+                <table>
+                <tbody>
 
-					<tr class="prop">
-						<td valign="top" class="name"><label for="loginName">Login Name:</label></td>
-						<td valign="top" class="value ${hasErrors(bean:person,field:'loginName','errors')}">
-							<input type="text" id="loginName" name="loginName" value="${person.loginName?.encodeAsHTML()}"/>
-						</td>
-					</tr>
+                    <tr class="prop">
+                        <td valign="top" class="name"><label for="loginName">Login Name:</label></td>
+                        <td valign="top" class="value ${hasErrors(bean:person,field:'loginName','errors')}">
+                            <input type="text" id="loginName" name="loginName" value="${person.loginName?.encodeAsHTML()}"/>
+                        </td>
+                    </tr>
 
-					<tr class="prop">
-						<td valign="top" class="name"><label for="firstName">First Name:</label></td>
-						<td valign="top" class="value ${hasErrors(bean:person,field:'firstName','errors')}">
-							<input type="text" id="firstName" name="firstName" value="${person.firstName?.encodeAsHTML()}"/>
-						</td>
-					</tr>
+                    <tr class="prop">
+                        <td valign="top" class="name"><label for="firstName">First Name:</label></td>
+                        <td valign="top" class="value ${hasErrors(bean:person,field:'firstName','errors')}">
+                            <input type="text" id="firstName" name="firstName" value="${person.firstName?.encodeAsHTML()}"/>
+                        </td>
+                    </tr>
 
                     <tr class="prop">
@@ -54,38 +57,38 @@
                     </tr>
 
-					<tr class="prop">
-						<td valign="top" class="name"><label for="pass">Password:</label></td>
-						<td valign="top" class="value ${hasErrors(bean:person,field:'pass','errors')}">
-							<input type="password" id="pass" name="pass"  value="${person.pass?.encodeAsHTML()}"/>
-						</td>
-					</tr>
+                    <tr class="prop">
+                        <td valign="top" class="name"><label for="pass">Password:</label></td>
+                        <td valign="top" class="value ${hasErrors(bean:person,field:'pass','errors')}">
+                            <input type="password" id="pass" name="pass"  value="${person.pass?.encodeAsHTML()}"/>
+                        </td>
+                    </tr>
 
-					<tr class="prop">
-						<td valign="top" class="name"><label for="isActive">isActive:</label></td>
-						<td valign="top" class="value ${hasErrors(bean:person,field:'isActive','errors')}">
-							<g:checkBox name="isActive" value="${person.isActive}"/>
-						</td>
-					</tr>
+                    <tr class="prop">
+                        <td valign="top" class="name"><label for="isActive">isActive:</label></td>
+                        <td valign="top" class="value ${hasErrors(bean:person,field:'isActive','errors')}">
+                            <g:checkBox name="isActive" value="${person.isActive}"/>
+                        </td>
+                    </tr>
 
-					<tr class="prop">
-						<td valign="top" class="name"><label for="description">Description:</label></td>
-						<td valign="top" class="value ${hasErrors(bean:person,field:'description','errors')}">
-							<input type="text" id="description" name="description" value="${person.description?.encodeAsHTML()}"/>
-						</td>
-					</tr>
+                    <tr class="prop">
+                        <td valign="top" class="name"><label for="description">Description:</label></td>
+                        <td valign="top" class="value ${hasErrors(bean:person,field:'description','errors')}">
+                            <input type="text" id="description" name="description" value="${person.description?.encodeAsHTML()}"/>
+                        </td>
+                    </tr>
 
-					<tr class="prop">
-						<td valign="top" class="name"><label for="email">Email:</label></td>
-						<td valign="top" class="value ${hasErrors(bean:person,field:'email','errors')}">
-							<input type="text" id="email" name="email" value="${person?.email?.encodeAsHTML()}"/>
-						</td>
-					</tr>
+                    <tr class="prop">
+                        <td valign="top" class="name"><label for="email">Email:</label></td>
+                        <td valign="top" class="value ${hasErrors(bean:person,field:'email','errors')}">
+                            <input type="text" id="email" name="email" value="${person?.email?.encodeAsHTML()}"/>
+                        </td>
+                    </tr>
 
-					<tr class="prop">
-						<td valign="top" class="name"><label for="emailShow">Show Email:</label></td>
-						<td valign="top" class="value ${hasErrors(bean:person,field:'emailShow','errors')}">
-							<g:checkBox name="emailShow" value="${person.emailShow}"/>
-						</td>
-					</tr>
+                    <tr class="prop">
+                        <td valign="top" class="name"><label for="emailShow">Show Email:</label></td>
+                        <td valign="top" class="value ${hasErrors(bean:person,field:'emailShow','errors')}">
+                            <g:checkBox name="emailShow" value="${person.emailShow}"/>
+                        </td>
+                    </tr>
 
                     <tr class="prop">
@@ -107,15 +110,15 @@
                     </g:each>
 
-				</tbody>
-				</table>
-			</div>
+                </tbody>
+                </table>
+            </div>
 
-			<div class="buttons">
-				<span class="button"><g:actionSubmit class="save" value="Update" /></span>
-				<span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
-			</div>
+            <div class="buttons">
+                <span class="button"><g:actionSubmit class="save" value="Update" /></span>
+                <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
+            </div>
 
-		</g:form>
+        </g:form>
 
-	</div>
+    </div>
 </body>
Index: trunk/grails-app/views/person/show.gsp
===================================================================
--- trunk/grails-app/views/person/show.gsp	(revision 149)
+++ trunk/grails-app/views/person/show.gsp	(revision 150)
@@ -1,5 +1,5 @@
 <head>
-	<meta name="layout" content="main" />
-	<title>Show Person</title>
+    <meta name="layout" content="main" />
+    <title>Show Person</title>
     <nav:resources override="true"/>
 </head>
@@ -7,30 +7,30 @@
 <body>
 
-	<div class="nav">
+    <div class="nav">
         <nav:renderSubItems group="navAlt"/>
-	</div>
+    </div>
 
-	<div class="body">
-		<g:if test="${flash.message}">
-		<div class="message">${flash.message}</div>
-		</g:if>
-		<div class="dialog">
-			<table>
-			<tbody>
+    <div class="body">
+        <g:if test="${flash.message}">
+        <div class="message">${flash.message}</div>
+        </g:if>
+        <div class="dialog">
+            <table>
+            <tbody>
 
-				<tr class="prop">
-					<td valign="top" class="name">ID:</td>
-					<td valign="top" class="value">${person.id}</td>
-				</tr>
+                <tr class="prop">
+                    <td valign="top" class="name">ID:</td>
+                    <td valign="top" class="value">${person.id}</td>
+                </tr>
 
-				<tr class="prop">
-					<td valign="top" class="name">Login Name:</td>
-					<td valign="top" class="value">${person.loginName?.encodeAsHTML()}</td>
-				</tr>
+                <tr class="prop">
+                    <td valign="top" class="name">Login Name:</td>
+                    <td valign="top" class="value">${person.loginName?.encodeAsHTML()}</td>
+                </tr>
 
-				<tr class="prop">
-					<td valign="top" class="name">First Name:</td>
-					<td valign="top" class="value">${person.firstName?.encodeAsHTML()}</td>
-				</tr>
+                <tr class="prop">
+                    <td valign="top" class="name">First Name:</td>
+                    <td valign="top" class="value">${person.firstName?.encodeAsHTML()}</td>
+                </tr>
 
                 <tr class="prop">
@@ -39,23 +39,23 @@
                 </tr>
 
-				<tr class="prop">
-					<td valign="top" class="name">isActive:</td>
-					<td valign="top" class="value">${person.isActive}</td>
-				</tr>
+                <tr class="prop">
+                    <td valign="top" class="name">isActive:</td>
+                    <td valign="top" class="value">${person.isActive}</td>
+                </tr>
 
-				<tr class="prop">
-					<td valign="top" class="name">Description:</td>
-					<td valign="top" class="value">${person.description?.encodeAsHTML()}</td>
-				</tr>
+                <tr class="prop">
+                    <td valign="top" class="name">Description:</td>
+                    <td valign="top" class="value">${person.description?.encodeAsHTML()}</td>
+                </tr>
 
-				<tr class="prop">
-					<td valign="top" class="name">Email:</td>
-					<td valign="top" class="value">${person.email?.encodeAsHTML()}</td>
-				</tr>
+                <tr class="prop">
+                    <td valign="top" class="name">Email:</td>
+                    <td valign="top" class="value">${person.email?.encodeAsHTML()}</td>
+                </tr>
 
-				<tr class="prop">
-					<td valign="top" class="name">Show Email:</td>
-					<td valign="top" class="value">${person.emailShow}</td>
-				</tr>
+                <tr class="prop">
+                    <td valign="top" class="name">Show Email:</td>
+                    <td valign="top" class="value">${person.emailShow}</td>
+                </tr>
 
                 <tr class="prop">
@@ -64,27 +64,27 @@
                 </tr>
 
-				<tr class="prop">
-					<td valign="top" class="name">Authorities:</td>
-					<td valign="top" class="value">
-						<ul>
-						<g:each in="${roleNames}" var='name'>
-							<li>${name}</li>
-						</g:each>
-						</ul>
-					</td>
-				</tr>
+                <tr class="prop">
+                    <td valign="top" class="name">Authorities:</td>
+                    <td valign="top" class="value">
+                        <ul>
+                        <g:each in="${roleNames}" var='name'>
+                            <li>${name}</li>
+                        </g:each>
+                        </ul>
+                    </td>
+                </tr>
 
-			</tbody>
-			</table>
-		</div>
+            </tbody>
+            </table>
+        </div>
 
-		<div class="buttons">
-			<g:form>
-				<input type="hidden" name="id" value="${person.id}" />
-				<span class="button"><g:actionSubmit class="edit" value="Edit" /></span>
-				<span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
-			</g:form>
-		</div>
+        <div class="buttons">
+            <g:form>
+                <input type="hidden" name="id" value="${person.id}" />
+                <span class="button"><g:actionSubmit class="edit" value="Edit" /></span>
+                <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
+            </g:form>
+        </div>
 
-	</div>
+    </div>
 </body>
Index: trunk/grails-app/views/taskDetailed/search.gsp
===================================================================
--- trunk/grails-app/views/taskDetailed/search.gsp	(revision 149)
+++ trunk/grails-app/views/taskDetailed/search.gsp	(revision 150)
@@ -11,5 +11,5 @@
             <nav:renderSubItems group="nav"/>
         </div>
-        
+
         <div class="body">
             <g:if test="${flash.message}">
@@ -35,19 +35,19 @@
                     <thead>
                         <tr>
-                        
-                   	        <g:sortableColumn property="id" title="Id" params="${filterParams}" />
-                        
-                   	        <g:sortableColumn property="targetStartDate" title="Target Start Date" params="${filterParams}" />
-                        
-                   	        <g:sortableColumn property="description" title="Description" params="${filterParams}" />
-                        
-                   	        <g:sortableColumn  property="leadPerson" title="Lead Person" params="${filterParams}" />
-                        
+
+                            <g:sortableColumn property="id" title="Id" params="${filterParams}" />
+
+                            <g:sortableColumn property="targetStartDate" title="Target Start Date" params="${filterParams}" />
+
+                            <g:sortableColumn property="description" title="Description" params="${filterParams}" />
+
+                            <g:sortableColumn  property="leadPerson" title="Lead Person" params="${filterParams}" />
+
                             <g:sortableColumn  property="taskPriority" title="Task Priority" params="${filterParams}" />
-                        
+
                             <g:sortableColumn  property="taskStatus" title="Task Status" params="${filterParams}" />
 
                             <th></th>
-                   	    
+
                         </tr>
                     </thead>
@@ -57,13 +57,13 @@
 
                             <td>${fieldValue(bean:taskInstance, field:'id')}</td>
-                        
+
                             <td><g:formatDate date="${taskInstance.targetStartDate}" format="EEE, dd-MMM-yyyy"/></td>
-                        
+
                             <td>${fieldValue(bean:taskInstance, field:'description')}</td>
-                        
+
                             <td>${fieldValue(bean:taskInstance, field:'leadPerson')}</td>
-                        
+
                             <td>${fieldValue(bean:taskInstance, field:'taskPriority')}</td>
-                        
+
                             <td>${fieldValue(bean:taskInstance, field:'taskStatus')}</td>
 
@@ -73,5 +73,5 @@
                                 </g:link>
                             </td>
-                        
+
                         </tr>
                     </g:each>
