Re: Meet at Java One Conference

2006-04-20 Thread Cliff Zhao
Sure, I will. On 4/19/06, John Menke <[EMAIL PROTECTED]> wrote: > > I will be there. Are you going to Howard Lewis Ships' BOF on Wednesday? > On 4/18/06, Cliff Zhao <[EMAIL PROTECTED]> wrote: > > > Will anybody here be in the Java One Conference this year? A

Meet at Java One Conference

2006-04-18 Thread Cliff Zhao
Will anybody here be in the Java One Conference this year? Any interest for a gathering there? Thanks.

Re: Getting raw POST data

2006-03-21 Thread Cliff Zhao
It depends on the content-type of your POST. If it is "application/x-www-form-urlencoded", the servlet engine will consume it. You will get nothing. Otherwise your tapestry service will get the inputstream. On 3/18/06, Jean-Eric Cuendet <[EMAIL PROTECTED]> wrote: > > Hi, > I have a tapestry servic

Re: Latest from trunk

2006-02-23 Thread Cliff Zhao
SVN works with http proxies. On 2/23/06, Jason Suplizio <[EMAIL PROTECTED]> wrote: > > I can't use SVN behind my corp firewall. Any advice on getting the latest > Tap 4 code from trunk? > Thanks! > Jason > >

Re: How to make a page talk to the server without refreshing

2006-02-21 Thread Cliff Zhao
has should > change > according to some information in a database) and then tell the page to > refresh if needed or not to refresh. > > I run tapestry under Tomcat. > > > Thanks, > James > > - Original Message - > From: "Cliff Zhao" <[E

Re: Tapestry + Spring question

2006-02-21 Thread Cliff Zhao
Also like to know some detail about the InjectSpringBean annotation. Is it used in pages? Where is the place that your annotation get recognized. I created some annotation in my own EngineService. Did he modify the Page service? On 2/21/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hi Todd

Re: How to make a page talk to the server without refreshing

2006-02-21 Thread Cliff Zhao
XmlHttpRequest or dojo.io.bind or dojo.rpc.JsonService or iframe io etc. But not very sure what you really want. On 2/21/06, James Sherwood <[EMAIL PROTECTED]> wrote: > > Hi all, > > I am trying to make a page talk to the server without refreshing the page. > What I am actually trying to do is to

Re: Does Tapestry have a standard way to support user timezone?

2006-02-16 Thread Cliff Zhao
estry automatically sniffs the browser's timezone? 2. if I know the customer's timezone, can I tweak the datepicker's translator to translate the date/time based on the timezone? Thanks. On 2/15/06, Raul Raja Martinez <[EMAIL PROTECTED]> wrote: > > Cliff Zhao wrote: > > Does Da

Does Tapestry have a standard way to support user timezone?

2006-02-15 Thread Cliff Zhao
Does DatePicker consider users' timezones? Or is there a way to let DatePicker translate date in different timezones for different requests? Thanks.

Re: Tapestry DatePicker and some thoughts about ajax

2006-02-10 Thread Cliff Zhao
uses) ? I don't > think I've seen a web framework that provides more scripting support than > tapestry. > > Regardless, I would definitely anticipate the DatePicker render logic to > change somewhat in tapestry 4.1, as tapestry will fully support most ajax > functionality

Re: url forward problem

2006-02-10 Thread Cliff Zhao
BaseTagWriter, I guess. Or, I think that I saw somebody posted on this list: configure tomcat for reverse proxy. That may work for you. On 2/10/06, Stijn Christiaens <[EMAIL PROTECTED]> wrote: > > Hello list, > > I have a question that can be answerred by setting some Hivemind > property somewher

Re: Dynamically generating assets

2006-02-10 Thread Cliff Zhao
Create your own service that will return your graphic right away. On 2/10/06, Rob Dennett <[EMAIL PROTECTED]> wrote: > > I am generating some jpegs that I send to the client in a JSP app. The > graphic isn't stored on the server at all, just written to the output > stream. I was trying to figure

Tapestry DatePicker and some thoughts about ajax

2006-02-10 Thread Cliff Zhao
We had a problem of disabling DatePicker field in javascript. Although the input can be disabled, the calendar link can not. That gives some weird feeling. We finally make it disabled with JavaScript, but it may not be future-proof. It may not work if Tapestry changes how the DatePicker renders. I

org.apache.hivemind.ApplicationRuntimeException -- duplicate method: getXType

2006-02-10 Thread Cliff Zhao
In my page specification, I have: 1. a property xType 2. a PropertySelection component which use the Simple String model 3. binding the value parameter of PropertySelection to the property xType Also, I have this method in my page class: public abstract String getXType(); Then I got this exception

Re: disable rendering of tag

2006-02-07 Thread Cliff Zhao
Override the tapestry.utl.BaseTagWriter service with your own implementation, which you can do what ever you want, for example, render nothing. On 2/7/06, Mazhar, Osman (Home Office) <[EMAIL PROTECTED]> wrote: > > It seems like the Shell component creates an http base tag as follows: > > > > http:

How to do a form level client side validation?

2006-02-04 Thread Cliff Zhao
I see that all the validators are on the form fields. But before submit, I still need to cross-check form fields (the form fields have special relationships, for example, four fields together need to meet a certain rule) although the individual fields pass validation. On the server side, I can hand

Re: How can you control the Form URL in tapestry 4.

2006-01-29 Thread Cliff Zhao
I'm also wondering how to do a similar thing, but I do submit the form to my tapestry application. One of the query parameters is encoded into the URL because that parameter needs to be used in authorization. The value of the parameter is from an option list. When submiting the form, I need to mod

Re: instantiating components directly

2006-01-27 Thread Cliff Zhao
Very good point. I'm still new to Tapestry. But what you said confirmed my research on Tapestry. Thanks. On 1/27/06, Mind Bridge <[EMAIL PROTECTED]> wrote: > > Hi, > > Consider the following: > > - The base of Tapestry is IRender > - All Tapestry components and pages implement the IRender interfa

Re: tapestry not really component based?

2006-01-27 Thread Cliff Zhao
IMO, this is not about one dynamic component. If you open the door to introduce the dynamically created component, you introduce a chain of things. People will ask for everything equivalent to Swing, you will need layout components, ..., etc. It will make everything complicated. In the hype of ajax

Re: https again and still absolutely clueless :(

2006-01-27 Thread Cliff Zhao
I'm not a Apache expert, but I think that you can have Apache redirect your pages. Namely, when Apache gets http requests supposed to be https, Apache will redirect them to the https equivalent. Personally, I really like this kind of things be configured on Apache. On 1/27/06, Gerald Schöffel <[E

Re: IE crashes when I close my tapestry page

2006-01-26 Thread Cliff Zhao
When I disable AcroHlprObj IE Add-on, the problem disappears. What AcroHlprObj is for? After disable it, I still can view pdf files in IE. On 1/26/06, Cliff Zhao <[EMAIL PROTECTED]> wrote: > > I did more tests. I believe now that the dojo unload process has conflicts > with Tap

Re: IE crashes when I close my tapestry page

2006-01-26 Thread Cliff Zhao
else have any insight view on dojo's unload process? Thanks. On 1/26/06, Cliff Zhao <[EMAIL PROTECTED]> wrote: > > Some more tests showed: Tapestry.register_Form('..') related to the select > component. If I remove register_Form, I will not get the problem. >

Re: IE crashes when I close my tapestry page

2006-01-25 Thread Cliff Zhao
Some more tests showed: Tapestry.register_Form('..') related to the select component. If I remove register_Form, I will not get the problem. On 1/26/06, Cliff Zhao <[EMAIL PROTECTED]> wrote: > > I believe that this is something with select component. I did some other >

Re: IE crashes when I close my tapestry page

2006-01-25 Thread Cliff Zhao
hat function as well > at > some point. It was something about the property being null? I don't > remember. > > On 1/26/06, Cliff Zhao <[EMAIL PROTECTED]> wrote: > > > > I have a very strange problem. > > > > I have a Tapestry 4.0 page. The page inclu

IE crashes when I close my tapestry page

2006-01-25 Thread Cliff Zhao
I have a very strange problem. I have a Tapestry 4.0 page. The page includes 2 forms and one dojo Tree and some html tables for layout. The page showed up without any problem, but when I close the page, IE will crash with an error: "The instruction at "0x10005fbe" referenced memory at "0x10005fbe"

Re: How to overwrite the default global

2006-01-25 Thread Cliff Zhao
Got it. Thanks. On 1/25/06, Cliff Zhao <[EMAIL PROTECTED]> wrote: > > When I do a contribution to replace the global in my hivemind module, I > got a duplicate exception: > > > > > > > Any thing wrong? Or I can not overwrite? > > Thanks. >

How to overwrite the default global

2006-01-25 Thread Cliff Zhao
When I do a contribution to replace the global in my hivemind module, I got a duplicate exception: Any thing wrong? Or I can not overwrite? Thanks.

Re: Wiring up an Export service

2006-01-25 Thread Cliff Zhao
Are these Tapestry 3 or 4? They seems to be Tapestry 3. On 1/25/06, Patrick Casey <[EMAIL PROTECTED]> wrote: > > > Steve, > > Probably the easiest way to invoke a service is to link directly > to > it rather than use a directlink, have the page listener fire, and then > invoke the

Re: OutOfMemoryError

2006-01-25 Thread Cliff Zhao
>-Original Message- > > >>>From: Jason Dyer [mailto:[EMAIL PROTECTED] > > >>>Sent: Wednesday, January 25, 2006 5:44 PM > > >>>To: Tapestry users > > >>>Subject: Re: OutOfMemoryError > > >>> &

OutOfMemoryError

2006-01-25 Thread Cliff Zhao
After several times redeploy my war file in JBoss 4.0.3SP1, I get this error: java.lang.OutOfMemoryError: PermGen space Any advice? Thanks.

Re: How to specify multiple stylesheets in Shell component?

2006-01-25 Thread Cliff Zhao
Great! It works. Thank you very much. On 1/25/06, Hugo Palma <[EMAIL PROTECTED]> wrote: > > Try > > > > On 25/01/06, Cliff Zhao <[EMAIL PROTECTED]> wrote: > > > > Thanks. But how to write it? > > ognl:new java.lang.Object[]{asset:s1, asset:s2} >

Re: How to specify multiple stylesheets in Shell component?

2006-01-25 Thread Cliff Zhao
; http://jakarta.apache.org/tapestry/tapestry/ComponentReference/Shell.html > > http://jakarta.apache.org/tapestry/tapestry/apidocs/org/apache/tapestry/IAsset.html > > Hope that helps. > Eric > > On 1/25/06, Cliff Zhao <[EMAIL PROTECTED]> wr

How to specify multiple stylesheets in Shell component?

2006-01-25 Thread Cliff Zhao
How to specify multiple stylesheets in Shell component?

Re: Tapestry 4.0 problem with examples

2006-01-12 Thread Cliff Zhao
I see at least in two bugs are claimed fixed in HiveMind 1.1.1. Could you release HiveMind 1.1.1 or give some instructions on how to build HiveMind 1.1.1? I tried to build HiveMind from SVN repo but had no clue on how to build it and can not see any tag marked 1.1.1. Thanks. On 1/12/06, Howard

Re: A Bit of Profiling Goodness

2005-11-29 Thread Cliff Zhao
I have the exactly same feeling as you. Tapestry needs to learn the management aspect from other open source projects such as Eclipse, Spring Framework, etc. On 11/29/05, Patrick Casey <[EMAIL PROTECTED]> wrote: > > > > > You cannot be serious. C'mon, are you saying that > > dealing with "black

Re: A Bit of Profiling Goodness

2005-11-29 Thread Cliff Zhao
I understand Patrick's stand. Tapestry 4.0 is still changing its API from beta to beta. I understand different projects have different policies on betas and RCs. Does Tapestry have a stated policy somewhere? What's the milestone for an API freezing? I can feel the frustration that a big chunk of wo

Re: Tapestry lists alive?

2005-11-25 Thread Cliff Zhao
Me too. But got yours. On 11/25/05, Geoff Longman <[EMAIL PROTECTED]> wrote: > > Haven't seen any mail from the user or developer lists in at least 9 > hours... > > Geoff > -- > The Spindle guy. http://spindle.sf.net > Get help with Spindle: > http://lists.sourceforge.net/mailman/listi

Re: [Slighlty OT] How to checkout tapestry-prop

2005-11-25 Thread Cliff Zhao
Succeed. Thanks. On 11/25/05, Massimo Lusetti <[EMAIL PROTECTED]> wrote: > > On 11/25/05, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > > > Try again ... they think they've fixed it: > > For the records: first success, right now. > > -- > Massimo > > --

Re: [Slighlty OT] How to checkout tapestry-prop

2005-11-24 Thread Cliff Zhao
I still get authorization error: svn: PROPFIND request failed on '/svn/tapestry' svn: PROPFIND of '/svn/tapestry': authorization failed ( http://svn.javaforge.com) What's the user name/password? not anonymous/anon as stated in the JavaForge FAQ? Thanks. On 11/24/05, Massimo Lusetti <[EMAIL PROT