You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@griffin.apache.org by wa...@apache.org on 2020/01/06 09:17:44 UTC

[griffin] branch master updated: [GRIFFIN-318] Replace all YYYY with yyyy in all user guides and examples

This is an automated email from the ASF dual-hosted git repository.

wankun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/griffin.git


The following commit(s) were added to refs/heads/master by this push:
     new 15304da  [GRIFFIN-318] Replace all YYYY with yyyy in all user guides and examples
15304da is described below

commit 15304da715a74bef00d337b7fff4fc526f87b1bf
Author: neveljkovic <nv...@plume.com>
AuthorDate: Mon Jan 6 17:17:36 2020 +0800

    [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 <nv...@plume.com>
    
    Closes #565 from neveljkovic/GRIFFIN-318.
---
 griffin-doc/ui/user-guide.md                                          | 4 ++--
 .../measure/create-measure/configuration/configuration.component.html | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

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 @@ After the processing work has done, here are 3 ways to show the data diagram.
 | 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/> <b [...]
-| 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/> <b [...]
+| 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 @@ under the License.
       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 @@ under the License.
   </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>