Sat Jun 18 23:14:59 UTC 2011 pix@kepibu.org
* Bugfix: if we manually classify an URL as spam, don't then mark the page that
had that URL as known-good.
hunk ./claki.lisp 84
-(defun request-classification (url)
+(defun request-classification (url &optional page version)
hunk ./claki.lisp 95
+ (when (and page version)
+ (pushnew (list page version) *has-spam* :test #'equal))
hunk ./claki.lisp 100
+ (when (and page version)
+ (pushnew (list page version) *has-spam* :test #'equal))
hunk ./claki.lisp 114
- (request-classification url))
+ (request-classification url page version))