Index: trunk/doc/Definitions/EntryTerms.txt
===================================================================
--- trunk/doc/Definitions/EntryTerms.txt	(revision 63)
+++ trunk/doc/Definitions/EntryTerms.txt	(revision 68)
@@ -6,9 +6,17 @@
                 - Default = required so nothing.
                 - Larger text area.
+                - What was done for this entry.
 
-    enteredBy
-                - Default = current person.
+    dateDone
+                - Default = now.
+                - Precision = day.
+                - Can be changed.
+                - Date that person is reporting as the date entry was done.
+
+    dateEntered
+                - Default = now.
+                - Precision = second.
                 - Cannot be changed.
-                - Of Class Person.
+                - Date the entry was actually entered.
 
     durationHour
@@ -20,13 +28,8 @@
                 - Integer representing minutes spent on this entry.
 
-    dateDone
-                - Default = now.
-                - Precision = day.
-                - Can be changed.
-
-    dateEntered
-                - Default = now.
-                - Precision = second.
+    enteredBy
+                - Default = current person.
                 - Cannot be changed.
+                - Of Class Person.
 
     task        
@@ -35,5 +38,5 @@
 
     entryType
-                - Default = one of "Work Done", "Fault", "Production", "Work Request".
+                - Default = one of "Work Done", "Fault", "Production Report", "Work Request".
                 - Default depends on where the entry comes from.
                 - Of Class EntryType.
Index: trunk/doc/Definitions/TaskActions.txt
===================================================================
--- trunk/doc/Definitions/TaskActions.txt	(revision 63)
+++ trunk/doc/Definitions/TaskActions.txt	(revision 68)
@@ -4,7 +4,7 @@
 Create      ->  recordModification("Created")                       <-  is the date created.
 
-Schedule    ->  recordModification("TargetStartDate")               ->  set: Task.targetStartDate
+Schedule    ->  recordModification("SetTargetStartDate")            ->  set: Task.targetStartDate
 
-                recordModification("TargetCompletionDate")          ->  set: Task.targetCompletionDate
+                recordModification("SetTargetCompletionDate")       ->  set: Task.targetCompletionDate
 
 Start       ->  recordModification("ActualStartDate")               <-  is the date started
@@ -26,5 +26,5 @@
 recordModification(String type) {
     Modification.modificationType = ModificationType.findByName(type)
-    Modification.dateTime = now
+    Modification.date = now
     Modification.person = userName                                     
     Modification.comment = ""  
@@ -32,5 +32,5 @@
 recordModification(String type, String comment) {
     Modification.modificationType = ModificationType.findByName(type)
-    Modification.dateTime = now
+    Modification.date = now
     Modification.person = userName                                      
     Modification.comment = comment  
Index: trunk/doc/Definitions/TaskTerms.txt
===================================================================
--- trunk/doc/Definitions/TaskTerms.txt	(revision 63)
+++ trunk/doc/Definitions/TaskTerms.txt	(revision 68)
@@ -9,8 +9,4 @@
                 - Default = "".     
                 - Longer for additional info only shown in detail views.
-
-    leadPerson  
-                - Default = current person.
-                - The primay contact.
 
     targetStartDate
@@ -42,6 +38,23 @@
                 - Ignore when viewing old associations or creating lists for searching etc.
 
+    taskGroup
+                - The taskGroup this task belongs to.
+                - Of Class TaskGroup.
+
+    taskStatus
+                - Default = "Not Started"
+                - The current status of this task.
+                - Of Class TaskStatus.
+                - One of "Not Started", "In Progress" or "Completed"
+                - Automagically set to "In Progress" on first "Work Done" entry.
+                - Automagically set to "Completed" by action button.
+
+    leadPerson  
+                - Default = current person.
+                - The primay contact.
+                - Of Class Person.
+
     assignedPersons
-                - A task may have many assingedPersons of Class AssignedPerson.
+                - A task may have many assingedPersons of Class Person.
 
     entries       
@@ -56,9 +69,15 @@
                 - Master/Slave/Parent/Child/FollowUp relationship still to sort out.
 
-#Should these be calulated or set by manual action?
-TaskStatus
-    Not Started
-    In Progress
-    Completed
+
+#Calculated dates
+actualStartDate
+actualCompletionDate
+
+#Should these be calculated or set by manual action?
+TaskPriority
+    Low
+    Normal
+    High
+    Immediate
 
 TaskType
