How to include "broken" javascript?

2006-10-05 Thread Henri Dupre
We have several partners that require us to include some javascript like that:

Re: [~OT] problems with tapestry app on tomcat

2006-10-05 Thread Dan Adams
I just installed a new tomcat install where each webapp runs in a separate jvm so there couldn't be any classloader funkiness and I'm still seeing this problem. Any suggestions? On Thu, 2006-10-05 at 11:09 -0400, Dan Adams wrote: > I posted this to the tomcat list and someone mentioned that they u

Re: SSL Security Information Warning Tacos

2006-10-05 Thread andyhot
Perhaps use http://dojotoolkit.org/pipermail/dojo-checkins/2006-June/007071.html Jesse Kuhnert wrote: > It's the iframe created to handle the background display. I've brought > it up > with one of the dojo devs (there are a few trac tickets open for it as > well) > but haven't gotten a response ba

Re: SSL Security Information Warning Tacos

2006-10-05 Thread Chris Chiappone
Ok thanks jesse, I guess i'll wait to add that feature until this gets figured out. On 10/5/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: It's the iframe created to handle the background display. I've brought it up with one of the dojo devs (there are a few trac tickets open for it as well) but

Re: SSL Security Information Warning Tacos

2006-10-05 Thread Jesse Kuhnert
It's the iframe created to handle the background display. I've brought it up with one of the dojo devs (there are a few trac tickets open for it as well) but haven't gotten a response back yet. On 10/5/06, Chris Chiappone <[EMAIL PROTECTED]> wrote: I narrowed this down to something in the tacos

Re: SSL Security Information Warning Tacos

2006-10-05 Thread Chris Chiappone
I narrowed this down to something in the tacos:Dialog component. Any thoughts? On 10/5/06, Chris Chiappone <[EMAIL PROTECTED]> wrote: I checked the source of my page and there is no references to http anywhere. Also I haven't written any javascript in my page. Could it be some reference in t

Re: SSL Security Information Warning Tacos

2006-10-05 Thread Chris Chiappone
I checked the source of my page and there is no references to http anywhere. Also I haven't written any javascript in my page. Could it be some reference in the dojo package? On 10/4/06, Jesse Kuhnert < [EMAIL PROTECTED]> wrote: IE Shows those when you try to switch between https and http in

Re: [~OT] problems with tapestry app on tomcat

2006-10-05 Thread Dan Adams
Hey Kevin. Long time. :) Well, this happens when you make a normal request like just clicking a link, not necessarily when you are refreshing a lot or something. It's very strange. On Thu, 2006-10-05 at 12:33 -0400, Kevin Menard wrote: > Hi Dan, > > Dan Adams wrote: > > I'm getting a problem that

Re: Contrib:Table pagination and validation issue

2006-10-05 Thread Vinicius Carvalho
I tried that, I'm pretty sure I missed something, but it did not work for a reason (at least I believe that) my ImageSubmit buttons where located around the register form. Even using Javascript (document.forms['tableForm'].submit()) for some reason, some methods like the remove all (its a table wi

Re: [OT] your tomcat config for you tapestry apps

2006-10-05 Thread Daniel Jue
We are still in the development stages, but we'll be running Tomcat 5.5.17 behind IIS and using the isapi redirector. Single JVM, with default memory settings right now. Since our Tapestry pages look like standard html (i.e. they don't end in .jsp), and since our IIS instance is shared with othe

Re: Contrib:Table pagination and validation issue

2006-10-05 Thread Jesse Kuhnert
Why don't you just have a separate form wrapping your table ? Seems like the easiest solution to me. Maybe I've missed something though. On 10/5/06, Vinicius Carvalho <[EMAIL PROTECTED]> wrote: Hi there Jesse! It's a master detail page: So I have a form to register/update Seminars, and a Table

Re: [OT] your tomcat config for you tapestry apps

2006-10-05 Thread Kevin Menard
Dan Adams wrote: Do you run tomcat? Roughly what does your tomcat setup look like? - If you run virtual hosts do you run all apps in the same jvm or do you run multiple jvm instances? - What memory settings do you use? - Do you use tomcat with apache and if so what connector do you use? Mod_jk

Re: Autocompleter style

2006-10-05 Thread andyhot
I remember Jesse raising a talk about this exact issue at dojo's dev list. I'm sure a solution is on its way :) Peter Beshai wrote: > It seems that with the newest build of tapestry, the styling of the > autocompleter has changed and now the arrow (img.dojoComboArrow) has > "style='width: 22px; he

Autocompleter style

2006-10-05 Thread Peter Beshai
It seems that with the newest build of tapestry, the styling of the autocompleter has changed and now the arrow (img.dojoComboArrow) has "style='width: 22px; height: 22px'" built into its tag, which overrides the class' style. The arrow image is oversized at these dimensions (it is blurred by t

[OT] your tomcat config for you tapestry apps

2006-10-05 Thread Dan Adams
Do you run tomcat? Roughly what does your tomcat setup look like? - If you run virtual hosts do you run all apps in the same jvm or do you run multiple jvm instances? - What memory settings do you use? - Do you use tomcat with apache and if so what connector do you use? Mod_jk? jk2? mod_proxy? m

Re: tapestry-captcha/acegi integration

2006-10-05 Thread James Carman
Denis, The tapestry-captcha library does work, at least in isolation. Have you tried running with without the Acegi stuff baked in too? Can you turn up logging to see what HiveMind is trying to wire in when it creates that CaptchaEngineService? It will tell you what it wires and I'm pretty sure

Re: [~OT] problems with tapestry app on tomcat

2006-10-05 Thread Kevin Menard
Hi Dan, Dan Adams wrote: I'm getting a problem that appears to occur randomly. If I request the same page in my webapp over and over most of the time it will come up fine but sometimes tomcat won't return anything and I'll get a blank page and this error in the log: Oct 3, 2006 4:20:22 PM org.a

[~OT] problems with tapestry app on tomcat

2006-10-05 Thread Dan Adams
I posted this to the tomcat list and someone mentioned that they use tapestry and have seen the same thing so I thought I'd post it here. I could really use any help I can get with this one. I'm getting a problem that appears to occur randomly. If I request the same page in my webapp over and over

Re: Newbie question about ApplicationServlet

2006-10-05 Thread Steve Shucker
First of all, if you want a single manager object, tapestry provides Application State Objects to do this. See http://tapestry.apache.org/tapestry4/UsersGuide/state.html#state.aso for more info. For a single instance of an ASO across an entire application, you set the scope to "application" i

Re: tapestry-captcha/acegi integration

2006-10-05 Thread Denis McCarthy
Thanks again James. I see what you're saying, but the fact is that I _am_ getting an NPE when calling a method on the LinkFactory in the CaptchaEngineService, and the LinkFactory within the Service is indeed null (meaning that it is not getting wired up, I assume). I'm sure I'm missing somethin

Re: Contrib:Table pagination and validation issue

2006-10-05 Thread Vinicius Carvalho
Hi there Jesse! It's a master detail page: So I have a form to register/update Seminars, and a Table with all the Seminars registred so far. As any form, it has validation on many fields. So, when I get a pagination, and the user clicks on the navigation, the page renders with errors from the vali

Re: tapestry-captcha/acegi integration

2006-10-05 Thread James Carman
HiveMind doesn't require you to explicitly set your properties. It has an "autowire" feature. So, HiveMind will set those properties for you just becuase it has service points defined which implement those interfaces. Tapestry-Acegi is not very well documented currently, but it's not really rock

Re: Newbie question about ApplicationServlet

2006-10-05 Thread Dennis Sinelnikov
Dave, In Tapestry3, we have a web application that forks our custom threads, nothing wrong with that. Jesse is right with Tapestry4, HiveMind does many neat things for you. I've only had a chance to play around parsing application configurations via a xml file. HiveMind would basically pars

Re: tapestry-captcha/acegi integration

2006-10-05 Thread Ed Ross
where did you find any documentation on tapestry-acegi ? I tried using it breifly, but gave up as I couldn't find the source or any documentation. On 10/5/06, Denis McCarthy <[EMAIL PROTECTED]> wrote: Thanks for the response James. The relevant part of the hivemodule.xml in the version I downl

Re: Newbie question about ApplicationServlet

2006-10-05 Thread Dave Rathnow
Jessie, I'm not sure what you're refering to. Do you mean creating threads or the process of initializing my background process, which may involve creating threads? Dave. - Original Message - From: "Jesse Kuhnert" <[EMAIL PROTECTED]> To: "Tapestry users" Sent: Wednesday, October

Re: Newbie question about ApplicationServlet

2006-10-05 Thread Dave Rathnow
Hi Dennis, The application we're writing is "bridging" topics across multiple JMS servers. The initialization involves creating and initializing all the necessary JMS objects. Pretty simple, really, which is why we decided to make this our first Tapestry project. There is a single "manage

Re: tapestry-captcha/acegi integration

2006-10-05 Thread Denis McCarthy
Thanks for the response James. The relevant part of the hivemodule.xml in the version I downloaded looks like this: . . . interface="org.apache.tapestry.engine.IEngineService"> class="com.javaforge.tapestry.captcha.service.CaptchaEngineService"> value="