On 10/26/05, David Bernard <[EMAIL PROTECTED]> wrote:
>
> >>     <div py:replace="item[:]"/>
>
> >I *think* this replaces all of the elements in <head></head>.
>
> "item" is the matching node from the extended template. So <div
> py:replace="item[:]"/> is replaced by the children nodes of <head> from
> content.kid
>
> master.kid :
> <head py:match="item.tag=='{http://www.w3.org/1999/xhtml}head'">
>   <style>
>     blabla  ...
>   </style>
>   <div py:replace="item[:]"/>
> </head>
>
> + content.kid
> <head>
>   <title>Foo</title>
> </head>
>
> =>
>
> <head>
>   <style>
>     blabla  ...
>   </style>
>   <title>Foo</title>
> </head>
>
>

Thank you, thank you , thank you!  I think i'm starting to wrap my
head around this.  I'll know for sure once I try to use it!

jw

Reply via email to