Hi David
Thanks for ur reply.
As u said, I am trying to use Culler functionality.
When I tried to compile the src code in antculler.zip file, I am having
compilation problems.. I am using Ant1.3 stable release version. I think I
need new EnumeratedAttribute class that has some extra methods..
Do u want me to get Ant's latest nightly build? Or Did u forget to include
new EnumeratedAttribute in that zip.
[javac]
C:\Crmapps\cullersrc\main\org\apache\tools\ant\types\BooleanOrIgnore
EnumeratedAttribute.java:82: cannot resolve symbol
[javac] symbol : constructor EnumeratedAttribute (java.lang.String)
[javac] location: class org.apache.tools.ant.types.EnumeratedAttribute
[javac] super(aValue);
[javac] ^
[javac]
C:\Crmapps\cullersrc\main\org\apache\tools\ant\types\BooleanOrIgnore
EnumeratedAttribute.java:93: cannot resolve symbol
[javac] symbol : method isValue (java.lang.String)
[javac] location: class
org.apache.tools.ant.types.BooleanOrIgnoreEnumerated
Attribute
[javac] return isValue(IGNORE) || isValue(TRUE) == aBoolean;
[javac] ^
[javac]
C:\Crmapps\cullersrc\main\org\apache\tools\ant\types\BooleanOrIgnore
EnumeratedAttribute.java:93: cannot resolve symbol
[javac] symbol : method isValue (java.lang.String)
[javac] location: class
org.apache.tools.ant.types.BooleanOrIgnoreEnumerated
Attribute
[javac] return isValue(IGNORE) || isValue(TRUE) == aBoolean;
Thanks
Srikanth Goli
> -----Original Message-----
> From: David Rees [SMTP:[EMAIL PROTECTED]
> Sent: Sunday, April 01, 2001 2:47 PM
> To: [EMAIL PROTECTED]
> Subject: Re: a zip file with files based on modified time
>
>
> On Wed, 28 Mar 2001 12:24:46 -0500, Goli, Srikanth wrote:
>
> >Hi Everybody,
> >
> >I would like to create a zip file with a subset of files from a directory
> >that are modified later than some particular date/time...Is there any way
> to
> >do this by using Ant's built-in tasks?
> >
> >Something like the following task..
> >
> ><zip zipfile="patch.zip">
> > <basedir="source">
> > <fileset dir="source">
> > <isModifiedLater="03/25/2001"/>
> > </fileset>
> ></zip>
> >
>
> Ant currently does not support this, but there is a submission that
> will support it though ;). You could apply the patch/zip to your local
> Ant use it. I would love to get feedback.
>
> http://marc.theaimsgroup.com/?l=ant-dev&m=98540878923987&w=2
>
> dave