dojo question

2006-06-07 Thread Peter Dawn
hi guys, sorry for asking an ant question. but i am trying to implement dojo and my ant file wouldnt include all my sub-folders. i have tried *.*, *. but to no luck. can you guys suggest something which will fix this problem. thanks. ---

RE: Tapestry/Acegi Integration...

2006-06-07 Thread James Carman
There are a few modules involved, all at JavaForge. The hivemind-acegi and hivemind-acegi-dao are located in the hivemind project. The tapestry-acegi module is located in the tapestry project. The SVN URLs are as follows: http://svn.javaforge.com/svn/hivemind/hivemind-acegi/trunk http://svn.ja

Re: Tapestry/Acegi Integration...

2006-06-07 Thread Henri Dupre
That's fantastic! Where's the code? On 6/7/06, James Carman <[EMAIL PROTECTED]> wrote: All, I have taken a stab at Tapestry/Acegi integration. The Tapernate example application now uses Acegi to secure the CreateMessage page (using a @Secured("ROLE_USER") annotation). By no means is this th

Tapestry/Acegi Integration...

2006-06-07 Thread James Carman
All, I have taken a stab at Tapestry/Acegi integration. The Tapernate example application now uses Acegi to secure the CreateMessage page (using a @Secured("ROLE_USER") annotation). By no means is this the final version. I just wanted to get it in front of some folks to see what they thought. En

Tacos installation problem

2006-06-07 Thread Peter Dawn
hi all, i am trying to install tacos (which also requires dojo) but i am having some problems here. i have done as follows, 1. download the tacos jar file and put it in lib folder 2. put a reference to it within my application file 3. download dojo and inserted it within my javascript folder now

Re: strange problem losing session variables

2006-06-07 Thread Nick Westgate
Hi John. Does this still happen with caching *enabled*? Cheers, Nick. John Menke wrote: Peter it's definitely storing them... This problem is sporadic... we can't reproduce - only we see the errors in the log - To unsubscrib

Re: Select first item of RadioGroup with n Radio Buttons

2006-06-07 Thread Nick Westgate
Hi Christian. I've tried to use the pageBeginRender That should work. Perhaps time to post some code ... Cheers, Nick. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Problems with @Bean annotation

2006-06-07 Thread spamsucks
While unlikely, another cause could be that you have the bean declared in your spec Andreas Bulling wrote: On 07. Jun 2006 - 16:09:42, Travis Romney wrote: | I'm trying to use the @Bean annotation. I have a very simple | Bean with a no-arg constructor that I'm trying to create. | | @Bean

Re: JavaScript outside the body tag

2006-06-07 Thread Peter Dawn
yep, i cant find any other way of putting the script component outside the body tag. so i am going to just reference an external js file. and that seems to work for now. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

the cycle of a component and de page in a submit

2006-06-07 Thread a a
i have a componenet with a property selection, a hidden with a listener, this component is in the page in a Form, i am tinking that this is the cycle page begin render page rewind seting propertys page page begin render componenet rewind render component rewind seting propertys component page be

Re: Problems with @Bean annotation

2006-06-07 Thread Travis Romney
I'm getting this all over the place. Annotations are not working for me at all in development mode. Agh! On 6/7/06, Travis Romney <[EMAIL PROTECTED]> wrote: I do have -Dorg.apache.tapestry.disable -caching=true set. Perhaps this should be logged as a bug? Travis On 6/7/06, Andreas Bulli

Re: JavaScript outside the body tag

2006-06-07 Thread Shing Hing Man
A Script component must be enclosed by a Body component. Please see the following details. http://jakarta.apache.org/tapestry/tapestry/ComponentReference/Script.html Shing --- Peter Dawn <[EMAIL PROTECTED]> wrote: > i am already using the javascript component for > this. but i am unable > to

Re: Problems with @Bean annotation

2006-06-07 Thread Travis Romney
I do have -Dorg.apache.tapestry.disable -caching=true set. Perhaps this should be logged as a bug? Travis On 6/7/06, Andreas Bulling <[EMAIL PROTECTED]> wrote: On 07. Jun 2006 - 16:09:42, Travis Romney wrote: | I'm trying to use the @Bean annotation. I have a very simple | Bean with a no-arg c

Re: Problems with @Bean annotation

2006-06-07 Thread Andreas Bulling
On 07. Jun 2006 - 16:09:42, Travis Romney wrote: | I'm trying to use the @Bean annotation. I have a very simple | Bean with a no-arg constructor that I'm trying to create. | | @Bean | public abstract InpoweredErrorDelegate getInpoweredErrorDelegate(); | | The page loads just fine on the first pas

Problems with @Bean annotation

2006-06-07 Thread Travis Romney
I'm trying to use the @Bean annotation. I have a very simple Bean with a no-arg constructor that I'm trying to create. @Bean public abstract InpoweredErrorDelegate getInpoweredErrorDelegate(); The page loads just fine on the first pass. If I try to reload the page, there after I get an exception

Re: JavaScript outside the body tag

2006-06-07 Thread Peter Dawn
i am already using the javascript component for this. but i am unable to put this component outside the body tag (inbetween and ) in the HTML. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL P

Re: Select first item of RadioGroup with n Radio Buttons

2006-06-07 Thread Phillip Rhodes
The way that I would do this is to bind your property to a persistent page property and just set that property before you call page.activate MarriedQuestion mq = new MarriedQuestion(); mq.setAnswer("No); QuestionPage qp = (QuestionPage) cycle.getPage("QuestionPage"); qp.setMarriedQuestion(mq); c

Re: Tacos examples

2006-06-07 Thread Andreas Bulling
On 06. Jun 2006 - 16:08:14, Jesse Kuhnert wrote: | It's been moved to the new site finally, but I still need to do some | subdomain fun to get it the way I'd like. | | This demo is current as of a few days ago, so it might be misleading to say | it's "official" if there are any bugs/ whatever.. |

Re: Select first item of RadioGroup with n Radio Buttons

2006-06-07 Thread Christian Mittendorf
Am 07.06.2006 um 19:34 schrieb Phillip Rhodes: I think that your radio group is bound to a property, in which case, can you just set your property and the radio group would automatically reflect this when it is rendered? Yes, I bound the select option to a property and I want to set this p

How to go to a specific page on a table

2006-06-07 Thread Chris Nelson
I've seen this question asked several times but hadn't seen an answer. Has anyone managed to build a @contrib:Table where you can programmatically advance to a specific page? __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection

Re: strange problem losing session variables

2006-06-07 Thread Jason Dyer
Just a wild guess, but are all of the object you're storing Serializable? I think that some (clustering) containers require that... On Wednesday 07 June 2006 15:06, Phillip Rhodes wrote: > Sounds like your container is not able to tie the session to the client. > > Are cookies turned off for cli

Re: strange problem losing session variables

2006-06-07 Thread Phillip Rhodes
Sounds like your container is not able to tie the session to the client. Are cookies turned off for clients? Have a multi-domain site and the cookies are not going across domains? > Maybe synchronization glitches can be the cause? nothing prevents a user > from firing two concurrent requests th

Adding a onclick confirm to button

2006-06-07 Thread Chris Chiappone
Hi, Is there an easy way to add onclick=return confirm() to the buttonRenderer in tapestry 4.0? -- ~chris

@For within a @contrib:Table

2006-06-07 Thread albartell
I am having an odd issue. When the below executes it obtains ognl:dataItems just fine, but when it gets to the internal @For loop an error is thrown: ognl.OgnlException... source is null for getProperty(null, "leadtagtype") The problem seems to be that the contrib:Table isn't waiting for the le

Re: strange problem losing session variables

2006-06-07 Thread Henri Dupre
Maybe synchronization glitches can be the cause? nothing prevents a user from firing two concurrent requests that would both modify your session objects at the same time. On 6/7/06, John Menke <[EMAIL PROTECTED]> wrote: Peter it's definitely storing them... This problem is sporadic... we ca

Re: Select first item of RadioGroup with n Radio Buttons

2006-06-07 Thread Phillip Rhodes
I think that your radio group is bound to a property, in which case, can you just set your property and the radio group would automatically reflect this when it is rendered? > Hello! > > I'm currently working on a RadioGroup which includes 1, 2 or 3 > RadioButtons. The decision which Buttons

Re: SEM and Tapestry apps

2006-06-07 Thread Henri Dupre
Hi Jerome, I'm not sure to understand the whole problem... For serving / instead of index.html that sounds to me more connected to your apache configuration. Unless this is part of your tapestry/tomcat application. Then for generating "/" links, there are many possibilities around... it depends

Select first item of RadioGroup with n Radio Buttons

2006-06-07 Thread Christian Mittendorf
Hello! I'm currently working on a RadioGroup which includes 1, 2 or 3 RadioButtons. The decision which Buttons will be shown is done at runtime. However, I'd like to select the first visible button of this group as the default selection. Can anybody give me a hint on how I could solve th

Re: Portlet performance

2006-06-07 Thread John Singleton
Jesse Kuhnert gmail.com> writes: > > First I've heard of it. I didn't initially have plans on doing anything with > it but I'd be happy to in order to save you from jsf. :) > > Whatever "it" is probably won't happen in the initial alpha release as I > have some other items taking higher prior

Re: strange problem losing session variables

2006-06-07 Thread John Menke
Peter it's definitely storing them... This problem is sporadic... we can't reproduce - only we see the errors in the log On 6/5/06, Peter Dawn <[EMAIL PROTECTED]> wrote: perhaps your variable is not being stored in the first place. i used to get the same errors and then i realised that my origi

Re: strange problem losing session variables

2006-06-07 Thread John Menke
We are using Tapestry 4 On 6/6/06, Henri Dupre <[EMAIL PROTECTED]> wrote: Yes we have been experienced those... Are you using tapestry 3 or tapestry 4? Which servlet engine? Since we switched to tapestry 4, we have seen way less of these... And I'm 99% positive this has not anything to do with

Using portal with Tapestry

2006-06-07 Thread me
We're in the process of choosing the portal application to deploy our ( not developed yet ) Tapestry 4 portlets on. We can choose between Exo, JetSpeed , Liferay ... And basically anything else. I would appreciate any input on your experience with any of those packages. We're going to use Tomcat +

Re: TabPanel thing?

2006-06-07 Thread Phillip Rhodes
The best non-ajax version of a tab control (IMHO) is in stitches. Download: http://www.rhoderunner.com/repo/authsum/stitches/jars/ Demo of it: http://test.rhoderunner.com:8080/stitches/app?page=TabPage&service=page List of features: toggle visibility of tabs Toggle enblement of tabs Clientside

Re: Preferred method to search Tapestry mailing list history

2006-06-07 Thread Rodnei Couto
Hi, I use google. I put: site:http://mail-archives.apache.org/mod_mbox/jakarta-tapestry-user/ KEYWORD Replace KEYWORD with the words you want to search for. []'s Rodnei Couto Aaron Bartell escreveu: In the past I have used http://www.mail-archive.com/users%40tapestry.apache.org/ to search

Re: Preferred method to search Tapestry mailing list history

2006-06-07 Thread Mike Snare
I have to say it seems pretty stupid that apache doesn't index it's own mailing lists with lucene. -Mike On 6/7/06, Ben Dotte <[EMAIL PROTECTED]> wrote: Try here: http://dir.gmane.org/gmane.comp.java.tapestry.user Ben -Original Message- From: Aaron Bartell [mailto:[EMAIL PROTECTED] Se

RE: Preferred method to search Tapestry mailing list history

2006-06-07 Thread Ben Dotte
Try here: http://dir.gmane.org/gmane.comp.java.tapestry.user Ben -Original Message- From: Aaron Bartell [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 07, 2006 8:11 AM To: Tapestry users Subject: Preferred method to search Tapestry mailing list history In the past I have used http://ww

Preferred method to search Tapestry mailing list history

2006-06-07 Thread Aaron Bartell
In the past I have used http://www.mail-archive.com/users%40tapestry.apache.org/ to search the tapestry list history, but as of late no matter what I search for it comes back with zero results (even when I am sure there should be results). So this leads me to my next question... is anybody else h

SEM and Tapestry apps

2006-06-07 Thread Jérôme BERNARD
Hi, I am trying to make my website (http://www.kalixia.com) working fine for SEM (Search Engine Marketing). My current setup is an Apache front-end talking to a Tomcat server (using mod_jk). What I would like to be able to do is to have my home page (index.html) served by a request to '/' instea

Re: JavaScript outside the body tag

2006-06-07 Thread Shing Hing Man
An alternative is to wrap your javascript in a Script component. In .script file, just use the include-script element to include your javascript. Here is a sample. preview.script : http://jakarta.apache.org/tapestry/dtd/Script_3_0.dtd";>