[jboss-cvs] jboss-seam/src/pdf/META-INF ...

Norman Richards norman.richards at jboss.com
Thu Jan 11 00:32:06 EST 2007


  User: nrichards
  Date: 07/01/11 00:32:06

  Modified:    src/pdf/META-INF   faces-config.xml seam.taglib.xml
  Log:
  add header/footer, refactor rectangle properties
  
  Revision  Changes    Path
  1.4       +15 -0     jboss-seam/src/pdf/META-INF/faces-config.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: faces-config.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/pdf/META-INF/faces-config.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- faces-config.xml	25 Dec 2006 16:17:54 -0000	1.3
  +++ faces-config.xml	11 Jan 2007 05:32:06 -0000	1.4
  @@ -10,6 +10,21 @@
       </component>
   
       <component>
  +        <component-type>org.jboss.seam.pdf.ui.UIHeader</component-type>
  +        <component-class>org.jboss.seam.pdf.ui.UIHeader</component-class>
  +    </component>
  +
  +    <component>
  +        <component-type>org.jboss.seam.pdf.ui.UIFooter</component-type>
  +        <component-class>org.jboss.seam.pdf.ui.UIFooter</component-class>
  +    </component>
  +
  +    <component>
  +        <component-type>org.jboss.seam.pdf.ui.UIPageNumber</component-type>
  +        <component-class>org.jboss.seam.pdf.ui.UIPageNumber</component-class>
  +    </component>
  +
  +    <component>
           <component-type>org.jboss.seam.pdf.ui.UIParagraph</component-type>
           <component-class>org.jboss.seam.pdf.ui.UIParagraph</component-class>
       </component>
  
  
  
  1.4       +21 -0     jboss-seam/src/pdf/META-INF/seam.taglib.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: seam.taglib.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/pdf/META-INF/seam.taglib.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- seam.taglib.xml	25 Dec 2006 16:17:54 -0000	1.3
  +++ seam.taglib.xml	11 Jan 2007 05:32:06 -0000	1.4
  @@ -14,6 +14,27 @@
       </tag>
   
       <tag>
  +        <tag-name>header</tag-name>
  +        <component>
  +            <component-type>org.jboss.seam.pdf.ui.UIHeader</component-type>
  +        </component>
  +    </tag>
  +
  +    <tag>
  +        <tag-name>footer</tag-name>
  +        <component>
  +            <component-type>org.jboss.seam.pdf.ui.UIFooter</component-type>
  +        </component>
  +    </tag>
  +
  +    <tag>
  +        <tag-name>pageNumber</tag-name>
  +        <component>
  +            <component-type>org.jboss.seam.pdf.ui.UIPageNumber</component-type>
  +        </component>
  +    </tag>
  +
  +    <tag>
           <tag-name>paragraph</tag-name>
           <component>
               <component-type>org.jboss.seam.pdf.ui.UIParagraph</component-type>
  
  
  



More information about the jboss-cvs-commits mailing list