[seam-commits] Seam SVN: r7673 - branches/Seam_1_2_1_AP/examples/itext/view.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Fri Mar 21 11:07:08 EDT 2008


Author: manaRH
Date: 2008-03-21 11:07:08 -0400 (Fri, 21 Mar 2008)
New Revision: 7673

Modified:
   branches/Seam_1_2_1_AP/examples/itext/view/chapters.xhtml
   branches/Seam_1_2_1_AP/examples/itext/view/format.xhtml
   branches/Seam_1_2_1_AP/examples/itext/view/nested.xhtml
   branches/Seam_1_2_1_AP/examples/itext/view/pageSize.xhtml
   branches/Seam_1_2_1_AP/examples/itext/view/sections.xhtml
   branches/Seam_1_2_1_AP/examples/itext/view/signature.xhtml
   branches/Seam_1_2_1_AP/examples/itext/view/table.xhtml
   branches/Seam_1_2_1_AP/examples/itext/view/whyseam.xhtml
   branches/Seam_1_2_1_AP/examples/itext/view/whyseam_html.xhtml
   branches/Seam_1_2_1_AP/examples/itext/view/whyseam_rtf.xhtml
Log:
 JBPAPP-634 - changed itext example pages

Modified: branches/Seam_1_2_1_AP/examples/itext/view/chapters.xhtml
===================================================================
--- branches/Seam_1_2_1_AP/examples/itext/view/chapters.xhtml	2008-03-21 15:02:02 UTC (rev 7672)
+++ branches/Seam_1_2_1_AP/examples/itext/view/chapters.xhtml	2008-03-21 15:07:08 UTC (rev 7673)
@@ -1,7 +1,7 @@
 <p:document xmlns:f="http://java.sun.com/jsf/core"
             xmlns:ui="http://java.sun.com/jsf/facelets"
             xmlns:p="http://jboss.com/products/seam/pdf">
-
+<f:view contentType="text/html"/>
     <f:facet name="header">
         <p:font size="12">
             <p:footer borderWidthTop="1" borderColorTop="blue" borderWidthBottom="0" alignment="center">Why Seam? [<p:pageNumber />]</p:footer>

Modified: branches/Seam_1_2_1_AP/examples/itext/view/format.xhtml
===================================================================
--- branches/Seam_1_2_1_AP/examples/itext/view/format.xhtml	2008-03-21 15:02:02 UTC (rev 7672)
+++ branches/Seam_1_2_1_AP/examples/itext/view/format.xhtml	2008-03-21 15:07:08 UTC (rev 7673)
@@ -6,7 +6,7 @@
             subject="seam"
             author="Seam Team"
             creator="Seam PDF example app">
-
+<f:view contentType="text/html"/>
     <p:image alignment="right" wrap="true" resource="/jboss.jpg" /> 
     <p:font size="24"><p:paragraph spacingBefore="16" spacingAfter="40">Order #{currentOrder.orderId} </p:paragraph></p:font>  
 

Modified: branches/Seam_1_2_1_AP/examples/itext/view/nested.xhtml
===================================================================
--- branches/Seam_1_2_1_AP/examples/itext/view/nested.xhtml	2008-03-21 15:02:02 UTC (rev 7672)
+++ branches/Seam_1_2_1_AP/examples/itext/view/nested.xhtml	2008-03-21 15:07:08 UTC (rev 7673)
@@ -2,7 +2,7 @@
             xmlns:f="http://java.sun.com/jsf/core"
             xmlns:p="http://jboss.com/products/seam/pdf">
 
-
+<f:view contentType="text/html"/>
     <p:image alignment="right" wrap="true" resource="/jboss.jpg" /> 
     <p:font size="24"><p:paragraph spacingAfter="50">Nested Tables</p:paragraph></p:font>  
 

Modified: branches/Seam_1_2_1_AP/examples/itext/view/pageSize.xhtml
===================================================================
--- branches/Seam_1_2_1_AP/examples/itext/view/pageSize.xhtml	2008-03-21 15:02:02 UTC (rev 7672)
+++ branches/Seam_1_2_1_AP/examples/itext/view/pageSize.xhtml	2008-03-21 15:07:08 UTC (rev 7673)
@@ -3,6 +3,7 @@
             xmlns:p="http://jboss.com/products/seam/pdf" 
             pageSize="#{param.pageSize}">
 
+<f:view contentType="text/html"/>
     <f:facet name="header">
         <p:font size="12">
             <p:footer borderWidthTop="1" borderColorTop="blue" borderWidthBottom="0" alignment="center">Why Seam? [<p:pageNumber />]</p:footer>

Modified: branches/Seam_1_2_1_AP/examples/itext/view/sections.xhtml
===================================================================
--- branches/Seam_1_2_1_AP/examples/itext/view/sections.xhtml	2008-03-21 15:02:02 UTC (rev 7672)
+++ branches/Seam_1_2_1_AP/examples/itext/view/sections.xhtml	2008-03-21 15:07:08 UTC (rev 7673)
@@ -1,7 +1,7 @@
 <p:document xmlns:f="http://java.sun.com/jsf/core"
             xmlns:ui="http://java.sun.com/jsf/facelets"
             xmlns:p="http://jboss.com/products/seam/pdf">
-
+<f:view contentType="text/html"/>
     <p:chapter number="1">
         <p:title>
             <p:font size="18"><p:paragraph>Getting Started</p:paragraph></p:font>

Modified: branches/Seam_1_2_1_AP/examples/itext/view/signature.xhtml
===================================================================
--- branches/Seam_1_2_1_AP/examples/itext/view/signature.xhtml	2008-03-21 15:02:02 UTC (rev 7672)
+++ branches/Seam_1_2_1_AP/examples/itext/view/signature.xhtml	2008-03-21 15:07:08 UTC (rev 7673)
@@ -7,6 +7,7 @@
             author="Seam Team"
             creator="Seam PDF example app">
 
+<f:view contentType="text/html"/>
     <p:image alignment="right" wrap="true" resource="/jboss.jpg" /> 
     <p:font size="24"><p:paragraph spacingBefore="16" spacingAfter="40">Order #{currentOrder.orderId} </p:paragraph></p:font>  
 

Modified: branches/Seam_1_2_1_AP/examples/itext/view/table.xhtml
===================================================================
--- branches/Seam_1_2_1_AP/examples/itext/view/table.xhtml	2008-03-21 15:02:02 UTC (rev 7672)
+++ branches/Seam_1_2_1_AP/examples/itext/view/table.xhtml	2008-03-21 15:07:08 UTC (rev 7673)
@@ -2,6 +2,8 @@
           xmlns:f="http://java.sun.com/jsf/core"
           xmlns="http://jboss.com/products/seam/pdf">
 
+<f:view contentType="text/html"/>
+
     <image alignment="right" wrap="true" resource="/jboss.jpg" /> 
     <font size="24"><paragraph spacingAfter="50">Table Test</paragraph></font>  
 

Modified: branches/Seam_1_2_1_AP/examples/itext/view/whyseam.xhtml
===================================================================
--- branches/Seam_1_2_1_AP/examples/itext/view/whyseam.xhtml	2008-03-21 15:02:02 UTC (rev 7672)
+++ branches/Seam_1_2_1_AP/examples/itext/view/whyseam.xhtml	2008-03-21 15:07:08 UTC (rev 7673)
@@ -7,6 +7,7 @@
             author="Seam Team"
             creator="Seam PDF example app">
 
+<f:view contentType="text/html"/>
     <f:facet name="header">
         <p:font size="12">
             <p:footer borderWidthTop="1" borderColorTop="blue" borderWidthBottom="0" alignment="center">Why Seam? [<p:pageNumber />]</p:footer>

Modified: branches/Seam_1_2_1_AP/examples/itext/view/whyseam_html.xhtml
===================================================================
--- branches/Seam_1_2_1_AP/examples/itext/view/whyseam_html.xhtml	2008-03-21 15:02:02 UTC (rev 7672)
+++ branches/Seam_1_2_1_AP/examples/itext/view/whyseam_html.xhtml	2008-03-21 15:07:08 UTC (rev 7673)
@@ -1,3 +1,5 @@
+<f:view contentType="text/html"/>
+
 <p:document xmlns:ui="http://java.sun.com/jsf/facelets"
             xmlns:f="http://java.sun.com/jsf/core"
             xmlns:p="http://jboss.com/products/seam/pdf"

Modified: branches/Seam_1_2_1_AP/examples/itext/view/whyseam_rtf.xhtml
===================================================================
--- branches/Seam_1_2_1_AP/examples/itext/view/whyseam_rtf.xhtml	2008-03-21 15:02:02 UTC (rev 7672)
+++ branches/Seam_1_2_1_AP/examples/itext/view/whyseam_rtf.xhtml	2008-03-21 15:07:08 UTC (rev 7673)
@@ -7,6 +7,7 @@
             author="Seam Team"
             creator="Seam PDF example app">
 
+<f:view contentType="text/html"/>
     <f:facet name="header">
     <p:font size="12">
         <p:footer borderWidthTop="1" borderColorTop="blue" borderWidthBottom="0" alignment="center">Why Seam? [<p:pageNumber />]</p:footer>




More information about the seam-commits mailing list