[site] Moving 'In Memoriam'

2005-02-16 Thread Henri Yandell
No intention to step on anyone's toes, but I'd like to move Martin's In 
Memoriam section from the front page of the site to the top of the 
whoweare page.

I mentioned it a bit ago, but I felt that waiting until February (a year 
since his death) was the right thing.

I'll go ahead and make the move at the weekend if no one minds.
Hen
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: [site] Odd Ant question

2005-02-16 Thread Henri Yandell
Thanks for the suggestions. They all sounded painful or involved more
dependencies :(

For the moment I've gone with a glorious hack:

1) Use the Xalan redirect extension to output the cgi. I'm already
using this extension so am not worried about new dependencies.
2) Use the Ant replace tag to remove the  and newlines from
the top of the created file.

Ugly I know :)

Hen

On Mon, 14 Feb 2005 09:20:31 +0100, Stefan Bodewig <[EMAIL PROTECTED]> wrote:
> On Sun, 13 Feb 2005, Henri Yandell <[EMAIL PROTECTED]> wrote:
> 
> > To do this copying, I basically want to do the equivalent of:
> >
> > ---
> > For each downloads_*.html file
> >   copy downloads.cgi downloads_*.cgi
> > 
> >
> > Any idea how I do that in Ant?
> 
> The first answer which many people in Ant land won't like is, use
> AntContrib's[1]  or  task.
> 
> > Mappers seem like they'd want to be copying the html file to the cgi
> > file; ie) wildcard in to and from.
> 
> You can do better than that.
> 
> The first thing you want is having copy to copy to multiple target
> files, to do this you need Ant 1.6 and set the enablemultipolemappings
> attribute to true.
> 
> To create the mappings, the best solution is writing a custom mapper,
> this sounds more difficult than it actually is, in particular if you
> are willing to use Ant 1.6.2 where you can simply  a new
> mapper.
> 
> The basic idea is that you write a class that implements
> FileNameMapper, has a dir attribute (read a public setDir(File)
> method), completely ignores the from and to attributes and scans the
> given directory for downlod_*.html files on the first invocation of
> mapFileName.  mapFileName then returns null for any argument that's
> not download.cgi and an array consisting of all download_*.cgi files
> you need for download.cgi.
> 
> Let me know if you want to go that route and my description turns out
> to be too sketchy.
> 
> Cheers
> 
> Stefan
> 
> Footnotes:
> [1]  http://ant-contrib.sf.net/
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
>

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



RE: Jakarta jars binaries for JDK 1.3

2005-02-16 Thread Jose Alberto Rodriguez Ruiz
Hello again,

Just wanted to know if it did exist, not to discover after three weeks of
recompiling that jars where already somewhere. If not, no big deal.

Thanks,

José


-Message d'origine-
De : Henri Yandell [mailto:[EMAIL PROTECTED] 
Envoyé : mercredi 16 février 2005 18:43
À : Jakarta General List
Objet : RE: Jakarta jars binaries for JDK 1.3


Ditto for Commons. I'm pretty sure most of them are outputting 
1.2-compatible code from a 1.4 compiler. I'll also happily believe that 
that's not a perfect system :)

The only place I could imagine would have the 1.3 jars is either the 
nightly build (only Commons, and it doesn't afaik) or gump (does 1.4 and 
1.5). I don't think Gump want to be responsible for released jars either, 
so currently I'd suspect it'll need a fair bit of effort/movement to get 
1.3 jars created.

Sorry,

Hen

On Wed, 16 Feb 2005, Jose Alberto Rodriguez Ruiz wrote:

> Hello Will, and thank you very much for your time.
>
> Indeed no, it seems that there are some incompatibilities at the JVM level
> which means that not all 1.4 bytecode runs in 1.3 JVM. I have had to
> recompile turbine source and commons-configuration source only to be able
to
> make my webapp run.
>
> As errors appears only during runtime, I wonder whether I could find
> jakarta's binaries compiled 1.3 for the more-or-less-fifty-libraries-I-use
> in order for not to recompile all of them.
>
> However it is true, no need to touch velocity; it works "as it".
>
> Thanks,
>
> José
>
> -Message d'origine-
> De : Will Glass-Husain [mailto:[EMAIL PROTECTED]
> Envoyé : mercredi 16 février 2005 17:56
> À : Jakarta General List
> Objet : Re: Jakarta jars binaries for JDK 1.3
>
> The byte code should be the same -- as long as the library doesn't use any
> JDK 1.4 specific libraries, it should work fine under 1.3.  I can vouch
this
>
> is fine for Velocity.
>
> WILL
>
> - Original Message -
> From: "Jose Alberto Rodriguez Ruiz" <[EMAIL PROTECTED]>
> To: 
> Sent: Wednesday, February 16, 2005 2:04 AM
> Subject: Jakarta jars binaries for JDK 1.3
>
>
> Hello,
>
> I have a J2EE application built around Hibernate, Turbine, and
> Velocity, which I need to recompile to be able to run into a JDK1.3
> environment. This implies recompiling several common libraries, as well as
> Turbine itself and other components. I have sear the mirrors but it seems
> that all the available apache jars are now compiled with JDK 1.4
>
> My question is, is there any place to get ("old") jars compiled with
> JDK1.3? Any help will be much appreciated.
>
> Thank you very much,
>
> José Alberto Rodriguez Ruiz
>
> P.D.: If this is not the right list to ask this question, sorry in
advance.
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>


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



RE: Jakarta jars binaries for JDK 1.3

2005-02-16 Thread Henri Yandell
Ditto for Commons. I'm pretty sure most of them are outputting 
1.2-compatible code from a 1.4 compiler. I'll also happily believe that 
that's not a perfect system :)

The only place I could imagine would have the 1.3 jars is either the 
nightly build (only Commons, and it doesn't afaik) or gump (does 1.4 and 
1.5). I don't think Gump want to be responsible for released jars either, 
so currently I'd suspect it'll need a fair bit of effort/movement to get 
1.3 jars created.

Sorry,
Hen
On Wed, 16 Feb 2005, Jose Alberto Rodriguez Ruiz wrote:
Hello Will, and thank you very much for your time.
Indeed no, it seems that there are some incompatibilities at the JVM level
which means that not all 1.4 bytecode runs in 1.3 JVM. I have had to
recompile turbine source and commons-configuration source only to be able to
make my webapp run.
As errors appears only during runtime, I wonder whether I could find
jakarta's binaries compiled 1.3 for the more-or-less-fifty-libraries-I-use
in order for not to recompile all of them.
However it is true, no need to touch velocity; it works "as it".
Thanks,
José
-Message d'origine-
De : Will Glass-Husain [mailto:[EMAIL PROTECTED]
Envoyé : mercredi 16 février 2005 17:56
À : Jakarta General List
Objet : Re: Jakarta jars binaries for JDK 1.3
The byte code should be the same -- as long as the library doesn't use any
JDK 1.4 specific libraries, it should work fine under 1.3.  I can vouch this
is fine for Velocity.
WILL
- Original Message -
From: "Jose Alberto Rodriguez Ruiz" <[EMAIL PROTECTED]>
To: 
Sent: Wednesday, February 16, 2005 2:04 AM
Subject: Jakarta jars binaries for JDK 1.3
Hello,
I have a J2EE application built around Hibernate, Turbine, and
Velocity, which I need to recompile to be able to run into a JDK1.3
environment. This implies recompiling several common libraries, as well as
Turbine itself and other components. I have sear the mirrors but it seems
that all the available apache jars are now compiled with JDK 1.4
My question is, is there any place to get ("old") jars compiled with
JDK1.3? Any help will be much appreciated.
Thank you very much,
José Alberto Rodriguez Ruiz
P.D.: If this is not the right list to ask this question, sorry in advance.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

RE: Jakarta jars binaries for JDK 1.3

2005-02-16 Thread Jose Alberto Rodriguez Ruiz
Hello Will, and thank you very much for your time.

Indeed no, it seems that there are some incompatibilities at the JVM level
which means that not all 1.4 bytecode runs in 1.3 JVM. I have had to
recompile turbine source and commons-configuration source only to be able to
make my webapp run.

As errors appears only during runtime, I wonder whether I could find
jakarta's binaries compiled 1.3 for the more-or-less-fifty-libraries-I-use
in order for not to recompile all of them.

However it is true, no need to touch velocity; it works "as it".

Thanks,

José

-Message d'origine-
De : Will Glass-Husain [mailto:[EMAIL PROTECTED] 
Envoyé : mercredi 16 février 2005 17:56
À : Jakarta General List
Objet : Re: Jakarta jars binaries for JDK 1.3

The byte code should be the same -- as long as the library doesn't use any 
JDK 1.4 specific libraries, it should work fine under 1.3.  I can vouch this

is fine for Velocity.

WILL

- Original Message - 
From: "Jose Alberto Rodriguez Ruiz" <[EMAIL PROTECTED]>
To: 
Sent: Wednesday, February 16, 2005 2:04 AM
Subject: Jakarta jars binaries for JDK 1.3


Hello,

I have a J2EE application built around Hibernate, Turbine, and
Velocity, which I need to recompile to be able to run into a JDK1.3
environment. This implies recompiling several common libraries, as well as
Turbine itself and other components. I have sear the mirrors but it seems
that all the available apache jars are now compiled with JDK 1.4

My question is, is there any place to get ("old") jars compiled with
JDK1.3? Any help will be much appreciated.

Thank you very much,

José Alberto Rodriguez Ruiz

P.D.: If this is not the right list to ask this question, sorry in advance.


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


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


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



Re: Jakarta jars binaries for JDK 1.3

2005-02-16 Thread Will Glass-Husain
The byte code should be the same -- as long as the library doesn't use any 
JDK 1.4 specific libraries, it should work fine under 1.3.  I can vouch this 
is fine for Velocity.

WILL
- Original Message - 
From: "Jose Alberto Rodriguez Ruiz" <[EMAIL PROTECTED]>
To: 
Sent: Wednesday, February 16, 2005 2:04 AM
Subject: Jakarta jars binaries for JDK 1.3

Hello,
I have a J2EE application built around Hibernate, Turbine, and
Velocity, which I need to recompile to be able to run into a JDK1.3
environment. This implies recompiling several common libraries, as well as
Turbine itself and other components. I have sear the mirrors but it seems
that all the available apache jars are now compiled with JDK 1.4
My question is, is there any place to get ("old") jars compiled with
JDK1.3? Any help will be much appreciated.
Thank you very much,
José Alberto Rodriguez Ruiz
P.D.: If this is not the right list to ask this question, sorry in advance.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Jakarta jars binaries for JDK 1.3

2005-02-16 Thread Jose Alberto Rodriguez Ruiz
Hello,

I have a J2EE application built around Hibernate, Turbine, and
Velocity, which I need to recompile to be able to run into a JDK1.3
environment. This implies recompiling several common libraries, as well as
Turbine itself and other components. I have sear the mirrors but it seems
that all the available apache jars are now compiled with JDK 1.4

My question is, is there any place to get ("old") jars compiled with
JDK1.3? Any help will be much appreciated.

Thank you very much,

José Alberto Rodriguez Ruiz

P.D.: If this is not the right list to ask this question, sorry in advance.


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