Re: T5.1 t:body question

2009-08-14 Thread Howard Lewis Ship
> Take a look at http://tapestry.apache.org/tapestry5.1/guide/templates.html, >> section "Tapestry Elements". > > I had seen that section before, but it wasn't really clear (to me, > anyway -- a T5.1 newbie who has also used T4) that it was really > different. > >&

Re: T5.1 t:body question

2009-08-14 Thread Michael Gentry
before, but it wasn't really clear (to me, anyway -- a T5.1 newbie who has also used T4) that it was really different. >> and should t:body also support invisible instrumentation, too? > > Using t:type for both components and Tapestry-specific tags (, etc) > would cause a lot

Re: T5.1 t:body question

2009-08-14 Thread Thiago H. de Paula Figueiredo
Em Fri, 14 Aug 2009 11:57:09 -0300, Michael Gentry escreveu: I'm assuming t:body isn't really a component, but a different form of magic. is not a component. Are there other "components" that aren't really components Take a look at http://tapestry.apa

T5.1 t:body question

2009-08-14 Thread Michael Gentry
w, PageLink, Palette, PasswordField, ProgressiveDisplay, PropertyDisplay, PropertyEditor, Radio, RadioGroup, RemoveRowLink, RenderObject, Select, Submit, SubmitNotifier, TextArea, TextField, TextOutput, Unless, Zone. I'm assuming t:body isn't really a component, but a different f

Re: t:body

2009-03-31 Thread Luther Baker
On Tue, Mar 31, 2009 at 2:36 PM, Yancey Yeargan wrote: > > Tapestry 5.1 does handle this correctly. I checked by changing "" > to "" within the Layout.tml template of the quickstart example > project and it worked as expected. That is correct for 5.1.0.0, but this bug is specific to 5.1.0.1.

Re: t:body

2009-03-31 Thread Yancey Yeargan
ot be case sensitive about this (regardless about what the schema says). t:body and t:Body should be equivalent. Tapestry 5.1 may already do this correctly. On Mon, Mar 30, 2009 at 9:28 AM, Luther Baker wrote: For some reason, my brain likes to keep a consistent capitalization strategy ... So, I

Re: t:body

2009-03-31 Thread Luther Baker
TAP5-615 Thanks, -Luther On Tue, Mar 31, 2009 at 1:57 PM, Howard Lewis Ship wrote: > Please add a bug; Tapestry should not be case sensitive about this > (regardless about what the schema says). t:body and t:Body should be > equivalent. Tapestry 5.1 may already do this correctly. &

Re: t:body

2009-03-31 Thread Howard Lewis Ship
Please add a bug; Tapestry should not be case sensitive about this (regardless about what the schema says). t:body and t:Body should be equivalent. Tapestry 5.1 may already do this correctly. On Mon, Mar 30, 2009 at 9:28 AM, Luther Baker wrote: > For some reason, my brain likes to kee

t:body

2009-03-30 Thread Luther Baker
For some reason, my brain likes to keep a consistent capitalization strategy ... So, I've grown accustomed to t:Parameter t:ActionLink t:PageLink and home/Index.tml, home/Index.java ... etc I just noticed that in my latest new project, I used in a layout template and I'm getting an error: Exc

Re: t5 How to use renderInformals together with t:body

2009-03-14 Thread ningdh
8:41 PM Subject: Re: t5 How to use renderInformals together with t:body Yes,thank you,DH.It works.The only mater is you need write the root element of your component in class file.Otherwise the informal parameters will render some where else.For example: void beginRender

Re: t5 How to use renderInformals together with t:body

2009-03-14 Thread luna_guo
; Thanks, > DH > - Original Message - > From: "luna_guo" > To: > Sent: Saturday, March 14, 2009 9:31 AM > Subject: t5 How to use renderInformals together with t:body > > >> >> In the template i need .It doesn't work when i use &

Re: t5 How to use renderInformals together with t:body

2009-03-13 Thread ningdh
: t5 How to use renderInformals together with t:body > > In the template i need .It doesn't work when i use > ComponentResources.renderInformals.Is there any way to render body in > component class ? > > > > thanks in advance > luna > -- > View this messag

t5 How to use renderInformals together with t:body

2009-03-13 Thread luna_guo
In the template i need .It doesn't work when i use ComponentResources.renderInformals.Is there any way to render body in component class ? thanks in advance luna -- View this message in context: http://www.nabble.com/t5--How-to-use-renderInformals-together-with-t%3Abody-tp22508231p22508231.ht

RE: Templates and t:body

2007-10-19 Thread Heck, Bob
file in the webroot and the .java for the component in components. Moved the .tml to components package and it works now. Bob -Original Message- From: Heck, Bob [mailto:[EMAIL PROTECTED] Sent: Friday, October 19, 2007 19:33 To: Tapestry users Subject: RE: Templates and t:body Ok

RE: Templates and t:body

2007-10-19 Thread Heck, Bob
age- From: Howard Lewis Ship [mailto:[EMAIL PROTECTED] Sent: Friday, October 19, 2007 18:20 To: Tapestry users Subject: Re: Templates and t:body Tapestry mandates a certain organization to your classes. If you page class is org.example.pages.MyPage then your compone

Re: Templates and t:body

2007-10-19 Thread Howard Lewis Ship
? > > Thanks in advance. > > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of > Josh Canfield > Sent: Thursday, October 18, 2007 12:36 > To: Tapestry users > Subject: Re: Templates and t:body > > Did you create the Head

RE: Templates and t:body

2007-10-19 Thread Heck, Bob
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Josh Canfield Sent: Thursday, October 18, 2007 12:36 To: Tapestry users Subject: Re: Templates and t:body Did you create the Header.java? On 10/18/07, Angelo Chen <[EMAIL PROTECTED]> wrote: > > > Hi Jonathan, > &

Re: Templates and t:body

2007-10-18 Thread Nick Westgate
In Tapestry (all versions) when you use the word "include" to describe something, you should be thinking about components. Either the header goes in your Border/Layout component, or you make a header component which gets rendered in a Border. The documentation for Tapestry's

RE: Templates and t:body

2007-10-18 Thread Jonathan Barker
o: users@tapestry.apache.org > Subject: RE: Templates and t:body > > > Hi Jonathan, > > I tried your approach, but does not work, here is my steps: > > 1. create a Header.html in component directory, it has only one > line:hi > my heading > 2. I use it in my start.ht

Re: Templates and t:body

2007-10-18 Thread Josh Canfield
ry.apache.org/schema/tapestry_5_0_0.xsd";> > > > > My Tapestry Application > > > > > > > > My Page Specific Content > > > > > > > > > >> -Original Message- > >> From: Heck, Bob [mai

Re: Templates and t:body

2007-10-18 Thread Josh Canfield
ROTECTED]> wrote: > > and are in two separate files. How does that work? > > > > -Original Message- > From: Thiago H de Paula Figueiredo [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 18, 2007 12:17 > To: Tapestry users > Subject: Re: Templates and t:body

RE: Templates and t:body

2007-10-18 Thread Angelo Chen
ROTECTED] >> Sent: Thursday, October 18, 2007 12:27 PM >> To: Tapestry users >> Subject: RE: Templates and t:body >> >> Or, maybe I should just start at the top. >> >> I have a header that I want to display on every page. That header html >> (tml) mark

RE: Templates and t:body

2007-10-18 Thread Jonathan Barker
nal Message- > From: Heck, Bob [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 18, 2007 12:27 PM > To: Tapestry users > Subject: RE: Templates and t:body > > Or, maybe I should just start at the top. > > I have a header that I want to display on every page. That h

RE: Templates and t:body

2007-10-18 Thread Jonathan Barker
long-term flexibility. Jonathan > -Original Message- > From: Heck, Bob [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 18, 2007 12:27 PM > To: Tapestry users > Subject: RE: Templates and t:body > > Or, maybe I should just start at the top. > > I have a h

Re: Templates and t:body

2007-10-18 Thread Marcus
Hi Bob, Header.tml: http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";> Hello.tml: http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";> Hello Word! Marcus

RE: Templates and t:body

2007-10-18 Thread Heck, Bob
: Thiago H de Paula Figueiredo [mailto:[EMAIL PROTECTED] Sent: Thursday, October 18, 2007 12:17 To: Tapestry users Subject: Re: Templates and t:body On Thu, 18 Oct 2007 13:05:48 -0300, Heck, Bob <[EMAIL PROTECTED]> wrote: > So, how does layout.tml know to use specific.tml to fill in th

RE: Templates and t:body

2007-10-18 Thread Heck, Bob
and are in two separate files. How does that work? -Original Message- From: Thiago H de Paula Figueiredo [mailto:[EMAIL PROTECTED] Sent: Thursday, October 18, 2007 12:17 To: Tapestry users Subject: Re: Templates and t:body On Thu, 18 Oct 2007 13:05:48 -0300, Heck, Bob <[EM

Re: Templates and t:body

2007-10-18 Thread Matheus Eduardo Machado Moreira
ml to fill in the > tag? Does it have to be injected somehow? Where does it get > a reference? How is this done? > > > > > -----Original Message- > From: Jonathan Barker [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 18, 2007 10:56 > To: 'Tapestry users

Re: Templates and t:body

2007-10-18 Thread Angelo Chen
Something interesting: if you will get some runtime warning, but everything's fine. Thiago H. de Paula Figueiredo wrote: > > On Thu, 18 Oct 2007 13:05:48 -0300, Heck, Bob <[EMAIL PROTECTED]> wrote: > >> So, how does layout.tml know to use specific.tml to fill in the >> tag? Does it have to

Re: Templates and t:body

2007-10-18 Thread Thiago H de Paula Figueiredo
On Thu, 18 Oct 2007 13:05:48 -0300, Heck, Bob <[EMAIL PROTECTED]> wrote: So, how does layout.tml know to use specific.tml to fill in the tag? Does it have to be injected somehow? Where does it get a reference? How is this done? just renders whatever was put inside your tag. ;) The specifi

RE: Templates and t:body

2007-10-18 Thread Heck, Bob
re does it get a reference? How is this done? -Original Message- From: Jonathan Barker [mailto:[EMAIL PROTECTED] Sent: Thursday, October 18, 2007 10:56 To: 'Tapestry users' Subject: RE: Templates and t:body Bob, The documentation is correct, but requires some getting used to. A l

RE: Templates and t:body

2007-10-18 Thread Jonathan Barker
hat helps. Jonathan > -Original Message- > From: Heck, Bob [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 18, 2007 11:37 AM > To: Tapestry users > Subject: Templates and t:body > > I am really confused and in need of some clarification. > > The