Re: Tapestrz 5: screencast #3

2007-02-01 Thread Jiri Mares
Hi Howard, thanks for your answer, it looks like it is weel done, that's great :-) Jirka > Expansions, the ${...} mechanism, will automatically filter the text, > converting diallowed characters into XML/HTML entities. > > Tapestry 5 renders to a DOM-like tree, then streams the output. I > ha

AW: [very OT] group conventions for people use testng?

2007-02-01 Thread Peter Schröder
hi dan, are there any good coding-examples for using test-ng with tapestry? i am not yet familiar with it and would like to have a view. kind regards peter -Ursprüngliche Nachricht- Von: Dan Adams [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 1. Februar 2007 19:50 An: Tapestry users

contrib:table rowspan in columnheader

2007-02-01 Thread jiju
Hi all, is it possible to add rowspans & colspan in tableheader ? I have to make a table as follows User Amount status credit debit a 200 100 active b 12

Re: AW: AW: Rewind problem in floating pane

2007-02-01 Thread Balachandran
No..I have not initialised code and description.. Peter Schröder-2 wrote: > > are you doing some init-stuff with "code" and "description"? > > -- View this message in context: http://www.nabble.com/Rewind-problem-in-floating-pane-tf3154353.html#a8761069 Sent from the Tapestry - User mailin

Re: ajax and popuplink error -- Bug?

2007-02-01 Thread Julian Wood
Okay I've posted a sample program to demonstrate the problem. http://jwoodchip.blogspot.com/2007/02/ajax-and-tapestry.html I'm still hoping I'm missing something silly, but maybe this is a bug? Thanks, J On 31-Jan-07, at 8:46 PM, Julian Wood wrote: Actually this is not yet solved. It turns

Re: Tapestrz 5: screencast #3

2007-02-01 Thread Howard Lewis Ship
Expansions, the ${...} mechanism, will automatically filter the text, converting diallowed characters into XML/HTML entities. Tapestry 5 renders to a DOM-like tree, then streams the output. I have yet to implement a mechanism for supporting "raw" output, the way Tapestry 4 does, but it is coming

Tapestrz 5: screencast #3

2007-02-01 Thread Jiří Mareš
Hi, I just saw the last screecast about tapestry 5 and I would like to ask about usign ${currentTime} construct in the page template for outputing the properties. How it is with the escaping < > & characters (due to XSS)? Have I any control about escaping or have I to do it on my own ... Th

Re: [very OT] group conventions for people use testng?

2007-02-01 Thread Howard Lewis Ship
I believe Jesse put together the 2.8-SNAPSHOT version of the plugin that we're using. On 2/1/07, Patrick Moore <[EMAIL PROTECTED]> wrote: Hi Dan, I wanted to ask about this also. Howard, I know that you have a version of the surefire plugin that can run testNG 5.1 tests but the testNG ve

Re: [very OT] group conventions for people use testng?

2007-02-01 Thread Patrick Moore
Hi Dan, I wanted to ask about this also. Howard, I know that you have a version of the surefire plugin that can run testNG 5.1 tests but the testNG version is now up to 5.4 and the "official" version of the surefire plugin seems to be languishing with testNG 4.7. Does anyone know what is g

Re: [very OT] group conventions for people use testng?

2007-02-01 Thread James Carman
In IDEA, you can supply "test runner options" to TestNG. I would imagine that the eclipse plugin has something similar, but I have not used it. On 2/1/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: I meant from inside Eclipse, or as specified in testng.xml. I haven't upgraded my version of t

Re: [very OT] group conventions for people use testng?

2007-02-01 Thread Howard Lewis Ship
I meant from inside Eclipse, or as specified in testng.xml. I haven't upgraded my version of the plugin, perhaps this is a feature they've added. I also want to see if parallel works properly in a more recent version. On 2/1/07, James Carman <[EMAIL PROTECTED]> wrote: Have you tried -excludegro

Re: [very OT] group conventions for people use testng?

2007-02-01 Thread James Carman
Have you tried -excludegroups ? I think that works. On 2/1/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: I really only structure things in two ways: fast vs. slow, aka default vs. integration. I think if I was building an application, I may add additional groups to cover tests that need spe

Re: [very OT] group conventions for people use testng?

2007-02-01 Thread Howard Lewis Ship
I really only structure things in two ways: fast vs. slow, aka default vs. integration. I think if I was building an application, I may add additional groups to cover tests that need special setup to run (assuming I couldn't do that myself). I wish TestNG had an option to exclude named groups fr

[very OT] group conventions for people use testng?

2007-02-01 Thread Dan Adams
hey guys, just wondering. if you use testng how do you normally structure your groups? Do you always specific a group for unit tests or do you not? -- Dan Adams Senior Software Engineer Interactive Factory 617.235.5857 - To uns

Re: synchronous ajax

2007-02-01 Thread Matt Brock
Norbert Sándor wrote: > > In 4.1.1 is it possible to display an hourglass and disallow further > user interface interaction during ajax requests? > I'm using the pre-Dojo-fied Tap 4 and implemented my own Ajax handler routines, so I don't know if there's a built-in Dojo hand-holding way to do

Re: Tapestry https

2007-02-01 Thread len
If you are using apache in front of tomcat you do not need the tomcat configuration. You whould only need the standard apache ssl config + mod_jk. I whould recomend this as maybe you want also to do some static serving and java not running as root. You will still need the pageValidate part whic

RE: Redirect after Post = no parameters, no save

2007-02-01 Thread Matt Brock
Marcus.Schulte wrote: > > Depends on what kind of Tapestry/Hibernate Integration you're actually > using. Where is you session committed? Do you throw a RedirectException > to redirect or do you return an ILink? > Returning an ILink. The session is committed before the submit method returns.

Re: AJAX update of the nested components

2007-02-01 Thread Renat Zubairov
I'm investigating the problem now and it seems that Dialog component where my custom component is trying to update part of itself is not allowing it to be updated. Actually method renderComponent for Dialog component do not check wherever internal components inside dialog component needed to be up

AW: AW: Rewind problem in floating pane

2007-02-01 Thread Peter Schröder
are you doing some init-stuff with "code" and "description"? -Ursprüngliche Nachricht- Von: Balachandran [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 1. Februar 2007 13:33 An: users@tapestry.apache.org Betreff: Re: AW: Rewind problem in floating pane Hi Peter, I tried with the list

AJAX update of the nested components

2007-02-01 Thread Renat Zubairov
Hello, I have a problem with AJAX update in Tap 4.1.1-SNAPSHOT. I have a component that updates parts of itself and it works fine when component is directly located on the page. But when component is located inside another component, then it is not updating parts anymore. With Firebug I can see t

Re: AW: Rewind problem in floating pane

2007-02-01 Thread Balachandran
Hi Peter, I tried with the listener binding also.but still the issue is there.This component is placed inside a form tag Thanks, Peter Schröder-2 wrote: > > is it properly nested in a form-component? shouldnt you use the-forms > listener-method instead of the action-binding? > i didnt see an

AW: Rewind problem in floating pane

2007-02-01 Thread Peter Schröder
is it properly nested in a form-component? shouldnt you use the-forms listener-method instead of the action-binding? i didnt see an action-binding in the docs http://tacos.sourceforge.net/components/AjaxSubmit.html anyway... -Ursprüngliche Nachricht- Von: Balachandran [mailto:[EMAIL PROT

Re: To New browser

2007-02-01 Thread Shing Hing Man
There are some examples on using the PopupLinkRenderer at the following. http://lombok.demon.co.uk/tapestry4Demo/pages/popup/TestPopup.html Shing --- Dsenthil <[EMAIL PROTECTED]> wrote: > > Hi! folks >This is dsenthil, i'm new to this > tapestry, can any one help me > How to open a

Re: Tapestry https

2007-02-01 Thread Numa Schmeder
You can buy a certificate if you need a valid one, but you can generate a test certificate. keytool -genkey -keyalg RSA -alias tomcat -keystore [nameofkeystore] It will be created in bin directory of the JDK You will then need to configure a connector supporting ssl in web.xml

Rewind problem in floating pane

2007-02-01 Thread Balachandran
Hi All, I have a floating pane component with two text fields and a submit button.The template looks like, and the page file has the folllo

To New browser

2007-02-01 Thread Dsenthil
Hi! folks This is dsenthil, i'm new to this tapestry, can any one help me How to open a new browser in Tapestry 4? otherwise How to use the popup Link for getting new browser? Thanks in Advance Senthil.D -- View this message in context: http://www.nabble.com/To-

Tapestry https

2007-02-01 Thread cedric . brajus
Hello, I develop application with tapestry 3 and now my customer would like used https:// I never put this protocol in practice. My application server is tomcat 5.0.28 and Redhat. Have you preconization to do this ? I searched on the web, I think that I must install Apache and buy VerySign Ce

Re: Dojo error on Yahoo search or Live search cached pages

2007-02-01 Thread andyhot
Yea, you're right. Just did a yahoo search for "opencomponentry demo" and the first result (the tacos demo) has the same issue... http://216.109.125.130/search/cache?p=opencomponentry+demo&ei=UTF-8&fr=yfp-t-501&x=wrt&u=opencomponentry.com:8080/tacos/app&w=opencomponentry+demo&d=Tt4hHexsOKoE&icp=

Dojo error on Yahoo search or Live search cached pages

2007-02-01 Thread Christian Dutaret
Hi all, I deployed a brand new web site which is based on T4.1.1 last week. It has just began to be indexed on Yahoo search and Live search. On both these search engines, whenever I request the cached page from the search results, an alert box tells me "Permission refused to obtain the Window.do

@EventListener , elements and the bound model

2007-02-01 Thread karthik G
I have a .page like this - and a listener @EventListener(elements = "prop", events = "onchange") public void propChange() { System.out.println(getPropValue( ) ); } I want the property that a component is bound to (and specified in "elements" at the same time) to be updated b

Re: Redirect after Post = no parameters, no save

2007-02-01 Thread andyhot
Further, page parameters are not passed to the subsequent page when using the the PAGE service I think he's trying to do the redirect before processing the data ! [EMAIL PROTECTED] wrote: Depends on what kind of Tapestry/Hibernate Integration you're actually using. Where is you session comm

RE: Redirect after Post = no parameters, no save

2007-02-01 Thread Marcus.Schulte
Depends on what kind of Tapestry/Hibernate Integration you're actually using. Where is you session committed? Do you throw a RedirectException to redirect or do you return an ILink? > -Original Message- > From: Matt Brock [mailto:[EMAIL PROTECTED] > Sent: Wednesday, January 31, 2007 5:52