20090110 release

git-svn-id: https://pdfminerr.googlecode.com/svn/trunk/pdfminer@61 1aa58f4a-7d42-0410-adbc-911cccaed67c
pull/1/head
yusuke.shinyama.dummy 2009-01-10 11:14:17 +00:00
parent ba277fb5a0
commit 6b4044ddaf
3 changed files with 9 additions and 8 deletions

View File

@ -1,7 +1,7 @@
# Makefile for pdfminer
PACKAGE=pdfminer
VERSION=20081228
VERSION=20090110
GNUTAR=tar
SVN=svn
PYTHON=python
@ -34,7 +34,7 @@ pack: clean
$(GNUTAR) c -z -C$(WORKDIR) -f $(WORKDIR)/$(DISTFILE) $(DISTNAME) --dereference --numeric-owner
rm -rf $(WORKDIR)/$(DISTNAME)
pychecker:
check:
-pychecker --limit=0 *.py
commit: clean

View File

@ -14,7 +14,7 @@ Python PDF parser and analyzer
<div align=right class=lastmod>
<!-- hhmts start -->
Last Modified: Sun Dec 28 20:11:59 JST 2008
Last Modified: Sat Jan 10 20:13:39 JST 2009
<!-- hhmts end -->
</div>
@ -53,8 +53,8 @@ http://www.unixuser.org/~euske/python/pdfminer/index.html
<a name="source"></a>
<p>
<strong>Download (source):</strong><br>
<a href="http://www.unixuser.org/~euske/python/pdfminer/pdfminer-dist-20080906.tar.gz">
http://www.unixuser.org/~euske/python/pdfminer/pdfminer-dist-20080906.tar.gz
<a href="http://www.unixuser.org/~euske/python/pdfminer/pdfminer-dist-20090110.tar.gz">
http://www.unixuser.org/~euske/python/pdfminer/pdfminer-dist-20090110.tar.gz
</a>
(1.8Mbytes)
@ -245,7 +245,8 @@ no stream header is displayed for the ease of saving it to a file.
<hr noshade>
<h2>Changes</h2>
<ul>
<li> 2008/12/28: Better handling of word spacing. Thanks to
<li> 2009/01/10: Handling Type3 font metrics correctly.
<li> 2008/12/28: Better handling of word spacing. Thanks to Christian Nentwich.
<li> 2008/09/06: A sample pdf2html webapp added.
<li> 2008/08/30: ASCII85 encoding filter support.
<li> 2008/07/27: Tagged contents extraction support.
@ -272,7 +273,7 @@ no stream header is displayed for the ease of saving it to a file.
<h2>Terms and Conditions</h2>
<p>
<small>
Copyright (c) 2004-2008 Yusuke Shinyama &lt;yusuke at cs dot nyu dot edu&gt;
Copyright (c) 2004-2009 Yusuke Shinyama &lt;yusuke at cs dot nyu dot edu&gt;
<p>
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation

View File

@ -101,7 +101,7 @@ class HTMLConverter(TextConverter):
def close(self):
self.outfp.write('<div style="position:absolute; top:0px;">Page: %s</div>\n' %
', '.join('<a href="#%s">%s</a>' % (i,i) for i in xrange(self.pageno)))
', '.join('<a href="#%s">%s</a>' % (i,i) for i in xrange(1,self.pageno)))
self.outfp.write('</body></html>\n')
return