Changeset 49
- Timestamp:
- Dec 3, 2020, 11:35:31 PM (5 years ago)
- 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]
-
Property svn:ignore
set to
-
rxuls/trunk/book/rxuls.ipf
r48 r49 70 70 71 71 :p.The Unicode standard is maintained by the Unicode Consortium 72 (http &colon.//www.unicode.org).72 (https&colon.//www.unicode.org/). 73 73 74 74 … … 588 588 33 33 fr_FR France (French) 589 589 34 34 es_ES Spain (Spanish) 590 36 36 hu_HU Hungar ian (Hungary)590 36 36 hu_HU Hungary (Hungarian) 591 591 39 39 it_IT Italy (Italian) 592 592 40 40 ro_RO Romania (Romanian) 593 593 41 41 fr_CH Switzerland (French) 594 42 421 cs_CZ Czech Republic (Czech Republic)594 42 421 cs_CZ Czech Republic (Czech) 595 595 43 43 de_AT Austria (German) 596 596 44 44 en_GB United Kingdom (English) … … 1496 1496 iNegNumber 78 Format of negative number 1497 1497 iLDate 79 Format of long date 1498 iCalendarType 80 Type of default cal andar1498 iCalendarType 80 Type of default calendar 1499 1499 iFirstDayOfWeek 81 First day of week (0=Mon) 1500 1500 iFirstWeekOfYear 82 First week of year … … 1502 1502 iTLzero 84 Leading zero on time 1503 1503 iTimePrefix 85 AM/PM preceeds time 1504 iOptionalCalendar 86 Alternate cal andar type1504 iOptionalCalendar 86 Alternate calendar type 1505 1505 sIntlSymbol 87 International currency symbol 1506 1506 sAbbrevLangName 88 Windows language abbreviation … … 1532 1532 iEbcdicCodepage 114 Ebcdic codepage 1533 1533 sOtherCodepages 115 Other ASCII codepages 1534 sSetCodepage 116 Cod page to set on activation1534 sSetCodepage 116 Codepage to set on activation 1535 1535 sKeyboard 117 Primary keyboard name 1536 1536 sAltKeyboard 118 Alternate keyboard name -
rxuls/trunk/rxuls_hobbes.txt
r28 r49 2 2 =============================================== 3 3 4 Archive Filename: rxuls_0 51.zip5 Short Description: RXULS .DLL v0.51, Unicode and I18N library for REXX4 Archive Filename: rxuls_061.zip 5 Short Description: RXULS, Unicode and internationalization library for REXX (v0.61) 6 6 Long Description: RXULS.DLL is a REXX interface to selected parts of the OS/2 ULS (Universal 7 7 Language Support) API, also known as the Unicode API. RXULS.DLL provides … … 15 15 16 16 Your name: Alex Taylor 17 Email address: alex at cs-clubdot org17 Email address: alex at altsan dot org 18 18 Program contact name: (same) 19 19 Program contact email: (same) 20 Program URL: http://www. cs-club.org/~alex/os2/toolkits/uls/#rxuls20 Program URL: http://www.altsan.org/os2/toolkits/uls/#rxuls 21 21 22 22 Would you like the … … 27 27 Additional requirements: 28 28 29 Replaces: rxuls_ 050.zip29 Replaces: rxuls_*.zip 30 30 31 31 -
rxuls/trunk/tests/testuf.cmd
r28 r49 2 2 CALL RxFuncAdd 'ULSLoadFuncs', 'RXULS', 'ULSLoadFuncs' 3 3 CALL ULSLoadFuncs 4 CALL RxFuncAdd 'Sys2LoadFuncs', 'RXUTILEX', 'Sys2LoadFuncs' 5 CALL Sys2LoadFuncs 4 6 5 7 /* Epoch time in seconds. */ 6 8 epochtime = 1234567890 9 epochtime = Sys2GetEpochTime() 7 10 tzone = VALUE('TZ',,'OS2ENVIRONMENT') 8 11 … … 11 14 SAY timestr 12 15 13 timestr = ULSFormatTime( epochtime, '%Ec (%EY)',, 'en_US') 16 /* Convert to local time using the ja_JP locale and alternate calendar format. */ 17 timestr = ULSFormatTime( epochtime, '%Ex %EX',, 'ja_JP', 932 ) 18 SAY timestr 19 timestr = ULSFormatTime( epochtime, '%EX %Ex',, 'ja_JP', 932 ) 14 20 SAY timestr 15 21 -
rxuls/trunk/tests/xform.cmd
r28 r49 11 11 DO i = 1 TO LENGTH( de_str ) 12 12 c = SUBSTR( de_str, i, 1 ) 13 IF c == X2C('7f') THEN ITERATE 13 14 IF ULSQueryAttr( c, 'diacritic') <> 1 THEN 14 15 stripped = stripped || c
Note:
See TracChangeset
for help on using the changeset viewer.