<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -3,6 +3,7 @@ MANIFEST.SKIP
 Makefile.PL
 README
 CHANGES
+TODO
 lib/PDF/Create.pm
 lib/PDF/Create/Outline.pm
 lib/PDF/Create/Page.pm
@@ -11,4 +12,10 @@ lib/PDF/Image/JPEGImage.pm
 sample.pl
 pdf-logo.gif
 pdf-logo.jpg
-t/minimal.t
+t/1-simple.t
+t/2-jpeg.t
+t/pdf-logo.jpg
+t/3-gif.t
+t/pdf-logo.gif
+t/4-graphics.t
+t/5-complex.t</diff>
      <filename>MANIFEST</filename>
    </modified>
    <modified>
      <diff>@@ -901,8 +901,8 @@ use PDF::Create;
 my $pdf = new PDF::Create('filename'     =&gt; 'mypdf.pdf',
 			  'Version'      =&gt; 1.2,
 			  'PageMode'     =&gt; 'UseOutlines',
-			  'Author'       =&gt; 'Fabien Tassin',
-			  'Title'        =&gt; 'My title',
+			  'Author'       =&gt; 'John Doe',
+			  'Title'        =&gt; 'My Title',
 			  'CreationDate' =&gt; [ localtime ],
 			 );
 # add a A4 sized page
@@ -939,7 +939,7 @@ $toc-&gt;new_outline('Title' =&gt; 'Section 3');
 $pdf-&gt;new_outline('Title' =&gt; 'Summary');
 
 # Add something to the first page
-$page-&gt;stringc($f1, 20, 306, 300, 'by Fabien Tassin &lt;fta@sofaraway.org&gt;');
+$page-&gt;stringc($f1, 20, 306, 300, 'by John Doe &lt;john.doe@example.com&gt;');
 
 # Add the missing PDF objects and a the footer then close the file
 $pdf-&gt;close;
@@ -972,9 +972,7 @@ This will create an empty PDF structure. A lot of attributes can be
 used:
 
   - filename: destination file that will contain the resulting
-    PDF or ...
-
-  - fh: ... an already opened filehandle
+    PDF or an already opened filehandle or '-' for stdout.
 
   - Version: can be 1.0 to 1.3 (default: 1.2)
 
@@ -1013,7 +1011,7 @@ Example:
   my $pdf = new PDF::Create('filename'     =&gt; 'mypdf.pdf',
                             'Version'      =&gt; 1.2,
                             'PageMode'     =&gt; 'UseOutlines',
-                            'Author'       =&gt; 'Fabien Tassin',
+                            'Author'       =&gt; 'John Doe',
                             'Title'        =&gt; 'My title',
 			    'CreationDate' =&gt; [ localtime ],
                            );</diff>
      <filename>lib/PDF/Create.pm</filename>
    </modified>
    <modified>
      <diff>@@ -3,26 +3,25 @@
 # sample PDF::Create usage
 #
 
-BEGIN { unshift @INC, &quot;lib&quot;, &quot;../lib&quot; }
 use strict;
 use PDF::Create;
 
 my $pdf = new PDF::Create('filename' =&gt; 'sample.pdf',
-		   			      'Version'  =&gt; 1.2,
-					      'PageMode' =&gt; 'UseOutlines',
-					      'Author'   =&gt; 'Fabien Tassin',
-						  'Title'    =&gt; 'Sample Document',
+			  'Version'  =&gt; 1.2,
+			  'PageMode' =&gt; 'UseOutlines',
+			  'Author'   =&gt; 'John Doe',
+			  'Title'    =&gt; 'Sample Document',
 						);
 
 my $root = $pdf-&gt;new_page('MediaBox' =&gt; $pdf-&gt;get_page_size('a4'));
 
 # Prepare 2 fonts
 my $f1 = $pdf-&gt;font('Subtype'  =&gt; 'Type1',
-	 	   	        'Encoding' =&gt; 'WinAnsiEncoding',
+	 	    'Encoding' =&gt; 'WinAnsiEncoding',
 			        'BaseFont' =&gt; 'Helvetica');
 my $f2 = $pdf-&gt;font('Subtype'  =&gt; 'Type1',
-			        'Encoding' =&gt; 'WinAnsiEncoding',
-			        'BaseFont' =&gt; 'Helvetica-Bold');
+		    'Encoding' =&gt; 'WinAnsiEncoding',
+		    'BaseFont' =&gt; 'Helvetica-Bold');
 
 # Prepare a Table of Content
 my $toc = $pdf-&gt;new_outline('Title' =&gt; 'Sample Document');</diff>
      <filename>sample.pl</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>sample.pdf</filename>
    </removed>
    <removed>
      <filename>t/minimal.t</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>2b50205e83e7d8580070217bdf3d64228e158995</id>
    </parent>
  </parents>
  <author>
    <name>Markus Baertschi</name>
    <email>markus@markus.org</email>
  </author>
  <url>http://github.com/markusb/pdf-create/commit/90f37cec747e8a09cc0fe6a2ab8d36f729943e3c</url>
  <id>90f37cec747e8a09cc0fe6a2ab8d36f729943e3c</id>
  <committed-date>2008-05-20T08:18:40-07:00</committed-date>
  <authored-date>2008-05-20T08:18:40-07:00</authored-date>
  <message>Cleaned up samples and comments</message>
  <tree>d8809f80c5f30f4db2e2afba61f0cbd2e8ed11c6</tree>
  <committer>
    <name>Markus Baertschi</name>
    <email>markus@markus.org</email>
  </committer>
</commit>
