AW: continue from same point after log in

2007-04-27 Thread Peter Schröder
hi paul, i think that there is a workflow for this in here: http://www.agileskills2.org/EWDT/ ICallback interface or something. kind regards, peter -Ursprüngliche Nachricht- Von: Paul Stanton [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 27. April 2007 02:58 An: Tapestry users

@DirtyFormWarning missing from Tacos 4.1.0-SNAPSHOT

2007-04-27 Thread Marcus.Schulte
I've just realised that @DirtyFormWarning is (currently) gone from Tacos 4.1.0-SNAPSHOT. I'd be very grateful for any hints on how you worked around this - or what the difficulty was in porting this one. Marcus

Re: @DirtyFormWarning missing from Tacos 4.1.0-SNAPSHOT

2007-04-27 Thread Andreas Andreou
Well, (at least) I haven't needed it (yet) but i can take a look to see if it can easily be ported - unless you've already done it (or planning on doing so) On 4/27/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I've just realised that @DirtyFormWarning is (currently) gone from Tacos

[T5] IOC: services without interface do not work

2007-04-27 Thread Kristian Marinkovic
hi all, when i try to return a service in my module that does not have an interface i get a No service implements the interface... exception. The recent blog entry suggests that it should work now .. http://tapestryjava.blogspot.com/2007/04/pleasing-crowds-improving-ioc-extending.html My

problems in Demo of Tacos's TAB Upload Progress Bar

2007-04-27 Thread sunilmanu
Hi Everyone, I noticed some issues with the Tacos demo of Upload progress Bar example. I tried to upload various files and the Status Progress Bar shows up after a lng time for a Big file and even after progress bar comes up, it does not move. i.e progress is not being showed in the

AW: Problem with quickstart

2007-04-27 Thread Peter Schröder
hi marcel, both annotations are deprecated. just delete them. this is a bug in the quickstart-tutorial, but nobody seams to care about that... -Ursprüngliche Nachricht- Von: Thannhäuser, Marcel [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 27. April 2007 16:03 An:

Templating with Tapestry 5

2007-04-27 Thread bjornharvold
Ok, I've been barking up a tree the whole day... and I'm not even sure it's the wrong one. I want to be able to do real component templating like struts has it's tiles. So my page (CoolPage) would look something like this: t:layout/ .. a one liner My CoolPage.java would have some string

Re: Templating with Tapestry 5

2007-04-27 Thread Konstantin Ignatyev
Had the same problem when I started with T after spending too much time with Struts. In T Layout is usually done upside down compared to struts: layout is handled by Border component that is wrapper to the page content. Feels weird initially but works well. --- bjornharvold [EMAIL PROTECTED]

Re: Templating with Tapestry 5

2007-04-27 Thread bjornharvold
Konstantin, Can you give me an example? thx bjorn Konstantin Ignatyev wrote: Had the same problem when I started with T after spending too much time with Struts. In T Layout is usually done upside down compared to struts: layout is handled by Border component that is wrapper to the

Re: Templating with Tapestry 5

2007-04-27 Thread Konstantin Ignatyev
Just look closely at the Workbench example that comes with Tapestry: Border component has span jwcid=@RenderBodyPage content goes here./span And individual pages look like this; span jwcid=@Border -- this is the first page line .. Meaningful page content .. /span --- bjornharvold [EMAIL

Re: Templating with Tapestry 5

2007-04-27 Thread bjornharvold
But that's Tapestry 4, no? Oh I think I get it. In tapestry 5 you have the t:body/ Basically, you wrap your components in layouts. Konstantin Ignatyev wrote: Just look closely at the Workbench example that comes with Tapestry: Border component has Page content goes here. And

Create error page T4.0.2

2007-04-27 Thread Josh Joy
Hi, Sorry, though I've tried looking for the documentation though I probably just missed it... If tapestry experiences an error, for example I have an invalid HTML template so it will have a parsing error, or perhaps I have an application error, Tapestry will display a very nice exception page

Re: Templating with Tapestry 5

2007-04-27 Thread Yann Ramin
Went down this road recently. You have a Layout component (call it what you want) htmlbodysome static stuff t:body/ /body /html and each page uses the layout; t:layout body body /t:layout if you want more flexibility, you can pass in other components as parameters, and use t:delegate to

Re: Templating with Tapestry 5

2007-04-27 Thread bjornharvold
Nice - thanks :-) -- View this message in context: http://www.nabble.com/Templating-with-Tapestry-5-tf3659025.html#a10226122 Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL

Re: Create error page T4.0.2

2007-04-27 Thread Matt Larson
The absolute easiest thing to do is to create a page named Exception (.html and .page). This will then be picked up automatically as the Exception page. Unfortunately you may have to do some build script magic to differentiate between production and development. I have my production

Re: problems in Demo of Tacos's TAB Upload Progress Bar

2007-04-27 Thread Shing Hing Man
For the tab component, try adding style type=text/css /* Must have this, otherwise the body of the tabs will not be visible */ .dojoTabContainer{ width: 100%; height: 20em; } /style Shing --- sunilmanu [EMAIL PROTECTED] wrote: Hi Everyone, I noticed some

RE: Problem with quickstart

2007-04-27 Thread Allen, Mark C.
If you just remove the annotations that are causes the errors, you should be able to make use of the quick start. Mark -Original Message- From: Thannhäuser, Marcel [mailto:[EMAIL PROTECTED] Sent: Friday, April 27, 2007 7:03 AM To: users@tapestry.apache.org Subject: Problem with

Re: Create error page T4.0.2

2007-04-27 Thread jake123
Hi Josh, you can do a infrastructur override in your hivemodule.xml like this: contribution configuration-id=tapestry.InfrastructureOverrides property name=exceptionPageName value=CustomExceptionPage / /contribution and then you create your own CustomExceptionPage: public abstract