webcheck commit: r411 - in webcheck: . debian
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
webcheck commit: r411 - in webcheck: . debian
- From: Commits of the webcheck project <webcheck-commits [at] lists.arthurdejong.org>
- To: webcheck-commits [at] lists.arthurdejong.org
- Reply-to: webcheck-users [at] lists.arthurdejong.org
- Subject: webcheck commit: r411 - in webcheck: . debian
- Date: Sat, 11 Sep 2010 21:47:40 +0200 (CEST)
Author: arthur
Date: Sat Sep 11 21:47:38 2010
New Revision: 411
URL: http://arthurdejong.org/viewvc/webcheck?view=rev&revision=411
Log:
get files ready for 1.10.4 release
Modified:
webcheck/ChangeLog
webcheck/NEWS
webcheck/README
webcheck/config.py
webcheck/debian/changelog
webcheck/webcheck.1
Modified: webcheck/ChangeLog
==============================================================================
--- webcheck/ChangeLog Sat Sep 11 21:10:25 2010 (r410)
+++ webcheck/ChangeLog Sat Sep 11 21:47:38 2010 (r411)
@@ -1,3 +1,89 @@
+2010-09-11 18:56 arthur
+
+ * [r409] README, webcheck.1: direct bugreports to mailing list
+ instead of personal address
+
+2010-09-11 18:39 arthur
+
+ * [r408] debian/control: upgrade to standards-version 3.9.1
+
+2010-09-11 18:32 arthur
+
+ * [r407] debian/postinst: drop removing legacy configuration
+ (/etc/webcheck) as this directory was already removed in etch
+
+2010-09-11 18:14 arthur
+
+ * [r406] debian/source, debian/source/format: switch to source
+ format 3.0 (native)
+
+2010-09-11 12:43 arthur
+
+ * [r405] schemes/http.py: add a Referer header if possible (thanks
+ Devin Bayer)
+
+2010-09-11 12:31 arthur
+
+ * [r404] config.py: pass char_encoding option to tidy
+
+2010-01-03 19:29 arthur
+
+ * [r403] debian/compat, debian/control, debian/rules: upgrade to
+ debhelper compatibility level 7
+
+2010-01-03 15:15 arthur
+
+ * [r402] schemes/http.py: remove debugging code
+
+2010-01-03 15:13 arthur
+
+ * [r401] webcheck.py: remove debugging statement
+
+2009-06-14 14:47 arthur
+
+ * [r400] AUTHORS, README, config.py, debian/control,
+ debian/copyright, webcheck.1: switch from ch.tudelft.nl to
+ arthurdejong.org
+
+2009-05-26 20:25 arthur
+
+ * [r399] config.py, plugins/__init__.py: limit list of "referenced
+ from" items to 10
+
+2009-05-26 20:24 arthur
+
+ * [r398] plugins/external.py: add FIXME note
+
+2009-01-14 22:10 arthur
+
+ * [r397] parsers/css.py, parsers/html/beautifulsoup.py,
+ parsers/html/htmlparser.py: handle case where inline CSS is used
+ on a page with <base href="..">
+
+2008-11-27 12:42 arthur
+
+ * [r396] schemes/http.py: remove socket.sslerror in exception
+ handling because socket.sslerror is a subclass of socket.error
+ since Python 2.4 and this causes problems for systems without SSL
+
+2008-11-19 19:03 arthur
+
+ * [r395] myurllib.py: remove print statement that was used for
+ debugging and ensure that the dots are slash-terminated
+
+2008-11-19 18:55 arthur
+
+ * [r394] myurllib.py: remove leading .. from URL path elements
+
+2008-07-19 11:47 arthur
+
+ * [r393] NEWS, debian/changelog: merge changes in 1.10.3 release
+
+2008-07-19 11:38 arthur
+
+ * [r390] ChangeLog, NEWS, TODO, config.py, debian/changelog,
+ webcheck.1: get files ready for 1.10.3 release
+
2008-07-19 11:34 arthur
* [r389] debian/control: build-depend on newer version of
Modified: webcheck/NEWS
==============================================================================
--- webcheck/NEWS Sat Sep 11 21:10:25 2010 (r410)
+++ webcheck/NEWS Sat Sep 11 21:47:38 2010 (r411)
@@ -1,3 +1,14 @@
+changes from 1.10.3 to 1.10.4
+-----------------------------
+
+* remove some left-over debuging code
+* several small bugfixes which more or less drop support for Python 2.3
+* limit list of "referenced from" to 10 items
+* pass char_encoding option to tidy to fix some tidy-related errors
+* add a Referer header if possible (thanks Devin Bayer)
+* Debian packaging improvements
+
+
changes from 1.10.2 to 1.10.3
-----------------------------
Modified: webcheck/README
==============================================================================
--- webcheck/README Sat Sep 11 21:10:25 2010 (r410)
+++ webcheck/README Sat Sep 11 21:47:38 2010 (r411)
@@ -70,13 +70,13 @@
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.2.tar.gz
+ % tar -xvzf webcheck-1.10.4.tar.gz
2. Add a symbolic link to some place in your PATH.
- % ln -s /opt/webcheck-1.10.2/webcheck.py /usr/local/bin/webcheck
+ % ln -s /opt/webcheck-1.10.4/webcheck.py /usr/local/bin/webcheck
3. Put the manual page in the MANPATH.
- % ln -s /opt/webcheck-1.10.2/webcheck.1 /usr/local/man/man1/webcheck.1
+ % ln -s /opt/webcheck-1.10.4/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 @@
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.2/webcheck.1
+ % man -l /opt/webcheck-1.10.4/webcheck.1
FEEDBACK AND BUG REPORTS
Modified: webcheck/config.py
==============================================================================
--- webcheck/config.py Sat Sep 11 21:10:25 2010 (r410)
+++ webcheck/config.py Sat Sep 11 21:47:38 2010 (r411)
@@ -30,7 +30,7 @@
import urllib
# Current version of webcheck.
-VERSION = '1.10.3'
+VERSION = '1.10.4'
# The homepage of webcheck.
HOMEPAGE = 'http://arthurdejong.org/webcheck/'
Modified: webcheck/debian/changelog
==============================================================================
--- webcheck/debian/changelog Sat Sep 11 21:10:25 2010 (r410)
+++ webcheck/debian/changelog Sat Sep 11 21:47:38 2010 (r411)
@@ -1,3 +1,16 @@
+webcheck (1.10.4) unstable; urgency=low
+
+ * switch to source format 3.0 (native)
+ * remove some left-over debuging code (LP: #401050)
+ * remove old /etc/webcheck removal code
+ * upgrade to standards-version 3.9.1 (no changes needed)
+ * several small bugfixes which more or less drop support for Python 2.3
+ * limit list of "referenced from" to 10 items
+ * pass char_encoding option to tidy to fix some tidy-related errors
+ * add a Referer header if possible (thanks Devin Bayer)
+
+ -- Arthur de Jong <adejong@debian.org> Sat, 11 Sep 2010 20:11:49 +0200
+
webcheck (1.10.3) unstable; urgency=low
* take a shot at making debian/copyright machine parseable
Modified: webcheck/webcheck.1
==============================================================================
--- webcheck/webcheck.1 Sat Sep 11 21:10:25 2010 (r410)
+++ webcheck/webcheck.1 Sat Sep 11 21:47:38 2010 (r411)
@@ -15,7 +15,7 @@
.\" Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
.\" .nh
.\"
-.TH "webcheck" "1" "Jul 2008" "Version 1.10.3" "User Commands"
+.TH "webcheck" "1" "Sep 2010" "Version 1.10.4" "User Commands"
.nh
.SH "NAME"
webcheck \- website link checker
--
To unsubscribe send an email to
webcheck-commits-unsubscribe@lists.arthurdejong.org or see
http://lists.arthurdejong.org/webcheck-commits
- webcheck commit: r411 - in webcheck: . debian,
Commits of the webcheck project