Slightly OT: Ad hoc connection pools

2009-10-16 Thread Daniel Jue
Hi all, I'm hoping someone might have a suggestion for a strange challenge. I'm using both T5 and GWT for the app, but I imagine the core solution to be independent of either, although for implementation T5 IOC may be called in. OK here it is: I am working on a web app where the app's server side

Re: T5: Removing empty valued columns from grid

2009-10-16 Thread Fermin Da Costa Gomez
On Fri, Oct 16, 2009 at 7:31 PM, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > Em Fri, 16 Oct 2009 13:40:18 -0300, Fermin Da Costa Gomez < > dacostago...@dcgconsultancy.nl> escreveu: > > Hmm, mucking about in the DOM is not what i'm looking forward to .. >> I my assumption correct

Re: T5: problem switching to locale zh_TW

2009-10-16 Thread Roy Douglas
Thanks, I modified the AppModule.java like the following and everything worked fine. public static void contributeApplicationDefaults( MappedConfiguration configuration) { configuration.add(SymbolConstants.SUPPORTED_LOCALES, "en,zh_TW"); ... Roy Have you de

T5 NPE on service realization

2009-10-16 Thread zack1403
Hi all, I was just curious if anyone has had weird NullPointerExceptions on service realization. I am getting this NPE when using this service for the first time after startup: if (hu == null) throw new RuntimeException("bad"); //debug and system.out show this as a proxied service if (c

Re: [Tapestry Central] Tapestry 5.1 and IE 8 -- Customizing Tapestry

2009-10-16 Thread Angelo Chen
built in CDN support for assets will be a nice feature, probably just some options to inject some links? maybe can be done with current version? Dave Greggory wrote: > > I'm also looking for the ability to put all my assets (and Tapestry's) on > a CDN, so that static content do not need to be s

Re: T5: Removing empty valued columns from grid

2009-10-16 Thread Thiago H. de Paula Figueiredo
Em Fri, 16 Oct 2009 13:40:18 -0300, Fermin Da Costa Gomez escreveu: Hmm, mucking about in the DOM is not what i'm looking forward to .. I my assumption correct that once the grid building has started it *is*actually doing the rendering as such? I guess so. Makes sense to think that Grid exp

Re: Tapestry 5 and EZproxy

2009-10-16 Thread Thiago H. de Paula Figueiredo
Em Fri, 16 Oct 2009 13:33:33 -0300, Blower, Andy escreveu: Thiago, Hi! Thank you for such a quick and insightful response - I've just checked and EZproxy does appear to be removing this header. You're welcome! I'll email EZproxy support and see what they say. If they have to update

Chenille kit Quartz

2009-10-16 Thread Sam Domonkos
I was wondering if the Chenille kit project will be updating the Quartz module to version 1.6.5 from 3/6/2009, it seems to be using 1.6.0 from 11/6/2006 Thanks -- Sam - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache

Re: T5: Removing empty valued columns from grid

2009-10-16 Thread Fermin Da Costa Gomez
On Fri, Oct 16, 2009 at 1:22 AM, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > Em Thu, 15 Oct 2009 20:02:31 -0300, Fermin Da Costa Gomez < > dacostago...@dcgconsultancy.nl> escreveu: > > Coming to think about it i have to rephrase my question to: >> Is is possible to 'modify' the g

RE: Tapestry 5 and EZproxy

2009-10-16 Thread Blower, Andy
Thiago, Thank you for such a quick and insightful response - I've just checked and EZproxy does appear to be removing this header. I'll email EZproxy support and see what they say. If they have to update EZproxy to cope with this then we could be in trouble. Customers may not be happy being f

Re: Tapestry 5 and EZproxy

2009-10-16 Thread Thiago H. de Paula Figueiredo
Em Fri, 16 Oct 2009 13:05:23 -0300, Blower, Andy escreveu: (services.TapestryModule.RequestExceptionHandler:62) - Processing of request failed with uncaught exception: A component event handler method returned the value {"result":"success","numMsg":"1 new","method":"add"}. Return type org.

Tapestry 5 and EZproxy

2009-10-16 Thread Blower, Andy
We need to support users and institutions who use EZproxy (http://www.oclc.org/ezproxy/default.htm) which should be pretty easy. I've been trying it, and things work okay until AJAX is used and then T5 throws this exception: (services.TapestryModule.RequestExceptionHandler:62) - Processing of r

Re: [Tapestry Central] Tapestry 5.1 and IE 8 -- Customizing Tapestry

2009-10-16 Thread Dave Greggory
I'm also looking for the ability to put all my assets (and Tapestry's) on a CDN, so that static content do not need to be served by the app server. While combining assets is an interesting feature, I would much rather prefer to have all static content on a CDN. Something about CDN functionality

Re: Question regarding complex URL rewriting and injecting

2009-10-16 Thread Thiago H. de Paula Figueiredo
Em Fri, 16 Oct 2009 04:28:57 -0300, Alexander Reelsen escreveu: This is exactly what I want. But why does this not go "in line" with my url rewriting question? If I have three parameters for the onactivate, where else instead of the url are those constructed of? That's what Tapestry calls t

Re: T5: problem switching to locale zh_TW

2009-10-16 Thread cordenier christophe
Hello By default tapestry supports : "en,it,es,zh_CN,pt_PT,de,ru,hr,fi_FI,sv_SE,fr_FR,da,pt_BR,ja,el". Regards, Christophe. 2009/10/16 Roy Douglas > Hi, > > I create a resource file name app_zh_TW.properties, and an actionlink > component and > the method persistentLocale.set(Locale.TAIWAN) to

Re: T5: problem switching to locale zh_TW

2009-10-16 Thread Geoff Callender
Have you declared zh_TW in AppModule? You need to. See if these examples help: http://jumpstart.doublenegative.com.au:8080/jumpstart/examples/localization/bymessagecatalog http://jumpstart.doublenegative.com.au:8080/jumpstart/examples/localization/bytemplate Cheers, Geoff

Re: Lifecycle of a tapestry request and the MarkupRendererFilter

2009-10-16 Thread cordenier christophe
This may sound obvious but why not implementing a StreamResponseAdapter and extend it for your implementations ? Although a RequestFilter can be the right place for a front filter, or modify the ComponentEventResultProcessor that handle the StreamResponse (maybe more complicated) to automatically

T5: problem switching to locale zh_TW

2009-10-16 Thread Roy Douglas
Hi, I create a resource file name app_zh_TW.properties, and an actionlink component and the method persistentLocale.set(Locale.TAIWAN) to switch the locale, but I have this error when I click on the actionlink. Locale 'zh_TW' is not supported by this application. Supported locales are 'en'; this

Re: tapestry 5.1.0.5 GRID problem

2009-10-16 Thread Argo Vilberg
Strange. If i use Actionlink instead of my own generated form then all works fine. In earlier tapestry action link in grid-rowdoes not work, thats way i use my own form. Little css magic and button is back in grid:) Argo 2009/10/16 Argo Vilberg > hi > This solution works in 5.0.14 but not in

tapestry 5.1.0.5 GRID problem

2009-10-16 Thread Argo Vilberg
hi This solution works in 5.0.14 but not in 5.1.0.5 tml Ei leitud ühtegi firmat! java @Persist private List companyList; private AriregItem ariregitem; public List getCompanyList() { return companyList; } public AriregItem getAriregItem() { return ariregitem; }

Re: Login page - passing context between pages

2009-10-16 Thread shymon
DH-14 wrote: > > In that case, the context is only useful for Login page, but not the > following page, so only returning logic name of source page would not > carry the context. > Try PageRenderLinkSource#createPageRenderLinkWithContext(String pageName, > Object... context) and return that lin

Re: Question regarding complex URL rewriting and injecting

2009-10-16 Thread Alexander Reelsen
Hi Igor > On Thu, Oct 15, 2009 at 11:11 PM, Alexander Reelsen > wrote: >> @RequestMapping(value="/{tenant}/{user}/reservations/{id}", >> method=RequestMethod.GET) >> > URL rewrittng is indeed not covered by the book. It is not possible in > Tapestry to map different methods of a page to differen

Re: Re: about tapestry ioc contribution

2009-10-16 Thread Zenberg Ding
Thiago H. de Paula Figueiredo: Thanks seems we have to midified t5 sources :( Zenberg ding,zenberg.d...@gmail.com 2009-10-16 - Original Message - From: Thiago H. de Paula Figueiredo To: Tapestry users Sent: 2009-10-16, 09:51:15 Subject: Re: about tapestry ioc contribution Em Thu, 1

Re: New T5 blog

2009-10-16 Thread Igor Drobiazko
I'm going to fix this issue in the next days/weeks: https://issues.apache.org/jira/browse/TAP5-138 One of the fixes would be to introduce the a javascrpt function which triggers zone update on any event like 'change'. Currently only 'click' is possible. I could also add a further function with an u