My next endeavour is seeing if and how Slide fits in my (too much? :-)) DAV-centric vision: mostly my plan is to understand how I can help in sorting out the current DASL limitations (all our projects are quite heavily based on DASL queries). Unfortunately in this period I'm really short of time, but I count on following the Slide development, while providing all the feedback and code that I can.
I guess that the best way to start working with a community is doing something. :-) The enclosed silly patch tries to fix a silly problem when building the slide war: Domain.xml references a log4j.Log4jLogger classes which is contained in the slide-log4jwrapper.jar file, which however is not included in the war file by the standard build procedure (at least AFAIU, but being really a newbie I might well be wrong).
Since it took me quite a while to understand where that class was supposed to be (personally I would call it slide.Log4jLogger so that idiots like me will understand faster that it's a _slide_ class and not a log4j one), I hope that this silly patch might help others out.
Ciao,
-- Gianugo Rabellino Pro-netics s.r.l. - http://www.pro-netics.com Orixo, the XML business alliance - http://www.orixo.com (Now blogging at: http://blogs.cocoondev.org/gianugo/)
Index: build.xml
===================================================================
RCS file: /home/cvspublic/jakarta-slide/build.xml,v
retrieving revision 1.184
diff -u -r1.184 build.xml
--- build.xml 20 Nov 2003 17:15:07 -0000 1.184
+++ build.xml 30 Nov 2003 17:25:13 -0000
@@ -704,6 +704,9 @@
<fileset dir="src/conf/webapp">
<include name="**/Domain.xml"/>
</fileset>
+ <lib dir="${slide.dist}/slide/wrappers/">
+ <include name="*.jar"/>
+ </lib>
<lib dir="${slide.dist}/slide/lib">
<exclude name="antlr*.jar"/>
<exclude name="slide-taglib*.jar"/>--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
