Re: the sinful JSF in JSP

2006-09-16 Thread Alexandre Poitras
To: 'MyFaces Discussion' Subject: RE: the sinful JSF in JSP Thanks for the pointer! JSF has been in development for more than 5 years now, and its integration with JSP was explicitly taken into account since the very beginning. Those are not minor incompatibilities, they are very close to show stoppers

RE: the sinful JSF in JSP

2006-09-15 Thread Damon Weyant
Try using the t:htmlTag component from the Tomahawk library. - Damon -Original Message- From: Iordanov, Borislav (GIC) [mailto:[EMAIL PROTECTED] Sent: Friday, September 15, 2006 2:01 PM To: MyFaces Discussion Subject: the sinful JSF in JSP Guys, I know it's anathema to use JSF

RE: the sinful JSF in JSP

2006-09-15 Thread Iordanov, Borislav \(GIC\)
Well, I'd thought of verbatim, or another outputText with value=p, but that's it??? Hard to believe...it's really sad, sigh :( -Original Message- From: L Frohman [mailto:[EMAIL PROTECTED] Sent: Friday, September 15, 2006 2:14 PM To: 'MyFaces Discussion' Subject: RE: the sinful JSF in JSP

Re: the sinful JSF in JSP

2006-09-15 Thread Dennis Byrne
: the sinful JSF in JSP Guys, I know it's anathema to use JSF with JSPs, but since people have already invested in JSP, it's kind of unavoidable. Also, the mixup of the two technologies is promoted by the JSF spec team. Now, let's say I want to have a paragraph with text, where the text comes

Re: the sinful JSF in JSP

2006-09-15 Thread Dennis Byrne
p h:outputText value=myBean.text/ /p You will have to wrap the p tags in f:verbatim tags. You may also try the t:html tag ( tomahawk tag library ). Facelets is another option. Bolerio Dennis Byrne

RE: the sinful JSF in JSP

2006-09-15 Thread Iordanov, Borislav \(GIC\)
with the wrong set of competencies to develop them). Best, Bolerio PS I apologize for the rant. -Original Message- From: Dennis Byrne [mailto:[EMAIL PROTECTED] Sent: Friday, September 15, 2006 2:28 PM To: MyFaces Discussion Subject: Re: the sinful JSF in JSP Boris, don't let ideas like

Re: the sinful JSF in JSP

2006-09-15 Thread Dennis Byrne
They have been fixed in JSF 1.2 . Dennis Byrne -Original Message- From: Iordanov, Borislav \(GIC\) [mailto:[EMAIL PROTECTED] Sent: Friday, September 15, 2006 02:46 PM To: 'MyFaces Discussion' Subject: RE: the sinful JSF in JSP Thanks for the pointer! JSF has been in development

RE: the sinful JSF in JSP

2006-09-15 Thread Iordanov, Borislav \(GIC\)
, 2006 2:05 PM To: MyFaces Discussion Subject: RE: the sinful JSF in JSP Try using the t:htmlTag component from the Tomahawk library. - Damon -Original Message- From: Iordanov, Borislav (GIC) [mailto:[EMAIL PROTECTED] Sent: Friday, September 15, 2006 2:01 PM To: MyFaces Discussion

RE: the sinful JSF in JSP

2006-09-15 Thread Iordanov, Borislav \(GIC\)
Great to hear! B -Original Message- From: Dennis Byrne [mailto:[EMAIL PROTECTED] Sent: Friday, September 15, 2006 3:00 PM To: MyFaces Discussion Subject: Re: the sinful JSF in JSP They have been fixed in JSF 1.2 . Dennis Byrne -Original Message- From: Iordanov, Borislav

RE: the sinful JSF in JSP

2006-09-15 Thread Damon Weyant
3:06 PM To: MyFaces Discussion Subject: RE: the sinful JSF in JSP How does t:htmlTag work. For example: t:htmlTag value=p f:verbatimhello/f:verbatim /t:htmlTag Generates: span style=font-size:14pxhello/spanspan style=font-size:14pxlt;pgt;/span Thanks, Bolerio -Original Message- From

RE: the sinful JSF in JSP

2006-09-15 Thread Iordanov, Borislav \(GIC\)
in a JSP. 2) in ViewTag.doAfterBody, render the JSF components at appropriate places based on those markers Thanks Bolerio -Original Message- From: Dennis Byrne [mailto:[EMAIL PROTECTED] Sent: Friday, September 15, 2006 3:00 PM To: MyFaces Discussion Subject: Re: the sinful JSF in JSP

RE: the sinful JSF in JSP

2006-09-15 Thread Iordanov, Borislav \(GIC\)
, September 15, 2006 3:19 PM To: MyFaces Discussion Subject: RE: the sinful JSF in JSP Try the following: t:htmlTag value=p t:outputText value=Hello world / /t:htmlTag In my project, it generated the following: pHello world/p Hope this helps... - Damon -Original Message- From