Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

Currently handles the following situations:

  • Month and Day only: Jan 25, January 25

  • Year and Month only: 2019 Jan, 2019 January
  • Month and Year only: Jan 2019, January 2019, January of 2019, Jan of '19
  • Day Month Year: 26 April 2019, 26th of April, 2019
  • Month Day Year: Jan. 22, 2001, January the 22nd of 2001
  • Day Name, Day Month Year: Friday, 26 Apr 19, Friday the 26th of April 2019
  • YYYYMMDD Format: 20190125
  • MMDDYYYY Format: 01252019
  • Using separators too: 2019-01-25, 2019/1/25, 01/25/2019, 2019/01/2
  • Dates with Time: 2019-01-25T10:25
  • Dates with Time wihout separators: 20190125T102500
  • Using the 'Z' character at the end: 2019-01-25T10:25:10Z
  • Using AM or PM for the time: 2019-01-25T10:25:10AM, 2019-01-25T10:25:10pm
  • Using 24hr format: 2019-01-25T14:25:10Z
  • The time only: 01:59:59PM, 01:59:59am


Include Page
Generic Configuration Parameters
Generic Configuration Parameters

...

  • Parameter
    summaryOrdinal number in text separated by space
    nameordinalWords
    • Defaults:

      • first
      • second
      • third
      • fourth
      • fifth
      • sixth
      • seventh
      • eighth
      • ninth
      • tenth
      • eleventh
      • twelfth
      • thirteenth
      • fourteenth
      • fifteenth
      • sixteenth
      • seventeenth
      • eighteenth
      • nineteenth
      • twentieth
      • twenty-first
      • twenty-second
      • twenty-third
      • twenty-fourth
      • twenty-fifth
      • twenty-sixth
      • twenty-seventh
      • twenty-eighth
      • twenty-ninth
      • thirtieth
      • thirty-first
  • Parameter
    summaryRecognize dates. (Completely independent from Time, can be used alone or with the Recognize Time flag checked))
    defaultTrue
    namerecognizeDate
    typeboolean
  • Parameter
    summaryRecognize time. (Completely independent from Date, can be used alone or with the Recognize Date flag checked))
    defaultTrue
    namerecognizeTime
    typeboolean
  • Parameter
    summaryMonth names separated by space
    nametimeIndicators
    • Defaults:

      • am
      • pm
      • a.m
      • p.m"
      • a.m.
      • p.m.
Saga_config_stagecode
boundaryFlagstext block split
stageDateTime
requiredFlagstoken
languagejs
"dayNames": "monday tuesday wednesday thursday friday saturday sunday mon tue tu tues thu th thur thurs fri",
"monthNames": "january february march april may june july august september october november december jan feb mar apr jun jul aug sep sept oct nov dec jan. feb. mar. apr. jun. jul. aug. sep. sept. oct. nov. dec.",
"ordinalWords": "first second third fourth fifth sixth seventh eighth ninth tenth eleventh twelfth thirteenth fourteenth fifteenth sixteenth seventeenth eighteenth nineteenth twentieth twenty-first twenty-second twenty-third twenty-fourth twenty-fifth twenty-sixth twenty-seventh twenty-eighth twenty-ninth thirtieth thirty-first",
"recognizeDate": true,
"recognizeTime": true,
"timeIndicators": "am pm a.m p.m a.m. p.m."

Example Output

saga_graph
Code Block
languagetext
V-----[2016-06-06T15:30:30Z] started.-----V 
^-[2016-06-06T15:30:30Z]-V---[started.]---^ 
^------[{datetime}]------^ 

V----------------------------------------[On January 1, 2017 drilling started, then on February 1st of 2017 equipment broke down.]-----------------------------------------V 
^-[On]-V--[January]--V---[1,]----V-[2017]-V-[drilling]-V---[started,]----V-[then]-V-[on]-V-[February]--V---[1st]----V-[of]-V-[2017]-V-[equipment]-V-[broke]-V---[down.]----^ 
       ^-[{_month_}]-^-[1]-V-[,]-^                     ^-[started]-V-[,]-^               ^-[{_month_}]-^-[1]-V-[st]-^                                       ^-[down]-V-[.]-^ 
       ^----------[{_datetime_}]----------^                                              ^--------------[{_datetime_}]--------------^

...