Re: 4.1.2-SNAPSHOT String in specification escaped

2007-06-25 Thread Manri Offermann
r.region=JP -Dfile.encoding=UTF-8 -- Marcus Schulte wrote: > did you put the in the > beginning of > you spec? > > 2007/6/25, Manri Offermann <[EMAIL PROTECTED]>: >> >> Hi, >> >> I have changed my tapestry version for my

4.1.2-SNAPSHOT String in specification escaped

2007-06-25 Thread Manri Offermann
Hi, I have changed my tapestry version for my simple test app to 4.1.2-SNAPSHOT. I have a simple japanese property: which renders fine in 4.1.1-SNAPSHOT: but when switching to 4.1.2-SNAPSHOT I the output looks like this: u5e74MMu6708ddu65e5 All settings are UTF-8 for my test app, is

Re: Specify where to find the HTML templates

2007-04-23 Thread Manri Offermann
Hi, how about ITemplateSourceDelegate: org.apache.tapestry. template-source-delegate or you could modify the specification resolver delegate like this example: http://wiki.apache.org/tapestry/SpeclessPagesInWEB-INF Regards, Manri mateamargo wrote: Manri Offermann-3 wrote: Hi, You

Re: Specify where to find the HTML templates

2007-04-22 Thread Manri Offermann
Hi, You can use the ISpecificationResolverDelegate and specify where to find the specs and htmls. Try something like this: http://wiki.apache.org/tapestry/PagesAndComponentsInWEB-INF Best regards, Manri mateamargo wrote: Howard Lewis Ship wrote: there are some hacks/kludges if its abs

T4.1 focus=true for Forms, Change Request

2007-03-18 Thread Manri Offermann
="!getPage().getRequestCycle().getResponseBuilder().isDynamic()"/> I have updated all my forms, because in general, when I have an area updated with Ajax, I don't want the focus to be changed. Can this be made default? Best regards

Re: TAPESTRY-825 ASO in cookie

2007-02-12 Thread Manri Offermann
le don't realize that the very large/cumbersome penalty for this nicety is that all cookie state must be transmitted on each http request. Just think of it like running with weights on your legs. On 2/12/07, Manri Offermann <[EMAIL PROTECTED]> wrote: Hi Tapestry users, I am trying to store an AS

TAPESTRY-825 ASO in cookie

2007-02-11 Thread Manri Offermann
Hi Tapestry users, I am trying to store an ASO in a cookie. I have read previous posts about problems when the cookie is written and that the issue was fixed, but I still seem to have problems. Somehow the store() method of my CookieScopeManager does not write anything to the cookie at all. I

PageValidateListener ListenerParameter DirectService

2006-12-13 Thread Manri Offermann
geEvent event) { System.out.println("pageValidate" + Arrays.toString(event.getRequestCycle().getListenerParameters())); } protected void prepareForRender(IRequestCycle cycle) { System.out.println("prepareForRender" + Arrays.toString(cycle.getListenerParameters())); } } Regards, Manri Offermann

DojoAjaxResponseBuilder i18n problem

2006-09-13 Thread Manri Offermann
inResponse() { _writer.printRaw(""); in the DojoAjaxResponseBuilder implementation and my problem is solved. Can this be changed somehow, that it can be configured or that "org.apache.tapestry.output-encoding" is used? B

T4.1 Ajax DirectLink

2006-09-11 Thread Manri Offermann
to the database even if the components are not "updated". So my question is: Is there a workaround? Is this intended behaviour so that I should better place my dynamic area in an "empty" page? Best regards, Manri Offermann -