[T4.1] Problems w/ ognl 2.7 experssion compilation

2008-08-04 Thread Miguel Angel Hernández
Hi, Tapestry 4.1.2 here. We're having a problem involving ognl expression compilation. We have a page with a simple parameter assignation expression, something like: span jwcid=@general/configaration/ProductListing products=ognl:activity.products/ products is a property of type: java.util.Set

Re: T4 Custom components with iterated child components

2007-10-23 Thread Miguel Angel Hernández
BeanForm component does something similar... you can look at the code to give you some idea. On 10/23/07, Norman Franke [EMAIL PROTECTED] wrote: I've been working on my custom inline table editor component, and I figured it would be easier to allow the user of the component to specify the

Re: Using jsp:include in T3

2007-10-02 Thread Miguel Angel Hernández
Hi Hector, Is there a way to use some kind of jsp:include in T3?? AFAIK there isn't, you can link Tapestry pages from JSP and back but you can combine them in the same page. Look at the Tap3 Faq: http://tapestry.apache.org/tapestry3/faq.html Cheers, Miguel

[Tap4] Page Flickering on Firefox.

2007-08-13 Thread Miguel Angel Hernández
Hi everyone, This is a general web design question. Does anybody knows how to avoid flickering on loading pages? I'm developing a tapestry4 app with tacos, and it suffers of a lot of flcikering when loading pages. This means the browser goes blank before rendering a page, even thought they are

Re: Tap4 Injecting a service into a Validator.

2007-06-19 Thread Miguel Angel Hernández
Hi again, I think its pretty hard to make it work as a normal validator, using prefixes, so I decided to include my custom validator as a normal bean and passing it to the validators string with like this $customValidator. thanks again, Miguel On 6/19/07, Miguel Angel Hernández [EMAIL

Re: Portlet - custom Exception page

2007-06-11 Thread Miguel Angel Hernández
I think that the way to go on this, is adding a contribution to tapestry.InfraestructureOverrides in your hivemodule.xml: contribution configuration-id=tapestry.InfrastructureOverrides property name=exceptionPageName value=ApplicationUnavailable / /contribution cheers, miguel On

Re: Tap4 and Jetty Form Too Large

2007-06-08 Thread Miguel Angel Hernández
fields or something. On Fri, 2007-06-08 at 10:45 -0500, Miguel Angel Hernández wrote: Hi all, We have a little problem here, any help would be appreciated. We are using tap4 + tacos4 on a Geronimo server (jetty back-end). I have a @Form which contains a @For component, the problem is sometimes

Re: [OT] who can use selenium to test dojo dialog widget?

2007-06-05 Thread Miguel Angel Hernández
Im also testing my app with selenium, and use waitForCondition for most of my tests... which evaluates a given Javascript expression till returns a truthy value. cheers, Miguel On 6/4/07, Geoff Callender [EMAIL PROTECTED] wrote: This clicks on a submit, checks the dialog text, then clicks

Re: dojo dialog to populate portion of form and submit

2007-05-31 Thread Miguel Angel Hernández
or populate its bindings) I update the @Any component, and change the visibility and position via javascript (it has to be done with js to paint it right). regards, Miguel On 5/30/07, Paul Stanton [EMAIL PROTECTED] wrote: how did you handle population of the dialog form portion? Miguel Angel

Re: dojo dialog to populate portion of form and submit

2007-05-30 Thread Miguel Angel Hernández
Hi Paul I've been in a very similar situation(but in tap4 with tacos) you're in. To solve it I decided to implement my own Dialog component which can be contained inside a form, and this worked fine for me. I've controlled the show and hide issue with Javascript and css. So the component its

Simple For component in tapestry 4.0

2007-04-13 Thread Miguel Angel Hernández
Hi all, We recently stumbled with the following problem regarding a For component. We have a tamplate more less like this: form jwcid=@Form ul span jwcid=@For source=ognl:list value=ognl:element element=li Value: span jwcid=[EMAIL PROTECTED] value=ognl:

Re: I thought this was a newsgroup about Tapestry ;-)

2007-03-27 Thread Miguel Angel Hernández
I find maven extremely useful, not only for my own projects. But also for building fresh checkouts from other os projects. Its really time saving and handy. We are currently working in a multimodule project using maven and it's working charmingly. On 3/27/07, DJ Gredler [EMAIL PROTECTED] wrote:

Re: Tap4 Obtaining assets dynamically

2007-03-20 Thread Miguel Angel Hernández
this: getAssetFactory().createAbsolute(context-path-to-file, getPage().getLocale(),getLocation()); I got this hint by reading the HiveDoc for tapestry, which imho is a little hard to read... regards, miguel On 3/19/07, Miguel Angel Hernández [EMAIL PROTECTED] wrote: Hi all, Does anybody nows

Re: Hivemind Registry and Spring

2007-03-16 Thread Miguel Angel Hernández
you control it through your own ApplicationServlet implementation. (or know the context parameter it is stored in, which I don't remember off hand as I've never used it ) On 3/14/07, Miguel Angel Hernández [EMAIL PROTECTED] wrote: Hi all, How can I expose the Hivemind Registry in a spring bean

Re: Injecting hivemind properties into spring beans

2007-03-14 Thread Miguel Angel Hernández
) { this.serviceId = serviceId; } public Class getServiceInterface() { return serviceInterface; } public void setServiceInterface(Class serviceInterface) { this.serviceInterface = serviceInterface; } } On 12/13/06, Miguel Angel Hernández [EMAIL PROTECTED] wrote

Hivemind Registry and Spring

2007-03-14 Thread Miguel Angel Hernández
Hi all, How can I expose the Hivemind Registry in a spring bean? thanks Miguel

Cant Checkout tapestry-spring project

2007-03-14 Thread Miguel Angel Hernández
Hi all, I cant CO tapestry-spring trunk: Authentication realm: http://svn.javaforge.com:80 Subversion Repository Username: svn: PROPFIND request failed on '/svn/tapestry/tapestry-spring/trunk' svn: PROPFIND of '/svn/tapestry/tapestry-spring/trunk': authorization failed

Re: Tap 4.0.3 HttpSession and WebSession

2007-03-09 Thread Miguel Angel Hernández
service? You can try to post your hivemodule.xml part where you inject Session/Response services into your pages/services. Renat On 07/03/07, Miguel Angel Hernández [EMAIL PROTECTED] wrote: Renat Thanks a lot, Unfortunately I've already tried those... but it's not working. I'm using Geronimo

Tap 4.0.3 HttpSession and WebSession

2007-03-06 Thread Miguel Angel Hernández
Hi all, Anybody knows how I can access the HttpSession from tapestry... I found RequestCycle: getRequestContext():getSession()... but its deprecated. I need to invalidate the session in order to logout from JAAS realm, I've tried WebSession():invalidate() but it doesn't work :(

Re: Tap 4.0.3 HttpSession and WebSession

2007-03-06 Thread Miguel Angel Hernández
/WebSession.html#invalidate() On 06/03/07, Miguel Angel Hernández [EMAIL PROTECTED] wrote: Hi all, Anybody knows how I can access the HttpSession from tapestry... I found RequestCycle: getRequestContext():getSession()... but its deprecated. I need to invalidate the session in order to logout from

Re: WANTED: Tapestry Success Stories

2007-01-24 Thread Miguel Angel Hernández
Yes: Ixe's bank portal is done in Tap3, also they have a really big Customer Assistance System build on Tapestry. I will forward this mail to one of the main developers to see what details we can get. Regards, Migs On 1/24/07, Darío Vasconcelos [EMAIL PROTECTED] wrote: An important part

Automated Testing Tool

2006-12-12 Thread Miguel Angel Hernández
Hi all, Are there any tools that allow to build automated tests for tapestry apps? Do they suport Tacos and Dojo? cheers, miguel