[Xdoclet-user] which version of XDoclet is still under development?

2009-06-08 Thread Justin Case
Hi all, Excuse the confusion but I don't really understand if there's anything still going on around here... the XDoclet web page mentions only latest version 1.2.3, some mailing lists mention though there's a XDoclet 2, finally one finds the XDoclet2 project page which is called XDoclet (no

Re: [Xdoclet-user] which version of XDoclet is still under development?

2009-06-09 Thread Justin Case
First of all, thanks a lot for the extensive and quick answer :) --- On Mon, 6/8/09, Konstantin Priblouda kpriblo...@yahoo.com wrote: There is some development, and I pushed release 2.0.7 last week. Indeed, I've seen in the subversion link (and only there) that the latest version is 2.0.7.

[Xdoclet-user] ValueObject source code missing

2009-06-11 Thread Justin Case
Hi all, In my ooold project this feature of XDoclet1 is heavily used: http://xdoclet.sourceforge.net/xdoclet/valueobjects.html the Value Objects. However it seems that NONE of the deliveries which can be downloaded from Sourceforge contains either the JAR or the source for this module. I have

Re: [Xdoclet-user] ValueObject source code missing

2009-06-11 Thread Justin Case
Hi all, Forget it, I decompiled them perfectly with JODE only to see that it's a heavily customized package (for our app). So, it's just upgrade handwork from now on. Thanks anyway :) M From: Justin Case send_lotsa_spam_h...@yahoo.com Hi all, In my ooold project this feature

[Xdoclet-user] ant funny error message when class not found

2009-06-12 Thread Justin Case
Hi all, Judging by some older emails I think the funny error message was supposed to be fixed... BUILD FAILED \build.xml:1165: Class Not Found: Classloader URLs (classpath): The answer I found only when running Ant with -d -v: [...] Caused by: java.lang.ClassNotFoundException: Classloader

Re: [Xdoclet-user] Reference xdocpath not found

2009-06-15 Thread Justin Case
Hi, --- On Sun, 6/14/09, Sam Wun swun2...@gmail.com wrote: BUILD FAILED /usr/liferay/liferay-portal-5.2.2/dev/portlets/online-payment/build.xml:14: Reference xdocpath not found. The xdocpath indeed is not defined anywhere in your build.xml. You defined though another path called

Re: [Xdoclet-user] ValueObject source code missing

2009-06-15 Thread Justin Case
Hi, Thanks for the hint, however with those extra repositories defined the failure is exactly the same, see below... Thanks a lot, M [INFO] Building xdoclet-plugin-qtags [INFO]task-segment: [install] [INFO] [INFO]

Re: [Xdoclet-user] Reference xdocpath not found

2009-06-15 Thread Justin Case
Hi, May I suggest you some bit of Ant reading? It will always help. In the meantime take: taskdef name=webdoclet classname=Xdoclet.modules.web.WebDocletTask classpathref=xdocpath /taskdef and replace it with taskdef name=webdoclet classname=Xdoclet.modules.web.WebDocletTask

Re: [Xdoclet-user] ValueObject source code missing

2009-06-15 Thread Justin Case
--- On Mon, 6/15/09, Konstantin Priblouda kpriblo...@yahoo.com wrote: justin, please do not email me directly but through list ( so there is a contrail for others ) But I DO mail you through the list :) I will try the newest version aswell. Thanks, M

Re: [Xdoclet-user] Reference xdocpath not found

2009-06-15 Thread Justin Case
Hi Sam, No, it's not the same error. Please compare the two messages - the first complained about a classpathref not found, now about a class not found. Your XDoclet jars (or at least the web ones) are seemingly not in that classpath defined in build.xml, so they cannot be found. How about

[Xdoclet-user] 1.0.5 mvn install failure

2009-06-15 Thread Justin Case
Hi all, 1.0.5 fails aswell... below's the snippet. Actually it's not a surprise it fails, I couldn't have in my empty repository the sources of assembly beforehand... Any fix plz? :) M [INFO] xmlunit-1.2.jar already exists in destination. [INFO] [site:attach-descriptor] [INFO]

[Xdoclet-user] how to create own tags using qtags

2009-06-15 Thread Justin Case
Hi all, Velocity code generation works fine with a VM file. I thought I'd use also the qtags special annotations to implement easier restrictions instead of checking everything in the VM file. However I can't seem to understand how to activate them. I created the tags as needed, put

Re: [Xdoclet-user] Reference xdocpath not found

2009-06-15 Thread Justin Case
Very true: once setting ant -v -d the missing class(es) will be pretty obvious. M --- On Mon, 6/15/09, Konstantin Priblouda kpriblo...@yahoo.com wrote: AFAIR, webdoclet also requires servlet api somewhere on classpath... I would enable debugging output from ant, and look for errors in

[Xdoclet-user] how to skip parsing inappropriate files

2009-06-15 Thread Justin Case
Hi all, Is there a way to tell XDoclet - in the Ant file, in the velocity file or somewhere else - when to skip a file based on some internal tags in the file? I can put inside the VM file rules to not generate empty files where there's no tag, but I don't like those empty files at all...

Re: [Xdoclet-user] Reference xdocpath not found

2009-06-15 Thread Justin Case
Did you define a fileset in the classpath variable with that directory where the xdoclet jars are? You can check always what you got in that classpath with a line like this: echo message=${toString:plugin-lib.classpath}/ M --- On Mon, 6/15/09, Sam Wun swun2...@gmail.com wrote: From: Sam

Re: [Xdoclet-user] Reference xdocpath not found

2009-06-15 Thread Justin Case
--- On Mon, 6/15/09, Sam Wun swun2...@gmail.com wrote: I made some progress, now it complained I can't create a src/ directory, see below for ant -v -d: It complained it can't FIND it :) why would be sources under WEB-INF anyway??? M

[Xdoclet-user] generating generics (java 1.5) code

2009-06-16 Thread Justin Case
Hi all, Is there a reason why the XDoclet2 1.0.5 release is stuck with the rather old QDox snapshot of 2005? I needed generating Java code with Java generics support, so I tried newer releases of QDox. The latest 1.9 doesn't work out of the box (I didn't investigate further) but QDox 1.8

Re: [Xdoclet-user] how to skip parsing inappropriate files

2009-06-16 Thread Justin Case
Indeed, with your hint I discovered there's a shouldGenerate() function in the QDoxPlugin interface. XDoclet2 that is. Cool thanks :) M --- On Mon, 6/15/09, Konstantin Priblouda kpriblo...@yahoo.com wrote: Do we speak about XD1 or XD2 ;) ( if XD2, we shall go to the

Re: [Xdoclet-user] how to create own tags using qtags

2009-06-16 Thread Justin Case
! --- On Mon, 6/15/09, Justin Case send_lotsa_spam_h...@yahoo.com wrote: From: Justin Case send_lotsa_spam_h...@yahoo.com Subject: [Xdoclet-user] how to create own tags using qtags To: End-user support for the XDoclet code generator xdoclet-user@lists.sourceforge.net Date: Monday, June

Re: [Xdoclet-user] how to create own tags using qtags

2009-06-16 Thread Justin Case
--- On Tue, 6/16/09, Konstantin Priblouda kpriblo...@yahoo.com wrote: Well, XD2 is completely different project ;) It is, but it's still called xdoclet in all the links and mailing lists and it's sometimes codehaus sometimes sourceforge and has different versions on different components...

Re: [Xdoclet-user] empty validation.xml file - please help.

2009-06-22 Thread Justin Case
Hi Sam, Is there SOME generation working in your environment? Cheers, M --- On Sun, 6/21/09, Sam Wun swun2...@gmail.com wrote: From: Sam Wun swun2...@gmail.com Subject: [Xdoclet-user] empty validation.xml file - please help. To: Struts Users Mailing List u...@struts.apache.org Cc: End-user

Re: [Xdoclet-user] Transition from xdoclet to xdoclet2

2009-06-24 Thread Justin Case
--- On Tue, 6/23/09, John Leonard jleonard.20...@gmx.com wrote: * · Can Xdoclet2 perform this? Yes it can. * · If yes, can you show me Ant build code that accomplishes       this? http://xdoclet.codehaus.org/XDoclet+Invocation+through+Ant HTH, M

Re: [Xdoclet-user] list within a list

2012-01-26 Thread Justin Case
Subin, maybe you shoud upgrade first to XDoclet2... you can do pretty much everything there (if you can also code some Java, really everything). JC From: Subin Modeel subin@gmail.com To: xdoclet-user@lists.sourceforge.net Sent: Thursday, January 26,