Index: /trunk/application.properties
===================================================================
--- /trunk/application.properties	(revision 105)
+++ /trunk/application.properties	(revision 106)
@@ -1,4 +1,4 @@
 #utf-8
-#Sun Apr 05 15:45:59 EST 2009
+#Sun Apr 05 16:03:34 EST 2009
 plugins.help-balloons=1.2
 app.version=0.1
Index: /trunk/grails-app/controllers/AppCoreController.groovy
===================================================================
--- /trunk/grails-app/controllers/AppCoreController.groovy	(revision 105)
+++ /trunk/grails-app/controllers/AppCoreController.groovy	(revision 106)
@@ -56,5 +56,5 @@
 
     @Secured(['ROLE_AppAdmin'])   
-    def admin = {
+    def appAdmin = {
     }
 
Index: /trunk/grails-app/controllers/TaskDetailedController.groovy
===================================================================
--- /trunk/grails-app/controllers/TaskDetailedController.groovy	(revision 105)
+++ /trunk/grails-app/controllers/TaskDetailedController.groovy	(revision 106)
@@ -10,5 +10,6 @@
     def list = {
         params.max = Math.min( params.max ? params.max.toInteger() : 10,  100)
-        [ taskInstanceList: Task.list( params ), taskInstanceTotal: Task.count() ]
+        def taskInstanceList = Task.findAllByIsActive( true )
+        return [ taskInstanceList: taskInstanceList, taskInstanceTotal: taskInstanceList.count() ]
     }
 
@@ -27,6 +28,6 @@
         if(taskInstance) {
             try {
-                taskInstance.delete()
-                flash.message = "Task ${params.id} deleted"
+                taskInstance.isActive = false
+                flash.message = "Task ${params.id} has been set to inactive."
                 redirect(action:list)
             }
Index: /trunk/grails-app/domain/Task.groovy
===================================================================
--- /trunk/grails-app/domain/Task.groovy	(revision 105)
+++ /trunk/grails-app/domain/Task.groovy	(revision 106)
@@ -28,5 +28,5 @@
         taskStatus()
         parentTask(blank: true, nullable:true)
-        comment(maxSize:255)
+        comment()
         
     }
Index: /trunk/grails-app/i18n/messages.properties
===================================================================
--- /trunk/grails-app/i18n/messages.properties	(revision 105)
+++ /trunk/grails-app/i18n/messages.properties	(revision 106)
@@ -5,4 +5,17 @@
 entry.duration=Duration
 entry.duration.help=The time (hh:mm) booked against this entry for date done.
+
+task.assignedPersons=Assigned Persons
+task.assignedPersons.help=The persons assigned to work on this task during planning along with estimated time.
+task.description=Task Description
+task.description.help=Short basic description of the task.
+task.comment=Task Comment
+task.comment.help=Long text for additional info, only shown in detail views.
+task.targetStartDate=Target Start Date
+task.targetStartDate.help=The date we would like the task to start, set during scheduling.
+task.targetCompletionDate=Target Completion Date
+task.targetCompletionDate.help=The date we would like the task to be completed by, set during scheduling.
+task.leadPerson=Lead Person
+task.leadPerson.help=The primay contact person.
 
 default.doesnt.match.message=Property [{0}] of class [{1}] with value [{2}] does not match the required pattern [{3}]
Index: /trunk/grails-app/views/_adminmenubar.gsp
===================================================================
--- /trunk/grails-app/views/_adminmenubar.gsp	(revision 105)
+++ /trunk/grails-app/views/_adminmenubar.gsp	(revision 106)
@@ -9,6 +9,6 @@
     <g:ifAnyGranted role="ROLE_AppAdmin">
         <span class="appControlButton">
-            <g:link controller="appCore" action="admin">
-                Admin
+            <g:link controller="appCore" action="appAdmin">
+                AppAdmin
             </g:link>
         </span>
Index: unk/grails-app/views/appCore/admin.gsp
===================================================================
--- /trunk/grails-app/views/appCore/admin.gsp	(revision 105)
+++ 	(revision )
@@ -1,29 +1,0 @@
-<html>
-    <head>
-        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-        <meta name="layout" content="main" />
-        <title>Admin</title>
-    </head>
-    <body>
-        <div class="nav">
-            <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
-        </div>
-        <div class="body">
-            <h1>Application Admin</h1>
-            <div class="errors">
-                Warning!<br />
-                The pages bellow this line are for use by the application admin only and NOT for daily use.<br />
-                They allow direct administration of the back-end data, cascade deletion and updates may occur.<br />
-                The manager authorisation and pages should be used for normal daily use.<br />
-            </div>
-            <br/>
-            <div class="dialog">
-                <ul>
-                <g:each var="c" in="${grailsApplication.controllerClasses}">
-                        <li class="controller"><g:link controller="${c.logicalPropertyName}">${c.fullName}</g:link></li>
-                </g:each>
-                </ul>
-            </div>
-        </div>
-    </body>
-</html>
Index: /trunk/grails-app/views/appCore/appAdmin.gsp
===================================================================
--- /trunk/grails-app/views/appCore/appAdmin.gsp	(revision 106)
+++ /trunk/grails-app/views/appCore/appAdmin.gsp	(revision 106)
@@ -0,0 +1,29 @@
+<html>
+    <head>
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+        <meta name="layout" content="main" />
+        <title>Admin</title>
+    </head>
+    <body>
+        <div class="nav">
+            <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
+        </div>
+        <div class="body">
+            <h1>Application Admin</h1>
+            <div class="errors">
+                Warning!<br />
+                The pages bellow this line are for use by the application admin only and NOT for daily use.<br />
+                They allow direct administration of the back-end data, cascade deletion and updates may occur.<br />
+                The manager authorisation and pages should be used for normal daily use.<br />
+            </div>
+            <br/>
+            <div class="dialog">
+                <ul>
+                <g:each var="c" in="${grailsApplication.controllerClasses}">
+                        <li class="controller"><g:link controller="${c.logicalPropertyName}">${c.fullName}</g:link></li>
+                </g:each>
+                </ul>
+            </div>
+        </div>
+    </body>
+</html>
Index: /trunk/grails-app/views/layouts/main.gsp
===================================================================
--- /trunk/grails-app/views/layouts/main.gsp	(revision 105)
+++ /trunk/grails-app/views/layouts/main.gsp	(revision 106)
@@ -18,10 +18,4 @@
                     <img src="${createLinkTo(dir:'images',file:'spinner.gif')}" alt="Spinner" />
                 </div>	
-                <!-- <div class="logo" style="text-align: center; width: 980px; height: 220px">
-                <img src="${createLinkTo(dir:'images',file:'logo.png')}"
-                alt="gnuMims" />
-                <g:render template="/adminmenubar" />
-        
-                </div> -->
                 <div id="Header">
                     <a href="http://www.gnumims.org" id=HeaderLink></a>
Index: /trunk/grails-app/views/login/auth.gsp
===================================================================
--- /trunk/grails-app/views/login/auth.gsp	(revision 105)
+++ /trunk/grails-app/views/login/auth.gsp	(revision 106)
@@ -46,5 +46,5 @@
 	<div id='login'>
         <h1>Welcome to gnuMims please log in</h1>
-        The demo users are "admin" and "user" both having password "pass"
+        The demo users are "manager" and "user" both having password "pass"
 
 		<div class='inner'>
@@ -62,9 +62,5 @@
 					<input type='password' class='text_' name='j_password' id='j_password' />
 				</p>
-<!--				<p>
-					<label for='remember_me'>Remember me</label>
-					<input type='checkbox' class='chk' name='_spring_security_remember_me' id='remember_me'
-					<g:if test='${hasCookie}'>checked='checked'</g:if> />
-				</p>-->
+
 				<p>
 					<input type='submit' value='Login' />
Index: /trunk/grails-app/views/taskDetailed/create.gsp
===================================================================
--- /trunk/grails-app/views/taskDetailed/create.gsp	(revision 105)
+++ /trunk/grails-app/views/taskDetailed/create.gsp	(revision 106)
@@ -33,4 +33,5 @@
                                 <td valign="top" class="value ${hasErrors(bean:taskInstance,field:'description','errors')}">
                                     <input type="text"  style="width:450px" maxlength="75" id="description" name="description" value="${fieldValue(bean:taskInstance,field:'description')}"/>
+                                    <g:helpBalloon class="helpballoon" code="task.description" />
                                 </td>
                             </tr>
@@ -42,4 +43,5 @@
                                 <td valign="top" class="value ${hasErrors(bean:taskInstance,field:'comment','errors')}">
                                     <textarea  style="width:450px" rows="5" cols="40" name="comment">${fieldValue(bean:taskInstance, field:'comment')}</textarea>
+                                    <g:helpBalloon class="helpballoon" code="task.comment" />
                                 </td>
                             </tr> 
@@ -51,4 +53,5 @@
                                 <td valign="top" class="value ${hasErrors(bean:taskInstance,field:'targetStartDate','errors')}">
                                     <g:datePicker name="targetStartDate" value="${taskInstance?.targetStartDate}" precision="day"></g:datePicker>
+                                    <g:helpBalloon class="helpballoon" code="task.targetStartDate" />
                                 </td>
                             </tr> 
@@ -60,4 +63,5 @@
                                 <td valign="top" class="value ${hasErrors(bean:taskInstance,field:'targetCompletionDate','errors')}">
                                     <g:datePicker name="targetCompletionDate" value="${taskInstance?.targetCompletionDate}" precision="day"></g:datePicker>
+                                    <g:helpBalloon class="helpballoon" code="task.targetCompletionDate" />
                                 </td>
                             </tr> 
@@ -69,4 +73,5 @@
                                 <td valign="top" class="value ${hasErrors(bean:taskInstance,field:'leadPerson','errors')}">
                                     <g:select optionKey="id" from="${Person.list()}" name="leadPerson.id" value="${taskInstance?.leadPerson?.id}" ></g:select>
+                                    <g:helpBalloon code="task.leadPerson" />
                                 </td>
                             </tr> 
Index: /trunk/grails-app/views/taskDetailed/list.gsp
===================================================================
--- /trunk/grails-app/views/taskDetailed/list.gsp	(revision 105)
+++ /trunk/grails-app/views/taskDetailed/list.gsp	(revision 106)
@@ -33,8 +33,6 @@
                    	    
                    	        <th>Task Status</th>
-            
-                            <th>Edit</th>
 
-                            <th>Show</th>
+                            <th></th>
                    	    
                         </tr>
@@ -56,7 +54,9 @@
                             <td>${fieldValue(bean:taskInstance, field:'taskStatus')}</td>
 
-                            <td><g:link action="edit" id="${taskInstance.id}">Edit</g:link></td>
-
-                            <td><g:link action="show" id="${taskInstance.id}">Show</g:link></td>
+                            <td>
+                                <g:link action="show" id="${taskInstance.id}">
+                                    <img  src="${createLinkTo(dir:'images/skin',file:'database_table.png')}" alt="Show" />
+                                </g:link>
+                            </td>
                         
                         </tr>
Index: /trunk/grails-app/views/taskDetailed/show.gsp
===================================================================
--- /trunk/grails-app/views/taskDetailed/show.gsp	(revision 105)
+++ /trunk/grails-app/views/taskDetailed/show.gsp	(revision 106)
@@ -161,9 +161,9 @@
                     <thead>
                         <tr>
-                            <th style="color:Black">Comment</th>
-                            <th style="color:Black">Date Done</th>
-                            <th style="color:Black">Duration</th>
-                            <th style="color:Black">Entered By</th>
-                            <th style="color:Black">Edit</th>
+                            <th>Comment</th>
+                            <th>Date Done</th>
+                            <th>Duration</th>
+                            <th>Entered By</th>
+                            <th></th>
 
 <!--                            <g:sortableColumn property="comment" title="Comment" />
@@ -179,9 +179,13 @@
                             <tr class="${(i % 2) == 0 ? 'odd' : 'even'}">
                             
-                                <td width="65%">${entry.comment}</td>
+                                <td style="width:65%">${entry.comment}</td>
                                 <td><g:formatDate date="${entry.dateDone}" format="EEE, dd MMM yyyy"/></td>
                                 <td>${entry.durationHour}:${entry.durationMinute}</td>
                                 <td>${entry.enteredBy}</td>
-                                <td><g:link controller="entryDetailed" action="edit" id="${entry.id}">Edit</g:link></td>
+                                <td>
+                                    <g:link controller="entryDetailed" action="edit" id="${entry.id}">
+                                        <img  src="${createLinkTo(dir:'images/skin',file:'database_edit.png')}" alt="Edit" />
+                                    </g:link>
+                                </td>
 
                         </g:if>
@@ -198,9 +202,9 @@
                     <thead>
                         <tr>
-                            <th style="color:Black">Comment</th>
-                            <th style="color:Black">Date Done</th>
-                            <th style="color:Black">Duration</th>
-                            <th style="color:Black">Entered By</th>
-                            <th style="color:Black">Edit</th>
+                            <th>Comment</th>
+                            <th>Date Done</th>
+                            <th>Duration</th>
+                            <th>Entered By</th>
+                            <th></th>
 <!--                            <g:sortableColumn property="commentW" title="Comment" />
                         
@@ -219,5 +223,9 @@
                                 <td>${entry.durationHour}:${entry.durationMinute}</td>
                                 <td>${entry.enteredBy}</td>
-                                <td><g:link controller="entryDetailed" action="edit" id="${entry.id}">Edit</g:link></td>
+                                <td>
+                                    <g:link controller="entryDetailed" action="edit" id="${entry.id}">
+                                        <img  src="${createLinkTo(dir:'images/skin',file:'database_edit.png')}" alt="Edit" />
+                                    </g:link>
+                                </td>
                         </g:if>
                         
@@ -234,5 +242,5 @@
                     <input type="hidden" name="taskInstance.id" value="${taskInstance?.id}" />
                     <span class="button">
-                        <g:actionSubmit value="Add Entry" action="create"  class="edit"/>
+                        <g:actionSubmit value="Add Entry" action="create"  class="add"/>
                     </span>
                 </g:form>
Index: /trunk/web-app/css/main.css
===================================================================
--- /trunk/web-app/css/main.css	(revision 105)
+++ /trunk/web-app/css/main.css	(revision 106)
@@ -17,5 +17,5 @@
     width: 980px
     background: #fff;
-    color: #333;
+    color: #222;
     font: 14px verdana, arial, helvetica, sans-serif;
     background: transparent url("../images/brushed_metal.png") repeat fixed center;
@@ -55,4 +55,8 @@
     font-weight: bold;
     text-decoration: none;
+}
+
+img {
+    border: 0px;
 }
 
@@ -91,5 +95,5 @@
     padding: 0px 20px 20px;
     background: url("../images/Contentbg.png") repeat-y scroll center;
-    height: 100%;
+/*     height: 100%; */
 }
 
@@ -212,5 +216,5 @@
 th {
     background: #fff url(../images/skin/shadow.jpg);
-    color: #666;
+    color: #555;
     font-size: 14px;
     font-weight: bold;
@@ -333,4 +337,8 @@
     padding-left: 28px;
 }
+.buttons input.add {
+    background: transparent url(../images/skin/database_add.png) 5px 50% no-repeat;
+    padding-left: 28px;
+}
 
 #bottom {
