Is src/main/perl required?
Hi, I've just moved src/perl to src/main/perl and in doing so I've modified the build.xml file. I've noticed that the part of the build using the perl scripts is commented out. Thus my question: Are the scripts in src/main/perl used? If not, can we delete them? (it'll always be possible to resurrect them if we want to as they're in the SCM). Thanks Vincent ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran�ais ! Yahoo! Mail : http://fr.mail.yahoo.com
I would say we can remove it, or move it to a contrib/perl directory. This is not in the standard build anymore. Ludovic Vincent Massol a écrit :
Hi,
I've just moved src/perl to src/main/perl and in doing so I've modified the build.xml file. I've noticed that the part of the build using the perl scripts is commented out.
Thus my question: Are the scripts in src/main/perl used? If not, can we delete them? (it'll always be possible to resurrect them if we want to as they're in the SCM).
Thanks Vincent
___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! Yahoo! Mail : http://fr.mail.yahoo.com
------------------------------------------------------------------------
-- You receive this message as a subscriber of the [email protected] mailing list. To unsubscribe: mailto:[email protected] For general help: mailto:[email protected]?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
-- Ludovic Dubost XPertNet: http://www.xpertnet.fr/ Blog: http://www.ludovic.org/blog/ XWiki: http://www.xwiki.com Skype: ldubost AIM: nvludo Yahoo: ludovic
-----Original Message----- From: Ludovic Dubost [mailto:[email protected]] Sent: dimanche 22 mai 2005 21:53 To: [email protected] Subject: Re: [xwiki-dev] Is src/main/perl required?
I would say we can remove it, or move it to a contrib/perl directory. This is not in the standard build anymore.
I let you decide because I have no idea what this perl/ directory is for and whether it should be kept or not. Let me know what I should do. [snip] Thanks -Vincent
It was supposed to be a plugin allowing to run TWiki plugins, but it only implements a very small subset of the twiki plugins API. The way it runs them is crazy (span a perl engine and communicate through sockets).. The potential plugins that are portable is very low.. Let's remove everything related to perl. Ludovic Vincent Massol a écrit :
-----Original Message----- From: Ludovic Dubost [mailto:[email protected]] Sent: dimanche 22 mai 2005 21:53 To: [email protected] Subject: Re: [xwiki-dev] Is src/main/perl required?
I would say we can remove it, or move it to a contrib/perl directory. This is not in the standard build anymore.
I let you decide because I have no idea what this perl/ directory is for and whether it should be kept or not.
Let me know what I should do.
[snip]
Thanks -Vincent
------------------------------------------------------------------------
-- You receive this message as a subscriber of the [email protected] mailing list. To unsubscribe: mailto:[email protected] For general help: mailto:[email protected]?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
-- Ludovic Dubost XPertNet: http://www.xpertnet.fr/ Blog: http://www.ludovic.org/blog/ XWiki: http://www.xwiki.com Skype: ldubost AIM: nvludo Yahoo: ludovic
Ok, I'm deleting it. Another related question: In build.xml there is: <patternset id="non.java.sources"> <include name="**/*.properties" /> <include name="**/*.xml" /> <include name="**/*.xsl" /> <include name="**/*.dtd" /> <include name="**/*.ent" /> <include name="**/*.tld" /> <include name="**/*.vm" /> <include name="**/*.cfg" /> <include name="**/*.txt" /> <include name="META-INF/services/com.*" /> <exclude name="web/**" /> <exclude name="perl/**" /> <exclude name="${main.src.dir}/web.xml" /> </patternset> I assume that the following 2 lines can be safely removed because they never match. Is that correct? <exclude name="web/**" /> <exclude name="perl/**" /> The only place where non.java.sources is used is: <copy todir="${classes.dir}"> <fileset dir="${java.main.src.dir}"> <patternset refid="non.java.sources" /> </fileset> </copy> And in ${java.main.src.dir} there are no web/, perl/ or ${main.src.dir}/web.xml directories or files. [snip] Thanks -Vincent _________________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran�ais ! Yahoo! Mail : http://fr.mail.yahoo.com
I would agree ! Vincent Massol a écrit :
Ok, I'm deleting it. Another related question:
In build.xml there is:
<patternset id="non.java.sources"> <include name="**/*.properties" /> <include name="**/*.xml" /> <include name="**/*.xsl" /> <include name="**/*.dtd" /> <include name="**/*.ent" /> <include name="**/*.tld" /> <include name="**/*.vm" /> <include name="**/*.cfg" /> <include name="**/*.txt" /> <include name="META-INF/services/com.*" /> <exclude name="web/**" /> <exclude name="perl/**" /> <exclude name="${main.src.dir}/web.xml" /> </patternset>
I assume that the following 2 lines can be safely removed because they never match. Is that correct?
<exclude name="web/**" /> <exclude name="perl/**" />
The only place where non.java.sources is used is:
<copy todir="${classes.dir}"> <fileset dir="${java.main.src.dir}"> <patternset refid="non.java.sources" /> </fileset> </copy>
And in ${java.main.src.dir} there are no web/, perl/ or ${main.src.dir}/web.xml directories or files.
[snip]
Thanks -Vincent
_________________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! Yahoo! Mail : http://fr.mail.yahoo.com
------------------------------------------------------------------------
-- You receive this message as a subscriber of the [email protected] mailing list. To unsubscribe: mailto:[email protected] For general help: mailto:[email protected]?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
-- Ludovic Dubost XPertNet: http://www.xpertnet.fr/ Blog: http://www.ludovic.org/blog/ XWiki: http://www.xwiki.com Skype: ldubost AIM: nvludo Yahoo: ludovic
participants (2)
-
Ludovic Dubost -
Vincent Massol