t5: turning off logging for jetty

2009-06-28 Thread Angelo Chen
Hi, Sorry if this is not T5 related, just looking for a quick solution. when testing t5 app in jetty, the logs shows a lot of http requests like: 127.0.0.1 - - [29/Jun/2009:00:59:30 +] "GET /assets/ctx/3ebed60239... is there a way to turn this off? Thanks, Angelo -- View this message in c

Re: access component variable

2009-06-28 Thread nille hammer
Hi Cid, You could use Tapestry's Envronment feature. Look here for documentation: http://tapestry.apache.org/tapestry5.1/guide/env.html Although I think you should design your components a bit differently, so that you don't need to do this. Maybe you could give us some more details on your spe

t5: T5 friendly e commerce software?

2009-06-28 Thread Angelo Chen
Hi, looking for an eCommerce software in Java, is there a 'Tapestry 5 friendly' one? to make it clear, I'm quite comfortable in Tapestry5 and like it very much, however, making an eCommerce software from scratch will be a big task, abandoning T5 for this coming project is something I don't like to

Re: T5 remove prototype and scriptaculous

2009-06-28 Thread Onno Scheffers
> > There are some conflict with prototype and scriptaculous on my page. Is > that > possible to remove these javascript loading for specific pages? > Thanks. Not yet. What kind of conflicts do you have? regards, Onno

T5 remove prototype and scriptaculous

2009-06-28 Thread haipeng du
There are some conflict with prototype and scriptaculous on my page. Is that possible to remove these javascript loading for specific pages? Thanks. -- Haipeng Du Salt Lake City

Re: AJAX Loading Spinner

2009-06-28 Thread ningdh
I think what you need is prototype's global ajax responser register. Ajax.Responders.register( { onCreate: function() { // ajax request is sent } }, onComplete: function() { // ajax response is back. } }) DH - Original Message - From: "Daniel Jones" To: Sent: Sunday, June

Re: Returning a file attachment and a page together in a request

2009-06-28 Thread Geoffrey Wiseman
On Sun, Jun 28, 2009 at 12:08 AM, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > I am able to do (1) using StreamResponse but not sure how to solve (2)- >> send a Page response back and a file as an attachment. >> > > > To redirect the user to a page (Login, for example), just return

AJAX Loading Spinner

2009-06-28 Thread Daniel Jones
Hi Guys, Looking for a bit of help. I have an action link which adds an item to the users shopping basket, it then updates a summary zone which is basically an overview of what they have added to their basket. Like so: Add to Order What I want to do is display a loading spinner when the 'Add

access component variable

2009-06-28 Thread Captain Cid
hi, i have page with 2 components A and B...i want to access 1st components variable say "foo" (A.foo) after it is invoked in component B..how can i do so ? -- View this message in context: http://www.nabble.com/access-component-variable-tp24240467p24240467.html Sent from the Tapestry - User ma