summer of code coming to end

2006-08-31 Thread Jesse Kuhnert
There has been some signifcant tooling going on by those crazy guys at aol. It looks like with the move of all tapestry javascript into dojo packages which has already happened - people who care will be able to create special compressed js versions that include exactly ~only~ the javascript that t

Re: Few questions (contrib:table and link )

2006-08-31 Thread andyhot
Create a page in your app and name it Exception Vinicius Carvalho wrote: > Yep, I'm catching them :) now everything works! > One thing that I'd like to know also (could not find on the tapestry > site or kent's book) is how to customize the exception page. for a > production environment I'd rather

Re: multiple stylesheets

2006-08-31 Thread Nick Westgate
Hi Brian. Hopefully someone using T4 can offer you more help, but in my current T3 project I do this via ... Border.jwc - which has a stylesheets parameter: ... 'html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"' ... SomePage

Re: Few questions (contrib:table and link )

2006-08-31 Thread Vinicius Carvalho
Yep, I'm catching them :) now everything works! One thing that I'd like to know also (could not find on the tapestry site or kent's book) is how to customize the exception page. for a production environment I'd rather have a: "bad server no donut for you" message, and a link to email the administr

Re: Few questions (contrib:table and link )

2006-08-31 Thread andyhot
Vinicius Carvalho wrote: > Thanks that did the trick :) > > Regarding the exception, yeah, seems that tapestry captures all > runtime exceptions and wrap them inside ApplicationRuntimeException, > so my catch(ChatServerException) would never be executed :) So, are you catching ApplicationRuntimeExc

Re: How to use tacos components?

2006-08-31 Thread Pedro Viegas
You may have a dojo incompatibility issue. Take a look at what version of dojo you have installed and what version the TACOS release you have requires. I had a similar issue a while back and this was the reason. Hope it helps, On 8/31/06, Jasper Huzen <[EMAIL PROTECTED]> wrote: I'm trying to u

Re: TapIDEA future, post "Time to move on"

2006-08-31 Thread Pedro Viegas
+1 James. Let's all please calm down, we all want the same thing, to make Tapestry even better than it is, to keep improving it. The fact we all care so much is a good thing, the fact that we're all so committed to this can be an advantage. But let's be very objective about things. We don't all ha

Re: Few questions (contrib:table and link )

2006-08-31 Thread Vinicius Carvalho
Thanks that did the trick :) Regarding the exception, yeah, seems that tapestry captures all runtime exceptions and wrap them inside ApplicationRuntimeException, so my catch(ChatServerException) would never be executed :) Regards On 8/31/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Dependi

RE: Tapestry Acegi

2006-08-31 Thread Jasper Huzen
I've used Acegi too and it's great! Maybe you should try trails, because this can generate a lot of stuff for Acegi. I used that too and after adding some small annotations to my DAO objects, the total security, inclusive admin tool, was ready. -Original Message- From: Robert Cole

Re: Few questions (contrib:table and link )

2006-08-31 Thread robertz
Depending on the complexity of your confirmation dialog, you can do something simple, too, like taking advantage of informal parameters. :) Something like: Purge Robert > Vinicius Carvalho wrote: >> 1st: Is there an way to have an confirmation message for my >> DirectLink? Like showing an confir

Re: Few questions (contrib:table and link )

2006-08-31 Thread Vinicius Carvalho
Yep, not exceptions thrown. The underline listener method implemented by the page is: public void onMessageReceive(IRequestCycle cycle){ try{ cycle.setListenerParameters(new Object[]{getChatServer().deQueueMessage(getUser())}); }catch (ChatS

RE: TapIDEA future, post "Time to move on"

2006-08-31 Thread James Carman
This conversation isn't heading in the right direction. As the Tapestry community, we need to focus on trying to make Tapestry better. Personal attacks against people that you don't agree with are not going to help the situation (not blaming either party here, but I've seen a similar thread in th

Re: TapIDEA future, post "Time to move on"

2006-08-31 Thread Francis Amanfo
Yeah Jesse, I don't blame you. If I were the "Yes Sir" kind I would also say only Yes to my boss on anything without first analyzing myself if what he's doing makes sense. Fortunately I'm not that kind. I first think through my boss's request before going with him or her on issues. And in the envi

Re: The right way to look up a service?

2006-08-31 Thread Julian Sinai
It appears the non-deprecated API is: chartService = engine.getInfrastructure().getServiceMap().getService(ChartService.SERVICE_NAME); - Original Message Hi I'm writing my own engine service and I'm basing it on the Chart example in the Workbench app that ships with the Tape

RE: Is there a way to pregenerate Component/Page classes?

2006-08-31 Thread Patrick Moore
Hi Greg -- Thanks for your answer. As far as using testing as a solution, that is not very satisfactory as: - I am starting a company by myself and, while I am doing test code, I really want to focus on the business logic not the general of validation components and pages. - It relies on developer

RE: Tapestry Acegi

2006-08-31 Thread James Carman
Oh, as for the @Secured annotation not being present, you have to add the acegi-security-tiger.jar file (tiger = JDK5) to your classpath. Tapestry-Acegi uses the built-in @Secured annotation available from Acegi to secure page classes and listener methods. For the build to work, you will have to i

RE: Tapestry Acegi

2006-08-31 Thread James Carman
Yes, we use Tapestry-Acegi at work and it works just fine for us. You have to make sure you get all of the dependencies. A lot of the work is done by the hivemind-acegi module (also available at JavaForge) and the hivemind-acegi-dao module (if you want to use it). -Original Message- Fr

Re: Few questions (contrib:table and link )

2006-08-31 Thread andyhot
Vinicius Carvalho wrote: > 1st: Is there an way to have an confirmation message for my > DirectLink? Like showing an confirmation box "Are you sure you want to > purge all elements?" and if ok, calling the link? I believe I need to > use the ILinkRenderer for that, but I'm kinda confused yet, just

Tapestry Acegi

2006-08-31 Thread Robert Cole
Has anyone used the Tapestry-Acegi project? I'm about to implement some role based security on our project and we're looking at this as its linked on the Tapestry home page. Unfortunately there's no doc and the builds don't appear to work as when I tried one (the latest one from June some time)

multiple stylesheets

2006-08-31 Thread Brian Long
Hi all, I'm afraid I might have dug myself into a hole (again!), but I hope someone my have already encountered this problem and is willing to let me know of a possible solution. I'm trying to add multiple stylesheets to my web project, I'm currently using a @Shell component to enclose my web pa

Few questions (contrib:table and link )

2006-08-31 Thread Vinicius Carvalho
Hello there folks. I have a few questions, and just thought could be easier to sumarize them in one email :) 1st: Is there an way to have an confirmation message for my DirectLink? Like showing an confirmation box "Are you sure you want to purge all elements?" and if ok, calling the link? I belie

Re: TapIDEA future, post "Time to move on"

2006-08-31 Thread Jesse Kuhnert
But you forget that I'm in Howard's camp as well...So please when you mention facist regimes to include me as a leutenient at least. I would make the decision to support it again and again if given the chance. I mock you Mr. Amanfo. ~mock~ On 8/31/06, Francis Amanfo <[EMAIL PROTECTED]> wrote:

[no subject]

2006-08-31 Thread Brian Long

Re: TapIDEA future, post "Time to move on"

2006-08-31 Thread Francis Amanfo
Well, Mr. Mind, let me humbly say that I'm not trolling. I'm mentioning things which I know are of great concern to very many people. Having read the following post by you on July 28: "... the majority of people will expect some kind of backward compatibility between T4 and T5 and that expectatio

Re: Populating Tapestry ASO after successful Acegi Auth

2006-08-31 Thread Arjan Verstoep
[EMAIL PROTECTED] wrote: Greetings: I'm using Tapestry 4 and Acegi 1.0.1. I have acegi set up to perform authentication using the AuthenticationProcessingFilter. I have a requirement to place the domain object the Acegi UserDetails object is based upon into a Tapestry ASO for use during the us

RE: Auto-wiring in AssetService shouldn't be auto-wired?

2006-08-31 Thread Robert Cole
Sorry, I should have included my code. Here's the interceptor setup: I've also overriden the response renderer using InfrastructureOverrides but that shouldn't make any different. My Factory is below: public class ApplicationStateFlushingInter

How to use tacos components?

2006-08-31 Thread Jasper Huzen
I'm trying to use tacos components but I doesn't work as espected I've configured my tapestry project for usage of tacos. I can use (and see) DOJO objects when I add in example (I think the configuration is ok?) I tried to add to my html and I see the picker icon. My problem i

RE: Auto-wiring in AssetService shouldn't be auto-wired?

2006-08-31 Thread James Carman
You can't use an interceptor to inject dependencies reliably. Just adding an interceptor to a service shouldn't prohibit it from being autowired properly or make it stop working. Are you sure you've added your interceptor properly? Did you write your own interceptor factory to do it? -Ori

RE: Multilingual drop down menu content

2006-08-31 Thread Greg.L.Cormier
How is the content in a properties file but you're using a loop to get all the content? If it's in a properties file, it's obviously not dynamic stuff then? Greg -Original Message- From: Peter Dawn [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 30, 2006 11:35 PM To: tapestry-user@jaka

RE: Is there a way to pregenerate Component/Page classes?

2006-08-31 Thread Greg.L.Cormier
1. Testing. 2. Hmm, have you looked into a tag for web.xml? I'm not 100% sure it would work with Tapestry but, since Tapestry does have a Servlet, i would guess that it would. 4. I find that the servlet loading takes the longest, about 8 seconds the first time. After that, it's hard to determ

Auto-wiring in AssetService shouldn't be auto-wired?

2006-08-31 Thread Robert Cole
Hi all I'm hitting an issue that is really, really starting to get my goat. The AssetService service appears to have the WebRequest object auto-wired into it via Hivemind. This is a little odd as all of the other dependencies are wired in normally via the Hivemind mapping. I'm sure its just an

Jared Tapestry i18n component not contained in a library - possible?

2006-08-31 Thread Beat Hoermann
Sometimes I would like to pack a Tapestry component into a single jar-file without being forced to include it into a library. All my components are i18n capable, hence, they have a non-empty component message catalog. Strange enough, Tapestry cannot find the message keys as soon as the component

Re: Retrieving table column names

2006-08-31 Thread Nick Westgate
Hi Jasper. No, even Mind Bridge misinterpreted this thread, which is very poorly titled. It has nothing to do with the Table component. Read "table" as "DB table"! Cheers, Nick. Jasper Huzen wrote: I don't understand your exact problem but I think you have: user_name | user_password | som