You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tapestry.apache.org by RachelS <re...@gmail.com> on 2007/07/17 14:48:40 UTC

Tacos this.form.event has no properties

I am using Tapestry 4.0.2 and Tacos 4.0.1

On a page, I have 2 forms
* the first is on a component and is not ajaxy in any way
* the second is on the page and is an ajax form

In the component (which is not an ajax form) there is a property selection
which causes the form to refresh using the onchange method of the property
selection:
onchange="javascript:this.form.events.refresh();

When the ajax form IS NOT on the page, this form refresh works perfectly.
However, when I add the ajax form to the page and click on the property
selection drop down, then I get the error "this.form.events has no
properties".

Can anyone tell me why it is working in this way and how I can get the
refresh to work again?

Many thanks,
Rachel

-- 
View this message in context: http://www.nabble.com/Tacos-this.form.event-has-no-properties-tf4096646.html#a11648612
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Select component problem in T5

Posted by Allen Guo <el...@gmail.com>.
Sorry, it should be getCurrencyModel().
But the code is similar to getCountryCode()

Allen Guo 写道:
> Hi Nick,
>
> Below is definitely code I call the method to get the model .
> .........
> public SelectModel getCountryModel() {
> List<OptionModel> options = new ArrayList<OptionModel>();
> List list = service.getBaseCountryDao().findAll(); // fetch the list 
> from database
> if (list == null){
> return null;
> }
> Iterator iter = list.iterator();
> while (iter.hasNext()) {
> Country obj = (Country) iter.next();
> OptionModel option = new OptionModelImpl(obj.getName(), true, obj
> .getCode());
> options.add(option);
> }
> return new SelectModelImpl(null, options);
> }
> ..........
>
>
> Nick Westgate 写道:
>> The problem is not the disabled="false".
>> Last time I asked you to post your model code, but you didn't
>>
>> I'm pretty sure the problem is in your model.
>>
>> Cheers,
>> Nick.
>>
>>
>> Allen Guo wrote:
>>> Hi All,
>>>
>>> When I use select
>>> <select disabled="false" t:id="currency_id" t:type="select" 
>>> model="currencyModel" value="currency" size="1"/>
>>> I always get the generate html code like this <select 
>>> disabled="disabled" id="currency_id" name="currency_id" size="1">
>>> <option disabled="disabled" value="$">$<option disabled="disabled" 
>>> value="CAD_$">CAD_$
>>> <option disabled="disabled" selected="selected" value="RMB">RMB
>>> <option disabled="disabled" value="GB">GB</select><img alt="[Error]" 
>>> class="t-error-icon t-invisible" id="currency_id:icon" 
>>> src="/bogo/assets/tapestry/field-error-marker.png">
>>>
>>> You see, every <option tag include a property disabled="disabled" . 
>>> So I can't change the select in FireFox, but I can in IE.
>>>
>>> I remember I have ever asked the propblem before. Someone tell me 
>>> that this may is my fault . I'm told I may don't use disable="false" 
>>> in <select
>>> In fact, I exactlly use disabled="false". But the problem still 
>>> occurred.
>>>
>>> Can anybody give me some sugesstion?
>>>
>>> Allen Guo
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>>
>>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>>
>>
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Select component problem in T5

Posted by Allen Guo <el...@gmail.com>.
Thanks Nick again.

Nick Westgate 写道:
> Because individual options can be disabled.
>
> Also, you shouldn't really use OptionModelImpl because it is
> an internal class and may change in the future.
>
> (1) You can pass a map (names to codes) and Tapestry will create
> the model for you.
>
> (2) More work, implement the SelectModel interface. Daniel Jue
> posted an interesting generic solution here:
> http://www.phy6.net/wiki/tiki-index.php?page=Tapestry+5+GenericSelectionModel 
>
>
> Cheers,
> Nick.
>
>
> Allen Guo wrote:
>> I changed
>> OptionModel option = new OptionModelImpl(obj.getName(), true, 
>> obj.getCode());
>> to
>> OptionModel option = new OptionModelImpl(obj.getName(), false, 
>> obj.getCode());
>>
>> It works fine. But I don't know why OptionModelImpl construction need 
>> the second parameter.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Select component problem in T5

Posted by Nick Westgate <ni...@key-planning.co.jp>.
Because individual options can be disabled.

Also, you shouldn't really use OptionModelImpl because it is
an internal class and may change in the future.

(1) You can pass a map (names to codes) and Tapestry will create
the model for you.

(2) More work, implement the SelectModel interface. Daniel Jue
posted an interesting generic solution here:
http://www.phy6.net/wiki/tiki-index.php?page=Tapestry+5+GenericSelectionModel

Cheers,
Nick.


Allen Guo wrote:
> I changed
> OptionModel option = new OptionModelImpl(obj.getName(), true, 
> obj.getCode());
> to
> OptionModel option = new OptionModelImpl(obj.getName(), false, 
> obj.getCode());
> 
> It works fine. But I don't know why OptionModelImpl construction need 
> the second parameter.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Select component problem in T5

Posted by Allen Guo <el...@gmail.com>.
I changed
OptionModel option = new OptionModelImpl(obj.getName(), true, 
obj.getCode());
to
OptionModel option = new OptionModelImpl(obj.getName(), false, 
obj.getCode());

It works fine. But I don't know why OptionModelImpl construction need 
the second parameter.



Allen Guo 写道:
> Hi Nick,
>
> Below is definitely code I call the method to get the model .
> .........
> public SelectModel getCountryModel() {
> List<OptionModel> options = new ArrayList<OptionModel>();
> List list = service.getBaseCountryDao().findAll(); // fetch the list 
> from database
> if (list == null){
> return null;
> }
> Iterator iter = list.iterator();
> while (iter.hasNext()) {
> Country obj = (Country) iter.next();
> OptionModel option = new OptionModelImpl(obj.getName(), true, obj
> .getCode());
> options.add(option);
> }
> return new SelectModelImpl(null, options);
> }
> ..........
>
>
> Nick Westgate 写道:
>> The problem is not the disabled="false".
>> Last time I asked you to post your model code, but you didn't
>>
>> I'm pretty sure the problem is in your model.
>>
>> Cheers,
>> Nick.
>>
>>
>> Allen Guo wrote:
>>> Hi All,
>>>
>>> When I use select
>>> <select disabled="false" t:id="currency_id" t:type="select" 
>>> model="currencyModel" value="currency" size="1"/>
>>> I always get the generate html code like this <select 
>>> disabled="disabled" id="currency_id" name="currency_id" size="1">
>>> <option disabled="disabled" value="$">$<option disabled="disabled" 
>>> value="CAD_$">CAD_$
>>> <option disabled="disabled" selected="selected" value="RMB">RMB
>>> <option disabled="disabled" value="GB">GB</select><img alt="[Error]" 
>>> class="t-error-icon t-invisible" id="currency_id:icon" 
>>> src="/bogo/assets/tapestry/field-error-marker.png">
>>>
>>> You see, every <option tag include a property disabled="disabled" . 
>>> So I can't change the select in FireFox, but I can in IE.
>>>
>>> I remember I have ever asked the propblem before. Someone tell me 
>>> that this may is my fault . I'm told I may don't use disable="false" 
>>> in <select
>>> In fact, I exactlly use disabled="false". But the problem still 
>>> occurred.
>>>
>>> Can anybody give me some sugesstion?
>>>
>>> Allen Guo
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>>
>>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>>
>>
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Select component problem in T5

Posted by Allen Guo <el...@gmail.com>.
Hi Nick,

Below is definitely code I call the method to get the model .
.........
public SelectModel getCountryModel() {
List<OptionModel> options = new ArrayList<OptionModel>();
List list = service.getBaseCountryDao().findAll(); // fetch the list 
from database
if (list == null){
return null;
}
Iterator iter = list.iterator();
while (iter.hasNext()) {
Country obj = (Country) iter.next();
OptionModel option = new OptionModelImpl(obj.getName(), true, obj
.getCode());
options.add(option);
}
return new SelectModelImpl(null, options);
}
..........


Nick Westgate 写道:
> The problem is not the disabled="false".
> Last time I asked you to post your model code, but you didn't
>
> I'm pretty sure the problem is in your model.
>
> Cheers,
> Nick.
>
>
> Allen Guo wrote:
>> Hi All,
>>
>> When I use select
>> <select disabled="false" t:id="currency_id" t:type="select" 
>> model="currencyModel" value="currency" size="1"/>
>> I always get the generate html code like this <select 
>> disabled="disabled" id="currency_id" name="currency_id" size="1">
>> <option disabled="disabled" value="$">$<option disabled="disabled" 
>> value="CAD_$">CAD_$
>> <option disabled="disabled" selected="selected" value="RMB">RMB
>> <option disabled="disabled" value="GB">GB</select><img alt="[Error]" 
>> class="t-error-icon t-invisible" id="currency_id:icon" 
>> src="/bogo/assets/tapestry/field-error-marker.png">
>>
>> You see, every <option tag include a property disabled="disabled" . 
>> So I can't change the select in FireFox, but I can in IE.
>>
>> I remember I have ever asked the propblem before. Someone tell me 
>> that this may is my fault . I'm told I may don't use disable="false" 
>> in <select
>> In fact, I exactlly use disabled="false". But the problem still 
>> occurred.
>>
>> Can anybody give me some sugesstion?
>>
>> Allen Guo
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>>
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Select component problem in T5

Posted by Nick Westgate <ni...@key-planning.co.jp>.
The problem is not the disabled="false".
Last time I asked you to post your model code, but you didn't

I'm pretty sure the problem is in your model.

Cheers,
Nick.


Allen Guo wrote:
> Hi All,
> 
> When I use select
>  <select disabled="false" t:id="currency_id" t:type="select" 
> model="currencyModel" value="currency" size="1"/>
> I always get the generate html code like this  <select 
> disabled="disabled" id="currency_id" name="currency_id" size="1">
>         <option disabled="disabled" value="$">$<option 
> disabled="disabled" value="CAD_$">CAD_$
>         <option disabled="disabled" selected="selected" value="RMB">RMB
>         <option disabled="disabled" value="GB">GB</select><img 
> alt="[Error]" class="t-error-icon t-invisible" id="currency_id:icon" 
> src="/bogo/assets/tapestry/field-error-marker.png">
> 
> You see, every <option tag include a property disabled="disabled" . So I 
> can't change the select  in FireFox, but I can in IE.
> 
> I remember I have ever asked the propblem before. Someone tell me that 
> this may is my fault . I'm told I may don't use disable="false" in <select
> In fact, I exactlly use disabled="false". But the problem still occurred.
> 
> Can anybody give me some sugesstion?
> 
> Allen Guo
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
> 
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Select component problem in T5

Posted by Allen Guo <el...@gmail.com>.
Hi All,

When I use select
  <select disabled="false" t:id="currency_id" t:type="select" 
model="currencyModel" value="currency" size="1"/>
I always get the generate html code like this 
  <select disabled="disabled" id="currency_id" name="currency_id" size="1">
         <option disabled="disabled" value="$">$<option 
disabled="disabled" value="CAD_$">CAD_$
         <option disabled="disabled" selected="selected" value="RMB">RMB
         <option disabled="disabled" value="GB">GB</select><img 
alt="[Error]" class="t-error-icon t-invisible" id="currency_id:icon" 
src="/bogo/assets/tapestry/field-error-marker.png">

You see, every <option tag include a property disabled="disabled" . So I 
can't change the select  in FireFox, but I can in IE.

I remember I have ever asked the propblem before. Someone tell me that 
this may is my fault . I'm told I may don't use disable="false" in <select
In fact, I exactlly use disabled="false". But the problem still occurred.

Can anybody give me some sugesstion?

Allen Guo


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Tacos this.form.event has no properties

Posted by RachelS <re...@gmail.com>.
Thank you for your reply.

So if I understand correctly, tapestry has a form.js and tacos has a form.js
and when you have both a normal form and an ajax form on the page, the tacos
form.js is the one that gets used?

I tried adding the tacos.refreshForm instead, but now when I click on that
property selection, nothing happens. No errors either.


andyhot wrote:
> 
> tacos had to override some of tapestry's logic - so it includes its own
> version
> of form.js which doesn't does NOT add additional functions to dom nodes
> 
> Anyway, try
> tacos.refreshForm(frmId)
> 

-- 
View this message in context: http://www.nabble.com/Tacos-this.form.event-has-no-properties-tf4096646.html#a11663113
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Tacos this.form.event has no properties

Posted by Andreas Andreou <an...@di.uoa.gr>.
tacos had to override some of tapestry's logic - so it includes its own
version
of form.js which doesn't does NOT add additional functions to dom nodes

Anyway, try
tacos.refreshForm(frmId)

On 7/17/07, RachelS <re...@gmail.com> wrote:
>
>
> I am using Tapestry 4.0.2 and Tacos 4.0.1
>
> On a page, I have 2 forms
> * the first is on a component and is not ajaxy in any way
> * the second is on the page and is an ajax form
>
> In the component (which is not an ajax form) there is a property selection
> which causes the form to refresh using the onchange method of the property
> selection:
> onchange="javascript:this.form.events.refresh();
>
> When the ajax form IS NOT on the page, this form refresh works perfectly.
> However, when I add the ajax form to the page and click on the property
> selection drop down, then I get the error "this.form.events has no
> properties".
>
> Can anyone tell me why it is working in this way and how I can get the
> refresh to work again?
>
> Many thanks,
> Rachel
>
> --
> View this message in context:
> http://www.nabble.com/Tacos-this.form.event-has-no-properties-tf4096646.html#a11648612
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>


-- 
Andreas Andreou - andyhot@apache.org - http://andyhot.di.uoa.gr
Tapestry / Tacos developer
Open Source / JEE Consulting

Re: Is T5.0.6 in progress

Posted by 小司 <mo...@gmail.com>.
Yes adasal,you are great.I'm a terminal user.I am unable to do what
one hopes to do
until now.I  only learned how to use form in T5.

2007/7/31, adasal <ad...@gmail.com>:
> I think this is a question from moonfly2004.
> The way to help, I think, would be to work up examples in the wiki and as
> you hit features that aren't implemented, suggest implementations and
> workarounds. This will flesh out the functionality of T5 and provide
> starting points for committers. You may then take part in the discussion as
> to how the feature should be implemented. There is a more formal Apache
> process for this too, I think. But, if so it would be up to others to
> clarify.
> Adam
>
> On 27/07/07, 小司 <mo...@gmail.com> wrote:
> >
> > All of us help him??
> > Thanks Howard
> >
> >
> > 2007/7/27, Nick Westgate <ni...@key-planning.co.jp>:
> > > We all want it to reach production quality soon, but what it is
> > > now took Howard a couple of months working full-time to achieve.
> > > Now he is working to pay the rent, so we must be patient.
> > >
> > > But it's certainly not dead, or even standing still ...
> > >
> > > (1) Dan Adams has been voted as a new committer - he will focus on T5.
> > > (2) Howard logged a JIRA issue for AJAX. I expect to be waiting for
> > >     quite some time, and then I expect some big commits to appear. ;-)
> > >
> > > Cheers,
> > > Nick.
> > >
> > >
> > > 蝈蝈龙 wrote:
> > > > Everyday I update the tp5 from svn trunk, but it seems few codes or no
> > > > codes
> > > > was committed recently.
> > > > I'm too anxious to see the tp5 release.
> > > > Now I'm developing a typical web2.0 application use T5 just for prove
> > > > tp5 is
> > > > enough strong , convenient and simple .
> > > > But using current preview release , I have to implement the many
> > validator,
> > > > valueencoder, many basic components , and stand some tiny error.
> > > >
> > > > I love t5. I hope tp5 become a mature and stable web framework as
> > early as
> > > > possible.
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > > For additional commands, e-mail: users-help@tapestry.apache.org
> > >
> > >
> >
> >
> > --
> > 得与失都是生活
> >
>


-- 
得与失都是生活

Re: Is T5.0.6 in progress

Posted by adasal <ad...@gmail.com>.
I think this is a question from moonfly2004.
The way to help, I think, would be to work up examples in the wiki and as
you hit features that aren't implemented, suggest implementations and
workarounds. This will flesh out the functionality of T5 and provide
starting points for committers. You may then take part in the discussion as
to how the feature should be implemented. There is a more formal Apache
process for this too, I think. But, if so it would be up to others to
clarify.
Adam

On 27/07/07, 小司 <mo...@gmail.com> wrote:
>
> All of us help him??
> Thanks Howard
>
>
> 2007/7/27, Nick Westgate <ni...@key-planning.co.jp>:
> > We all want it to reach production quality soon, but what it is
> > now took Howard a couple of months working full-time to achieve.
> > Now he is working to pay the rent, so we must be patient.
> >
> > But it's certainly not dead, or even standing still ...
> >
> > (1) Dan Adams has been voted as a new committer - he will focus on T5.
> > (2) Howard logged a JIRA issue for AJAX. I expect to be waiting for
> >     quite some time, and then I expect some big commits to appear. ;-)
> >
> > Cheers,
> > Nick.
> >
> >
> > 蝈蝈龙 wrote:
> > > Everyday I update the tp5 from svn trunk, but it seems few codes or no
> > > codes
> > > was committed recently.
> > > I'm too anxious to see the tp5 release.
> > > Now I'm developing a typical web2.0 application use T5 just for prove
> > > tp5 is
> > > enough strong , convenient and simple .
> > > But using current preview release , I have to implement the many
> validator,
> > > valueencoder, many basic components , and stand some tiny error.
> > >
> > > I love t5. I hope tp5 become a mature and stable web framework as
> early as
> > > possible.
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > For additional commands, e-mail: users-help@tapestry.apache.org
> >
> >
>
>
> --
> 得与失都是生活
>

Re: Is T5.0.6 in progress

Posted by 小司 <mo...@gmail.com>.
All of us help him??
Thanks Howard


2007/7/27, Nick Westgate <ni...@key-planning.co.jp>:
> We all want it to reach production quality soon, but what it is
> now took Howard a couple of months working full-time to achieve.
> Now he is working to pay the rent, so we must be patient.
>
> But it's certainly not dead, or even standing still ...
>
> (1) Dan Adams has been voted as a new committer - he will focus on T5.
> (2) Howard logged a JIRA issue for AJAX. I expect to be waiting for
>     quite some time, and then I expect some big commits to appear. ;-)
>
> Cheers,
> Nick.
>
>
> 蝈蝈龙 wrote:
> > Everyday I update the tp5 from svn trunk, but it seems few codes or no
> > codes
> > was committed recently.
> > I'm too anxious to see the tp5 release.
> > Now I'm developing a typical web2.0 application use T5 just for prove
> > tp5 is
> > enough strong , convenient and simple .
> > But using current preview release , I have to implement the many validator,
> > valueencoder, many basic components , and stand some tiny error.
> >
> > I love t5. I hope tp5 become a mature and stable web framework as early as
> > possible.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>


-- 
得与失都是生活

Re: Is T5.0.6 in progress

Posted by Nick Westgate <ni...@key-planning.co.jp>.
We all want it to reach production quality soon, but what it is
now took Howard a couple of months working full-time to achieve.
Now he is working to pay the rent, so we must be patient.

But it's certainly not dead, or even standing still ...

(1) Dan Adams has been voted as a new committer - he will focus on T5.
(2) Howard logged a JIRA issue for AJAX. I expect to be waiting for
     quite some time, and then I expect some big commits to appear. ;-)

Cheers,
Nick.


蝈蝈龙 wrote:
> Everyday I update the tp5 from svn trunk, but it seems few codes or no 
> codes
> was committed recently.
> I'm too anxious to see the tp5 release.
> Now I'm developing a typical web2.0 application use T5 just for prove 
> tp5 is
> enough strong , convenient and simple .
> But using current preview release , I have to implement the many validator,
> valueencoder, many basic components , and stand some tiny error.
> 
> I love t5. I hope tp5 become a mature and stable web framework as early as
> possible.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Is T5.0.6 in progress

Posted by 蝈蝈龙 <el...@gmail.com>.
Everyday I update the tp5 from svn trunk, but it seems few codes or no codes
was committed recently.
I'm too anxious to see the tp5 release.
Now I'm developing a typical web2.0 application use T5 just for prove tp5 is
enough strong , convenient and simple .
But using current preview release , I have to implement the many validator,
valueencoder, many basic components , and stand some tiny error.

I love t5. I hope tp5 become a mature and stable web framework as early as
possible.

2007/7/26, Daniel Jue <te...@gmail.com>:
>
> Was there something in particular you were hoping to see committed?
> Or are you asking such a question just to entertain us?
>
> On 7/26/07, Massimo Lusetti <ml...@gmail.com> wrote:
> > On 7/26/07, Allen Guo <el...@gmail.com> wrote:
> >
> > > Recently it seems the T5 trunk haven't any code update.
> > > Is T5 dead?
> >
> > Of course it's dead. Why you shuold think otherwise?
> >
> > --
> > Massimo
> > http://meridio.blogspot.com
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > For additional commands, e-mail: users-help@tapestry.apache.org
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>

Re: Is T5.0.6 in progress

Posted by Daniel Jue <te...@gmail.com>.
Was there something in particular you were hoping to see committed?
Or are you asking such a question just to entertain us?

On 7/26/07, Massimo Lusetti <ml...@gmail.com> wrote:
> On 7/26/07, Allen Guo <el...@gmail.com> wrote:
>
> > Recently it seems the T5 trunk haven't any code update.
> > Is T5 dead?
>
> Of course it's dead. Why you shuold think otherwise?
>
> --
> Massimo
> http://meridio.blogspot.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Is T5.0.6 in progress

Posted by Massimo Lusetti <ml...@gmail.com>.
On 7/26/07, Allen Guo <el...@gmail.com> wrote:

> Recently it seems the T5 trunk haven't any code update.
> Is T5 dead?

Of course it's dead. Why you shuold think otherwise?

-- 
Massimo
http://meridio.blogspot.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Is T5.0.6 in progress

Posted by Robin Helgelin <lo...@gmail.com>.
On 7/26/07, Allen Guo <el...@gmail.com> wrote:
> Hi All,
>
> Recently it seems the T5 trunk haven't any code update.

Why whould it be dead? Last commit was 18 hours ago.

-- 
        regards,
        Robin

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Is T5.0.6 in progress

Posted by Allen Guo <el...@gmail.com>.
Hi All,

Recently it seems the T5 trunk haven't any code update.
Is T5 dead?


Thanks
Allen Guo

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org