Ok Jurgen i send you other example

Here is the border markup

<html xmlns:wicket="http://wicket.sourceforge.net/";
    xmlns="http://www.w3.org/1999/xhtml"; xml:lang"en">
    <wicket:head>
            <meta http-equiv="content-type" content="text/html;
charset=UTF-8"></meta>
            <link rel="stylesheet" href="style.css" type="text/css"></link>
    </wicket:head>
    <body>
        <wicket:border>
            <div class="main">
            <div class="header"><div class="title">on-rez</div>
                <span wicket:id="loginView" class="LoginPanel">LOGIN
PANEL</span>

                <div class="menu">
                 <wicket:link>
                     <a href="/oz/web/html/basic/Home.html">Home</a> |
                     <a
href="/oz/web/html/domains/RegisterPage.html">Register</a>  |
                     <a href="/oz/web/html/cms/CmsPage.html">Cms Sites</a>
                 </wicket:link>
                 <span wicket:id="adminToolBar">adminToolBar</span>
                 </div>
             </div>
             </div>
             <div class="clear"></div>
             <div class="google_ads">
                        </div>
             <div class="clear"></div>
            <wicket:body/>
            <div class="footer">
                on-rez <a href="license.html">(r)</a> 2005-2006
            </div>
        </wicket:border>
    </body>
</html>


Here is the page markup

<html>
    <wicket:head>
            <title>on-rez</title>
    </wicket:head>
    <body>
        <span wicket:id="border" class="main">
            <span wicket:id="lblName">lblName</span>
            <div class="content">
                Well come to on-rez oz-cms system
            </div>
        </span>
    </body>
</html>


and here is the header section of ouput

<html>
        <head>
                <title>on-rez</title>

                <meta http-equiv="content-type" content="text/html;
charset=UTF-8"></meta>
            <link rel="stylesheet" href="style.css" type="text/css"></link>
    </head>
        <head>
                <meta http-equiv="content-type" content="text/html;
charset=UTF-8"></meta>

            <link rel="stylesheet" href="style.css" type="text/css"></link>
    </head><body>

the rest of the ouput is omited because is no interesting for this problem
On 10/10/05, Juergen Donnerstag <[EMAIL PROTECTED]> wrote:
> But without further information we can not test it. All test cases are
> successful and based on the information you provided it is covered and
> does work. Hence without any additional information we can reproduce
> it
>
> Juergen
>
> On 10/10/05, pepone pepone <[EMAIL PROTECTED]> wrote:
> > I don“t put the wikcet:body in the example for brevity and the and
> > </wikcet:border> is well spelled in the markup i make the mistake when
> > write the mail  the problem i observed is the doble head related wick
> > use <wicket:head> in border markup and page markup
> >
> > On 10/10/05, Juergen Donnerstag <[EMAIL PROTECTED]> wrote:
> > > <wicket:body/> is missing as well. This markup did definitely not
> > > generate the output.
> > >
> > > Juergen
> > >
> > > On 10/10/05, Juergen Donnerstag <[EMAIL PROTECTED]> wrote:
> > > > I wonder if this
> > > >        <wicket:border>
> > > >        </wikcet:border>
> > > >
> > > > is the problem: wikcet instead of wicket
> > > >
> > > > juergwn
> > > >
> > > > On 10/9/05, pepone pepone <[EMAIL PROTECTED]> wrote:
> > > > > I observe the following
> > > > >
> > > > > This is my border markup
> > > > >
> > > > > <html xmlns:wicket="http://wicket.sourceforge.net/";
> > > > >     xmlns="http://www.w3.org/1999/xhtml"; xml:lang"en">
> > > > >         <wicket:head>
> > > > >                 <meta http-equiv="content-type" content="text/html;
> > > > > charset=UTF-8"></meta>
> > > > >             <link rel="stylesheet" href="style.css" 
> > > > > type="text/css"></link>
> > > > >     </wicket:head>
> > > > >         <body>
> > > > >                 <wicket:border>
> > > > >                 </wikcet:border>
> > > > >         </body>
> > > > > </html>
> > > > >
> > > > > Markup the page
> > > > >
> > > > > <?xml version="1.0" encodign="UTF-8"?>
> > > > > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
> > > > > "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd";>
> > > > > <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en">
> > > > >     <wicket:head>
> > > > >         <title>on-rez::oz-cms</title>
> > > > >     </wicket:head>
> > > > >     <body>
> > > > >         <span wicket:id="border" class="main">
> > > > >         </span>
> > > > >     </body>
> > > > > </html>
> > > > >
> > > > > Output
> > > > >
> > > > > <?xml version="1.0" encodign="UTF-8"?>
> > > > > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
> > > > > "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd";>
> > > > > <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en">
> > > > >     <head>
> > > > >         <title>on-rez::oz-cms</title>
> > > > >
> > > > >                 <meta http-equiv="content-type" content="text/html;
> > > > > charset=UTF-8"></meta>
> > > > >             <link rel="stylesheet" href="style.css" 
> > > > > type="text/css"></link>
> > > > >     </head>
> > > > >     <head>
> > > > >                 <meta http-equiv="content-type" content="text/html;
> > > > > charset=UTF-8"></meta>
> > > > >
> > > > >             <link rel="stylesheet" href="style.css" 
> > > > > type="text/css"></link>
> > > > >     </head><body>
> > > > > </body>
> > > > > </html>
> > > > >
> > > > >
> > > > > head is repeated one with the three elements and other with only tow
> > > > >
> > > > > is this a problem of wicket of and error in markups?
> > > > >
> > > > >
> > > > > -------------------------------------------------------
> > > > > This SF.Net email is sponsored by:
> > > > > Power Architecture Resource Center: Free content, downloads, 
> > > > > discussions,
> > > > > and more. http://solutions.newsforge.com/ibmarch.tmpl
> > > > > _______________________________________________
> > > > > Wicket-user mailing list
> > > > > Wicket-user@lists.sourceforge.net
> > > > > https://lists.sourceforge.net/lists/listinfo/wicket-user
> > > > >
> > > >
> > >
> > >
> > > -------------------------------------------------------
> > > This SF.Net email is sponsored by:
> > > Power Architecture Resource Center: Free content, downloads, discussions,
> > > and more. http://solutions.newsforge.com/ibmarch.tmpl
> > > _______________________________________________
> > > Wicket-user mailing list
> > > Wicket-user@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/wicket-user
> > >
> >
> >
> > -------------------------------------------------------
> > This SF.Net email is sponsored by:
> > Power Architecture Resource Center: Free content, downloads, discussions,
> > and more. http://solutions.newsforge.com/ibmarch.tmpl
> > _______________________________________________
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
>
>
> -------------------------------------------------------
> This SF.Net email is sponsored by:
> Power Architecture Resource Center: Free content, downloads, discussions,
> and more. http://solutions.newsforge.com/ibmarch.tmpl
> _______________________________________________
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>


-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to