Re: [t5] upgrade to java 6 and javassist

2009-11-03 Thread Howard Lewis Ship
I'm very glad you found a solution ... it's still a mystery to me as all the applications I work on are built using the Sun javac compiler and I've never seen problems like you are seeing, and I do some of my deployments on Linux (Ubuntu) ... again, with the Sun JDK/JRE. On Tue, Nov 3, 2009 at 3:3

Re: [ANNOUNCE] ChenilleKit 1.2.0 RELEASE

2009-11-03 Thread Fermin Da Costa Gomez
Seeing the same error here. I thought i was doing wrong but maybe not. I'm getting the error when i try to put a graph in an overlay. I don't think there is something funny going on with ChenilleKit as such because all graphs display fine without the overlay. I suspect another library is used (JQu

Re: Tapestry Templating

2009-11-03 Thread Howard Lewis Ship
I merged the tapestry-templating project as a sub--module of tapx. I'm sorry that I broke the URLs for the JavaDoc ... I'll see what I can do to fix it. On Tue, Nov 3, 2009 at 9:02 AM, kristjankelt wrote: > > Hi, > > I remembered that there is a module that will allow me to generate Tapestry > pa

Tapestry Templating

2009-11-03 Thread kristjankelt
Hi, I remembered that there is a module that will allow me to generate Tapestry pages "offline" - tapestry-templating. I did not need such a feature before but now when I started to check it, I found that the Tapestry homepage (http://tapestry.apache.org/) refers to the non existing page http://t

Re: AbstractIntegrationTestSuite and Profile

2009-11-03 Thread cordenier christophe
Well, actually this method is not available anymore with Selenium 1.0-beta2. Has anyone used Firefox profile with AbstactIntegrationTestSuite ? Thanks in advance Christophe.

Tapestry Templating

2009-11-03 Thread kristjankelt
Hi, I remembered that there is a module that will allow me to generate Tapestry pages "offline" - tapestry-templating. I did not need such a feature before but now when I started to check it, I found that the Tapestry homepage (http://tapestry.apache.org/) refers to the non existing page http://t

Tapestry Templating

2009-11-03 Thread kristjankelt
Hi, I remembered that there is a module that will allow me to generate Tapestry pages "offline" - tapestry-templating. I did not need such a feature before but now when I started to check it, I found that the Tapestry homepage (http://tapestry.apache.org/) refers to the non existing page http://t

Re: Blackbird getting in the way of troubleshooting javascript errors in ChenilleKit components

2009-11-03 Thread Lance Java
You can proxy through to the following functions to populate the firebug log: console.log(), console.debug(), console.info(), console.warn(), console.error(), console.trace() Obviously these functions should test: if(console) 2009/11/3 Dave Greggory > I'm trying to upgrade to 5.1, and everythin

Re: AbstractIntegrationTestSuite and Profile

2009-11-03 Thread cordenier christophe
Actually i have missed somthing, i didn't see that setFirefoxProfileTemplate is static on SeleniumServer... 2009/11/3 cordenier christophe > Hi, > > I didn't find any way to set firefox profile with > AbstractIntegrationTestSuite. > Looking at the source code, it seems that the SeleniumServer va

Blackbird getting in the way of troubleshooting javascript errors in ChenilleKit components

2009-11-03 Thread Dave Greggory
I'm trying to upgrade to 5.1, and everything is complete except for chenillekit components (Window and FCKEditor). I'm getting a lot of javascript errors from them, but unfortunately the Blackbird console is getting in the way of debugging them. When a javascript error occurs, I would like it to

Re: [ANNOUNCE] ChenilleKit 1.2.0 RELEASE

2009-11-03 Thread Dave Greggory
Thanks for the link to jars, Kalle. Very helpful for those of us that do not use Maven. By any chance, does anyone know where I can get the source jars/zips as well for the 1.2 release? Has anybody gotten ChenilleKit 1.2 working with Tapestry 5.1? Specially Window and FCKEditor components? I'm

AbstractIntegrationTestSuite and Profile

2009-11-03 Thread cordenier christophe
Hi, I didn't find any way to set firefox profile with AbstractIntegrationTestSuite. Looking at the source code, it seems that the SeleniumServer variable is private and not accessible from test case implementation. Is it worth to create a JIRA for this or am i missing something ? Regards Christo

Re: Same page, two different content-types

2009-11-03 Thread Toby Hobson
Hi Alfie I guess you could use a url rewrite: public class MyAccount { ... } @ContentType("text/xml") public class MyAccountXML extends MyAccount { } public static void contributeURLRewriter(OrderedConfiguration configuration) { URLRewriterRule rule = new URLRewriterRule() { publ

Re: [t5] upgrade to java 6 and javassist

2009-11-03 Thread Inge Solvoll
2 more days spent on this, and I actually came up with a solution: Switching from JDK "modern" compiler to eclipse compiler. I found another thread about class transformation errors on the list, saying that the Java C compiler had issues with class transformation. http://www.mail-archive.com/users

Same page, two different content-types

2009-11-03 Thread Alfie Kirkpatrick
Hi, I'd like to have the same page class return two different content types depending on circumstances. Is this possible? The existing ContentTypeWorker modifies the component model which is immutable at runtime. In particular (and I realise this is a hack), I want to use locale to decide betwe

Re: T5 IoC Tests and Mock objects

2009-11-03 Thread Paul Field
Funnily enough I was thinking of something very similar for Testify. I was imagining a "from-tests" scope - which is basically like the per-test scope except that the service proxies look up their implementations from the pool of objects populated by the @ForComponents annotations. (Which prob

Re: Send multizone update from embedded component

2009-11-03 Thread Ulrich Stärk
What I do is have the enclosed component trigger an event. That event returns a MultiZoneUpdate object that I handle in the event callback and add the enclosed component to. I then return a MultiZoneUpdate object containing both the ids and bodys of the two components to be updated from the even