Re: about Beanform and JPA (persistence)

2006-12-08 Thread Cyrille37
Hello professor Sam ;o) Thank you a lot for you long long course. I will read it slowly and carefully this morning in the train. Best Regards, Cyrille. Sam Gendler a écrit : I'll clarify a little. In general, you want to keep persistence code, ui code, and business rules fairly separate. Thi

Beginning a project using Tapestry

2006-12-08 Thread Noel Guilbert
Hello, I'm starting a new project, and I'd like to know more about the Tapestry framework. First, I'm familiar with struts, and other frameworks like Ruby On Rails, or Symfony (Php). What are the differences with Tapestry? What are the avantages of Tapestry? Which version should I use? Nex

Re: Beginning a project using Tapestry

2006-12-08 Thread Sam Gendler
Boy, those are some big questions you are asking. I've been the guy answering newbie questions around here for the last couple of days and even I am going to send you over to the docs, at least initially. I'm happy to answer questions, but those are just too big to answer without knowing more ab

RE: Dependency management of the tapestry-flash maven distribution

2006-12-08 Thread Kevin Menard
> -Original Message- > From: Jesse Kuhnert [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 07, 2006 2:08 PM > To: Tapestry users > > You just need to add some "exclusions" as done here: > > http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/pom.xml? > view=markup I've actually r

Re: Re: Decision of whether to use tapestry

2006-12-08 Thread Deep Blue
One of the requirement that struts/tiles can never fulfill is the preview ability of the page and flexibility of changing the layout. That's why I'm trying to look into Tapestry if it allows me to do that. Thanks! Best Regards, Deep Blue On 12/8/06, Sam Gendler <[EMAIL PROTECTED]> wrote: Well

Re: Node not found... any1 :( ? helpp

2006-12-08 Thread kit
In IE this error appear.. not sure if its ERROR: 11:10:07 PM: Error received in IO response. : XMLHttpTransport.watchInFlight Error: [object Error] DEBUG: XMLHttpTransport error callback failed: [object Object] -- View this message in context: http://www.nabble.com/Node-not-found...-any1-%

Re: A dynamic css emitter like the @Script component

2006-12-08 Thread Eric Schneider
Hi, Found this thread in the archives. I have a similar need. Has someone created a @Script like component for generating dynamic CSS content? The behavior would be almost identical. Thanks, Eric On 10/10/06, Josh Long <[EMAIL PROTECTED]> wrote: http://www.madskristensen.dk/blog/CommentVi

Tapestry 4.1.1 dojo issue

2006-12-08 Thread Ben Dotte
Hi, We recently upgraded to 4.1.1 from 4.0.2 and are still having some issues with dojo-related stuff. Right now, we are on the snapshot build from 12-4. One thing I can't figure out is where the path for this is getting generated in the rendered html: dojo.registerModulePath("tapestry", "/

Re: Tapestry and Spring 2.0

2006-12-08 Thread Christian Dutaret
I use Tap 4.1.1-SNAPSHOT + Spring 2.0.1 + tapestry-spring 0.1.2 : works like a charm (except some maven2 dependency oddities). 2006/12/7, Skorpien126 <[EMAIL PROTECTED]>: Spring 2 is released and I want to know if it´s compatible with tapestry 4.0.2 or even with 4.1??? Is there maybe a new Tap

Getting rid of .getVisit()

2006-12-08 Thread Greg.L.Cormier
Alright so I'm making the jump to 4.1, which totally kills BasePage.getVisit()! I knew I should of cleaned up my act in 4.0 :) Can anyone help me switch over? I'm reading this page http://tapestry.apache.org/tapestry4.1/usersguide/state.html#state.aso I'm confused if I need to actually do some

Re: Tapestry 4.1.1 dojo issue

2006-12-08 Thread Jesse Kuhnert
Hi Ben, Thanks for being brave and trying out 4.1.1, I'm sure others will appreciate whatever improvements can be made at the expense of your initial set of problems faced. The line dojo.registerModulePath is output by the AjaxShellDelegate (http://tapestry.apache.org/tapestry4.1/apidocs/org/apa

Re: Getting rid of .getVisit()

2006-12-08 Thread Jesse Kuhnert
I'll have to check into that particular claim in the current documentation to be sure. Previously I think a HashMap was created by default but since removal of the (as of 4.0 deprecated visit) functionality all of that logic may be moot. An easy example of doing this can be found here, you want t

RE: Getting rid of .getVisit()

2006-12-08 Thread Greg.L.Cormier
Thanks, I'll start tackling the hivemodule.xml I suppose to just create an instance of my class instead of whatever default Visit tap provides. How do I go about actually retrieving this object with Hivemind? Wh -Original Message- From: Jesse Kuhnert [mailto:[EMAIL PROTECTED] Sent: Frid

Re: Getting rid of .getVisit()

2006-12-08 Thread Jesse Kuhnert
You can have it "injected" into something via a .page/.jwc file by doing something like: (http://tapestry.apache.org/tapestry4.1/usersguide/state.html) or you use an annotation to do the same: @InjectState public abstract MyAppVisit getVisit(); http://tapestry.apache.org/tapestry4.1/tapestry

RE: Getting rid of .getVisit()

2006-12-08 Thread Greg.L.Cormier
Also, Jesse I found this quote by a famous man, maybe it wil help you when you look into the issue... ;) "P.S. No one should have this issue with 4.1 as the visit and global objects don't exist anymore. (The hivemind versions of course do exist)" http://www.mail-archive.com/users@tapestry.apache

RE: Getting rid of .getVisit()

2006-12-08 Thread Greg.L.Cormier
So every .page file needs this? :o -Original Message- From: Jesse Kuhnert [mailto:[EMAIL PROTECTED] Sent: Friday, December 08, 2006 3:27 PM To: Tapestry users Subject: Re: Getting rid of .getVisit() You can have it "injected" into something via a .page/.jwc file by doing something like

Re: Getting rid of .getVisit()

2006-12-08 Thread Jesse Kuhnert
Not if you use annotations. Unlike xml - annotations can actually be inherited very easily. On 12/8/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: So every .page file needs this? :o -Original Message- From: Jesse Kuhnert [mailto:[EMAIL PROTECTED] Sent: Friday, December 08, 2006 3:27

RE: Getting rid of .getVisit()

2006-12-08 Thread Greg.L.Cormier
Unfortunately I'm stuck with JDK 1.4 since our appserver is Websphere 5.1 :-( -Original Message- From: Jesse Kuhnert [mailto:[EMAIL PROTECTED] Sent: Friday, December 08, 2006 3:34 PM To: Tapestry users Subject: Re: Getting rid of .getVisit() Not if you use annotations. Unlike xml - annot

Re: Getting rid of .getVisit()

2006-12-08 Thread Jesse Kuhnert
Ah well... I can't confirm it but I wouldn't be surprised if James Carmen's patch to "autowire" hivemind services wouldn't automatically detect and inject your state object from simply defining the abstract getter. Probably worth a try at least. On 12/8/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> w

RE: Tapestry 4.1.1 dojo issue

2006-12-08 Thread Anna Vo
Jesse- If you only select Red and Orange from the example (by double-clicking on each of them individually) and click Update it will only display Orange on the next page if Orange is the one that is highlighted in the Selected list. If you select multiples and all of these are selected/highlighte

Re: Tapestry 4.1.1 dojo issue

2006-12-08 Thread Jesse Kuhnert
"Oh" (adjusting collar slightly ) I'll fix this while I'm fixing another issue now. Should be available in an hour or so if you use the snapshot repos. On 12/8/06, Anna Vo <[EMAIL PROTECTED]> wrote: Jesse- If you only select Red and Orange from the example (by double-clicking on each of them

Re: Tapestry 4.1.1 dojo issue

2006-12-08 Thread Jesse Kuhnert
Ok, fixed and deploying now. Sorry about that. I had recently refactored some of the palette javascript to use friendlier package conventions by attaching all functions to the global "tapestry" javascript object. In this instance I forgot to fix the form event connections so it ended up generatin

State Object and Spring Beans

2006-12-08 Thread Simon Raveh
Hi, Is it passable to inject Spring Bean with a hivemind service or A Tapestry state object. Thanks, Simon - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Getting rid of .getVisit()

2006-12-08 Thread Dennis Sinelnikov
[EMAIL PROTECTED] wrote: Unfortunately I'm stuck with JDK 1.4 since our appserver is Websphere 5.1 :-( -Original Message- From: Jesse Kuhnert [mailto:[EMAIL PROTECTED] Sent: Friday, December 08, 2006 3:34 PM To: Tapestry users Subject: Re: Getting rid of .getVisit() Not if you use anno

Acegisecurity question

2006-12-08 Thread Titi Wangsa
can someone help me with the ... page of acegisecurity using jstl i used this "> question is how do i achive the same thing without jstl? i know that can be replaced with /j_security_check - To unsubscribe, e-mail: [EMAIL P