Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog51
-rw-r--r--NEWS12
-rw-r--r--README8
-rw-r--r--TODO2
-rw-r--r--config.py2
-rw-r--r--debian/changelog16
-rw-r--r--webcheck.12
7 files changed, 86 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index b80db78..1dcc0e4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,54 @@
+2007-11-04 08:27 arthur
+
+ * [r362] debian/control: move Homepage pseudo header to control
+ header and remove XS- prefix for Vcs tags
+
+2007-11-04 07:38 arthur
+
+ * [r361] webcheck.1: add comma for readability
+
+2007-11-04 07:37 arthur
+
+ * [r360] debian/copyright: fix reference to GPL file in
+ common-licenses
+
+2007-11-04 07:35 arthur
+
+ * [r359] README: updated information about Python versions to use
+ and add section about Distutils
+
+2007-10-09 19:34 arthur
+
+ * [r358] AUTHORS, crawler.py, myurllib.py, plugins/sitemap.py: add
+ workaround for Python 2.3 (based on a patch by Claire Connelly
+ <cmc@math.hmc.edu>)
+
+2007-09-17 19:11 arthur
+
+ * [r357] parsers/html/beautifulsoup.py: add a warning if the used
+ version of BeautifulSoup contains a bug
+
+2007-07-22 14:32 arthur
+
+ * [r356] config.py, webcheck.py: implement undocumented --profile
+ option to write profiling information in output directory
+
+2007-07-22 14:23 arthur
+
+ * [r355] debian/control: remove old linbot
+ provides/conflicts/replaces stuff as linbot last shipped in woody
+
+2007-07-22 13:27 arthur
+
+ * [r354] debian/control: update recommends to python-beautifulsoup
+ version 3.0.2 or later since that version fixes a problem with
+ find(attr=True)
+
+2007-07-15 13:07 arthur
+
+ * [r352] ChangeLog, NEWS, README, TODO, config.py,
+ debian/changelog, webcheck.1: get files ready for 1.10.1 release
+
2007-07-15 08:23 arthur
* [r351] crawler.py: output which parser module is used in debug
diff --git a/NEWS b/NEWS
index 01c318e..2f6744b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,13 @@
+changes from 1.10.1 to 1.10.2
+-----------------------------
+
+* add checking for bug in BeautifulSoup and issue warning if bug is found
+* added support for Python 2.3 (alhough more recent versions of Python
+ are recommended)
+* small documentation improvements
+* Debian package improvements
+
+
changes from 1.10.0 to 1.10.1
-----------------------------
@@ -9,7 +19,7 @@ changes from 1.10.0 to 1.10.1
* a number of big performance improvements
* fix a bug in handling some zero-size pages
* parse http-equiv meta HTML header to parse refresh option
-* webcheck now requires python 2.4 or more recent
+* webcheck now requires Python 2.4 or more recent
changes from 1.9.8 to 1.10.0
diff --git a/README b/README
index 9b4b242..1a1db7c 100644
--- a/README
+++ b/README
@@ -70,13 +70,13 @@ Unix-like systems. Other operating systems may differ.
1. Unpack the tarball in the location that you want to have it installed.
Maybe something like /usr/local/lib/python/site-packages or /opt.
- % tar -xvzf webcheck-1.10.1.tar.gz
+ % tar -xvzf webcheck-1.10.2.tar.gz
2. Add a symbolic link to some place in your PATH.
- % ln -s /opt/webcheck-1.10.1/webcheck.py /usr/local/bin/webcheck
+ % ln -s /opt/webcheck-1.10.2/webcheck.py /usr/local/bin/webcheck
3. Put the manual page in the MANPATH.
- % ln -s /opt/webcheck-1.10.1/webcheck.1 /usr/local/man/man1/webcheck.1
+ % ln -s /opt/webcheck-1.10.2/webcheck.1 /usr/local/man/man1/webcheck.1
webcheck does not use Distutils because that tool is meant to install Python
modules which should end up in the default Python path (from what the author
@@ -104,7 +104,7 @@ browsers.
For more information on webcheck usage and command line options see the
webcheck manual page. If the manual page is not in the MANPATH you can
probably open the manual with something like:
- % man -l /opt/webcheck-1.10.1/webcheck.1
+ % man -l /opt/webcheck-1.10.2/webcheck.1
FEEDBACK AND BUG REPORTS
diff --git a/TODO b/TODO
index 3f58ecf..7565014 100644
--- a/TODO
+++ b/TODO
@@ -2,6 +2,7 @@ before next release
-------------------
* go over all FIXMEs in code (ftp)
* follow redirects (to a limit) of external sites
+* -U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION.
probably before 2.0 release
---------------------------
@@ -62,3 +63,4 @@ wishlist
* warn if URL contains unencoded characters
* see section 6 of rfc3986.txt for URL comparison (esp. 6.2.2.)
* implement paging for huge reports
+* check out python-coverage
diff --git a/config.py b/config.py
index f1f0001..9c8fe6b 100644
--- a/config.py
+++ b/config.py
@@ -30,7 +30,7 @@ items should be changeble from the command line."""
import urllib
# Current version of webcheck.
-VERSION = '1.10.1'
+VERSION = '1.10.2'
# The homepage of webcheck.
HOMEPAGE = 'http://ch.tudelft.nl/~arthur/webcheck/'
diff --git a/debian/changelog b/debian/changelog
index 4b4051b..6d44031 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,19 @@
+webcheck (1.10.2) unstable; urgency=low
+
+ * changed the recommends to python-beautifulsoup to be more recent than
+ 3.0.2 since that version fixes a bug that causes severe problems for
+ webcheck (beware backporters to etch) (closes: #433446)
+ * remove old linbot provides/conflicts/replaces stuff as linbot last shipped
+ in woody
+ * move Homepage pseudo header to control header and remove XS- prefix for
+ Vcs tags
+ * add checking for bug in BeautifulSoup and issue warning if bug is found
+ * added support for Python 2.3 (alhough more recent versions of Python
+ are recommended)
+ * small documentation improvements
+
+ -- Arthur de Jong <adejong@debian.org> Fri, 20 Jul 2007 21:12:56 +0200
+
webcheck (1.10.1) unstable; urgency=low
* some extra Unicode handling precautions
diff --git a/webcheck.1 b/webcheck.1
index ba1f10b..85f6687 100644
--- a/webcheck.1
+++ b/webcheck.1
@@ -15,7 +15,7 @@
.\" Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
.\" .nh
.\"
-.TH "webcheck" "1" "Jul 2007" "Version 1.10.1" "User Commands"
+.TH "webcheck" "1" "Nov 2007" "Version 1.10.2" "User Commands"
.nh
.SH "NAME"
webcheck \- website link checker