Re: summer of code coming to end

2006-09-01 Thread Beat Hoermann
Jesse Kuhnert jkuhnert at gmail.com writes: 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

RE: How to use tacos components?

2006-09-01 Thread Jasper Huzen
Strange, But my solution is Don't use tacos, because DOJO has almost the same functionality I can use(see) a dropdowndatepicker, but how do I use that in combination with Tapestry? Can someone give me an example? I can't find any good documentation about that (just like the other parts of

RE: Tapestry Acegi

2006-09-01 Thread Robert Cole
Thanks James. I'd seen the Tapestry Acegi site and it looks a little thin on the ground ;-) I'll have another go with the docs you've sent and I'll see how I go. Rob Cole CSA Web +44 (0)20 754 51117

RE: Tapestry Acegi

2006-09-01 Thread Robert Cole
Thanks Jasper. I'll take a look. Rob Cole CSA Web +44 (0)20 754 51117

Re: multiple stylesheets

2006-09-01 Thread Brian Long
Nick, that worked perfectly, thanks! I just had to change a few things for it to comply with T4, but unfortunately now I'm faced with another problem, there's no titles on my stylesheets. Border.html html jwcid=shell stylesheets=ognl:{assets.stylesheet1,assets.stylesheet2 } Border.jwc asset

RE: How to use tacos components?

2006-09-01 Thread andyhot
Jasper Huzen wrote: Strange, But my solution is Don't use tacos, because DOJO has almost the same functionality If you just want to use 'simple' dojo widgets, this might be close to true - assuming that you use the dojoType=someWidget style which however has performance issues (and which

Re: multiple stylesheets

2006-09-01 Thread andyhot
Well, in Tapestry 4.1.1 there's a new component @Style that can append stylesheets inside HEAD. It can be used from anywhere - even components can have their needed stylesheets appended. Here's some example usages: link jwcid=@Style href=main.css media=all/ link jwcid=@Style href=asset:style1

Re: multiple stylesheets

2006-09-01 Thread Nick Westgate
Brian, I've never had to do that, but it's pretty easy to hack the built-in Tapestry components. Just look at the java source for Shell and add the outputting of the title attributes. In this case it looks like that would be easy if you want the stylesheet title based on the css filename, but

DirectArea component in Tapestry 4

2006-09-01 Thread Hajaansh
I was wondering how to make a DirectArea component (getting callbacks on Image Maps) for Tapestry 4 as the implementation for Tapestry 3 does not work in Tapestry 4. And clues? I was looking at using the ILinkRenderer but to be honest I am just getting in a muddle. Cheers, Hajaash

Re: DirectArea component in Tapestry 4

2006-09-01 Thread Hajaansh
Perfect. Where did you find that the name for the engine service was engine-service:direct ? On 9/1/06, Brian Long [EMAIL PROTECTED] wrote: Hajaansh, had the same problem myself when moving from 3 to 4, so here are the updated AreaLink.jwc and AreaLink.java that I use. The main difference

RE: DirectArea component in Tapestry 4

2006-09-01 Thread James Carman
It's a HiveMind object provider. http://tapestry.apache.org/tapestry4/tapestry/hivedocs/service/tapestry.serv ices.EngineServiceObjectProvider.html -Original Message- From: Hajaansh [mailto:[EMAIL PROTECTED] Sent: Friday, September 01, 2006 7:21 AM To: Tapestry users Subject: Re:

Re: DirectArea component in Tapestry 4

2006-09-01 Thread Hajaansh
I meant the direct part not the engine-service: part. Cheers, On 9/1/06, James Carman [EMAIL PROTECTED] wrote: It's a HiveMind object provider. http://tapestry.apache.org/tapestry4/tapestry/hivedocs/service/tapestry.serv ices.EngineServiceObjectProvider.html -Original Message-

RE: DirectArea component in Tapestry 4

2006-09-01 Thread James Carman
And, you can see where it's contributed as an object provider here: http://tapestry.apache.org/tapestry4/tapestry/hivedocs/config/hivemind.Objec tProviders.html -Original Message- From: James Carman [mailto:[EMAIL PROTECTED] Sent: Friday, September 01, 2006 7:24 AM To: 'Tapestry

RE: DirectArea component in Tapestry 4

2006-09-01 Thread James Carman
Oh, that. You can see that here: http://tapestry.apache.org/tapestry4/tapestry/hivedocs/module/tapestry.servi ces.html The engine services are contributed to the tapestry.services.FactoryServices configuration point. -Original Message- From: Hajaansh [mailto:[EMAIL PROTECTED] Sent:

Tapestry component deficiencies

2006-09-01 Thread Beat Hoermann
Tapestry web components are made of Tapestry jwc-components and Tapestry page components. The Tapestry jwc-component comprises all the logic and resources related to a component specification whereas the Tapestry page component comprises all the logic and resources related to a page

RE: Tapestry Acegi

2006-09-01 Thread Robert Cole
Hi James, I've managed to get Acegi up and running with our own custom filter but when I put the Tapestry Acegi jar into my build I get errors about various beans not being present. Is there any documentation on what Spring beans TA depends on? Also, looking at the hivemodule, most of the

RE: Tapestry Acegi

2006-09-01 Thread James Carman
Tapestry-Acegi doesn't use Spring at all. Can you send me the error messages? You need hivemind-acegi.jar in your classpath. -Original Message- From: Robert Cole [mailto:[EMAIL PROTECTED] Sent: Friday, September 01, 2006 9:53 AM To: Tapestry users Cc: 'Tapestry users' Subject: RE:

RE: Tapestry Acegi

2006-09-01 Thread Robert Cole
Hi James. Thanks for taking the time to help me with this. I think my problem was caused by not having the hivemind-acegi module. I've now got that plus the hivemind-acegi-dao, as I want to use a simple InMemoryDaoImpl. I think I'm now back into Hivemind related issues, as this is where my

Issues with Custom Components

2006-09-01 Thread jake123
Hi, I am a beginner with tapestry and I am trying to create my first custom component. I am using Kent Tongs book as my source and doing the Copyright component, but I am doing somthing wrong becouse I receive a org.apache.tapestry.util.xml.DocumentParseException that states: Unable to read

Re: Issues with Custom Components

2006-09-01 Thread Martin Strand
Read the error message. Your index.page has this line: component id=copyright value=Copyright but it should be: component id=copyright type=Copyright just a small typo :) Martin On Fri, 01 Sep 2006 21:17:29 +0200, jake123 [EMAIL PROTECTED] wrote: Hi, I am a beginner with tapestry and I am

Contrib Table Summarize

2006-09-01 Thread Mael Caldas
Hi, I'm using the contrib Table component, iterating over a Collection of Row Objects, and setting the collumns values with a String parameter. I want to get the last row of the table with a sum of all data on each column. Does anybody know how to do this in a simple way? Thank's! Mael Caldas

OpenDating 0.1.1 is Released.

2006-09-01 Thread Adam Zimowski
OpenDating.org developement team is happy to announce the release of version 0.1.1 to its open source online dating system. This release brings major architectural enhancements: * Spring-backed DAOs * AspectJ integration: - performance monitoring of Tapestry pages via AOP - enforcing