release-20100322

git-svn-id: https://pdfminerr.googlecode.com/svn/trunk/pdfminer@192 1aa58f4a-7d42-0410-adbc-911cccaed67c
pull/1/head
yusuke.shinyama.dummy 2010-03-22 06:22:33 +00:00
parent 40b36a7c42
commit 25636d7c08
3 changed files with 73 additions and 48 deletions

110
MANIFEST
View File

@ -1,52 +1,78 @@
TODO
Makefile
README.txt
Makefile
setup.py
docs/index.html
pdfminer/Makefile
pdfminer/__init__.py
pdfminer/arcfour.py
pdfminer/ascii85.py
pdfminer/cmapdb.py
pdfminer/encodingdb.py
pdfminer/converter.py
pdfminer/fontmetrics.py
pdfminer/glyphlist.py
pdfminer/latin2ascii.py
pdfminer/latin_enc.py
pdfminer/layout.py
pdfminer/lzw.py
pdfminer/pdfcolor.py
pdfminer/pdfdevice.py
pdfminer/pdffont.py
pdfminer/pdfinterp.py
pdfminer/pdfparser.py
pdfminer/pdftypes.py
pdfminer/psparser.py
pdfminer/rijndael.py
pdfminer/runlength.py
pdfminer/utils.py
pdfminer/latin_enc.py
pdfminer/encodingdb.py
pdfminer/lzw.py
pdfminer/Makefile
pdfminer/pdfinterp.py
pdfminer/latin2ascii.py
pdfminer/cmap/Makefile
pdfminer/cmap/__init__.py
tools/Makefile
tools/dumppdf.py
tools/pdf2txt.py
tools/pdf2html.cgi
tools/conv_afm.py
tools/conv_cmap.py
tools/prof.py
samples/Makefile
samples/jo.pdf
samples/simple1.pdf
samples/simple2.pdf
samples/dmca.pdf
samples/f1040nr.pdf
samples/i1040nr.pdf
samples/kampo.pdf
samples/naacl06-shinyama.pdf
samples/nlp2004slides.pdf
pdfminer/arcfour.py
pdfminer/ascii85.py
pdfminer/glyphlist.py
pdfminer/utils.py
pdfminer/rijndael.py
pdfminer/layout.py
pdfminer/pdfcolor.py
pdfminer/pdftypes.py
pdfminer/runlength.py
pdfminer/psparser.py
pdfminer/__init__.py
pdfminer/pdfdevice.py
pdfminer/fontmetrics.py
pdfminer/pdffont.py
pdfminer/converter.py
cmaprsrc/README.txt
cmaprsrc/cid2code_Adobe_Korea1.txt
cmaprsrc/cid2code_Adobe_Japan1.txt
cmaprsrc/cid2code_Adobe_CNS1.txt
cmaprsrc/cid2code_Adobe_GB1.txt
cmaprsrc/cid2code_Adobe_Japan1.txt
cmaprsrc/cid2code_Adobe_Korea1.txt
tools/Makefile
tools/pdf2txt.py
tools/conv_cmap.py
tools/pdf2html.cgi
tools/dumppdf.py
tools/conv_afm.py
tools/prof.py
samples/kampo.html.ref
samples/i1040nr.xml.ref
samples/f1040nr.pdf
samples/nlp2004slides.pdf
samples/simple1.xml.ref
samples/simple1.pdf
samples/kampo.pdf
samples/jo.txt.ref
samples/naacl06-shinyama.pdf
samples/simple2.html.ref
samples/i1040nr.html.ref
samples/naacl06-shinyama.txt.ref
samples/Makefile
samples/nlp2004slides.html.ref
samples/simple1.txt.ref
samples/dmca.xml.ref
samples/jo.html.ref
samples/jo.xml.ref
samples/simple2.txt.ref
samples/kampo.xml.ref
samples/naacl06-shinyama.xml.ref
samples/jo.pdf
samples/i1040nr.pdf
samples/dmca.txt.ref
samples/dmca.pdf
samples/simple1.html.ref
samples/nlp2004slides.txt.ref
samples/f1040nr.txt.ref
samples/nlp2004slides.xml.ref
samples/i1040nr.txt.ref
samples/dmca.html.ref
samples/simple2.xml.ref
samples/naacl06-shinyama.html.ref
samples/f1040nr.html.ref
samples/simple2.pdf
samples/f1040nr.xml.ref
samples/kampo.txt.ref

View File

@ -19,7 +19,7 @@ Python PDF parser and analyzer
<div align=right class=lastmod>
<!-- hhmts start -->
Last Modified: Mon Mar 22 04:34:28 UTC 2010
Last Modified: Mon Mar 22 06:16:28 UTC 2010
<!-- hhmts end -->
</div>
@ -106,10 +106,6 @@ http://pdf2html.tabesugi.net:8080/
$ <strong>pdf2txt.py samples/simple1.pdf</strong>
Hello
Hello
World
World
Hello
@ -120,6 +116,9 @@ H e l l o
W o r l d
H e l l o
W o r l d
</pre></blockquote>
<li> Done!
</ol>

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
__version__ = '20100213'
__version__ = '20100322'
if __name__ == '__main__': print __version__