[T5] Localization problem (PageTester) on Linux

2008-11-30 Thread Daniel Kleine-Albers
Hi everyone, I'm experiencing a strange behaviour regarding localization. As usual I've got two localization catalogs in my WEB-INF directory: app.properties app_de.properties I've got some unit tests using the PageTester initialized like this: tester = new PageTester(appPackage, appName,

Tap 5.0.17: Take a long time to create a strategy service in debug mode

2008-11-30 Thread Shing Hing Man
I have a strategy service ComputeWorker. In the normal run mode, the start page loads up in a few seconds. But in debug mode, the start page takes more than two miniutes to load. From the console, it looks as though it spent a long time to create the strategy service computeWorker (in debug

Re: [T5] Localization problem (PageTester) on Linux

2008-11-30 Thread Daniel Kleine-Albers
Hi guys, solved it myself. I had the appName for the PageTester as App. After changing it to app everything works as expected on both platforms. However I wonder if this is a bug (as Mac OS X is case-sensitive as well) or if this is the expected behaviour? Thanks, Daniel On

[T5] Backslash in URL chokes onActivate (5.0.16)

2008-11-30 Thread thermus
I encountered a problem where onActivate(String str) chokes if %5C (i.e. backslash) is included in the URL context. Aside from not allowing backslashes at all, is there a proper way to escape backslashes so Tapestry treats them as part of the incoming string parameter? -- View this message in

Re: [T5] Backslash in URL chokes onActivate (5.0.16)

2008-11-30 Thread thermus
Nevermind. %255C did the trick. thermus wrote: I encountered a problem where onActivate(String str) chokes if %5C (i.e. backslash) is included in the URL context. Aside from not allowing backslashes at all, is there a proper way to escape backslashes so Tapestry treats them as part of

Re: Tapestry-Hiberante with Tapestry IoC

2008-11-30 Thread Juan E. Maya
Angelo, thank you for the link. However after following the instructions i'm still having problems. 1. When i run the application i get the following runtime error: Exception in thread main java.lang.RuntimeException: Service id 'ClassNameLocator' has already been defined by

Re: Tapestry-Hiberante with Tapestry IoC

2008-11-30 Thread Juan E. Maya
Running the application posted in the wiki using tapestry 5.0.16 gives the same problem :( On Sun, Nov 30, 2008 at 8:42 PM, Juan E. Maya [EMAIL PROTECTED] wrote: Angelo, thank you for the link. However after following the instructions i'm still having problems. 1. When i run the application i

Re: Tapestry-Hiberante with Tapestry IoC

2008-11-30 Thread Howard Lewis Ship
I've added an issue to split tapestry-hibernate into two parts; one for use with tapestry-ioc, and one that adds extra support for use with tapestry-core. On Sun, Nov 30, 2008 at 11:54 AM, Juan E. Maya [EMAIL PROTECTED] wrote: Running the application posted in the wiki using tapestry 5.0.16

Re: Tapestry-Hiberante with Tapestry IoC

2008-11-30 Thread Juan E. Maya
That's great :) I'll be waiting for it anxiously :) On Sun, Nov 30, 2008 at 9:24 PM, Howard Lewis Ship [EMAIL PROTECTED] wrote: I've added an issue to split tapestry-hibernate into two parts; one for use with tapestry-ioc, and one that adds extra support for use with tapestry-core. On Sun,

dojo for Tapestry 5

2008-11-30 Thread Yiqun Shi
Is there any plan for the integration of Dojo to Tapestry 5? Or because it is easy to create user-defined component, does it necessarily mean dojo-featured component is easy to be made by user? SYQ

The Form Submit can't Work!

2008-11-30 Thread Gerry Chen
Hi Everyone: I'm a new Tapestry user. I'm interesting in developing Web Program with Tapestry Framwork.But I have some problem in my project. This question is the Form Submit Event can't be invoked When I click Export File Button in my Page. My Program looks like this:

Re: The Form Submit can't Work!

2008-11-30 Thread Mohammad Shamsi
Hi Gerry, Try to change you method name to : onSuccessFormDownloadFile or use Annotation : @OnEvent(value = submit, component = Btn_Down) StreamResponse onSubmitFormDownloadFile() { On Mon, Dec 1, 2008 at 2:55 AM, Gerry Chen [EMAIL PROTECTED] wrote: Hi Everyone: I'm a new

Re: The Form Submit can't Work!

2008-11-30 Thread Gerry Chen
Thank dalahoo ! I use T5.0.16 JAR.I try your codes in my project .But I find it not to work.I try to insert a Breakpoint in the onSuccessFormDownloadFile() .It doesn't stop in the method after my clicking Export File Button. I have tried to add below code. StreamResponse onSubmit() { ...

Re: The Form Submit can't Work!

2008-11-30 Thread Gerry Chen
Thank Everyone! My Problem is resolved by myself. Because the method name is error.The Form Submit Event use onSubmit+From+FormID. Note:There is From not Form:-/ The Form Submit Gerry Chen wrote: Hi Everyone: I'm a new Tapestry user. I'm interesting in developing Web Program