You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2010/03/03 16:45:24 UTC

svn commit: r918525 [2/2] - in /myfaces/extensions/scripting/trunk: core/core-java6/src/main/java/org/apache/myfaces/scripting/loaders/java/jsr199/ core/core-java6/src/test/java/org/apache/myfaces/javaloader/core/compilerTest/ core/core/src/main/java/o...

Modified: myfaces/extensions/scripting/trunk/examples/myfaces20-example/src/main/webapp/template.xhtml
URL: http://svn.apache.org/viewvc/myfaces/extensions/scripting/trunk/examples/myfaces20-example/src/main/webapp/template.xhtml?rev=918525&r1=918524&r2=918525&view=diff
==============================================================================
--- myfaces/extensions/scripting/trunk/examples/myfaces20-example/src/main/webapp/template.xhtml (original)
+++ myfaces/extensions/scripting/trunk/examples/myfaces20-example/src/main/webapp/template.xhtml Wed Mar  3 15:45:22 2010
@@ -4,7 +4,7 @@
       xmlns:f="http://java.sun.com/jsf/core"
       xmlns:exs="http://myfaces.apache.org/ext-scripting"
       xmlns:h="http://java.sun.com/jsf/html">
-<head>
+<h:head>
 
     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
     <title>Myfaces Example Facelets</title>
@@ -12,9 +12,10 @@
     <link type="text/css" rel="stylesheet" href="#{resource['styles:main.css']}"/>
 
 
-</head>
+</h:head>
 
-<body>
+<h:body>
+     aaaa
 <div id="menu">
     <h:panelGroup>
         <h:outputLink value="./helloWorld.jsf">Hello world Example</h:outputLink>
@@ -31,6 +32,7 @@
 </div>
 <div class="centerDiv">
 
+
     <h:panelGroup>
         <h3>
             <h:outputFormat value="Compiler Output" escape="false"/>
@@ -43,6 +45,6 @@
     </p>
 </div>
 
-</body>
+</h:body>
 
 </html>