[GRIFFIN-318] Replace all YYYY with yyyy in all user guides and examples

https://issues.apache.org/jira/browse/GRIFFIN-318
Replace YYYY with yyyy and DD with dd

Author: neveljkovic <nveljkovic@plume.com>

Closes #565 from neveljkovic/GRIFFIN-318.
diff --git a/griffin-doc/ui/user-guide.md b/griffin-doc/ui/user-guide.md
index a19bcab..06ba8b8 100644
--- a/griffin-doc/ui/user-guide.md
+++ b/griffin-doc/ui/user-guide.md
@@ -183,8 +183,8 @@
 | Related Dimension                        | Validity is a related dimension because, in order to be accurate, values must be valid, the right value and in the correct representation. |
 | Optionality                              | Mandatory because - when inaccurate - data may not be fit for use. |
 | Applicability                            |                                          |
-| Example(s)                               | A European school is receiving applications for its annual September intake and requires students to be aged 5 before the 31st August of the intake year. <br/> <br/>In this scenario, the parent, a US Citizen, applying to a European school completes the Date of Birth (D.O.B) on the application form in the US date format, MM/DD/YYYY rather than the European DD/MM/YYYY format, causing the representation of days and months to be reversed. <br/> <br/> As a result, 09/08/YYYY really meant 08/09/YYYY causing the student to be accepted as the age of 5 on the 31st August in YYYY. <br/> <br/> The representation of the student’s D.O.B.–whilst valid in its US context–means that in Europe the age was not derived correctly and the value recorded was consequently not accurate |
-| Pseudo code                              | ((Count of accurate objects)/ (Count of accurate objects + Counts of inaccurate objects)) x 100 <br/> Example: (Count of children who applied aged 5 before August/YYYY)/ (Count of children who applied aged 5 before August 31st YYYY+ Count of children who applied aged 5 after August /YYYY and before December 31st/YYYY) x 100 |
+| Example(s)                               | A European school is receiving applications for its annual September intake and requires students to be aged 5 before the 31st August of the intake year. <br/> <br/>In this scenario, the parent, a US Citizen, applying to a European school completes the Date of Birth (D.O.B) on the application form in the US date format, MM/dd/yyyy rather than the European dd/MM/yyyy format, causing the representation of days and months to be reversed. <br/> <br/> As a result, 09/08/yyyy really meant 08/09/yyyy causing the student to be accepted as the age of 5 on the 31st August in yyyy. <br/> <br/> The representation of the student’s D.O.B.–whilst valid in its US context–means that in Europe the age was not derived correctly and the value recorded was consequently not accurate |
+| Pseudo code                              | ((Count of accurate objects)/ (Count of accurate objects + Counts of inaccurate objects)) x 100 <br/> Example: (Count of children who applied aged 5 before August/yyyy)/ (Count of children who applied aged 5 before August 31st yyyy+ Count of children who applied aged 5 after August /yyyy and before December 31st/yyyy) x 100 |
 
 <a id="validity" name="validity"></a>
 
diff --git a/ui/angular/src/app/measure/create-measure/configuration/configuration.component.html b/ui/angular/src/app/measure/create-measure/configuration/configuration.component.html
index c030b5f..1741d82 100644
--- a/ui/angular/src/app/measure/create-measure/configuration/configuration.component.html
+++ b/ui/angular/src/app/measure/create-measure/configuration/configuration.component.html
@@ -22,7 +22,7 @@
       Where:
     </label>
     <div class="col-md-10 col-lg-10 col-sm-10 ">
-      <input type="text" class="form-control" id="where" name="where" placeholder=" dt=#YYYYMMdd# AND hour=#HH#"
+      <input type="text" class="form-control" id="where" name="where" placeholder=" dt=#yyyyMMdd# AND hour=#HH#"
              [(ngModel)]="where" (change)="upward()">
     </div>
   </div>
@@ -68,6 +68,6 @@
   </div>
   <div style="margin-left:45px">
     <input type="text" class="form-control" id="path" [(ngModel)]="path" name="filepath" (change)="upward()"
-           placeholder="/dt=#YYYYMMdd#/hour=#HH#/_DONE">
+           placeholder="/dt=#yyyyMMdd#/hour=#HH#/_DONE">
   </div>
 </div>