Re: What happened to Tapidea (IntelliJ IDEA Plugin)

2008-02-09 Thread Sven Homburg
Emmanuel,

gates beginning was i a garage, and everybody ask him who need an OS with
windows.

2008/2/9, Emmanuel Sowah [EMAIL PROTECTED]:

 Hugo,

 So you think you have the greatest business model with this Loomy thing
 and
 that you and your company would be making millions?
 How many Tapestry users are there? Stop dreaming, baby.

 On Feb 8, 2008 5:30 PM, Hugo Palma [EMAIL PROTECTED] wrote:

  It's very much active but not as TapIDEA.
  I actually brought the former TapIDEA into the company i work for now
  and we're investing a lot of time and effort in implement a great
 plugin.
  So TapIDEA is now called Loomy.
 
  We're going to get the plugin site up and running very soon and will
  also release a first beta of the plugin.
  Also, Loomy is no longer an open-source project so it won't be free for
  commercial use. Still, we'll provide free open-source licenses.
 
  I'll make a proper announcement when the plugin site goes live :o)
 
  Anyway, if anyone is interested in trying out the plugin just email me.
  Keep in mind that for now the plugin only supports IntelliJ IDEA 6.x.
 
  David Marquis wrote:
   Hi!
  
   I just joined the mailing list, and I would like to say first that T5
   looks very promising... can't wait to get my hands on it and start
   playing with it (our next project might be on that platform!)
  
   I have a question regarding the Tapidea plugin for IntelliJ IDEA :
   does anybody know if the project is still alive ?
  
   Thanks!
  
   David
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 




-- 
with regards
Sven Homburg


Re: What happened to Tapidea (IntelliJ IDEA Plugin)

2008-02-09 Thread Robin Helgelin
On Feb 9, 2008 9:14 AM, Sven Homburg [EMAIL PROTECTED] wrote:
 Emmanuel,

 gates beginning was i a garage, and everybody ask him who need an OS with
 windows.

Don't bother, he's just trying to troll again.

-- 
regards,
Robin

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



T5: ActionLink/Zone components inside a loop

2008-02-09 Thread Travis McLeskey

When an ActionLink and Zone appear together in a loop like this:

t:loop source=items value=item
  t:actionlink zone=myzonego!/t:actionlink
  t:zone t:id=myzonein the zone?/t:zone
  br /
/t:loop

Clicking the go! link from any iteration only affects the Zone from  
the first iteration. How do I connect each ActionLink to its  
corresponding Zone? I tried injecting the Zone into the java class and  
then using zone=${thezone.id} in the actionlink, but then each  
ActionLink was connected to the Zone from the *previous* iteration.


Thanks!
Travis


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



Re: Zone component - Having a progress indicator.

2008-02-09 Thread César Lesc
I think T5 is using prototype to make ajax calls, you can use the
Ajax.Resonders.register to register JS functions that monitor the Ajax
activity.

César.

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



Re: T5: ActionLink/Zone components inside a loop

2008-02-09 Thread Howard Lewis Ship
Ajax constructs go outside of Tapestry's understanding of the page
construction.  It relies upon the developer to generate unique zone
ids.

In your situation, I would have the setItem() method generate a unique
zone id as a side effect and expose that as a proprty used by both the
ActionLink and the Zone.

On Feb 8, 2008 11:40 PM, Travis McLeskey [EMAIL PROTECTED] wrote:
 When an ActionLink and Zone appear together in a loop like this:

 t:loop source=items value=item
t:actionlink zone=myzonego!/t:actionlink
t:zone t:id=myzonein the zone?/t:zone
br /
 /t:loop

 Clicking the go! link from any iteration only affects the Zone from
 the first iteration. How do I connect each ActionLink to its
 corresponding Zone? I tried injecting the Zone into the java class and
 then using zone=${thezone.id} in the actionlink, but then each
 ActionLink was connected to the Zone from the *previous* iteration.

 Thanks!
 Travis


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





-- 
Howard M. Lewis Ship

Creator Apache Tapestry and Apache HiveMind

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



[Hint] Pages in subpackages not loaded, if page and subpackage have the same name

2008-02-09 Thread nillehammer
Hello fellow users,

I have just faced a little problem. I have searched  the online documentation 
of  tapestry 5, this maillist and google for a solution. As I did not find 
anything apropriate, I think this might be worth a mail.

I obviously chose a very stupid packages/classes hirarchy:
eu.domain.app.pages.Menu.java
eu.domain.app.pages.menu.Subpage1.java
eu.domain.app.pages.menu.Subpage2.java

This results in logical page names (and corresponding URLs):
menu
menu/subpage1
menu/subpage2

Now clicking a link ...menu/subpage1 or .../menu/subpage2 neither of the two 
pages ever loads. The page named menu allways shows up. I guess this 
behaviour occours, because the remaining part of the URL after menu/ is 
handed to the page named menu as context rather than requesting the subpages. 
So do not do this.

Kind regards, nillehammer

P.S. My standing ovations to the tapestry developers. They have given the term 
straight forward a whole new meaning. Keep up the great work! THX

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