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 README.txt
Makefile
setup.py setup.py
docs/index.html docs/index.html
pdfminer/Makefile
pdfminer/__init__.py
pdfminer/arcfour.py
pdfminer/ascii85.py
pdfminer/cmapdb.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/pdfparser.py
pdfminer/pdftypes.py pdfminer/latin_enc.py
pdfminer/psparser.py pdfminer/encodingdb.py
pdfminer/rijndael.py pdfminer/lzw.py
pdfminer/runlength.py pdfminer/Makefile
pdfminer/utils.py pdfminer/pdfinterp.py
pdfminer/latin2ascii.py
pdfminer/cmap/Makefile pdfminer/cmap/Makefile
pdfminer/cmap/__init__.py pdfminer/cmap/__init__.py
tools/Makefile pdfminer/arcfour.py
tools/dumppdf.py pdfminer/ascii85.py
tools/pdf2txt.py pdfminer/glyphlist.py
tools/pdf2html.cgi pdfminer/utils.py
tools/conv_afm.py pdfminer/rijndael.py
tools/conv_cmap.py pdfminer/layout.py
tools/prof.py pdfminer/pdfcolor.py
samples/Makefile pdfminer/pdftypes.py
samples/jo.pdf pdfminer/runlength.py
samples/simple1.pdf pdfminer/psparser.py
samples/simple2.pdf pdfminer/__init__.py
samples/dmca.pdf pdfminer/pdfdevice.py
samples/f1040nr.pdf pdfminer/fontmetrics.py
samples/i1040nr.pdf pdfminer/pdffont.py
samples/kampo.pdf pdfminer/converter.py
samples/naacl06-shinyama.pdf
samples/nlp2004slides.pdf
cmaprsrc/README.txt cmaprsrc/README.txt
cmaprsrc/cid2code_Adobe_Korea1.txt
cmaprsrc/cid2code_Adobe_Japan1.txt
cmaprsrc/cid2code_Adobe_CNS1.txt cmaprsrc/cid2code_Adobe_CNS1.txt
cmaprsrc/cid2code_Adobe_GB1.txt cmaprsrc/cid2code_Adobe_GB1.txt
cmaprsrc/cid2code_Adobe_Japan1.txt tools/Makefile
cmaprsrc/cid2code_Adobe_Korea1.txt 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> <div align=right class=lastmod>
<!-- hhmts start --> <!-- hhmts start -->
Last Modified: Mon Mar 22 04:34:28 UTC 2010 Last Modified: Mon Mar 22 06:16:28 UTC 2010
<!-- hhmts end --> <!-- hhmts end -->
</div> </div>
@ -106,10 +106,6 @@ http://pdf2html.tabesugi.net:8080/
$ <strong>pdf2txt.py samples/simple1.pdf</strong> $ <strong>pdf2txt.py samples/simple1.pdf</strong>
Hello Hello
Hello
World
World World
Hello Hello
@ -120,6 +116,9 @@ H e l l o
W o r l d W o r l d
H e l l o
W o r l d
</pre></blockquote> </pre></blockquote>
<li> Done! <li> Done!
</ol> </ol>

View File

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