Search the web
Sign In
New User? Sign Up
gobo-eiffel · Gobo Eiffel
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1670 - 1699 of 1767   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1670
I need a finer switch in my library.xace files then the "windows/unix" GOBO_OS variable. I have code like the following in my .xace files: <option...
render_dude
Offline Send Email
Jun 12, 2008
7:30 pm
1671
... You have to call gexace with the following option: gexace --define="ARCH=macosx-ppc" .... -- Eric Bezault mailto:ericb@... http://www.gobosoft.com...
Eric Bezault
gobosoft
Offline Send Email
Jun 12, 2008
7:33 pm
1672
... That's what I thought, but how do you get geant then to pass that info on to gexace, and, get geant to pick up the values from the environment? Or can you?...
render_dude
Offline Send Email
Jun 13, 2008
12:38 am
1673
... <gexace system="..." output="..." format="..." xace="..."> <define name="ARCH" value="${ARCH}" if="${ARCH}"/> </gexace> -- Eric Bezault ...
Eric Bezault
gobosoft
Offline Send Email
Jun 13, 2008
12:45 am
1674
I read somewhere Gobo Regexp doesn't support Unicode yet. After some investigation. I found some minor changes would make it support Unicode (See following...
Ted
kkkkg999
Offline Send Email
Jun 13, 2008
9:53 am
1675
... Ted> I read somewhere Gobo Regexp doesn't support Unicode yet. Ted> After some investigation. I found some minor changes would Ted> make it support Unicode...
Colin Paul Adams
colin@...
Send Email
Jun 13, 2008
11:26 am
1676
Thank you for quick response, Colin. Can I know what problem the patch has? At least, based on some simple experiments, with the patch, I got what I wanted...
Ted
kkkkg999
Offline Send Email
Jun 13, 2008
12:54 pm
1677
... Ted> Thank you for quick response, Colin. Can I know what problem Ted> the patch has? At least, based on some simple experiments, Ted> with the patch, I...
Colin Paul Adams
colin@...
Send Email
Jun 13, 2008
12:58 pm
1678
The patch basically does three things: 1. Makes that piece of code treats a Unicode point code as a character, rather than a code less than 255 (CHARACTER_8),...
Ted
kkkkg999
Offline Send Email
Jun 13, 2008
1:33 pm
1679
... Ted> The patch basically does three things: 1. Makes that piece of Ted> code treats a Unicode point code as a character, rather than Ted> a code less than...
Colin Paul Adams
colin@...
Send Email
Jun 13, 2008
1:44 pm
1680
... In UC_STRING, `item_code' correctly returns Unicode points which in the patch now are correctly appended to the string to replace. It wasn't correct...
Ted
kkkkg999
Offline Send Email
Jun 13, 2008
4:11 pm
1681
... Ted> I tried "a.a" to match either `aHa' or `a&#19981;a' (a Ted> Chinese char in between), they both perfectly matched. Ted> I also tried "a..+a" to match...
Colin Paul Adams
colin@...
Send Email
Jun 13, 2008
5:02 pm
1682
... That's what the patch does. `item_code' of UC_STRING does return correct 4-byte Unicode character (INTEGER_32), doesn't it? `item' didn't. Ted...
Ted
kkkkg999
Offline Send Email
Jun 13, 2008
5:26 pm
1683
... Ted> That's what the patch does. `item_code' of UC_STRING does Ted> return correct 4-byte Unicode character (INTEGER_32), doesn't Ted> it? `item' didn't. ...
Colin Paul Adams
colin@...
Send Email
Jun 13, 2008
6:02 pm
1684
... What would be interesting is to test and try to use UC_STRING with non-ascii characters not only for the subject, but also for the regexp pattern (the...
Eric Bezault
gobosoft
Offline Send Email
Jun 13, 2008
10:05 pm
1685
... I removed that mod 256 for byte code as you see in the patch, which mean byte code compiled from a pattern accepts Unicode points. ... Yes, I tried the...
Ted
kkkkg999
Offline Send Email
Jun 14, 2008
5:18 am
1686
... Ted> Yes, I tried the following as subjects: 1) -- Ted> &#19968;&#20010;&#20363;&#23376; 2) -- Ted> &#21478;&#19968;&#20010;&#20363;&#23376;&#23376;a That...
Colin Paul Adams
colin@...
Send Email
Jun 14, 2008
5:28 am
1687
... Sorry for my misunderstanding. Look at the following code: make is -- Run application. local pattern, subject: UC_UTF8_STRING i, max: INTEGER_32 matcher:...
Ted
kkkkg999
Offline Send Email
Jun 14, 2008
6:31 am
1688
... Ted> The result is "False" with patched Gobo Regexp. But using Ted> UC_STRING, with original Gobo Regexp, the result is "False" Ted> too. Then it looks...
Colin Paul Adams
colin@...
Send Email
Jun 14, 2008
8:32 pm
1689
... Would it be acceptable to use Ted's patch (with some protection when accessing the 256-bit pair of arrays) and make it clear in the doc of the regexp...
Eric Bezault
gobosoft
Offline Send Email
Jun 14, 2008
10:17 pm
1690
... Eric> Would it be acceptable to use Ted's patch (with some Eric> protection when accessing the 256-bit pair of arrays) and Eric> make it clear in the doc...
Colin Paul Adams
colin@...
Send Email
Jun 15, 2008
6:03 am
1691
... Do you have an example searching what against what the crash happens? That is interesting to me. Because I tried to apply the modified Gobo Regexp to...
Ted
kkkkg999
Offline Send Email
Jun 15, 2008
9:48 am
1692
... Ted> Do you have an example searching what against what the crash Ted> happens? That is interesting to me. Because I tried to apply Ted> the modified Gobo...
Colin Paul Adams
colin@...
Send Email
Jun 15, 2008
10:55 am
1693
... I debugged to see if there are rescues. My answer is no. So I still don't find how "a case-insensitive search against a target string containing a...
Ted
kkkkg999
Offline Send Email
Jun 15, 2008
11:34 am
1694
... I just committed your modifications in SVN. However, in addition to Colin's remark about case-insensitivity, I also noticed that character classes (e.g....
Eric Bezault
gobosoft
Offline Send Email
Jun 29, 2008
9:03 pm
1695
Thank you, Eric. Looking forward to full Unicode Regexp. Ted...
Ted
kkkkg999
Offline Send Email
Jul 1, 2008
12:36 am
1696
... Ted> Thank you, Eric. Looking forward to full Unicode Regexp. Best if you take it on then. I've haven't done anything on the XSLT library for the past two...
Colin Paul Adams
colin@...
Send Email
Jul 1, 2008
5:27 am
1697
I could have a look if you don't mind how much time I would take. Because I am quite slow reading C code. And not too much free time left for this. Regards, ...
Ted
kkkkg999
Offline Send Email
Jul 2, 2008
2:23 am
1698
... That would be great if you could have a look at that. If you want I will send you the C package PCRE 3.9 which I believe was originally used when...
Eric Bezault
gobosoft
Offline Send Email
Jul 2, 2008
9:09 am
1699
Hi, I tried to compile tecomp_0_2 under Debian Linux. It gives the following error: ../../src/class/class_collection.h: At global scope: ...
Cheng-Chang Wu
chengchangwu
Offline Send Email
Jul 16, 2008
2:22 am
Messages 1670 - 1699 of 1767   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help