Changeset 49


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:
2 added
4 edited
1 moved

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/book/rxuls.ipf

    r48 r49  
    7070
    7171:p.The Unicode standard is maintained by the Unicode Consortium
    72 (http&colon.//www.unicode.org).
     72(https&colon.//www.unicode.org/).
    7373
    7474
     
    58858833      33                  fr_FR       France (French)
    58958934      34                  es_ES       Spain (Spanish)
    590 36      36                  hu_HU       Hungarian (Hungary)
     59036      36                  hu_HU       Hungary (Hungarian)
    59159139      39                  it_IT       Italy (Italian)
    59259240      40                  ro_RO       Romania (Romanian)
    59359341      41                  fr_CH       Switzerland (French)
    594 42      421                 cs_CZ       Czech Republic (Czech Republic)
     59442      421                 cs_CZ       Czech Republic (Czech)
    59559543      43                  de_AT       Austria (German)
    59659644      44                  en_GB       United Kingdom (English)
     
    14961496iNegNumber          78          Format of negative number
    14971497iLDate              79          Format of long date
    1498 iCalendarType       80          Type of default calandar
     1498iCalendarType       80          Type of default calendar
    14991499iFirstDayOfWeek     81          First day of week (0=Mon)
    15001500iFirstWeekOfYear    82          First week of year
     
    15021502iTLzero             84          Leading zero on time
    15031503iTimePrefix         85          AM/PM preceeds time
    1504 iOptionalCalendar   86          Alternate calandar type
     1504iOptionalCalendar   86          Alternate calendar type
    15051505sIntlSymbol         87          International currency symbol
    15061506sAbbrevLangName     88          Windows language abbreviation
     
    15321532iEbcdicCodepage    114          Ebcdic codepage
    15331533sOtherCodepages    115          Other ASCII codepages
    1534 sSetCodepage       116          Codpage to set on activation
     1534sSetCodepage       116          Codepage to set on activation
    15351535sKeyboard          117          Primary keyboard name
    15361536sAltKeyboard       118          Alternate keyboard name
  • rxuls/trunk/rxuls_hobbes.txt

    r28 r49  
    22                          ===============================================
    33
    4         Archive Filename: rxuls_051.zip
    5        Short Description: RXULS.DLL v0.51, Unicode and I18N library for REXX
     4        Archive Filename: rxuls_061.zip
     5       Short Description: RXULS, Unicode and internationalization library for REXX (v0.61)
    66        Long Description: RXULS.DLL is a REXX interface to selected parts of the OS/2 ULS (Universal
    77                          Language Support) API, also known as the Unicode API.  RXULS.DLL provides
     
    1515
    1616               Your name: Alex Taylor
    17            Email address: alex at cs-club dot org
     17           Email address: alex at altsan dot org
    1818    Program contact name: (same)
    1919   Program contact email: (same)
    20              Program URL: http://www.cs-club.org/~alex/os2/toolkits/uls/#rxuls
     20             Program URL: http://www.altsan.org/os2/toolkits/uls/#rxuls
    2121
    2222      Would you like the
     
    2727 Additional requirements:
    2828
    29                 Replaces: rxuls_050.zip
     29                Replaces: rxuls_*.zip
    3030
    3131
  • 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.