Re: [T5.1.0.5] Problem with report-plugin on windows

2010-06-02 Thread Kalle Korhonen
Can somebody please please apply the patch attached to the issue (https://issues.apache.org/jira/browse/TAP5-871), at least to the trunk version? Kalle On Wed, Nov 4, 2009 at 6:53 PM, buckofive wrote: > > Just as a reference for this thread the JIRA for this issue is here: > https://issues.apac

Re: [Announce] Tapestry5 jQuery integration and Tapestry5-ClientResources

2010-06-02 Thread Greg Pagendam-Turner
Robin, I tend to agree about the popups. Do you have any examples please of how you've used validation please? Are you using it in a grid at all? Do you completely steer clear of the existing Tapestry required validations and just code using the jQuery validator direct in your page? Regards,

Re: Scrolling to make sure that a Zone is visible

2010-06-02 Thread Josh Canfield
> It doesn't seem like the default zone update functions will ensure that the > browser scrolls to show a zone. Right, that'd be something you'd want to implement yourself. >b. If I should contribute some sort of "scroll" effect to > Tapestry.ElementEffect. I'd pick this route, then

Scrolling to make sure that a Zone is visible

2010-06-02 Thread Pierce Wetter
It doesn't seem like the default zone update functions will ensure that the browser scrolls to show a zone. Ex: I have that zone at the bottom of a long table, if you click at the top of a table, the zone gets populated, but you might not notice. I

Re: Libarary "core" mapping not working in 5.2.0-SNAPSHOT

2010-06-02 Thread Howard Lewis Ship
This might be a bug, but is not easily fixable. Contributing new components into core strikes me as a somewhat dangerous proposition. On Wed, Jun 2, 2010 at 12:10 PM, Manuel Sugawara wrote: > Hi, > > I have a library that uses the core mapping but a few days ago > this stopped working. Tapestry t

Libarary "core" mapping not working in 5.2.0-SNAPSHOT

2010-06-02 Thread Manuel Sugawara
Hi, I have a library that uses the core mapping but a few days ago this stopped working. Tapestry throws an exception saying "Package names for library folder 'core' (mx.unam.xfc.escuela.t5, org.apache.tapestry5.corelib) can not be reduced to a common base package (of at least two terms)." As this

Re: Why is TapestryFilter.doFilter final?

2010-06-02 Thread Dmitry Gusev
I'm thinking how to handle com.google.apphosting.api.DeadlineExceededException. This exception thrown in GAE if request processed more than 30 seconds and I have only ~400 ms to handle this error untill com.google.apphosting.runtime.HardDeadlineExceededError thrown. I was thinking to override filt

Re: Why is TapestryFilter.doFilter final?

2010-06-02 Thread Howard Lewis Ship
What are you trying to accomplish? Tapestry already has great mechanisms for extending the request processing behavior, including dealing with thrown exceptions. That's why such methods are final, to encourage you to look in the correct place. On Wed, Jun 2, 2010 at 10:14 AM, Dmitry Gusev wrote:

Why is TapestryFilter.doFilter final?

2010-06-02 Thread Dmitry Gusev
I need to override this method to wrap it with try/catch but can't do it right now. Is there any reason why this method was declared final? -- Dmitry Gusev AnjLab Team http://anjlab.com

Wrong link on issue tracking site

2010-06-02 Thread Andreas Bohnert
can somebody please change the link on the issue tracking site http://tapestry.apache.org/issue-tracking.html to http://issues.apache.org/jira/browse/TAP5? thanks, Andreas - To unsubscribe, e-mail: users-unsubscr...@tapestry.a

Re: include server side values in @IncludeJavaScriptLibrary

2010-06-02 Thread Josh Canfield
Is there a way to print server side page/component properties in a javascript Tapestry doesn't transform .js or .css files. In most cases this is a good thing design-wise. Consider creating functions in your static JavaScript files to initialize with your dynamic content via rendersuppor

Re: How to disable Client-Side-Error-Message-Bubbles

2010-06-02 Thread Piero Sartini
I've done something like this some time ago with help from this list. It was needed to integrate the YAML [1] form css framework, which shows errors below the input fields. The plan was to refactor the functionality into a yaml-module, but this was never finnished and I am not sure if it works. Bu

Re: Tapestry 5 Validation on Form Submit

2010-06-02 Thread Claude Dubois
Hello, I have continued searching information about my validation problem, and I found a great solution on the forum. It's a script written by Scott Russel, you will find it http://old.nabble.com/Re:-Disabling-onBlur-field-validation-p22179557.html here . It allows you to validate components o

RE: Asset protection and upgrade notes

2010-06-02 Thread Jim O'Callaghan
Thanks for the input Dmitry. I don't think this is related to the problem Ville is talking about (contributeClasspathAssetAliasManager manually depending on T5 version), but from my perspective, it doesn't fix the problem of what is an alternative to the RegexAuthorizer. The ComponentClassResolve

Re: How to disable Client-Side-Error-Message-Bubbles

2010-06-02 Thread Kiss Izolda
Hello Dominik, you might need to utilize the validate property, without the error-message-bubbles just keep the validation properties intact and set clientValidation to false Izolda "Dominik Gätjens" írta: >Hello List,> > > > how can i disable the client-side-error-message-bubbles but can kee

Re: include server side values in @IncludeJavaScriptLibrary

2010-06-02 Thread Thiago H. de Paula Figueiredo
On Wed, 02 Jun 2010 01:42:16 -0300, Paul Stanton wrote: Hi All, Hi! Is there a way to print server side page/component properties in a javascript included via @IncludeJavaScriptLibrary or css included via @IncludeStylesheet? You need to include scripts or stylesheets dynamically, so

Re: Asset protection and upgrade notes

2010-06-02 Thread Dmitry Gusev
I had to replace my RegexAutorizer contribution with contribution to ClasspathAssetAliasManager to make my app working with latest T5.2.0-SNAPSHOT: was: public void contributeRegexAuthorizer(Configuration regex) > { > String pathPattern = > "([^/.]+/)*[^/.]+\\.((css)|(js)|(jpg)|(j

RE: Asset protection and upgrade notes

2010-06-02 Thread Ville Virtanen
Exactly, the message was only to point out that changes like these make library writer's life hard in the long run. So I was only questioning the rationale behind the change in no-slashes-in-virtual-folders and how it auto contributes the associated contribution to ClasspathAssetAliasManager. I

Re: How to disable Client-Side-Error-Message-Bubbles

2010-06-02 Thread Christophe Cordenier
Hi 2010/6/2 Dominik Gätjens > Hello List, > > > > how can i disable the client-side-error-message-bubbles but can keep client > side validation (the red textfield label and the red cross)? > As far as i know, there is not native support for this at the moment, maybe you can override Tapestry.Fi

Re: LinkSubmit with Context?

2010-06-02 Thread Inge Solvoll
I made one more change to the AnySubmit. I have struggled with the fact that context-parameter on Submit component doesn't play well in a loop. So I created a context parameter for the AnySubmit, that accepts a single value (Object), and is sent via a hidden input as well. This way you can trigger

How to disable Client-Side-Error-Message-Bubbles

2010-06-02 Thread Dominik Gätjens
Hello List, how can i disable the client-side-error-message-bubbles but can keep client side validation (the red textfield label and the red cross)? Regards Dominik