From 98442ed9435554ebbc2ff9bd80092bd729ec4a88 Mon Sep 17 00:00:00 2001 From: "yusuke.shinyama.dummy" Date: Sun, 17 Oct 2010 05:15:58 +0000 Subject: [PATCH] update the version number and documentation git-svn-id: https://pdfminerr.googlecode.com/svn/trunk/pdfminer@256 1aa58f4a-7d42-0410-adbc-911cccaed67c --- docs/index.html | 9 +++------ pdfminer/__init__.py | 2 +- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/docs/index.html b/docs/index.html index 82a756c..a7cff65 100644 --- a/docs/index.html +++ b/docs/index.html @@ -19,7 +19,7 @@ Python PDF parser and analyzer
-Last Modified: Wed Sep 8 23:20:00 UTC 2010 +Last Modified: Sun Oct 17 05:13:01 UTC 2010
@@ -185,7 +185,7 @@ Examples: $ pdf2txt.py -o output.html samples/naacl06-shinyama.pdf (extract text as an HTML file whose filename is output.html) -$ pdf2txt.py -c euc-jp -D tb-rl -o output.html samples/jo.pdf +$ pdf2txt.py -c euc-jp -o output.html samples/jo.pdf (extract a Japanese HTML file in vertical writing, CMap is required) $ pdf2txt.py -P mypassword -o output.txt secret.pdf @@ -222,10 +222,6 @@ Tags used here are defined in the PDF specification (See §10.7 "Tagged
Specifies the output directory for image extraction. Currently only JPEG images are supported.

-

-D writing_mode -
Specifies the writing mode of text outputs. -Currently lr-tb, tb-rl and auto is supported. -

-M char_margin
-L line_margin
-W word_margin @@ -389,6 +385,7 @@ Also, check out a more complete

Changes

    +
  • 2010/10/17: A couple of bugfixes and a minor improvement. Thanks to standardabweichung and Alastair Irving.
  • 2010/09/07: A minor bugfix. Thanks to Alexander Garden.
  • 2010/08/29: A couple of bugfixes. Thanks to Sahan Malagi, pk, and Humberto Pereira.
  • 2010/07/06: Minor bugfixes. Thanks to Federico Brega. diff --git a/pdfminer/__init__.py b/pdfminer/__init__.py index 7778e0a..89c27f3 100644 --- a/pdfminer/__init__.py +++ b/pdfminer/__init__.py @@ -1,4 +1,4 @@ #!/usr/bin/env python -__version__ = '20100829' +__version__ = '20101017' if __name__ == '__main__': print __version__