Re: T5: Sharing Tapestry and Php apps

2008-12-01 Thread Mark W. Shead
You should be able to run Apache with PHP on port 80 and use the proxy module to map in the Tapestry application (running on another port). Something along the lines of: ProxyPass /myapp http://localhost:8081/myapp ProxyPassReverse /myapp http://localhost:8081/myapp This document wil

Re: [T5] Grid cell labels can't be overridden

2008-12-01 Thread SergeEby
Hi, As a workaround, maybe this example could help: http://code.google.com/p/tapestry5-appfuse/source/browse/trunk/src/main/java/org/appfuse/webapp/pages/admin/UserList.java /Serge Andy Pahne-6 wrote: > > > > https://issues.apache.org/jira/browse/TAP5-395 > > > > Howard Lewis Ship schr

T5: Sharing Tapestry and Php apps

2008-12-01 Thread Angelo Chen
Hi, I have an running T5 app, it uses port 80 and the index.tmp/index.java captures everything passed to the domain: www.example.comm, www.example.com/123, www.example.com/list... now I need to install a phh based webmail, for that I installed Apache web server in port 8080: www.example.com:80

Re: [T5] Grid cell labels can't be overridden

2008-12-01 Thread Andy Pahne
https://issues.apache.org/jira/browse/TAP5-395 Howard Lewis Ship schrieb: BeanModel / BeanModelSource do not do this today, but there's no reason why they should not. Please add a JIRA "enhancement" issue. On Mon, Dec 1, 2008 at 1:52 PM, Andy Pahne <[EMAIL PROTECTED]> wrote: I am using

Re: [T5] Grid cell labels can't be overridden

2008-12-01 Thread Howard Lewis Ship
BeanModel / BeanModelSource do not do this today, but there's no reason why they should not. Please add a JIRA "enhancement" issue. On Mon, Dec 1, 2008 at 1:52 PM, Andy Pahne <[EMAIL PROTECTED]> wrote: > > I am using T 5.0.17 and trying to override cell labels of the Grid > component. > > I am tr

[T5] Grid cell labels can't be overridden

2008-12-01 Thread Andy Pahne
I am using T 5.0.17 and trying to override cell labels of the Grid component. I am trying like described here: http://tapestry.formos.com/nightly/tapestry5/tapestry-core/ref/org/apache/tapestry5/corelib/components/Grid.html see section "UserList.properties" The labels defined in the propertie

Re: [t5] onEvent mixin failure since 5.0.17 - wrong response sent back to server

2008-12-01 Thread Harald Geritzer
Sven Homburg schrieb: changes submitted into trunk thank you - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [t5] onEvent mixin failure since 5.0.17 - wrong response sent back to server

2008-12-01 Thread Sven Homburg
changes submitted into trunk 2008/12/1 Harald Geritzer <[EMAIL PROTECTED]> > > seems t5components/onEvent changed its behaviour and always sends back the > field's value as repsonse. is there a way to get the old behaviour back? > > > --

Re: [t5] onEvent mixin failure since 5.0.17 - wrong response sent back to server

2008-12-01 Thread Harald Geritzer
seems t5components/onEvent changed its behaviour and always sends back the field's value as repsonse. is there a way to get the old behaviour back? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [

[t5] onEvent mixin failure since 5.0.17 - wrong response sent back to server

2008-12-01 Thread Harald Geritzer
hi all, i am using the onEvent mixing but since 5.0.17 my code does not seem to work any more. though the event response should be "cost1|cost2" tapestry seems to ignore my textstreamresponse and firebug reports that the response is the value of the selectbox itself (post: value750, respo

[T5] newb editable loop

2008-12-01 Thread Koka Kiknadze
Hm, I can get editable loop work fine, with, say, ArrayList of Persons with their First/Last Names editable (thanks for jumpstart http://jumpstart.doublenegative.com.au:8080/jumpstart/). But when I rty the same with ArrayList or ArrayList it does not work, To be more specific, I have: @Persist

Re: [T5] Strange problems using jetty:run

2008-12-01 Thread Olle Hallin
Hi, Try this: mvn clean install jetty:run This should solve your problem. For the eclipse part, mvn eclipse:clean eclipse:eclipse should do the trick. (Or preferably, use the m2eclipse plugin from within Eclipse). Oh, and another thing: of the steps 1 mvn clean install 2 mvn war:war 3 mvn pack

ASO, Persistent Fields and Restart Service

2008-12-01 Thread dpark
If I call the restart service, shouldn't all my session-scoped ASOs and persistent page fields be cleaned up? Correct me if i'm wrong, but the restart service simply invalidates the backing HttpSession which in turn should do the cleanup mentioned above. Thanks, Dave Park -- View this message i

Re: [T5] Palette NPE

2008-12-01 Thread Nicolas Charles
I just had this issue; it was because the object overrided the "equals" method, but not "hashCode", hence the selected object couldn't be found in the selected set. Nick zack1403 wrote: Bump for help on this? Is the because genericSelectModel.getOptionGroups returns null? This occurs in

AW: T5: @Propery can not be an Interface? No default coercion?

2008-12-01 Thread Maximilian Weißböck
Thanks, yes exactly this is what I meant... I feel so ... still learning T5 :-) Thanks again, Max > -Ursprüngliche Nachricht- > Von: Ville Virtanen [mailto:[EMAIL PROTECTED] > Gesendet: Montag, 1. Dezember 2008 10:04 > An: users@tapestry.apache.org > Betreff: Re: T5: @Propery can not be a

Re: [T5] Strange problems using jetty:run

2008-12-01 Thread gringoac
I'm using Eclipse. However, I'm trying to run the project without Eclipse, only from console... I do this steps: - mvn clean install - mvn war:war - mvn package - mvn eclipse:eclipse - mvn tomcat:run (or mvn jetty:run) Then, going to "localhost:8080/trunk" in my browser, and get the "Index did

Re: [T5] Strange problems using jetty:run

2008-12-01 Thread Thiago H. de Paula Figueiredo
Em Mon, 01 Dec 2008 11:12:15 -0300, gringoac <[EMAIL PROTECTED]> escreveu: Hi guys... I really need to solve the same problem urgently... How can I restore my project's build path from Maven? Can I do it from the pom.xml or from anywhere else? Try mvn eclipse:eclipse and then refresh your

Re: [T5] Strange problems using jetty:run

2008-12-01 Thread gringoac
Hi guys... I really need to solve the same problem urgently... How can I restore my project's build path from Maven? Can I do it from the pom.xml or from anywhere else? Please, can you explain it in detail for me? Thank you a lot Ariel --- cnoleherzer wrote: > > Hi Guys,

Re: The Form Submit can't Work!

2008-12-01 Thread Ville Virtanen
Hi, this is one of the bad sides of T5: there is nothing wrong in your code, but the correct method handler should be named onSuccessFromDownloadFile() I think, not onSuccessFormDownloadFile. The notation is onSOMEEVENTFromSOMECOMPONENTID when you use that approach. I prefer the annotations thou

Re: T5: @Propery can not be an Interface? No default coercion?

2008-12-01 Thread Ville Virtanen
You can have interface parameters, but the problem here is that you define a parameter of type PageDelegate, and try to assign a default value of string "false" to that parameter. Perhaps you meant @Property(required="false") ? - Ville Maximilian Weißböck wrote: > > I have a component that h