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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 859 - 892 of 1713   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
859
Hi, I find log4e very interesting and useful, so I was wondering if it would make sense to move it into GOBO. Glenn is no longer maintaining it, so it would be...
Marcio Marchini
sglebs
Offline Send Email
Jul 4, 2003
9:15 pm
860
... Marcio> Hi, I find log4e very interesting and useful, so I was Marcio> wondering if it would make sense to move it into Marcio> GOBO. Glenn is no longer...
Colin Paul Adams
colin@...
Send Email
Jul 4, 2003
10:48 pm
861
... Does it work on Windows ? Can I configure the logging via an INI or XML file ? Do I get log rotation, configurable per app ? Can I log to the current dir ?...
Marcio Marchini
sglebs
Offline Send Email
Jul 4, 2003
11:19 pm
862
... eposix has a class netlogger (in the official release) that will do logging using syslog or the Windows NT event logging. That leaves Windows 9x in the...
Berend de Boer
berenddeboer
Offline Send Email
Jul 4, 2003
11:44 pm
863
... That is unfortunate. Well, if I want to make software that runs on those machines (which still are a large portion of the market). ... Great. XML config...
Marcio Marchini
sglebs
Offline Send Email
Jul 4, 2003
11:59 pm
864
... With a bit of work, yes. At the moment the classes are either in the epxs or windows directory. The windows directory should perhaps be split into nt and...
Berend de Boer
berenddeboer
Offline Send Email
Jul 5, 2003
2:41 am
865
... Marcio> Hi, I find log4e very interesting and useful, so I was Marcio> wondering if it would make sense to move it into Marcio> GOBO. Colin> with multiple...
Colin Paul Adams
colin@...
Send Email
Jul 5, 2003
3:01 pm
866
... Here it is:...
Eric Bezault
gobosoft
Offline Send Email
Jul 5, 2003
8:20 pm
867
In a build.eant file, for the install target, I'd like to call geant install on each of the sub-directories in turn. but it seems just coding: <geant...
Colin Paul Adams
colin@...
Send Email
Jul 7, 2003
6:53 pm
868
... I'm not sure what you mean by "if I were to code dir="common"", but in the Gobo package I do things like that, and I simply write: <geant file="build.eant"...
Eric Bezault
gobosoft
Offline Send Email
Jul 7, 2003
8:38 pm
870
... Eric> <geant file="build.eant" target="install" dir="common" /> Ah. Thanks. I missed the dir_if_unless in the grammar. -- Colin Paul Adams Preston...
Colin Paul Adams
colin@...
Send Email
Jul 8, 2003
6:40 am
871
Error compiling with SmartEiffel latest release with GOBO lastest release. gobo/library/kernel/spec/se/kl_file.e uses SmartEiffel/kernel/time/time.e which...
Eric Bezault
gobosoft
Offline Send Email
Jul 9, 2003
8:07 am
872
... Please use Gobo 3.2. -- Eric Bezault mailto:ericb@... http://www.gobosoft.com...
Eric Bezault
gobosoft
Offline Send Email
Jul 9, 2003
8:07 am
873
Hi, When I deserialize the following XML file: <test > <sub_el > &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; </sub_el> </test> the &gt; characters are converted...
Neil Collier
peel_man
Offline Send Email
Jul 11, 2003
11:51 pm
874
... Neil> Hi, When I deserialize the following XML file: Neil> <test > <sub_el > &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Neil> </sub_el> </test> Neil> the...
Colin Paul Adams
colin@...
Send Email
Jul 12, 2003
4:41 am
875
... XM_FORMATTER started life as a debugging tool, so I see it's not yet perfect at producing correct XML (also namespace handling is in the ...
Franck Arnaud
nenieorg
Offline Send Email
Jul 12, 2003
10:20 pm
877
... I know that the code in Gobo (apart from the Expat binding, which you don't need to use the Eiffel parse) compiles and works with ISE Eiffel for .NET 5.3....
Eric Bezault
gobosoft
Offline Send Email
Jul 14, 2003
8:54 pm
878
I was just going through the goanna test suite - fixing it to work with GOBO 3. So far it has just been a case of changing mount statements from cluster.xace...
Colin Paul Adams
colin@...
Send Email
Jul 15, 2003
11:45 am
879
... The 'tree parser' has been replaced by an events to tree converter you use with the regular parser. See XM_*_PARSER.set_callbacks, XM_TREE_CALLBACKS_PIPE....
Franck Arnaud
nenieorg
Offline Send Email
Jul 15, 2003
12:51 pm
882
I am seeing the following traceback from the Gobo XM_EXPAT_API freshly finalized with ISE 5.1. Has anyone seen this before? I'm not sure if this is an ISE...
ky_mossback
Offline Send Email
Jul 22, 2003
10:02 pm
883
... I think this happens because the GC is perhaps turned off. You might try the latest Gobo 3.2. I've made some changes to set_callback_object to let it run...
Berend de Boer
berenddeboer
Offline Send Email
Jul 23, 2003
6:18 am
884
... I don't know why you did this modification in `set_callback_object', but it is wrong: if the GC is turned off when setting the callback then it will not be...
Eric Bezault
gobosoft
Offline Send Email
Jul 23, 2003
8:37 am
885
... And the other way around: if the gc was disabled, freeze returned Void and caused an exception. The reason I "fixed" this was to allow it work with the gc...
Berend de Boer
berenddeboer
Offline Send Email
Jul 23, 2003
9:14 am
886
... Hmmm, they *try* to use it! ;-) It would be more interesting to know *why* they use it. Because it's in Gobo? Because they didn't know about the pure...
Eric Bezault
gobosoft
Offline Send Email
Jul 23, 2003
9:33 am
887
Thanks for the info, guys. I haven't done much work with C externs, and as a result it looks like I was confusing "freezing" a pointer with freezing a system....
mcnair_dan@...
ky_mossback
Offline Send Email
Jul 23, 2003
9:19 pm
888
... It was already better than it was :-) What about this fix: =========================== @@ -378,11 +378,15 @@ ptr := exml_XML_GetUserData (a_parser) if ptr...
Berend de Boer
berenddeboer
Offline Send Email
Jul 24, 2003
6:53 am
889
... Jugging too many tasks: this must be frozen_callback instead of frozen_pointer. Sorry for the confusion. -- Live long and prosper, Berend de Boer...
Berend de Boer
berenddeboer
Offline Send Email
Jul 24, 2003
7:06 am
890
... It's just that C interfaces mean more troubles to maintain. I definitely prefer to maintain Eiffel code, even if that means that the code will take 1.5...
Eric Bezault
gobosoft
Offline Send Email
Jul 24, 2003
8:31 am
891
... I try to do a few dozen short ones per second (SOAP). So performance is absolutely important. But I haven't actually measured anything yet. -- Live long...
Berend de Boer
berenddeboer
Offline Send Email
Jul 24, 2003
8:55 am
892
... Just want to second that. It was _very_ inshightful for me! regards, Andreas...
Andreas Leitner
weisznet
Offline Send Email
Jul 24, 2003
9:02 am
Messages 859 - 892 of 1713   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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