RE: [OT] Re: Struts tile and other tag includes

2007-08-12 Thread Rod Bollinger
information. No "libs" are being included. This is not a "dirty" practice and is, in fact, the intention of the specification. -Rod Bollinger -Original Message- From: Yayo [mailto:[EMAIL PROTECTED] Sent: Sunday, August 12, 2007 15:50 To: Struts Users Mailing List Subj

Re: [OT] Re: Struts tile and other tag includes

2007-08-12 Thread Yayo
; especially section JSP.1.10.5 (including data in JSP pages) for more > information. > > Regards, > -Rod Bollinger > > > -Original Message- > From: Yayo [mailto:[EMAIL PROTECTED] > Sent: Sunday, August 12, 2007 14:23 > To: Struts Users Mailing List > Subject: Re:

RE: [OT] Re: Struts tile and other tag includes

2007-08-12 Thread Rod Bollinger
end reading (or re-reading) the JSP 2.1 specification - especially section JSP.1.10.5 (including data in JSP pages) for more information. Regards, -Rod Bollinger -Original Message- From: Yayo [mailto:[EMAIL PROTECTED] Sent: Sunday, August 12, 2007 14:23 To: Struts Users Mailing List

Re: [OT] Re: Struts tile and other tag includes

2007-08-12 Thread Yayo
ld use the word "discouraged" ^g^ On 8/12/07, Yayo <[EMAIL PROTECTED]> wrote: > > yeah, I know, but we can use cobol to program cgi instead of java too > > On 8/12/07, Dave Newton <[EMAIL PROTECTED] > wrote: > > > > Then how do you figure it's been deprecated? It's the > > only thing that will all

Re: [OT] Re: Struts tile and other tag includes

2007-08-12 Thread Yayo
yeah, I know, but we can use cobol to program cgi instead of java too On 8/12/07, Dave Newton <[EMAIL PROTECTED]> wrote: > > Then how do you figure it's been deprecated? It's the > only thing that will allow doing what the original > post was talking about. > > --- Yayo <[EMAIL PROTECTED]> wrote:

Re: [OT] Re: Struts tile and other tag includes

2007-08-12 Thread Dave Newton
Then how do you figure it's been deprecated? It's the only thing that will allow doing what the original post was talking about. --- Yayo <[EMAIL PROTECTED]> wrote: > I know! > > On 8/12/07, Dave Newton <[EMAIL PROTECTED]> > wrote: > > > > --- Yayo <[EMAIL PROTECTED]> wrote: > > > think that's a

Re: [OT] Re: Struts tile and other tag includes

2007-08-12 Thread Yayo
I know! On 8/12/07, Dave Newton <[EMAIL PROTECTED]> wrote: > > --- Yayo <[EMAIL PROTECTED]> wrote: > > think that's a bad solution, the has been > > deprecated by the use of tiles and the like to > > compose pages... and even with that I don't think > > it will work... > > <%@ include ...%> is a

[OT] Re: Struts tile and other tag includes

2007-08-12 Thread Dave Newton
--- Yayo <[EMAIL PROTECTED]> wrote: > think that's a bad solution, the has been > deprecated by the use of tiles and the like to > compose pages... and even with that I don't think > it will work... <%@ include ...%> is a directive; the file is inserted at compile, not run, time. d.

Re: Struts tile and other tag includes

2007-08-12 Thread Yayo
tify > the sender immediately by telephone or email and destroy the original > message without making a copy. Thank you. > > - Original Message - > From: "Jim Reynolds" <[EMAIL PROTECTED]> > To: "Struts Users Mailing List" > Sent: Friday, Augus

Re: Struts tile and other tag includes

2007-08-11 Thread Martin Gainty
ately by telephone or email and destroy the original message without making a copy. Thank you. - Original Message - From: "Jim Reynolds" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Friday, August 10, 2007 9:24 PM Subject: Re: Struts tile and other tag i

Re: Struts tile and other tag includes

2007-08-11 Thread Yayo
I think you're wrong but doing well ^g^ You need to include in each page the references to the tag-libs you're using and I would not call that "the code" of the page, maybe the header or the include section ^^ On 8/11/07, Jim Reynolds <[EMAIL PROTECTED]> wrote: > > I have something like this: This

Re: Struts tile and other tag includes

2007-08-10 Thread Jim Reynolds
I have something like this: This is the layout, or tiles template as the docs state. <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> <%@ taglib uri="/WEB-INF/tiles.tld" prefix="tiles"%> So on that page, I have

Re: Struts tile and other tag includes

2007-08-10 Thread Dave Newton
Hmm; repeat? --- Jim Reynolds <[EMAIL PROTECTED]> wrote: > Struts 1.29 app that uses tiles definitions. > Question is: I am finding myself having to call the > taglib in the layout, and also in each tile. Remember; every JSP is a standalone servlet. d. _

Struts tile and other tag includes

2007-08-10 Thread Jim Reynolds
Struts 1.29 app that uses tiles definitions. Question is: I am finding myself having to call the taglib in the layout, and also in each tile. If I take the taglib out of any of the jsp pages that is a tile, then the page fails to display because it cannot find the taglib from the template layout.