-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathChangeLog
2090 lines (1306 loc) · 57.8 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
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
python-support and support any python version>=2.3
2008-07-19 11:28 arthur
* [r388] debian/control: upgrade to standards-version 3.8.0 (no
changes needed)
2008-07-19 11:07 arthur
* [r387] crawler.py: add docstring
2008-07-13 09:39 arthur
* [r386] parsers/html/beautifulsoup.py: copy-paste fix (thanks
Robert M. Jansen <dutch12154@yahoo.com>)
2008-07-08 19:43 arthur
* [r385] schemes/http.py: set correct Host header without port
number in it
2008-07-08 19:42 arthur
* [r384] myurllib.py: remove default port from URLs
2008-07-04 13:00 arthur
* [r383] AUTHORS, config.py, debian/control,
parsers/html/__init__.py, parsers/html/calltidy.py: call tidy (if
available) on HTML content (based on a patch by Henning Sielaff
<hsielaff@eformation.de>)
2008-07-04 12:58 arthur
* [r382] parsers/html/beautifulsoup.py: fix name of file
2008-06-21 08:36 arthur
* [r381] parsers/html/beautifulsoup.py, parsers/html/htmlparser.py:
also pick up any style attributes and parse as css, based on a
patch by Robert M. Jansen <dutch12154@yahoo.com>
2008-06-15 21:17 arthur
* [r380] AUTHORS, parsers/html/beautifulsoup.py,
parsers/html/htmlparser.py: add parsing of script tag and
background attributes, based on a patch by Robert M. Jansen
<dutch12154@yahoo.com>
2008-06-15 21:00 arthur
* [r379] parsers/html/beautifulsoup.py: do not require src
attribute for parsing inline style tags
2008-06-15 20:56 arthur
* [r378] crawler.py, debian/copyright,
parsers/html/beautifulsoup.py, webcheck.py: update copyright year
2008-06-15 20:54 arthur
* [r377] debian/changelog: include change log from release 1.10.2.0
2008-05-25 12:31 arthur
* [r376] parsers/html/beautifulsoup.py: fix parsing of <param> tag
2008-05-25 12:30 arthur
* [r375] crawler.py: also log exception information to the output
2008-05-24 21:38 arthur
* [r374] AUTHORS: add Chris Shenton since he provided a patch for
part of the -u functionality
2008-05-24 21:35 arthur
* [r373] parsers/html/beautifulsoup.py: support <iframe> and some
common usages of <object>
2008-05-24 21:32 arthur
* [r372] crawler.py: catch exceptions from parsing module
2008-05-24 20:06 arthur
* [r371] debian/copyright: take a shot at making debian/copyright
machine parseable
2008-02-18 20:35 arthur
* [r370] config.py, schemes/http.py, webcheck.1, webcheck.py:
implement the --userpass option to pass username and password
information to specific sites based on a patch by Chris Shenton
<Chris.Shenton@nasa.gov>
2008-02-18 20:03 arthur
* [r369] webcheck.py: fix bug in command-line parsing of short -r
option
2007-12-14 16:03 arthur
* [r368] crawler.py: avoid reporting a problem more than once
2007-12-14 16:02 arthur
* [r367] debian/control: upgrade to standards-version 3.7.3 (no
changes needed)
2007-12-14 15:57 arthur
* [r366] debian/control: make Vcs URLs link to the trunk
2007-12-07 13:06 arthur
* [r365] webcheck.py: fix usage of backtick
2007-11-04 08:31 arthur
* [r363] ChangeLog, NEWS, README, TODO, config.py,
debian/changelog, webcheck.1: get files ready for 1.10.2 release
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
mode
2007-07-15 08:13 arthur
* [r350] ChangeLog: fix spelling in ChangeLog messages
2007-07-15 07:56 arthur
* [r349] parsers/html/beautifulsoup.py: also handle http-equiv
refresh meta header
2007-07-15 07:27 arthur
* [r348] crawler.py: just ignore setting encoding to None
2007-07-14 18:20 arthur
* [r347] crawler.py: fix printing of None encoding
2007-07-14 18:18 arthur
* [r346] myurllib.py: simplify _normalize_escapes() function to
improve performance
2007-07-14 10:26 arthur
* [r345] myurllib.py: replace double slashes in file URL paths with
single ones
2007-07-13 18:48 arthur
* [r344] myurllib.py: add note about improving performance more
2007-07-13 18:47 arthur
* [r343] crawler.py, plugins/__init__.py, plugins/sitemap.py,
serialize.py: use sets instead of sequences for children,
embedded, etc to improve deserialization performance with a
factor 25 but now require python 2.4 of more recent
2007-07-13 13:56 arthur
* [r342] serialize.py: give the matched URL a name to make code
more readable
2007-07-13 13:55 arthur
* [r341] serialize.py: be a little more verbose when raising
parsing exceptions
2007-07-13 13:50 arthur
* [r340] plugins/badlinks.py: get rid of unneeded sort
2007-07-07 14:02 arthur
* [r339] crawler.py, myurllib.py, parsers/html/beautifulsoup.py,
parsers/html/htmlparser.py: split out URL cleaning code into own
module
2007-07-07 13:54 arthur
* [r338] schemes/http.py: do not handle control-C and pass it along
to the main exception handler and log http exceptions with a
higher level
2007-07-07 13:39 arthur
* [r337] debian/control: added XS-Vcs-Svn and XS-Vcs-Browser as
specified in #391023
2007-07-06 14:18 arthur
* [r336] crawler.py, serialize.py: improve deserialization and
handling of Unicode strings
2007-07-06 13:51 arthur
* [r335] plugins/problems.py, plugins/size.py: some extra
precautions for handling Unicode data and correct HTML escaping
2007-05-12 20:57 arthur
* [r333] ChangeLog, NEWS, README, TODO, config.py,
debian/changelog, debian/copyright, webcheck.1: get files ready
for 1.10.0 release
2007-05-12 07:49 arthur
* [r332] crawler.py: also lower-case reqanchor
2007-05-11 22:03 arthur
* [r331] crawler.py, plugins/anchors.py, plugins/badlinks.py,
plugins/problems.py, schemes/http.py: fix some copyright dates
2007-05-11 22:01 arthur
* [r330] config.py, webcheck.1, webcheck.py: switch robots.txt
handling to default on again (broken in 1.9.8) and add new
--ignore-robots option to be able to ignore robots retrieval
2007-05-09 19:58 arthur
* [r329] webcheck.py: present the default number of redirects
2007-05-08 21:33 arthur
* [r328] plugins/about.py: update copyright information
2007-04-24 20:09 arthur
* [r327] plugins/__init__.py, plugins/badlinks.py,
plugins/problems.py: fixes to make output XHTML 1.1 compliant
2007-04-24 18:53 arthur
* [r326] parsers/html/beautifulsoup.py: handle ID attribute as
anchor on any tag
2007-04-24 18:52 arthur
* [r325] crawler.py, plugins/anchors.py: lower-case anchor and
errors to include id as option
2007-04-20 10:11 arthur
* [r324] parsers/html/beautifulsoup.py: correctly parse author
information
2007-04-20 09:42 arthur
* [r323] debian/control, parsers/html, parsers/html.py,
parsers/html/__init__.py, parsers/html/beautifulsoup.py,
parsers/html/htmlparser.py: introduce HTML parsing using
BeautifulSoup with a fall-back mechanism to the old HTMLParser
based solution
2007-04-20 09:40 arthur
* [r322] crawler.py: mark encoding problems and output more
debugging
2007-04-20 08:34 arthur
* [r321] debian/changelog: fix formatting of previous changelog
entry
2007-04-20 08:20 arthur
* [r320] plugins/anchors.py: fix typo
2007-04-06 12:38 arthur
* [r319] schemes/http.py: add workaround for bug in idna module
2007-04-06 12:31 arthur
* [r318] crawler.py: add some comments to the follow_link() method
2007-04-06 12:29 arthur
* [r317] crawler.py: make parsing of URLs and conversion to Link
objects a little more consistent
2007-04-06 12:02 arthur
* [r316] plugins/__init__.py: use consistent Unicode conversion
2007-04-06 11:46 arthur
* [r315] webcheck.1: document the fact that --force should be used
for non-interactive use
2007-04-06 11:35 arthur
* [r314] plugins/__init__.py: bail out if reading user input failed
2007-03-31 11:39 arthur
* [r313] parsers/html.py: evaluate archive attribute of <applet>
tag instead of code attribute if that is present
2007-03-14 21:47 arthur
* [r312] crawler.py: get rid of old base (singular) as bases is now
used everywhere
2007-03-10 12:49 arthur
* [r311] plugins/sitemap.py: clean up a little and simplify
2007-01-15 20:27 arthur
* [r309] ChangeLog, NEWS, README, TODO, config.py,
debian/changelog, webcheck.1, webcheck.py: get files ready for
1.9.8 release
2007-01-15 20:26 arthur
* [r308] schemes/http.py: catch any exception in HTTP module and
report is as a link problem
2007-01-15 08:25 arthur
* [r307] HACKING, README, debian/rules: move section on webcheck
design into HACKING document
2007-01-15 08:21 arthur
* [r306] README: fix the bugreporting section to more clearly state
the needed information
2007-01-13 08:19 arthur
* [r305] debian/control, debian/pycompat, debian/rules: switch to
using latest syntax of python-support
2006-10-23 21:09 arthur
* [r304] plugins/sitemap.py: present sitemap with all bases
2006-10-23 21:08 arthur
* [r303] config.py: add USE_ROBOTS option
2006-10-23 21:08 arthur
* [r302] crawler.py: include list of bases in Site class
2006-10-23 21:05 arthur
* [r301] plugins/__init__.py: print reason why link is yanked if
available
2006-09-29 10:27 arthur
* [r300] debian/control: include link to homepage in package
description
2006-09-04 10:47 arthur
* [r299] schemes/http.py: explicitly transform username and
password to string in case either one isn't supplied
2006-07-13 20:47 arthur
* [r298] schemes/http.py: also handle SSL related socket errors
(e.g. SSL time-out)
2006-07-13 20:44 arthur
* [r297] crawler.py, parsers/html.py, schemes/http.py: add
set_encoding method to Link object to do some basic encoding
sanity checks
2006-07-02 21:42 arthur
* [r295] ChangeLog, NEWS, TODO, config.py, debian/changelog,
webcheck.1: get files ready for 1.9.7 release
2006-06-29 21:09 arthur
* [r294] webcheck.css: always keep navigation on top
2006-06-24 15:35 arthur
* [r293] crawler.py, serialize.py: store internal, external and
yanked regular expressions in a map allowing them to be
serialized
2006-06-23 21:01 arthur
* [r292] debian/control, debian/pycompat, debian/rules: switch to
using python-support and follow recent python policy
2006-06-05 20:21 arthur
* [r291] debian/control: split Build-Depends-Indep into
Build-Depends and Build-Depends-Indep
2006-06-05 20:19 arthur
* [r290] debian/rules: also install favicon.ico in deb package
(plus cosmetic fix)
2006-06-04 21:28 arthur
* [r289] webcheck.1: fix typos and fix example explanation
2006-06-04 21:09 arthur
* [r288] serialize.py: do not split list of strings on comma's
inside the quoted strings
2006-06-04 20:41 arthur
* [r287] serialize.py: make DeSerializeException a class instead of
a function and add FIXME
2006-06-04 20:40 arthur
* [r286] config.py, webcheck.1, webcheck.py: add --continue option
to resume the crawling from the point where the previous crawl
stopped
2006-06-02 11:47 arthur
* [r285] webcheck.py: handle break signals in all code
2006-06-02 11:42 arthur
* [r284] webcheck.py: add code to serialize crawled data during
crawl and again after crawl
2006-06-02 11:37 arthur
* [r283] serialize.py: raise a custom exception instead of IOError
2006-05-31 20:24 arthur
* [r282] parsers/html.py: add TODOs
2006-05-31 20:23 arthur
* [r281] debian/control: upgrade to standards-version 3.7.2 (no
changes needed)
2006-05-31 20:22 arthur
* [r280] README: update feature list from deb package description
2006-05-16 19:18 arthur
* [r279] crawler.py, serialize.py, webcheck.py: split
crawler.crawl() function into crawler.crawl() and
crawler.postprocess() functions
2006-05-16 19:07 arthur
* [r278] crawler.py: also serialize remaining links after crawl
2006-05-16 19:05 arthur
* [r277] crawler.py: remove anchor debugging statements
2006-05-16 18:23 arthur
* [r276] serialize.py: flag deserialized links as changed so they
will be reserialized again
2006-05-16 18:21 arthur
* [r275] plugins/size.py: fix sorting
2006-05-16 18:19 arthur
* [r274] plugins/about.py, webcheck.css: update link to
fancytooltips
2006-05-15 21:30 arthur
* [r273] plugins/__init__.py: add makebackup option to open_file()
so we can implement updating files (e.g. serialization files)
2006-05-15 21:00 arthur
* [r272] crawler.py: fix some stupid typos
2006-05-15 20:51 arthur
* [r271] crawler.py: add code to serialize links to a file while
crawling the site
2006-05-15 20:50 arthur
* [r270] serialize.py: import crawler late as to simplify
dependencies
2006-05-15 20:36 arthur
* [r269] serialize.py: fix typo in FIXME
2006-05-15 20:35 arthur
* [r268] crawler.py: add _ischanged attribute to link objects to
indicate change since the constructor (or serialization)
2006-05-15 19:17 arthur
* [r267] serialize.py: only write serialized data if it is
different from the constructor's default value
2006-05-15 19:15 arthur
* [r266] serialize.py: clear anchors, linkproblems and pageproblems
from to be deserialized links to avoid duplicates as a link can
be deserialized multiple times
2006-05-15 19:13 arthur
* [r265] serialize.py: remove the call to crawl() from deserialize
as this could be a partial deserialize that needs more tweaking
to the site before the call to crawl()
2006-05-15 17:26 arthur
* [r264] parsers/html.py: make decoding try/fall-back code a lot
simpler and handle case where encoding is specified as empty
string
2006-05-12 21:32 arthur
* [r263] parsers/html.py: improve warning text and add comment
concerning trying of encodings
2006-05-12 21:23 arthur
* [r262] parsers/html.py: ignore unknown entities instead of
throwing an error
2006-05-07 10:31 arthur
* [r261] favicon.ico, plugins/__init__.py, webcheck.py: include
favicon.ico file in generated report
2006-05-07 10:31 arthur
* [r260] schemes/__init__.py: ensure that we are not importing
anything weird by using invalid scheme names
2006-05-07 10:26 arthur
* [r259] webcheck.py: support floats as parameter for --wait
2006-05-07 10:25 arthur
* [r258] webcheck.1: fix usage of dash
2006-05-07 10:19 arthur
* [r257] serialize.py: add serialize module that allows serializing
and deserializing all crawler state (site and links) to and from
a file, this module is not called anywhere yet
2006-05-07 09:56 arthur
* [r256] crawler.py: fix typo in docstring and add comment
2006-05-07 09:36 arthur
* [r255] parsers/html.py, plugins/__init__.py: move html escaping
and unescaping functions to parsers.html
2006-05-07 09:25 arthur
* [r254] parsers/html.py: use unichr() to generate Unicode
characters, not chr()
2006-05-07 09:20 arthur
* [r253] schemes/file.py: return None explicitly
2006-05-07 09:12 arthur
* [r252] crawler.py, parsers/html.py, plugins/__init__.py,
schemes/file.py, schemes/ftp.py: some more small code
improvements thanks to pychecker
2006-05-06 15:44 arthur
* [r251] parsers/html.py: implement checking for id and name tags
in anchors
2006-05-06 15:28 arthur
* [r250] schemes/ftp.py, schemes/https.py, webcheck.css: bump
copyright notices
2006-04-27 21:53 arthur
* [r249] crawler.py: also add all unfetched links from a site to
make this method recallable
2006-04-27 21:47 arthur
* [r248] crawler.py: make get_link() function a public class
function
2006-04-27 21:43 arthur
* [r247] crawler.py: move URL checking bit to right function and
improve anchor debugging messages even further
2006-04-27 21:39 arthur
* [r246] plugins/__init__.py: fix remaining references to escape
instead of htmlescape
2006-04-27 21:32 arthur
* [r245] crawler.py: support passing a URL to add_reqanchor() plus
some minor comments changes
2006-04-27 21:25 arthur
* [r244] webcheck.py: handle problems in regular expressions passed
on the command line a little more gracefully
2006-04-23 14:52 arthur
* [r243] plugins/__init__.py, plugins/about.py,
plugins/badlinks.py, plugins/problems.py: rename escape()
function to htmlescape() to make it a little clearer what we're
escaping
2006-04-23 11:31 arthur
* [r242] TODO, config.py, crawler.py, debugio.py,
parsers/__init__.py, parsers/css.py, parsers/html.py,
plugins/__init__.py, plugins/about.py, plugins/anchors.py,
plugins/badlinks.py, plugins/external.py, plugins/images.py,
plugins/new.py, plugins/notchkd.py, plugins/notitles.py,
plugins/old.py, plugins/problems.py, plugins/sitemap.py,
plugins/size.py, plugins/urllist.py, schemes/__init__.py,
schemes/file.py, schemes/ftp.py, schemes/http.py,
schemes/https.py, webcheck.py: code improvements thanks to pylint
2006-04-23 11:26 arthur
* [r241] plugins/__init__.py: also sort parent list by URL if
titles are the same
2006-04-23 11:25 arthur
* [r240] schemes/http.py: also properly handle time-out problems
which only pass one parameter with the exception
2006-04-11 21:40 arthur
* [r239] config.py, schemes/http.py: implement a time-out setting
with a default of 10 seconds
2006-04-11 21:35 arthur
* [r238] webcheck.css: revert to borderless links as they look ugly
in some (most) cases
2006-04-11 21:06 arthur
* [r237] config.py, plugins/size.py, plugins/slow.py: rename slow
plugin to size
2006-04-07 17:58 arthur
* [r236] parsers/html.py: do not fail on unknown encodings (fall
back to system encoding) and add some TODOs to do extra encoding
checking
2006-03-26 19:05 arthur
* [r235] crawler.py, parsers/html.py: split urlescape() from
_urlclean() and ensure that all anchors are consistently
URL-encoded
2006-03-26 19:01 arthur
* [r234] plugins/anchors.py: only report missing anchors for pages
that were fetched and some clean-ups
2006-03-26 18:58 arthur
* [r233] webcheck.css: put a border around links
2006-03-26 16:47 arthur
* [r232] plugins/badlinks.py, plugins/external.py,
plugins/images.py, plugins/new.py, plugins/notchkd.py,
plugins/notitles.py, plugins/old.py, plugins/problems.py,
plugins/slow.py: properly close html files on no output
2006-03-10 23:02 arthur
* [r231] parsers/html.py: revert catching Exception instead of
IOError that was there for testing
2006-03-10 22:58 arthur
* [r230] config.py, crawler.py, parsers/html.py,
plugins/anchors.py: implement checking of anchors (there should
be no double anchors and all referenced anchors should exist)
2006-03-10 22:56 arthur
* [r229] plugins/__init__.py: do not include navigation for plugins
that do not generate output
2006-03-10 22:48 arthur
* [r228] parsers/html.py, plugins/notitles.py: trim spaces from
title and author fields and check that title is not empty string
(apart from undefined)
2006-03-09 22:10 arthur
* [r227] plugins/__init__.py, plugins/about.py,
plugins/badlinks.py, plugins/external.py, plugins/images.py,
plugins/new.py, plugins/notchkd.py, plugins/notitles.py,
plugins/old.py, plugins/problems.py, plugins/sitemap.py,
plugins/slow.py, plugins/urllist.py, webcheck.py: restructure
plugin code to open output files from within plugin itself to be
able to write different kinds of files
2006-01-30 16:27 arthur
* [r225] ChangeLog, NEWS, README, TODO, config.py,
debian/changelog, debian/copyright, webcheck.1, webcheck.py: get
files ready for 1.9.6 release
2006-01-29 22:39 arthur
* [r224] crawler.py: bug fix in matching URL-encoding
2006-01-29 21:24 arthur
* [r223] crawler.py: actually decode URL-encoded character as hex
not decimal
2006-01-29 20:50 arthur
* [r222] fancytooltips/fancytooltips.js: html escape all content
that is retreived from attributes
2006-01-29 20:48 arthur
* [r221] crawler.py, parsers/html.py: make sure all URLs are
consistently URL-encoded where it counts
2006-01-29 20:15 arthur
* [r220] schemes/http.py: add some more debugging information
(cache hit or miss)
2006-01-29 20:14 arthur
* [r219] plugins/about.py: update copyright notice and indicate
that we're using GPL2+
2006-01-25 23:16 arthur
* [r218] parsers/html.py: fix typo (thanks Andrew Kim
<Andrew.Kim@revolution.com>)
2006-01-19 21:38 arthur
* [r217] plugins/__init__.py: ignore errors when converting to
Unicode string and uses system encoding instead of UTF-8 as
default
2006-01-19 21:35 arthur
* [r216] plugins/__init__.py: also escape the URL when generating
links
2006-01-19 20:46 arthur
* [r215] plugins/__init__.py: explicitly convert strings to Unicode
to avoid potential problems with non-ASCII characters in strings
2006-01-19 20:45 arthur
* [r214] parsers/html.py: quote links so that they do not contain
any non-ASCII characters to avoid problems later on (and add some
more debugging)
2006-01-19 20:32 arthur
* [r213] crawler.py: fix debug message to print url instead of
object reference
2006-01-15 08:44 arthur
* [r212] crawler.py: give some more debugging info while following
base URLs and no longer delete unreferenced followed links
2005-12-30 22:33 arthur
* [r210] ChangeLog, NEWS, TODO, config.py, debian/changelog,
webcheck.1: get files ready for 1.9.5 release
2005-12-30 22:09 arthur
* [r209] crawler.py: fix copy-pasto from r204
2005-12-30 21:21 arthur
* [r208] webcheck.1: add some clarifications to --internal and URL
classes sections
2005-12-30 20:45 arthur
* [r207] debian, debian/changelog, debian/compat, debian/control,
debian/copyright, debian/postinst, debian/rules: import updated
Debian package configuration data, partially from old webcheck
package
2005-12-29 00:53 arthur
* [r206] crawler.py, schemes/http.py: trim empty ports
(http://host:/) from URLs and do not crash on improperly
formatted URLs
2005-12-29 00:51 arthur
* [r205] plugins/slow.py: fix typo
2005-12-28 22:29 arthur
* [r204] crawler.py, webcheck.1, webcheck.py: add --internal option
to match internal URLs with a regular expression
2005-12-28 21:37 arthur
* [r203] webcheck.1: clarify section on URL classes that yanked
URLs can be internal or external and some typo fixes
2005-12-28 21:26 arthur
* [r202] AUTHORS: add Stefan Schröder to the contributors list
2005-12-28 21:23 arthur
* [r201] plugins/about.py: make text even shorter