[jboss-cvs] jboss-seam/examples/seamspace/view ...

Shane Bryzak Shane_Bryzak at symantec.com
Wed Oct 25 05:46:17 EDT 2006


  User: sbryzak2
  Date: 06/10/25 05:46:17

  Modified:    examples/seamspace/view   home.xhtml
  Added:       examples/seamspace/view   template.xhtml
  Log:
  ongoing work
  
  Revision  Changes    Path
  1.2       +6 -20     jboss-seam/examples/seamspace/view/home.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: home.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/seamspace/view/home.xhtml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- home.xhtml	23 Oct 2006 12:25:22 -0000	1.1
  +++ home.xhtml	25 Oct 2006 09:46:17 -0000	1.2
  @@ -1,27 +1,13 @@
   <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
   <html xmlns="http://www.w3.org/1999/xhtml"
       xmlns:ui="http://java.sun.com/jsf/facelets"
  -    xmlns:h="http://java.sun.com/jsf/html">
  +    xmlns:h="http://java.sun.com/jsf/html"
  +    xmlns:s="http://jboss.com/products/seam/taglib">
   
  -<head>
  -  <title>seamspace</title>
  -  <link href="style/seamspace.css" rel="stylesheet" type="text/css"/>
  -</head>
  +  <ui:composition template="template.xhtml">
  +    <ui:define name="content">
   
  -<body>
  +    </ui:define>
   
  -  <div id="header">
  -    
  -  </div>
  -  
  -  <div id="menubar">
  -  
  -  </div>
  -
  -  <div id="content">
  -    
  -  </div>
  -   
  -</body>
  +  </ui:composition>
   </html>
  -
  
  
  
  1.1      date: 2006/10/25 09:46:17;  author: sbryzak2;  state: Exp;jboss-seam/examples/seamspace/view/template.xhtml
  
  Index: template.xhtml
  ===================================================================
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  <html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:s="http://jboss.com/products/seam/taglib"
      xmlns:h="http://java.sun.com/jsf/html">
  
  <head>
    <title>SeamSpace</title>
    <link href="style/seamspace.css" rel="stylesheet" type="text/css"/>
  </head>
  
  <body>
  
    <div id="header">
      <div class="headerRight">
        <div class="headerMenu">
          <s:link action="" value="SignUp"/>
        </div>
        <br style="clear:both"/>
        <h:form>
          <div>
            <a href="#">SeamSpace</a>|
            <a href="#">People</a>|
            <a href="#">Music</a>|
            <a href="#">Blogs</a>|
            <a href="#">Video</a>
          </div>
          <div id="search">
            <h:inputText type="text" styleClass="searchField"/>
            <h:commandButton value="Search SeamSpace"/>
          </div>
        </h:form>
      </div>
    </div>
    
    <div id="menubar">
      <s:link action="" value="Home"/>|
      <s:link action="" value="Browse"/>|
      <s:link action="" value="Blog"/>|
      <s:link action="" value="Videos"/>|
      <s:link action="" value="Music"/>
    </div>
  
    <div id="content">
      <ui:insert name="content"/>
    </div>
     
  </body>
  </html>
  
  
  
  



More information about the jboss-cvs-commits mailing list