Changeset 49 for rxuls/trunk/tests


Ignore:
Timestamp:
Dec 3, 2020, 11:35:31 PM (5 years ago)
Author:
Alex Taylor
Message:

Updated documentation (ES added and some small EN corrections).
Some repo housekeeping.

Location:
rxuls/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • rxuls/trunk

    • Property svn:ignore set to
      *.[Bb][Aa][Kk]
      *.[Dd][Ll][Ll]
      *.[Ii][Nn][Ff]
      *.[Mm][Aa][Pp]
      *.[Oo][Bb][Jj]
      *.[Zz][Ii][Pp]
  • rxuls/trunk/tests/testuf.cmd

    r28 r49  
    22CALL RxFuncAdd 'ULSLoadFuncs', 'RXULS', 'ULSLoadFuncs'
    33CALL ULSLoadFuncs
     4CALL RxFuncAdd 'Sys2LoadFuncs', 'RXUTILEX', 'Sys2LoadFuncs'
     5CALL Sys2LoadFuncs
    46
    57/* Epoch time in seconds. */
    68epochtime = 1234567890
     9epochtime = Sys2GetEpochTime()
    710tzone = VALUE('TZ',,'OS2ENVIRONMENT')
    811
     
    1114SAY timestr
    1215
    13 timestr = ULSFormatTime( epochtime, '%Ec (%EY)',, 'en_US')
     16/* Convert to local time using the ja_JP locale and alternate calendar format. */
     17timestr = ULSFormatTime( epochtime, '%Ex %EX',, 'ja_JP', 932 )
     18SAY timestr
     19timestr = ULSFormatTime( epochtime, '%EX %Ex',, 'ja_JP', 932 )
    1420SAY timestr
    1521
  • rxuls/trunk/tests/xform.cmd

    r28 r49  
    1111DO i = 1 TO LENGTH( de_str )
    1212   c = SUBSTR( de_str, i, 1 )
     13   IF c == X2C('7f') THEN ITERATE
    1314   IF ULSQueryAttr( c, 'diacritic') <> 1 THEN
    1415       stripped = stripped || c
Note: See TracChangeset for help on using the changeset viewer.