From 58e44dbf8ee36e440c894a0815506611ed8fafb3 Mon Sep 17 00:00:00 2001 From: calvin Date: Sat, 7 Jun 2008 13:07:30 +0000 Subject: [PATCH] Updated documentation and todo list. git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3787 e7d03fd6-7b0d-0410-9947-9c21f3af8025 --- TODO.txt | 4 ++++ linkcheck/logger/dot.py | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/TODO.txt b/TODO.txt index 7b51a932..5b05150f 100644 --- a/TODO.txt +++ b/TODO.txt @@ -1 +1,5 @@ +- [OUTPUT] Improve dot output: add title of URLs to nodes and edges - [INTERFACE] make a nice GUI for linkchecker + + QT GUI + + add debian .menu file + + test on Windows diff --git a/linkcheck/logger/dot.py b/linkcheck/logger/dot.py index 0e19ac12..041f04c7 100644 --- a/linkcheck/logger/dot.py +++ b/linkcheck/logger/dot.py @@ -65,7 +65,7 @@ class DOTLogger (Logger): def log_url (self, url_data): """ - Write one node and all possible edges. + Write one node. """ node = url_data if node.url and node.url not in self.nodes: @@ -134,3 +134,4 @@ def dotedge (s): s = s.replace("\H", "\\H") s = s.replace("\E", "\\E") return dotquote(s) +