Good on you Somik.

By the way, is there anybody who worked with NFK and ant here?

My JSP files' Kanji encoding is in Shift-JIS in local windows PC, but
it must be in EUC on the server when running. 

So, I used NKF to convert them before putting them into WAR file 
with APPLY task. But, I wonder if any of you developed a Java 
ant task to use NKF, or interested in making one? 

Kunio Nakamaru

-----Original Message-----
From: Somik Raha [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 17, 2002 2:53 PM
To: Ant Users List
Subject: Re: Recursive replacement of text


Hi Sujan
    Thanks a lot!
    This worked for me :

<target name="versionSource">
    <replace dir="${src}" value="v${version}">
        <include name="**/*.java"/>
        <replacefilter token="v${previousVersion}" value="v${version}"/>
    </replace>
</target>

Regards,
Somik
----- Original Message -----
From: "Sujan Digumarti" <[EMAIL PROTECTED]>
To: "'Ant Users List'" <[EMAIL PROTECTED]>
Sent: Wednesday, April 17, 2002 2:45 PM
Subject: RE: Recursive replacement of text


>
> 1) <include name="**/*.java"/>
> means that it should look in the subdirecotries of ${src} as well
>
> 2) <include name="*.java"/>
> This will not recurse into the subdirectories
>
> If 1) is not working there is some other problem, please take a look at
the
> replace token
> you've provided.
>
> Rgds,
> Sujan
>
> -----Original Message-----
> From: Somik Raha [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, April 17, 2002 10:54 AM
> To: [EMAIL PROTECTED]
> Subject: Recursive replacement of text
>
>
> Hi
>     My Java files have a license header, which shows the version no of the
> software. For every release, I'd like the version no automatically updated
> with a value that I provide.
>     To do this automatic recursive replacement (recursing thru
> subdirectories), I am facing problems (still a newbie to ant).
>     I am trying :
>
> <target name="versionSource">
>     <replace dir="${src}" value="v${version}">
>         <include name="**/*.java"/>
>         <replacetoken><![CDATA[v${previousVersion}]]></replacetoken>
>     </replace>
> </target>
>
> Now I have two properties defined  - "version" and "previousVersion",
which
> I'd provide for a build.
> The problem is  - how do I get this to recurse through all the
> subdirectories under src ?
>
> Also - is this the right approach for my task ?
>
> Thanks in advance (sorry about the previous mail, went accidentally before
I
> completed - M$ outlook..)
>
> Regards,
> Somik
>
>
> --
> To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
>
> --
> To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to