The code below was very good at compacting the html files. but when i tried
to compact js or jsp files, it was having a problem. So i was trying to get
rid of the whitespace on the left side only.
this is what i used.
<apply executable="perl" parallel="true">
<arg value="-p0i.bak"/>
<arg value="-e"/>
<arg value="y/ //s"/>
<srcfile/>
<fileset dir="${working_folder}/webroot/jsp" includes="**/*.js"/>
</apply>
</target>
However, it only gets rid of space on the left side, but not tabs. is there
any way to get rid of tabs too?
Thanks for your attention.
Michael.
-----Original Message-----
From: Alexey Solofnenko [mailto:A.Solofnenko@mdl.com]
Sent: Wednesday, February 26, 2003 2:37 PM
To: 'Ant Users List'
Subject: RE: Removing whitespace in the code
something like (parallel="true" will execute one command with a very big
argument list):
<apply executable="perl" parallel="true">
<arg value="-p0i.bak"/>
<arg value="-e"/>
<arg value="s/\s{2,}/ /gs"/>
<srcfile/>
<fileset dir="directory" includes="**/*.html"/>
</apply>
- Alexey
--
{ http://trelony.cjb.net/ } Alexey N. Solofnenko
Pleasant Hill, CA (GMT-8 usually)
-----Original Message-----
From: Lee, Michael.M [mailto:Michael.M.Lee@westgroup.com]
Sent: Wednesday, February 26, 2003 12:29 PM
To: 'Ant Users List'
Subject: RE: Removing whitespace in the code
could you please show me an example?
i would really appreciate it.
---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org
|