Re: [Pharo-project] Where does Regex-Core and friends live

2010-12-10 Thread Dale Henrichs
I've looked over the tests and it looks like all of the match operations ultimately end up running against a stream, so the fact that the tests pass on GemStone indicates that the stream behavior is pretty well covered ... so no obvious holes in the test suite.. Dale On 12/09/2010 01:41 PM,

Re: [Pharo-project] Where does Regex-Core and friends live

2010-12-09 Thread Dale Henrichs
On 12/08/2010 06:21 PM, Alexandre Bergel wrote: hi Dale! I do not know about your need. But personally, if I have to deal with non trivial parsing, I will use PetitParser. Lukas made a tutorial last week and I am convinced. Cheers, Alexandre On 8 Dec 2010, at 20:57, Dale Henrichs wrote: I

Re: [Pharo-project] Where does Regex-Core and friends live

2010-12-09 Thread Dale Henrichs
On 12/08/2010 11:50 PM, Lukas Renggli wrote: I've got a GemSource repository, but I'm actually hoping (haven't run tests yet:) that I will be able to use Regex-Core without making any GemStone-specific changes ... That's unlikely, because the code makes quite some absolute stream positioning

Re: [Pharo-project] Where does Regex-Core and friends live

2010-12-09 Thread Dale Henrichs
On 12/08/2010 11:44 PM, Lukas Renggli wrote: I am porting the latest Regex to GemStone and in the interest of Pharo compatibility, I found Regex-Core and and Regex-Tests-Core in the Pharo repository. The latest code is inhttp://source.lukas-renggli.ch/unsorted/. It is a full port of the

Re: [Pharo-project] Where does Regex-Core and friends live

2010-12-09 Thread Alexandre Bergel
Ok, it makes sense Alexandre On 9 Dec 2010, at 13:47, Dale Henrichs wrote: On 12/08/2010 06:21 PM, Alexandre Bergel wrote: hi Dale! I do not know about your need. But personally, if I have to deal with non trivial parsing, I will use PetitParser. Lukas made a tutorial last week and I

Re: [Pharo-project] Where does Regex-Core and friends live

2010-12-09 Thread Stéphane Ducasse
I'm interested in terms of maintaining Pharo compatibility ... many of the GLASS developers develop in Pharo and deploy in GemStone and I am trying to get in the habit of using the same packages that are loaded into Pharo (where possible/practical) so that the bugfixes and updates can be

Re: [Pharo-project] Where does Regex-Core and friends live

2010-12-09 Thread Dale Henrichs
On 12/09/2010 10:39 AM, Stéphane Ducasse wrote: I'm interested in terms of maintaining Pharo compatibility ... many of the GLASS developers develop in Pharo and deploy in GemStone and I am trying to get in the habit of using the same packages that are loaded into Pharo (where

Re: [Pharo-project] Where does Regex-Core and friends live

2010-12-09 Thread Stéphane Ducasse
cool! On Dec 9, 2010, at 10:41 PM, Dale Henrichs wrote: On 12/09/2010 10:39 AM, Stéphane Ducasse wrote: I'm interested in terms of maintaining Pharo compatibility ... many of the GLASS developers develop in Pharo and deploy in GemStone and I am trying to get in the habit of using the

[Pharo-project] Where does Regex-Core and friends live

2010-12-08 Thread Dale Henrichs
I am porting the latest Regex to GemStone and in the interest of Pharo compatibility, I found Regex-Core and and Regex-Tests-Core in the Pharo repository. In loading Regex-Tests-Core I found some compile errors (doubled '.', a common porting problem) in RxParserTesttestTranslatingMatchesUsing

Re: [Pharo-project] Where does Regex-Core and friends live

2010-12-08 Thread Alexandre Bergel
hi Dale! I do not know about your need. But personally, if I have to deal with non trivial parsing, I will use PetitParser. Lukas made a tutorial last week and I am convinced. Cheers, Alexandre On 8 Dec 2010, at 20:57, Dale Henrichs wrote: I am porting the latest Regex to GemStone and in

Re: [Pharo-project] Where does Regex-Core and friends live

2010-12-08 Thread Stéphane Ducasse
On Dec 9, 2010, at 12:57 AM, Dale Henrichs wrote: I am porting the latest Regex to GemStone and in the interest of Pharo compatibility, I found Regex-Core and and Regex-Tests-Core in the Pharo repository. In loading Regex-Tests-Core I found some compile errors (doubled '.', a common

Re: [Pharo-project] Where does Regex-Core and friends live

2010-12-08 Thread Lukas Renggli
I am porting the latest Regex to GemStone and in the interest of Pharo compatibility, I found Regex-Core and and Regex-Tests-Core in the Pharo repository. The latest code is in http://source.lukas-renggli.ch/unsorted/. It is a full port of the latest code from VisualWorks + various critical

Re: [Pharo-project] Where does Regex-Core and friends live

2010-12-08 Thread Lukas Renggli
I've got a GemSource repository, but I'm actually hoping (haven't run tests yet:) that I will be able to use Regex-Core without making any GemStone-specific changes ... That's unlikely, because the code makes quite some absolute stream positioning like aStream position = 0, aStream position =