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

Reply via email to