precompiled jsp under jboss

2004-08-23 Thread Tarik El Berrak
Hi 

I'm using jboss as an application server, i want to precompile my jsp's, i know 
that is used in tomcat but i dont know how to do it.

any ideas ??

thanks

Re: Question of checking file size

2004-05-19 Thread Tarik El Berrak
hi 
you can also create a new task which test the file size
see Writing your own task in apache web site

http://ant.apache.org/manual/index.html/

Developing with Ant/

Writing Your Own Task



- Original Message - 
From: Robert MacMunn [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, May 18, 2004 8:47 PM
Subject: Question of checking file size



Hello,
I just started using Ant.  I was wondering if anyone could tell
me how to check a size of a file.
I want to skip a process if a certain file is empty.
 
Thanks
 
Bob
 


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



native2ascii

2004-05-11 Thread Tarik El Berrak
Hi 

i'm using ant under eclipse and i want to use native2ascii task to convert some 
files but it doesn' work.
this is what i write

?xml version=1.0 encoding=UTF-8?

project name=native2ascii default=Native2ascii basedir=.

taskdef name=native2ascii 
classname=org.apache.tools.ant.taskdefs.optional.Native2Ascii/

!--convert the file Application.properties from UTF8 encoding to ascii 
encoding --

target name=Native2ascii

native2ascii encoding=UTF8 src=./src/etc/resources dest=. ext=.ascii/


/target

!-- delete the file --

target name=clean

delete file=./src/etc/resources/*/


/target

/project





thanks for help