Re: WYSIWYG eclipse plugin for Tapestry

2006-07-06 Thread ZedroS Schwart
Here is the link I think : http://ezingbuilder.sourceforge.net/cms/ That's quite a good move ! Great ! However, I don't understand why you say it doesn't work for the Safari Webbrowser. After it's an eclipse plugin, isn't it ? Thanks for the info Cheers, ZedroS On 7/7/06, Jinshan Li <[EMAIL P

Re: Wiki implementation using Tapestry

2006-07-06 Thread Julio C. Rivera
Thanks Lennart, but I haven't found that proyect. Thanks Phillip, I will have a look at Stitches, I think it can be very useful. 2006/7/6, Lennart Benoot <[EMAIL PROTECTED]>: Someday I accidently ran accross a project, mentioned on the blog of Howard, that did somthing similar. Take a look at

RE: ValidationDelegate doesn't decorate (RESOLVED)

2006-07-06 Thread Firas A.
Christian, Your reply was of greate help. Indeed, since I was using a redirect-after-post the delegate never had a chance to do its work. Thank you! -Original Message- From: Christian Dutaret [mailto:[EMAIL PROTECTED] Sent: den 6 juli 2006 12:10 To: Tapestry users Subject: Re: Validati

WYSIWYG eclipse plugin for Tapestry

2006-07-06 Thread Jinshan Li
Now,eZing Builder is a visual (WYSIWYG) HTML editor and wizards for tapestry The plan is to make it an application builder like PowerBuilder and Visual Web Developer for Tapestry. This version of the plugin works on Windows, Linux and Mac (using FireFox not the Safari web browser). Please give me

Re: Tapestry website?

2006-07-06 Thread Jesse Kuhnert
Ok all fixed. (as soon as apache servers sync up that is, which should be 11 past the hour every hour) On 7/6/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: Yes we're aware. Thank you for pointing it out though. (I may have configured something incorrectly in maven2, it should be fixed shortly. )

Re: Tapestry website?

2006-07-06 Thread Jesse Kuhnert
Yes we're aware. Thank you for pointing it out though. (I may have configured something incorrectly in maven2, it should be fixed shortly. ) On 7/6/06, Ryan Cuprak <[EMAIL PROTECTED]> wrote: Hello, What happened to the Tapestry website? Is it just me or are quiet a few things missing? (http

Tapestry website?

2006-07-06 Thread Ryan Cuprak
Hello, What happened to the Tapestry website? Is it just me or are quiet a few things missing? (http://tapestry.apache.org) Thanks, Ryan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL P

RE: RE: Re: Partial form submit

2006-07-06 Thread Brian Duchek
I'm using a slighly outdated version of Tacos which does contain a component called PartialForm - I've seen, but not used. I'm pretty sure it does a partial refresh as part of submitting the form contents that it contains. -Original Message- From: Theo vN [mailto:[EMAIL PROTECTED] Sent

RE: Tapernate Usage Questions

2006-07-06 Thread James Carman
What I did was inject (autowire via tapestry-autowire actually) the DataSqueezer into my page and when I needed to construct the model, I just passed it into the constructor. > Care to share the code? It seems like doing the Squeeze the same as the > EntitySqueezer would be difficult since it dele

validation of fields within a For component

2006-07-06 Thread Christian Dutaret
Hi, I have a form which contains input fields (e.g. PropertySelection components) within For loops. I need to perform some custom validation, which sometimes acts across several fields. I usually implement single-field validation through validators, and cross-field validation in the listener (

RE: Tapernate Usage Questions

2006-07-06 Thread Lane, Geoffrey
I haven't seen an explanation for the different reattach strategies. Are there use cases to say when you would use one over the other? It seems like 'reattach-merge' is used when editing a persistent object on a form. What about 'reattach-lock' and 'reattach-update'? Thanks. -- Geoff Lane <[

RE: Tapernate Usage Questions

2006-07-06 Thread Lane, Geoffrey
Care to share the code? It seems like doing the Squeeze the same as the EntitySqueezer would be difficult since it delegates to the DataSqueezer (which I don't know how to get ahold of). -- Geoff Lane <[EMAIL PROTECTED]> Ph: 414 290-8031 -Original Message- From: James Carman [mailt

Re: Focus issues...

2006-07-06 Thread Paul Russell
Bugger, just noticed you'd found a more elegant version of the same solution! That'll teach me to catch up with my e-mail forwards not backwards. Sorry for the noise! Paul On 6 Jul 2006, at 19:43, Paul Russell wrote: James, I've done this before, for exactly the same reason. My solution

Re: Focus issues...

2006-07-06 Thread Paul Russell
James, I've done this before, for exactly the same reason. My solution was as follows: I wrote a component that sat in the form, and every 0.25 seconds set the value of a hidden field to the current scroll position using Javascript, and then output Javascript that when the form was redi

Re: Tapestry JumpStart - calling all armchair critics!

2006-07-06 Thread Bernard
Petter Måhlén wrote: Hi, Hello, The pattern suggested by Bernard felt like something I wanted to implement, so I decided to give it a shot using friendly URL:s. But, as far as I can tell, with Tapestry 4.0, RedirectException doesn't quite do the trick unless you have an absolute URL. Yes.

Re: RE: Re: Partial form submit

2006-07-06 Thread Theo vN
I don't like working with javascript but AJAX with Tacos is great. If only there was something like a partial form submit (similar to a partial page update). On 06/07/06, James Carman <[EMAIL PROTECTED]> wrote: This is exactly what I'm looking for. I don't want to use AJAX, though, because I ha

RE: EventSubmit?

2006-07-06 Thread James Carman
Tease! :-) -Original Message- From: Jesse Kuhnert [mailto:[EMAIL PROTECTED] Sent: Thursday, July 06, 2006 1:35 PM To: Tapestry users Subject: Re: EventSubmit? Hmm...Well, I know a pretty good one line solution for this one but it involves "ajaxy" features so it probably wouldn't help you

Re: EventSubmit?

2006-07-06 Thread Jesse Kuhnert
Hmm...Well, I know a pretty good one line solution for this one but it involves "ajaxy" features so it probably wouldn't help you... On 7/6/06, James Carman <[EMAIL PROTECTED]> wrote: I think I found some old 1.0 tapdocs somewhere that had that as a parameter... http://www.erinors.com/product

Re: Tapestry JumpStart - calling all armchair critics!

2006-07-06 Thread Bernard
Geoff Callender wrote: Can you tell me more? I've just noticed that you log on console when user logs in/out. So, after I click OK when browser asks if repost, you log that the admin has logged in So - normal login 19:34:57,520 INFO [LoginPage] admin has logged in. Click logout 19:35:01,

RE: EventSubmit?

2006-07-06 Thread James Carman
I think I found some old 1.0 tapdocs somewhere that had that as a parameter... http://www.erinors.com/product/tapdoc/sample/Framework/PropertySelection/ind ex.html Googled for "PropertySelection+eventListener" and it was like 4th on the list. -Original Message- From: Jesse Kuhnert [mailt

Re: EventSubmit?

2006-07-06 Thread Jesse Kuhnert
Are you talking to anyone in particular? I wasn't aware that PropertySelection has ever had an eventListener parameter. On 7/6/06, James Carman <[EMAIL PROTECTED]> wrote: Why was eventListener removed from the PropertySelection component? That's exactly what I need in this case, to be able to

RE: EventSubmit?

2006-07-06 Thread James Carman
Why was eventListener removed from the PropertySelection component? That's exactly what I need in this case, to be able to hook up a listener method with the onchange event of a PropertySelection. -Original Message- From: James Carman [mailto:[EMAIL PROTECTED] Sent: Thursday, July 06, 2

Re: Tapestry JumpStart - calling all armchair critics!

2006-07-06 Thread Bernard
Geoff Callender wrote: Bernard Lange man.poznan.pl> writes: Hello Geoff, Thanks, Bernard. What you've said sounds very logical, but I can't recreate the situation described. I tried 3 different browsers but in each case the Refresh button produced a GET and not a POST. Can you tell me mo

Re: Re: Partial form submit

2006-07-06 Thread Jesse Kuhnert
Yeah, sorry I couldn't provide more direct support during your tacos issues. I've had to draw a firm line and choose between maintaining tacos and getting 4.1 out the door. As far as tacos comparing to tapestry 4.1 I think people will find a rather large difference. The difference being that of a

EventSubmit?

2006-07-06 Thread James Carman
Does anyone know of an EventSubmit component which is kind of like the AjaxEventSubmit component, but not Ajaxy (that's a word, you know)? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTE

RE: Tapernate Usage Questions

2006-07-06 Thread James Carman
The drop-down lists could be taken care of using the squeezer. I implemented a SqueezerPropertySelectionModel class which squeezes the objects into their "values." -Original Message- From: Lane, Geoffrey [mailto:[EMAIL PROTECTED] Sent: Thursday, July 06, 2006 11:33 AM To: Tapestry users

RE: Focus issues...

2006-07-06 Thread James Carman
Based on Hugo's suggestion: 1. The component class... public abstract class Scroller extends BaseComponent { @Parameter(required=true) public abstract String getElementId(); @Asset("/WEB-INF/Scroller.script") public abstract IAsset getScriptAsset(); } 2. The script file... ht

RE: Tapernate Usage Questions

2006-07-06 Thread James Carman
Thank goodness I'm going out of town this weekend! -Original Message- From: Jesse Kuhnert [mailto:[EMAIL PROTECTED] Sent: Thursday, July 06, 2006 11:33 AM To: Tapestry users Subject: Re: Tapernate Usage Questions Hey Geoffrey! I have absolutely nothing new to add to the conversation but

Re: Focus issues...

2006-07-06 Thread Hugo Palma
Have u tried implementing a component to create a javascript that scrolls to a element in the document by id ? You can look here http://www.quirksmode.org/js/findpos.html for how to find the position of an element. Cheers, Hugo On 7/6/06, James Carman <[EMAIL PROTECTED]> wrote: All, Does any

RE: Tapernate Usage Questions

2006-07-06 Thread Lane, Geoffrey
Yes, that does make sense. How would you take care of the case where you have the same Hibernate persistent object in 2 different places? Should we just not be making Collections of objects (such as drop-down lists or table data) Persist, such that Tapernate will re-associate them with the active

Re: Focus issues...

2006-07-06 Thread Jer Kah
I haven't tried this with dropdowns, but this is what I use for linksubmits. It has some caveats though: It has to be used within a form named Form0 and it doesn't work with directLinks (I think)... It'd be nice if someone could help a brother out to fix the Form0 thing and put it on tassel...

Re: Tapernate Usage Questions

2006-07-06 Thread Jesse Kuhnert
Hey Geoffrey! I have absolutely nothing new to add to the conversation but just wanted to pipe in.. heh . If the suggestion James had doesn't work feel free to drop back in and we can hammer on him until it does ;) On 7/6/06, James Carman <[EMAIL PROTECTED]> wrote: For reattach-merge, you need

Re: Focus issues...

2006-07-06 Thread Jer Kah
also, that solution doesn't keep the focus on a particular field - it just scrolls back to where the screen was before the submit On 7/6/06, Jer Kah <[EMAIL PROTECTED]> wrote: I haven't tried this with dropdowns, but this is what I use for linksubmits. It has some caveats though: It has to be

RE: Tapernate Usage Questions

2006-07-06 Thread James Carman
For reattach-merge, you need to make sure you set your persisted property to null once you're done with it, or else it'll continually merge it in. Does that make sense? -Original Message- From: Lane, Geoffrey [mailto:[EMAIL PROTECTED] Sent: Thursday, July 06, 2006 10:55 AM To: users@tap

Tapernate Usage Questions

2006-07-06 Thread Lane, Geoffrey
Hi, (I'm new to the list) We've been porting an application to Tapestry 4 and trying to integrate Tapernate at the same time to allow us to do lazy-loading of Hibernate objects, etc. One issue we are having is that Tapernate appears to be merging old object state back into our Hibernate session a

Re: Wiki implementation using Tapestry

2006-07-06 Thread Lennart Benoot
Someday I accidently ran accross a project, mentioned on the blog of Howard, that did somthing similar. Take a look at his blog 2004 or 2005 I think... On 7/6/06, Julio C. Rivera <[EMAIL PROTECTED]> wrote: Hi! I need to add wiki features to a Tapestry web application. I would like my users cou

RE: Re: Partial form submit

2006-07-06 Thread James Carman
This is exactly what I'm looking for. I don't want to use AJAX, though, because I have not exactly had much luck with it. I wasted *way* too much time trying to get simple stuff to work. To me, it's not worth it. -Original Message- From: Theo vN [mailto:[EMAIL PROTECTED] Sent: Thursday

Focus issues...

2006-07-06 Thread James Carman
All, Does anyone know how to get Tapestry to "stay put" on a screen when you submit the form and reshow it? I have a form that is somewhat long. When I use an event (like selecting something in a drop-down box) that forces a form submit to refresh some other parts of the screen, the screen goes

Re: Re: Partial form submit

2006-07-06 Thread Theo vN
In my case I would prefer if the validation errors disappear. As a matter of fact it would be great if no validation takes place so that all input fields keep their data as it was entered even if the data is invalid. -- Regards Theo ---

RE: Tapestry JumpStart - calling all armchair critics!

2006-07-06 Thread Petter Måhlén
Hi, The pattern suggested by Bernard felt like something I wanted to implement, so I decided to give it a shot using friendly URL:s. But, as far as I can tell, with Tapestry 4.0, RedirectException doesn't quite do the trick unless you have an absolute URL. I got sent to the right page, but hitting

Re: XTile javascript error

2006-07-06 Thread Dan Adams
After some investigation, it looks like this is a problem with firefox that needs to be handled in the xtitle javascript: http://radio.javaranch.com/pascarello/2006/02/07/1139345471027.html The good stuff: Mozilla calls onload() for all HTTP transactions that succeeded. The only time it calls on

XTile javascript error

2006-07-06 Thread Dan Adams
I'm using XTile and get the following javascript error from firefox: Error: [Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIXMLHttpRequest.status]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: http://localhost:8090/admin/Home.html

Re: Tapestry JumpStart - calling all armchair critics!

2006-07-06 Thread Geoff Callender
Bernard Lange man.poznan.pl> writes: > I would suggest adding redirect-after-POST pattern > , > to circumvent subsequent form submissions. > > It is especially desirable for the login screen form , because at > present it

Re: Wiki implementation using Tapestry

2006-07-06 Thread Phillip Rhodes
hate to chime in here, but Stitches supports adding searching,adding,modifying content in the "textile" content markup syntax. I would be willing to help out if you have questions, guidance and/or some changes to the lib to make it work. > Hi! > > I need to add wiki features to a Tapestry web ap

Re: CMS Integration

2006-07-06 Thread Phillip Rhodes
Michael, The tapestry library that I developed (called stitches) has some cms functionality. It is a suite of tapestry components that provide creation,modify, search (using lucene) of a repository. The idea when I started stitches was to make it so stitches could work with jackrabbit,alfresco, e

Re: CMS Integration

2006-07-06 Thread Mike Grundvig
I left this vague to allow any sort of response. Basically, the closer it gets to something like Magnolia the better but anything someone else has done would be a start. Michael Grundvig Electrotank, Inc http://www.electrotank.com - Original Message - From: "Phillip Rhodes" <[EMAIL P

Re: ASO & Interceptor

2006-07-06 Thread Ron Piterman
The simple approach is to use the http://tapestry.apache.org/tapestry4/tapestry/hivedocs/service/tapestry.state.ApplicationStateManager.html service, either autowired or specifically set to your interceptor service. Another version which I use is create one hivemind service with getters for all

RE: NullPointerException in cleanupAfterRender()

2006-07-06 Thread Petter Måhlén
> > > > The editPageMap was initialised during pageBeginRender(): > > > > @InjectPage("EditItem") > > public abstract EditItemPage getEditItemPage(); > > > > public void pageBeginRender(PageEvent event) { > > editPageMap = new HashMap(); > > > >

Re: Family Tree web app problem with image map using Tapestry 4..

2006-07-06 Thread Ron Piterman
I didn't read through your short "novel" - but scanned through it - I would advice you to use a DirectLink component instead of the DirectArea, and pass a custom ILinkRenderer as a renderer parameter - Cheers, Ron Alex Tian wrote: hi, everyone, I know it's gonna be a lenthy statement below,

Re: Family Tree web app problem with image map using Tapestry 4..

2006-07-06 Thread Ron Piterman
Alex Tian wrote: hi, everyone, I know it's gonna be a lenthy statement below, but I desperately need help... my task actually is to build a "family tree" web application, for simplicity, e.g. User enters his/her name and his relatives'names (e.g. his parents' names and children's names ) and sum

Re: NullPointerException in cleanupAfterRender()

2006-07-06 Thread Bernard Lange
Petter Måhlén wrote: > Hi again, > > It struck me that maybe the problem was related to how the page was invoked, > and it turned out to be right: > > The editPageMap was initialised during pageBeginRender(): > > @InjectPage("EditItem") > public abstract EditItemPage getEditItemPage(

Re: ValidationDelegate doesn't decorate

2006-07-06 Thread Bernard Lange
Christian Dutaret wrote: > What I do is create a new instance of the delegate only if there isn't > one yet, and make it available to the form component through a page > property. You can make a delegate a page bean which would free you from managing delegate instance. regards, Bernard --

Re: ValidationDelegate doesn't decorate

2006-07-06 Thread Christian Dutaret
Firas A. a écrit : Hello, I'm using a custom validator (implements Validator) and the ValidationDelegate. I've verified that the custom validator I'm using is working correctly - the getHasErrors() of the delegate returns true. But ValidationDelegate doesn't decorate anything (no asterics, no

Re:

2006-07-06 Thread Paul Field
> Thx for your responce. But does it alway put localhost in the base tag even > if the app is deploy on a remove server? Actually the problem might be in the configuration of your application server. For example, we're running Tomcat behind a proxy server and we have to configure the Tomcat con

Family Tree web app problem with image map using Tapestry 4..

2006-07-06 Thread Alex Tian
hi, everyone, I know it's gonna be a lenthy statement below, but I desperately need help... my task actually is to build a "family tree" web application, for simplicity, e.g. User enters his/her name and his relatives'names (e.g. his parents' names and children's names ) and sumbit the form (trig

Re: help please, problem with image map using Tapestry 4 !!!

2006-07-06 Thread Alex Tian
Jessek, I don't quite understand what you said. did you mean I should modify DirectArea.java? I know it's gonna be a lenthy statement below, but I desperately need help... my task actually is to build a "family tree" web application, for simplicity, e.g. User enters his/her name and his relative

ValidationDelegate doesn't decorate

2006-07-06 Thread Firas A.
Hello, I'm using a custom validator (implements Validator) and the ValidationDelegate. I've verified that the custom validator I'm using is working correctly - the getHasErrors() of the delegate returns true. But ValidationDelegate doesn't decorate anything (no asterics, no red labels). I then

Re:

2006-07-06 Thread Diego
Thx for your responce. But does it alway put localhost in the base tag even if the app is deploy on a remove server? Because this is the first time (using tapestry a while) I had to add renderBaseTag="false" to the Shell component. If i don't do this the form posts ect on the webpages served from

Wiki implementation using Tapestry

2006-07-06 Thread Julio C. Rivera
Hi! I need to add wiki features to a Tapestry web application. I would like my users could add and edit pages in a web space. I have been looking for some tapestry-wiki engine integration component with no luck. I tried to integrate my Tapestry application and XWiki using sitemesh, but I didn't