Changeset 689

Show
Ignore:
Timestamp:
01/18/06 12:02:10 (3 years ago)
Author:
laotzu
Message:

Update for version 1.1.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • pypdf/trunk/CHANGELOG

    r678 r689  
     1Version 1.1, 2006-01-18 
     2----------------------- 
     3 
     4- Add capability to rotate pages. 
     5 
     6- Improved PDF reading support to properly manage inherited attributes from 
     7  /Type=/Pages nodes.  This means that page groups that are rotated or have 
     8  different media boxes or whatever will now work properly. 
     9 
     10- Added PDF 1.5 support.  Namely cross-reference streams and object streams. 
     11  This release can mangle Adobe's PDFReference16.pdf successfully. 
     12 
     13 
    114Version 1.0, 2006-01-17 
    215----------------------- 
  • pypdf/trunk/README

    r679 r689  
    1010    input2 = PdfFileReader(file("document2.pdf", "rb")) 
    1111    for i in range(input2.getNumPages()): 
    12         output.addPage(input2.getPage(i)
     12        output.addPage(input2.getPage(i).rotateClockwise(90)
    1313 
    1414    outputStream = file("document-output.pdf", "wb") 
  • pypdf/trunk/setup.py

    r680 r689  
    1818setup( 
    1919        name="pyPdf", 
    20         version="1.0", 
     20        version="1.1", 
    2121        description="PDF toolkit", 
    2222        long_description=long_description, 
     
    2424        author_email="mfenniak@pobox.com", 
    2525        url="http://stompstompstomp.com/pyPdf/", 
    26         download_url="http://stompstompstomp.com/pyPdf/pyPdf-1.0.tar.gz", 
     26        download_url="http://stompstompstomp.com/pyPdf/pyPdf-1.1.tar.gz", 
    2727        classifiers = [ 
    2828            "Development Status :: 4 - Beta",