Index: /trunk/grails-app/controllers/AppCoreController.groovy
===================================================================
--- /trunk/grails-app/controllers/AppCoreController.groovy	(revision 149)
+++ /trunk/grails-app/controllers/AppCoreController.groovy	(revision 150)
@@ -55,5 +55,5 @@
             def personInstance = Person.get(authenticateService.userDomain().id)
             return [ personInstance : personInstance ]       
-        }  
+        }
 
         if (request.method == 'POST') {
Index: /trunk/grails-app/controllers/AuthorityController.groovy
===================================================================
--- /trunk/grails-app/controllers/AuthorityController.groovy	(revision 149)
+++ /trunk/grails-app/controllers/AuthorityController.groovy	(revision 150)
@@ -3,117 +3,117 @@
 class AuthorityController extends BaseAppAdminController {
 
-	// the delete, save and update actions only accept POST requests
-	static Map allowedMethods = [delete: 'POST', save: 'POST', update: 'POST']
+    // the delete, save and update actions only accept POST requests
+    static Map allowedMethods = [delete: 'POST', save: 'POST', update: 'POST']
 
-	def authenticateService
+    def authenticateService
 
-	def index = {
-		redirect action: list, params: params
-	}
+    def index = {
+        redirect action: list, params: params
+    }
 
-	/**
-	 * Display the list authority page.
-	 */
-	def list = {
-		if (!params.max) {
-			params.max = 10
-		}
-		[authorityList: Authority.list(params)]
-	}
+    /**
+    * Display the list authority page.
+    */
+    def list = {
+        if (!params.max) {
+            params.max = 10
+        }
+        [authorityList: Authority.list(params)]
+    }
 
-	/**
-	 * Display the show authority page.
-	 */
-	def show = {
-		def authority = Authority.get(params.id)
-		if (!authority) {
-			flash.message = "Authority not found with id $params.id"
-			redirect action: list
-			return
-		}
+    /**
+    * Display the show authority page.
+    */
+    def show = {
+        def authority = Authority.get(params.id)
+        if (!authority) {
+            flash.message = "Authority not found with id $params.id"
+            redirect action: list
+            return
+        }
 
-		[authority: authority]
-	}
+        [authority: authority]
+    }
 
-	/**
-	 * Delete an authority.
-	 */
-	def delete = {
-		def authority = Authority.get(params.id)
-		if (!authority) {
-			flash.message = "Authority not found with id $params.id"
-			redirect action: list
-			return
-		}
+    /**
+    * Delete an authority.
+    */
+    def delete = {
+        def authority = Authority.get(params.id)
+        if (!authority) {
+            flash.message = "Authority not found with id $params.id"
+            redirect action: list
+            return
+        }
 
-		authenticateService.deleteRole(authority)
+        authenticateService.deleteRole(authority)
 
-		flash.message = "Authority $params.id deleted."
-		redirect action: list
-	}
+        flash.message = "Authority $params.id deleted."
+        redirect action: list
+    }
 
-	/**
-	 * Display the edit authority page.
-	 */
-	def edit = {
-		def authority = Authority.get(params.id)
-		if (!authority) {
-			flash.message = "Authority not found with id $params.id"
-			redirect action: list
-			return
-		}
+    /**
+    * Display the edit authority page.
+    */
+    def edit = {
+        def authority = Authority.get(params.id)
+        if (!authority) {
+            flash.message = "Authority not found with id $params.id"
+            redirect action: list
+            return
+        }
 
-		[authority: authority]
-	}
+        [authority: authority]
+    }
 
-	/**
-	 * Authority update action.
-	 */
-	def update = {
+    /**
+    * Authority update action.
+    */
+    def update = {
 
-		def authority = Authority.get(params.id)
-		if (!authority) {
-			flash.message = "Authority not found with id $params.id"
-			redirect action: edit, id: params.id
-			return
-		}
+        def authority = Authority.get(params.id)
+        if (!authority) {
+            flash.message = "Authority not found with id $params.id"
+            redirect action: edit, id: params.id
+            return
+        }
 
-		long version = params.version.toLong()
-		if (authority.version > version) {
-			authority.errors.rejectValue 'version', 'authority.optimistic.locking.failure',
-				'Another user has updated this Authority while you were editing.'
-			render view: 'edit', model: [authority: authority]
-			return
-		}
+        long version = params.version.toLong()
+        if (authority.version > version) {
+            authority.errors.rejectValue 'version', 'authority.optimistic.locking.failure',
+                'Another user has updated this Authority while you were editing.'
+            render view: 'edit', model: [authority: authority]
+            return
+        }
 
-		if (authenticateService.updateRole(authority, params)) {
-			authenticateService.clearCachedRequestmaps()
-			redirect action: show, id: authority.id
-		}
-		else {
-			render view: 'edit', model: [authority: authority]
-		}
-	}
+        if (authenticateService.updateRole(authority, params)) {
+            authenticateService.clearCachedRequestmaps()
+            redirect action: show, id: authority.id
+        }
+        else {
+            render view: 'edit', model: [authority: authority]
+        }
+    }
 
-	/**
-	 * Display the create new authority page.
-	 */
-	def create = {
-		[authority: new Authority()]
-	}
+    /**
+    * Display the create new authority page.
+    */
+    def create = {
+        [authority: new Authority()]
+    }
 
-	/**
-	 * Save a new authority.
-	 */
-	def save = {
+    /**
+    * Save a new authority.
+    */
+    def save = {
 
-		def authority = new Authority()
-		authority.properties = params
-		if (authority.save()) {
-			redirect action: show, id: authority.id
-		}
-		else {
-			render view: 'create', model: [authority: authority]
-		}
-	}
+        def authority = new Authority()
+        authority.properties = params
+        if (authority.save()) {
+            redirect action: show, id: authority.id
+        }
+        else {
+            render view: 'create', model: [authority: authority]
+        }
+    }
 }
Index: /trunk/grails-app/controllers/PersonController.groovy
===================================================================
--- /trunk/grails-app/controllers/PersonController.groovy	(revision 149)
+++ /trunk/grails-app/controllers/PersonController.groovy	(revision 150)
@@ -7,10 +7,10 @@
     def filterService
 
-	// the delete, save and update actions only accept POST requests
-	static Map allowedMethods = [delete: 'POST', save: 'POST', update: 'POST']
+    // the delete, save and update actions only accept POST requests
+    static Map allowedMethods = [delete: 'POST', save: 'POST', update: 'POST']
 
-	def index = {
-		redirect action: list, params: params
-	}
+    def index = {
+        redirect action: list, params: params
+    }
 
     def list = {
@@ -27,5 +27,5 @@
     }
 
-	def show = {
+    def show = {
 
         // In the case of an actionSubmit button, rewrite action name from 'index'.
@@ -33,37 +33,37 @@
         { params.action='show' }
 
-		def person = Person.get(params.id)
-		if (!person) {
-			flash.message = "Person not found with id $params.id"
-			redirect action: list
-			return
-		}
-		List roleNames = []
-		for (role in person.authorities) {
-			roleNames << role.authority
-		}
-		roleNames.sort { n1, n2 ->
-			n1 <=> n2
-		}
-		[person: person, roleNames: roleNames]
-	}
+        def person = Person.get(params.id)
+        if (!person) {
+            flash.message = "Person not found with id $params.id"
+            redirect action: list
+            return
+        }
+        List roleNames = []
+        for (role in person.authorities) {
+            roleNames << role.authority
+        }
+        roleNames.sort { n1, n2 ->
+            n1 <=> n2
+        }
+        [person: person, roleNames: roleNames]
+    }
 
-	/**
-	 * Person delete action. Before removing an existing person,
-	 * they should be removed from those authorities which they are involved.
-	 */
-	def delete = {
+    /**
+    * Person delete action. Before removing an existing person,
+    * they should be removed from those authorities which they are involved.
+    */
+    def delete = {
 
-		def person = Person.get(params.id)
-		if (person) {
-			def authPrincipal = authenticateService.principal()
-			// Avoid self-delete.
-			if (!(authPrincipal instanceof String) && authPrincipal.username == person.loginName) {
-				flash.message = "You cannot delete yourself, please login as another manager and try again."
+        def person = Person.get(params.id)
+        if (person) {
+            def authPrincipal = authenticateService.principal()
+            // Avoid self-delete.
+            if (!(authPrincipal instanceof String) && authPrincipal.username == person.loginName) {
+                flash.message = "You cannot delete yourself, please login as another manager and try again."
                 redirect(action:show,id:params.id)
-			}
-			else {
-				//first, delete this person from Persons_Authorities table.
-				Authority.findAll().each { it.removeFromPersons(person) }
+            }
+            else {
+                //first, delete this person from Persons_Authorities table.
+                Authority.findAll().each { it.removeFromPersons(person) }
                 person.isActive = false
                 person.save(flush: true)
@@ -78,12 +78,12 @@
                     redirect(action:show,id:params.id)
                 }
-			}
-		}
-		else {
-			flash.message = "Person not found with id $params.id"
-		}
-	}
+            }
+        }
+        else {
+            flash.message = "Person not found with id $params.id"
+        }
+    }
 
-	def edit = {
+    def edit = {
 
         // In the case of an actionSubmit button, rewrite action name from 'index'.
@@ -91,35 +91,35 @@
         { params.action='edit' }
 
-		def person = Person.get(params.id)
-		if (!person) {
-			flash.message = "Person not found with id $params.id"
-			redirect action: list
-			return
-		}
-        flash.message = "To allow login at least the 'ROLE_AppUser' authority must be given."
-		return buildPersonModel(person)
-	}
+        def person = Person.get(params.id)
+        if (!person) {
+            flash.message = "Person not found with id $params.id"
+            redirect action: list
+            return
+        }
+        params.message = "To allow login at least the 'ROLE_AppUser' authority must be given."
+        return buildPersonModel(person)
+    }
 
-	/**
-	 * Person update action.
-	 */
-	def update = {
+    /**
+        * Person update action.
+        */
+    def update = {
 
-		def person = Person.get(params.id)
-		if (!person) {
-			flash.message = "Person not found with id $params.id"
-			redirect action: edit, id: params.id
-			return
-		}
+        def person = Person.get(params.id)
+        if (!person) {
+            flash.message = "Person not found with id $params.id"
+            redirect action: edit, id: params.id
+            return
+        }
 
-		long version = params.version.toLong()
-		if (person.version > version) {
-			person.errors.rejectValue 'version', "person.optimistic.locking.failure",
-				"Another user has updated this Person while you were editing."
+        long version = params.version.toLong()
+        if (person.version > version) {
+            person.errors.rejectValue 'version', "person.optimistic.locking.failure",
+                "Another user has updated this Person while you were editing."
             render view: 'edit', model: buildPersonModel(person)
-			return
-		}
+            return
+        }
 
-		person.properties = params
+        person.properties = params
 
         if(params.pass == "") {
@@ -142,52 +142,52 @@
         }
 
-	}
+    }
 
-	def create = {
-        flash.message = "To allow login at least the 'ROLE_AppUser' authority must be given."
-		[person: new Person(params), authorityList: Authority.list()]
-	}
+    def create = {
+        params.message = "To allow login at least the 'ROLE_AppUser' authority must be given."
+        [person: new Person(params), authorityList: Authority.list()]
+    }
 
-	/**
-	 * Person save action.
-	 */
-	def save = {
+    /**
+        * Person save action.
+        */
+    def save = {
 
-		def person = new Person()
-		person.properties = params
-		person.password = authenticateService.encodePassword(params.pass)
-		if (person.save()) {
-			addRoles(person)
-			redirect action: show, id: person.id
-		}
-		else {
-			render view: 'create', model: [authorityList: Authority.list(), person: person]
-		}
-	}
+        def person = new Person()
+        person.properties = params
+        person.password = authenticateService.encodePassword(params.pass)
+        if (person.save()) {
+            addRoles(person)
+            redirect action: show, id: person.id
+        }
+        else {
+            render view: 'create', model: [authorityList: Authority.list(), person: person]
+        }
+    }
 
-	private void addRoles(person) {
-		for (String key in params.keySet()) {
-			if (key.contains('ROLE') && 'on' == params.get(key)) {
-				Authority.findByAuthority(key).addToPersons(person)
-			}
-		}
-	}
+    private void addRoles(person) {
+        for (String key in params.keySet()) {
+            if (key.contains('ROLE') && 'on' == params.get(key)) {
+                Authority.findByAuthority(key).addToPersons(person)
+            }
+        }
+    }
 
-	private Map buildPersonModel(person) {
+    private Map buildPersonModel(person) {
 
-		List roles = Authority.list()
-		roles.sort { r1, r2 ->
-			r1.authority <=> r2.authority
-		}
-		Set userRoleNames = []
-		for (role in person.authorities) {
-			userRoleNames << role.authority
-		}
-		LinkedHashMap<Authority, Boolean> roleMap = [:]
-		for (role in roles) {
-			roleMap[(role)] = userRoleNames.contains(role.authority)
-		}
+        List roles = Authority.list()
+        roles.sort { r1, r2 ->
+            r1.authority <=> r2.authority
+        }
+        Set userRoleNames = []
+        for (role in person.authorities) {
+            userRoleNames << role.authority
+        }
+        LinkedHashMap<Authority, Boolean> roleMap = [:]
+        for (role in roles) {
+            roleMap[(role)] = userRoleNames.contains(role.authority)
+        }
 
-		return [person: person, roleMap: roleMap]
-	}
+        return [person: person, roleMap: roleMap]
+    }
 }
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>
