Re: [sword-devel] MacSword 1.1.3

2004-11-25 Thread Troy A. Griffitts
Hey guys, What's the status on ICU and StringMgr? I thought that if ICU was compiled into the library, it provided a subclass: ICUStringMgr that worked with UTF8. This would mean that Will doesn't have to do anything if he already includes ICU support. -Troy. Joachim Ansorg wrote:

Re: [sword-devel] Converting files

2004-11-25 Thread Chris Umphress
> I need a easy way to convert a zefania-file ( an xml- based format) to > osis. May be it would be a good idea to start a project for a tool. > Unfortunatly I have a lot to do and don't have the time to start > something this year. But I hope that I can start something in Q3/2005. There was a dis

Re: [sword-devel] Converting files

2004-11-25 Thread Mark Trompell
Luiz Augusto Pereira Fernandes wrote: Please, anyone knows any easy mode for converting .html files to gbf, thml or osis? I need it for converting some copyright files for my personal usage. Hi, haven't found one yet. I need a easy way to convert a zefania-file ( an xml- based format) to osis. May

Re: [sword-devel] MacSword 1.1.3

2004-11-25 Thread Martin Gruner
Hey Joachim, could you please write some more instructions in stringmgr.h how to override this class? That would be helpful, I guess. =) mg Am Donnerstag, 25. November 2004 12:33 schrieb Joachim Ansorg: > Hi, > > it's simple - I hope :) > > > So all I have to do is replace char* StringMgr::uppe

Re: [sword-devel] MacSword 1.1.3

2004-11-25 Thread Joachim Ansorg
Hi, it's simple - I hope :) > So all I have to do is replace char* StringMgr::upperUTF8(char* t, > const unsigned int maxlen)? Reimplement upperUTF8 and then tell Sword to use an instance of your reimplementation to handle Unicode/Latin1 Strings with StringMgr::setSystemStringMgr. > If so, th

Re: [sword-devel] MacSword 1.1.3

2004-11-25 Thread Will Thimbleby
So all I have to do is replace char* StringMgr::upperUTF8(char* t, const unsigned int maxlen)? If so, then what is maxlen for? Is it expecting t to be overwritten or just a maximum buffer allocated? I assume that sword will dealloc any buffer I return. thanks -Will On 25 Nov 2004, at 7:42 am,

Re: [sword-devel] MacSword 1.1.3

2004-11-25 Thread Martin Gruner
> Also is anyone working on utf-8 locale support, I would like to be able > to just use utf8 locales and support languages like chinese. What needs > doing to support this? Hi Will, this is fairly simple, but works with cvs only. You need to override the StringMgr class to work with UTF8 (use yo