Re: Xerces version

2006-08-17 Thread Danny Angus
9.0.2, 9.0.3 & 9.0.4 parsers all have issues with Tap3 Now we find that 10.1.2 and 10.1.3 have issues with Tap4 Ruthelssly logical if nothing else! d. *** The information in this e-mail is confid

listener desired on "For" component

2006-08-17 Thread Patrick Moore
Hi there -- I have a situation where I am displaying (using a For component) a list of editable items. When the form is submitted I would like to have a listener defined by the component containing the For component called for each iteration through For's body after all the components within that

Re: How to setup 4.1 MAVEN2 snapshot

2006-08-17 Thread Pedro Viegas
So am I! :-( Mark, what I am trying to do is simply get the latest SNAPSHOT of Tapestry 4.1.1. Honnestly I haven't fully understand what this exactly means! My app is build another way, nothing to do with this. All I want to do is get the latest JAR files os tapestry 4.1.1. I still haven't figure

Re: Search Text

2006-08-17 Thread Gurps
maybe do it using javascript highlighting or more complicated put some sort of post-filter after rendering the content (don't know how to do it in tapestry but know via JSP/JSTL)... Peter Dawn wrote: > > guys, > is there a component which allows text search. its sort of similar to > what the ta

RE: tapernate question

2006-08-17 Thread James Carman
The main reason that I use the Spring stuff is for the transaction demarcation stuff. Hibernate doesn't include anything "out-of-the-box" that allows you to do "nested" transactions (i.e. REQUIRES_NEW). You'd have to roll that yourself and Spring has already done that for me. Although, I'm looki

Re: How to setup 4.1 MAVEN2 snapshot

2006-08-17 Thread andyhot
Latest jars can be found in http://people.apache.org/repo/m2-snapshot-repository/org/apache/tapestry/tapestry-framework/4.1.1-SNAPSHOT/ http://people.apache.org/repo/m2-snapshot-repository/org/apache/tapestry/tapestry-contrib/4.1.1-SNAPSHOT/ http://people.apache.org/repo/m2-snapshot-repository/org/

Re: Search Text

2006-08-17 Thread Peter Dawn
i would prefer to do it through tapestry. and if not is there a JS library i can use. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Search Text

2006-08-17 Thread James Carman
Are you talking about searching for text within the page that you're reading? -Original Message- From: Peter Dawn [mailto:[EMAIL PROTECTED] Sent: Thursday, August 17, 2006 1:39 AM To: tapestry-user@jakarta.apache.org Subject: Search Text guys, is there a component which allows text sear

Re: Search Text

2006-08-17 Thread Peter Dawn
yes. thats the idea. i have been reading about lucene too. anyone tried that. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Search Text

2006-08-17 Thread albartell
>i would prefer to do it through tapestry. and if not is there a JS library i can use. Here is how I do it on my pages. Note that is a JSF component but it could be just as easily done in Tapestry. Hope that helps, Aaron Bartell ... ');"> ... /* * This is the function that actually highlights

RE: Search Text

2006-08-17 Thread James Carman
Hitting Ctrl-F on your browser won't do it? If it's the currently-displayed HTML document, your browser can do the searching for you, no? -Original Message- From: Peter Dawn [mailto:[EMAIL PROTECTED] Sent: Thursday, August 17, 2006 8:53 AM To: Tapestry users Subject: Re: Search Text ye

RE: listener desired on "For" component

2006-08-17 Thread Steve Shucker
Try putting an @InvokeListener component in your @For loop. -Steve -Original Message- From: Patrick Moore [mailto:[EMAIL PROTECTED] Sent: Thursday, August 17, 2006 1:13 AM To: Tapestry users Subject: listener desired on "For" component Hi there -- I have a situation where I am display

Re: Flash and Tacos?

2006-08-17 Thread Jesse Kuhnert
Ah great! Knowing that you can launch ff in gdb and the fact that you had to find out what the problem was probably hints at you making a great Tapestry dev :) We'd welcome any newcomers to the team.(might have to do a few patches and such to show your design chops but everyone does ...unless yo

page current URL?

2006-08-17 Thread Henri Dupre
I'd like to write an @Anchor component that provides anchor links with the absolute url of the page so that I can easily use anchors in any page. How can I retrieve the current URL in a page? Thanks, -- Henri Dupre Actualis Center

Re: page current URL?

2006-08-17 Thread Jesse Kuhnert
I think the PageService does a pretty good job of generating links that point to pages. On 8/17/06, Henri Dupre <[EMAIL PROTECTED]> wrote: I'd like to write an @Anchor component that provides anchor links with the absolute url of the page so that I can easily use anchors in any page. How can I

Re: page current URL?

2006-08-17 Thread Henri Dupre
Thanks Jesse, that was a lightspeed answer. On 8/17/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: I think the PageService does a pretty good job of generating links that point to pages. What I'm looking for is the current URL being rendered. I need to generate within any page (a form or an e

Re: page current URL?

2006-08-17 Thread andyhot
Henri Dupre wrote: > Thanks Jesse, that was a lightspeed answer. > > On 8/17/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: >> >> I think the PageService does a pretty good job of generating links that >> point to pages. > > > What I'm looking for is the current URL being rendered. > I need to genera

Re: page current URL?

2006-08-17 Thread Henri Dupre
On 8/17/06, andyhot <[EMAIL PROTECTED]> wrote: Henri Dupre wrote: > Thanks Jesse, that was a lightspeed answer. > > On 8/17/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: >> >> I think the PageService does a pretty good job of generating links that >> point to pages. > > > What I'm looking for is

Re: page current URL?

2006-08-17 Thread andyhot
I'm not sure the current url is stored somewhere in Tapestry for you to use... Perhaps you could use methods provided by an injected HttpServletRequest, getQueryString and getRequestURI should help... Henri Dupre wrote: > On 8/17/06, andyhot <[EMAIL PROTECTED]> wrote: >> >> Henri Dupre wrote: >>

Re: How to setup 4.1 MAVEN2 snapshot (sources)

2006-08-17 Thread Patrick Moore
does anyone know the magical maven'ism to get the sources? I do know how to get the jars but I can't seem to find the mechanism to get the nightly sources as well... -Pat - To unsubscribe, e-mail: [EMAIL PROTECTED] For addition

RE: listener desired on "For" component

2006-08-17 Thread Patrick Moore
Thanks ... I didn't think to look for another component. It doeslook like InvokeListener is the correct thing to use. -Pat --- Steve Shucker <[EMAIL PROTECTED]> wrote: > Try putting an @InvokeListener component in your @For loop. > > -Steve > > -Original Message- > From: Patrick Moore

Re: popup LinkSubmit

2006-08-17 Thread Mael Caldas
I'm thinking about use the DirectLink, passing the entity id as the parameter on each link, and them retrieve the entity from database on the listener, like I said... will be easier.. Thanks Jesse! On 8/16/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: You'll probably have to change the forms

Re: page current URL?

2006-08-17 Thread David Harkness
Henri Dupre wrote: I'd like to write an @Anchor component that provides anchor links with the absolute url of the page so that I can easily use anchors in any page. How can I retrieve the current URL in a page? I'm using this in my base page class, though I'm sure there's a spiffier way since

Re: page current URL?

2006-08-17 Thread Jesse Kuhnert
How cool! You guys aren't using Tapestry somewhere are you? I love your product =) On 8/17/06, David Harkness <[EMAIL PROTECTED]> wrote: Henri Dupre wrote: > I'd like to write an @Anchor component that provides anchor links with the > absolute url of the page so that I can easily use anchors i

Re: page current URL?

2006-08-17 Thread Martin Strand
If the current page wasn't loaded by the PageService, I believe this hack is needed in order to prevent a page reload. Right? On Thu, 17 Aug 2006 22:22:45 +0200, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: How cool! You guys aren't using Tapestry somewhere are you? I love your product =) On

Re: How to setup 4.1 MAVEN2 snapshot

2006-08-17 Thread Pedro Viegas
Hi there guys, Finnally I got there. Sorry for being a such a newbie at this! You were right, the pom.xml did not exist. It had the original name I got from the repo. I forgot to change it| :-( Shame on me big time! Since I got a similar error with java dump and all previouslly when a correct pom

Re: Search Text

2006-08-17 Thread Peter Dawn
i will try albartell's approach and see if it works. i was hoping there would be a tapestry component i could use. and James i dont want to use ctrl+f. i mean i can, but i would like to create something more specific to my web app. -

RE: Search Text

2006-08-17 Thread James Carman
Okay, cool. I am one of those guys who try to use the "simplest solution that works." I was just checking if Ctrl-F applied. :-) -Original Message- From: Peter Dawn [mailto:[EMAIL PROTECTED] Sent: Thursday, August 17, 2006 5:50 PM To: Tapestry users Subject: Re: Search Text i will try

Re: How to setup 4.1 MAVEN2 snapshot

2006-08-17 Thread robertz
Just thought I would mention, for all us maven newbies... I just found this announcement (dated April 26 2006) about a free maven 2 book on TSS: http://www.theserverside.com/news/thread.tss?thread_id=40126 The free maven 2 book mentioned there is still available. Robert > Hi there guys, > > Finna

RE: Search Text

2006-08-17 Thread Mark Stang
I would like to be able to search all my pages for text. Which is different from the current page. Thoughts? -Original Message- From: James Carman [mailto:[EMAIL PROTECTED] Sent: Thu 8/17/2006 3:55 PM To: 'Tapestry users' Subject: RE: Search Text Okay, cool. I am one of those guys w

Re: Search Text

2006-08-17 Thread Jesse Kuhnert
There is a special type of component that people don't get exposed to normall that contains any non managed text (ie free flow typed text in html), that might be a possibility..(I think it's called TextToken..something like that).. You're not going to be able to search a whole page in the sense o

Re: How to setup 4.1 MAVEN2 snapshot

2006-08-17 Thread Pedro Viegas
Robert... Thanks! Just downloaded the eBook. Very good stuff! A must have for a newbie like you said! Regards, On 8/17/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Just thought I would mention, for all us maven newbies... I just found this announcement (dated April 26 2006) about a free ma

Re: dojoContainerId not being read by shell component

2006-08-17 Thread Pedro Viegas
Just tested it in the latest SNAPSHOT and it works fine! Bug squashed I guess! ;-) On 8/17/06, Pedro Viegas <[EMAIL PROTECTED]> wrote: Giving a test drive at the Tap 4.1 I found that the shell component always uses the default value for the dojoContainerId. Even if we supply another as in...

RE: Search Text

2006-08-17 Thread Mark Stang
I guess I may have to reduce my expectations to only searching components. -Original Message- From: Jesse Kuhnert [mailto:[EMAIL PROTECTED] Sent: Thu 8/17/2006 4:58 PM To: Tapestry users Subject: Re: Search Text There is a special type of component that people don't get exposed to norma

Re: page current URL?

2006-08-17 Thread David Harkness
Martin Strand wrote: If the current page wasn't loaded by the PageService, I believe this hack is needed in order to prevent a page reload. Right? I use it for pages that require a login to access. If the user isn't authenticated, I grab the current URL (say a Product Purchase page that has t

Re: Search Text

2006-08-17 Thread Peter Dawn
i am going to have a look at lucene and try to get that to work. otherwise might use a simple JS implementation. through tapestry would be good but if its too time consuming then no. - To unsubscribe, e-mail: [EMAIL PROTECTED] Fo

Re: How to setup 4.1 MAVEN2 snapshot

2006-08-17 Thread Mark Reynolds
Can you give explain what you mean by "there are ranges in the version specifications" and perhaps give an example? On 8/16/06, Konstantin Ignatyev wrote: Rant: Unfortunately Maven archichitecture and practices are not allow repeatable builds because there are ranges in the version specificatio

Re: How to setup 4.1 MAVEN2 snapshot

2006-08-17 Thread Konstantin Ignatyev
http://docs.codehaus.org/pages/viewpage.action?pageId=25888 Example: aaa-1.0.jar specifies dependency like on zzz as [1.0,2.0) that makes build unstable and nonrepeatable because it now depends on content of a repository. --- Mark Reynolds <[EMAIL PROTECTED]> wrote: > Can you give explain wha

new dojo table widget

2006-08-17 Thread Jesse Kuhnert
http://blog.dojotoolkit.org/2006/08/17/new-widget-filteringtable This is probably the version I'll be adding into Tapestry eventually. I thought Drew would get a kick out of knowing that the bindings for columns/fields are now sporting a cool new "ognl" like syntax in for javascript json objects.

Re: new dojo table widget

2006-08-17 Thread Vinicius Carvalho
Really cool! I was waiting for this kind of component :) Thanks! On 8/17/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: http://blog.dojotoolkit.org/2006/08/17/new-widget-filteringtable This is probably the version I'll be adding into Tapestry eventually. I thought Drew would get a kick out of k

Re: page current URL?

2006-08-17 Thread Aleksej
Henri Dupre wrote: I'd like to write an @Anchor component that provides anchor links with the absolute url of the page so that I can easily use anchors in any page. How can I retrieve the current URL in a page? Thanks, Rendering link manually is wrong a way. In Tapestry 4 each request type ( p