Re: Upgrading to Tapestry 4.0 and localisation message functions

2005-06-25 Thread Howard Lewis Ship
I'm not sure how or why I removed those methods; you are right, they exist in 3.0 and should, at most, be deprecated in 4.0. Please add a bug and I will fix it for beta-2. This is one area where annotations are quite helpful! The @Message annotation allows you to make any method a wrapper around

Upgrading to Tapestry 4.0 and localisation message functions

2005-06-25 Thread Matt Doran
Hi there, I just downloaded Tapestry 4 beta and tried to compile an application we're currently building using Tapestry 3.0. We're still in development and are really interested in the new features in 4.0. A couple of the compile problems relate to changes on the services and engine (which will

Re: Does spindle helps?

2005-06-25 Thread Michel Salim
This is slightly unrelated, but since this thread seems to be quite active, guess I'll ask here: What's the historical reason behind Spindle using the com.iw namespace instead of, say, net.sf.spindle? Just curious.. fwiw, it works fine for me on 3.1RC1 / Mac. Thanks, - Michel 2005/6/26, Geoff

Re: Some Spindle news.

2005-06-25 Thread Viktor Szathmary
On 6/25/05, Geoff Longman <[EMAIL PROTECTED]> wrote: > When I create 3.2.0 I will fix it so that automatic update discovery > will work. That means the update url will change. I think I will try > this.. the announcement of 3.2.0 will be the last overt announcement > to the tapestry user list. In

Re: Does spindle helps?

2005-06-25 Thread Geoff Longman
s'ok. I'm downloading Eclipse 3.1RC4 right now and will be creating Spindle 3.2.0 which will be an Eclipse 3.1 specific version. 3.2.0 will not be backwards compatible with Eclipse 3.0 so I should be able to eliminate some of the "kludges" I was using to ensure Spindle would run in both Eclipse 3.

Re: Does spindle helps?

2005-06-25 Thread Vinicius Carvalho
Sorry all, most to you Geoff, but its really frustrating having so much trouble when updating my eclipse version. I'm downloading Eclipse RC2 and RC3 and giving a shot. I'm really sorry, I've been awaken for hours doing my Tapestry presentation and should not put my frustrations on you guys, I'm a

Re: Does spindle helps?

2005-06-25 Thread John Hendrikx
Vinicius Carvalho wrote: Well I'm starting to believe that the help provided by spindle is doubtful. It's a beta plugin, every time I try to get it a new version, it simply does NOT work with my eclipse version (3.1) so I gotta go back to 3.1.20 (the only one that seems to work with minor bugs).

Re: TAPESTRY + VELOCITY

2005-06-25 Thread Robert Zeigler
I don't think it's impossible... just depends on how much work you want to put into it. The trick would probably be to do something like the following... write your template in vtl. Write a base component, maybe "BaseVelocityTemplateComponent" or something. In the renderComponent method, grab the

Re: Some Spindle news.

2005-06-25 Thread Geoff Longman
When I create 3.2.0 I will fix it so that automatic update discovery will work. That means the update url will change. I think I will try this.. the announcement of 3.2.0 will be the last overt announcement to the tapestry user list. In it's place I'll add a sig with enough info that someone can f

TAPESTRY + VELOCITY

2005-06-25 Thread Axl Rose
Hello everyone! I have been thinking in using tapestry + velocity. I want to reduce the code i have to write in the html tapestry=3DB4s template, i was thinking in using velocity for that, i mean, i want to encapsulate the tapestry code for the components tags like this: $component.getComponent(

Re: Form validation issue

2005-06-25 Thread Pablo Ruggia
I've done that, but i've subclassed ValidationDelegate and override record methods, so when some validator records an error, I can select to record it or discard it. I've to tell you that is not that easy. On 6/25/05, john mcteague <[EMAIL PROTECTED]> wrote: > > I have the following form valida

Re: [ANNOUNCE] Tapestry 4.0-beta-1

2005-06-25 Thread Vjeran Marcinko
Not that I blame anyone, because there was so little time recently for developers to do all that was required, but distribution .zip seems quite confusing. It seems more as plain CVS checkout made for developing, than as proper distribution package for end users. There are bunch of unnecessary

Re: value = object.property

2005-06-25 Thread Howard Lewis Ship
The error is self explanatory; module was null, so there's no way to update module.name. You need to ensure that there's a non-null value for the module property; perhaps make it persistent. On 6/24/05, Eng Lark Eric Tan <[EMAIL PROTECTED]> wrote: > Dear all, > > How can I update this? Shoul

Re: [ANNOUNCE] Tapestry 4.0-beta-1

2005-06-25 Thread Vjeran Marcinko
Congrats! Though, looking at recent wild pace of development caused by JavaOne Web Framework Smackdown, I just hope no serious bug will pop up during your presentation ;) -Vjeran - Original Message - From: "Howard Lewis Ship" <[EMAIL PROTECTED]> To: "Tapestry users" ; "Jakarta Gener

Re: [ANNOUNCE] Tapestry 4.0-beta-1

2005-06-25 Thread Kevin Menard
Howard Lewis Ship wrote: > Tapestry is distributed as a combined binary/source distribution, and > a seperate documentation distribution. What is required to build this? Am I correct in assuming the process is like Tapestry 3.0, with non ASF libs being fetched by an ant script? If so, what real

Re: Does spindle helps?

2005-06-25 Thread Kevin Menard
Geoff Longman wrote: > Have you logged a bug against Spindle? Done *anything* to describe > your problems in a way that can be examined and possibly addressed? With that said, Geoff is very responsive. Every bug I have ever logged has been fixed. And they have been fixed in a very timely manner.

Re: Does spindle helps?

2005-06-25 Thread Howard Lewis Ship
That is a MOST UNFAIR way to vent your frustration with Eclipse. It's unfair to Geoff. Eclipse has been a moving target headed toward 3.1, so it's no wonder there are going to be teething issues. You should be lauding Geoff for working so hard, and fixing bugs, and trying to keep up with Eclipse,

[ANNOUNCE] Tapestry 4.0-beta-1

2005-06-25 Thread Howard Lewis Ship
The first beta release of Tapestry 4.0 is now available. Tapestry is a component based web application framework that provides lots of functionality with minimal Java coding, and creates an environment that supports high levels of reuse. Tapestry 4.0 represents a significant advance over Tapestry 3

communicate between components

2005-06-25 Thread sky yjck
hi,list I've some confused question about the communicate between components. Is it impossible communicate between components without the page instance? For example,I want to design a components structure with parent/children relationship : The "a" is an "out" direction

Form validation issue

2005-06-25 Thread john mcteague
I have the following form validation scenario that is causing some problems: On my page I have two sets of three ValidFields, plus a Link Submit component for each set: [ValidField1-1][ValidField1-2][ValidField[1-3] [LinkSubmit1] [ValidField2-1][ValidFie

Re: Building Tapestry 4.0 from CVS

2005-06-25 Thread seloha .
Thanks again Erik Paul On Jun 25, 2005, at 4:27 AM, seloha . wrote: I downloaded Java15Release1.dmg twice and received an invalid checksum each time. I can mount it with hdid and skip the checksum error but am a bit concerned about doing this. Did you get an invalid checksum on the down

Re: Does spindle helps?

2005-06-25 Thread Geoff Longman
Have you logged a bug against Spindle? Done *anything* to describe your problems in a way that can be examined and possibly addressed? Geoff On 6/24/05, Vinicius Carvalho <[EMAIL PROTECTED]> wrote: > Well I'm starting to believe that the help provided by spindle is > doubtful. It's a beta plugin,

Re: Building Tapestry 4.0 from CVS

2005-06-25 Thread Erik Hatcher
On Jun 25, 2005, at 4:27 AM, seloha . wrote: I downloaded Java15Release1.dmg twice and received an invalid checksum each time. I can mount it with hdid and skip the checksum error but am a bit concerned about doing this. Did you get an invalid checksum on the download? I don't recall the

Re: Building Tapestry 4.0 from CVS

2005-06-25 Thread seloha .
Thanks Erik, I downloaded Java15Release1.dmg twice and received an invalid checksum each time. I can mount it with hdid and skip the checksum error but am a bit concerned about doing this. Did you get an invalid checksum on the download? Paul On Jun 24, 2005, at 4:16 AM, seloha . wrote: