diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2010-09-11 21:47:38 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2010-09-11 21:47:38 +0200 |
commit | ea7da2d1f0f30836d7a62e9dc7d168f5d34423c2 (patch) | |
tree | 4499f1a6aac0ff3235aa8243e7913c523435161f | |
parent | f69349f847597772dac8dd6ae31c0387baaaea00 (diff) |
get files ready for 1.10.4 release1.10.4
git-svn-id: http://arthurdejong.org/svn/webcheck/webcheck@411 86f53f14-5ff3-0310-afe5-9b438ce3f40c
-rw-r--r-- | ChangeLog | 86 | ||||
-rw-r--r-- | NEWS | 11 | ||||
-rw-r--r-- | README | 8 | ||||
-rw-r--r-- | config.py | 2 | ||||
-rw-r--r-- | debian/changelog | 13 | ||||
-rw-r--r-- | webcheck.1 | 2 |
6 files changed, 116 insertions, 6 deletions
@@ -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 @@ -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 ----------------------------- @@ -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.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 @@ 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.2/webcheck.1 + % man -l /opt/webcheck-1.10.4/webcheck.1 FEEDBACK AND BUG REPORTS @@ -30,7 +30,7 @@ items should be changeble from the command line.""" import urllib # Current version of webcheck. -VERSION = '1.10.3' +VERSION = '1.10.4' # The homepage of webcheck. HOMEPAGE = 'http://arthurdejong.org/webcheck/' diff --git a/debian/changelog b/debian/changelog index 388754f..ad835aa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 @@ -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 |