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> 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@...
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 ?...
... 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...
... 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...
... 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...
... 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...
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@...
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> <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@...
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...
Hi, When I deserialize the following XML file: <test > <sub_el > >>>>>>>>>> </sub_el> </test> the > characters are converted...
... Neil> Hi, When I deserialize the following XML file: Neil> <test > <sub_el > >>>>>>>>>> Neil> </sub_el> </test> Neil> the...
Colin Paul Adams
colin@...
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 ...
... 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....
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@...
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....
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...
... 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...
... 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...
... 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...
... 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...
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....
... It was already better than it was :-) What about this fix: =========================== @@ -378,11 +378,15 @@ ptr := exml_XML_GetUserData (a_parser) if ptr...
... Jugging too many tasks: this must be frozen_callback instead of frozen_pointer. Sorry for the confusion. -- Live long and prosper, Berend de Boer...
... 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...
... 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...