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

Norman Richards norman.richards at jboss.com
Tue Jul 10 01:19:26 EDT 2007


  User: nrichards
  Date: 07/07/10 01:19:26

  Modified:    examples/itext/view   barcode.xhtml barcodeimage.xhtml
  Log:
  barcode labels, add codetype
  
  Revision  Changes    Path
  1.2       +8 -9      jboss-seam/examples/itext/view/barcode.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: barcode.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/itext/view/barcode.xhtml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- barcode.xhtml	14 May 2007 18:57:40 -0000	1.1
  +++ barcode.xhtml	10 Jul 2007 05:19:26 -0000	1.2
  @@ -10,30 +10,29 @@
       </p:header>
       
       <p:paragraph>Code128</p:paragraph>
  -    <p:paragraph>Value = My BarCode</p:paragraph>
  -    <p:barCode type="code128" code="My BarCode" />
  +    <p:barCode type="code128" code="My BarCode" barColor="green" textColor="yellow" />
  +
  +    <p:paragraph>Code128 ucc</p:paragraph>
  +    <p:barCode type="code128" code="(10)45566(17)040301" codeType="code128_ucc" textColor="blue" />
       
       <p:paragraph>Code39</p:paragraph>
  -    <p:paragraph>Value = 123456</p:paragraph>
       <p:barCode type="code39" code="123456" />
       
  +    
       <p:paragraph>EAN</p:paragraph>
  -    <p:paragraph>Value = 4512345678906</p:paragraph>
       <p:barCode type="ean" code="4512345678906" />
       
  +
       <p:paragraph>Codabar</p:paragraph>
  -    <p:paragraph>Value = A123456B</p:paragraph>
  -    <p:barCode type="codabar" code="A123456B" />
  +    <p:barCode type="codabar" code="A123456A" />
       
       <p:paragraph>Inter 2 of 5</p:paragraph>
  -    <p:paragraph>Value = 1234567896543241</p:paragraph>
       <p:barCode type="inter25" code="1234567896543241" />
       
       <p:paragraph>PostNet</p:paragraph>
  -    <p:paragraph>Value = 123456789</p:paragraph>
       <p:barCode type="postnet" code="12345689" />
       
       <p:paragraph>Absolute Positioning:</p:paragraph>
  -    <p:paragraph>Value: absolute</p:paragraph>
       <p:barCode type="code128" code="absolute" xpos="200" ypos="300" rotDegrees="45"/>
  +
   </p:document>
  
  
  
  1.2       +6 -0      jboss-seam/examples/itext/view/barcodeimage.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: barcodeimage.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/itext/view/barcodeimage.xhtml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- barcodeimage.xhtml	16 May 2007 03:31:31 -0000	1.1
  +++ barcodeimage.xhtml	10 Jul 2007 05:19:26 -0000	1.2
  @@ -21,6 +21,12 @@
           </tr>
       
           <tr>
  +            <td>Code128/code128_ucc</td>
  +            <td>(10)45566(17)040301</td>
  +            <td><p:barCode type="code128" barHeight="80" textSize="20" code="(10)45566(17)040301" altText="alt" codeType="code128_ucc" /></td>
  +        </tr>
  +    
  +        <tr>
               <td>Code39</td>
               <td>123456</td>
               <td><p:barCode type="code39" code="123456" /></td>
  
  
  



More information about the jboss-cvs-commits mailing list