-
Recent Posts
Recent Comments
All on ERROR: Cannot determine the lo… Andy on LibHaru – Windows Build… Zipping files in VA… on VASmalltalk – how to cre… Peter on Smalltalk – Better produ… Vinnie Moag on About Archives
- June 2013
- May 2013
- March 2013
- February 2013
- January 2013
- December 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
Categories
Meta
Monthly Archives: June 2011
VASmalltalk – ICU, UCalendar 0.2.0
Ok, we have reached the version 0.2.0 and for this version most work has been spent in UCalendar class (including locales, timezones, Date, Time, DateTime) and I think, that the interface and layout for UCalendar is now stable and can … Continue reading
VASmalltalk – ICU, RegularExpressions and Character support
With version 0.1.6 some of the regular expression API calls have been wrapped and you may now use regular expressions under Unicode. | regMatcher pattern source result result2 | pattern := ‘ab*’ asUtf16String. source := ‘ababab’ asUtf16String. regMatcher := URegularExpression … Continue reading
VASmalltalk – ICU, UDateFormat
To my surprise is ws not possible to create the original DateAndTime printString format. It turns out, that ICU is able to create an ISO8601 compatible string for the time zone offset value (e.g. “+0100″ is a valid zone description) … Continue reading
VASmalltalk – ICU, version 0.1.5
I’ve just published version 0.1.5 at vastgoodies.com. It is nothing more than a normal snapshot of my actual work – and is under heavy development. I added the dll mskunicode.dll as a resource to this configuration map. As I mentioned … Continue reading
VASmalltalk – ICU – Character class
after reading the specification I think that the Character class can be used for Unicode (at least in the first step) and therefore with version 0.0.31 I add a new library (mskunicode.dll) to the ICU wrapper and the only content … Continue reading
VASmalltalk – ICU: NumberFormating
now to a pretty boring topic: number formating. When writing this code I stepped into the VA code page problems I mentioned in earlier posting. Formating numbers (double, integers) are the most boring stuff, but with currencies it becomes more … Continue reading
VASmalltalk – ICU: Searching
searching of substrings in strings are perhaps one of the most wanted features in computer systems. Searching in UTF8 or UTF16 considering collation rules or locales may be pretty difficult. With version 0.0.30 I added more wrappers around the search … Continue reading
VASmalltalk – ICU: NumberFormating and Searching
With version 0.0.28 published yesterday I removed support for the VA-think-so codepage (e.g. 819 – see earlier postings) and now only converters for system platform and utf8 are available when starting the ICU wrapper – that should do the work. … Continue reading
VASmalltalk – CodePages – Part II
Ok, more or less VA is not really able to retrieve the current code page. They seem to go via the selected font, retrieve the char set of that font and get something like ISO8859-1 and via some strange stuff … Continue reading
VASmalltalk – CodePages …..
users of VASmalltalk can query its system, which code page they use. Running VA under a german Windows results in an answer: code page ibm-819. The native operating system is running (as you might know) under code page windows-1252. I’ve … Continue reading