From: Oleg Broytman Date: Mon, 9 Aug 2010 11:59:24 +0000 (+0000) Subject: Skip Firefox SmartBookmarks. X-Git-Tag: v4.5.3~130 X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=2b55be0b7b45c1b841c57856911f708e3962491b;p=bookmarks_db.git Skip Firefox SmartBookmarks. git-svn-id: file:///home/phd/archive/SVN/bookmarks_db/trunk@246 fdd5c36f-1aea-0310-aeeb-c58d7e2b6c23 --- diff --git a/check_urls.py b/check_urls.py index 2e9fe83..c3e81b8 100755 --- a/check_urls.py +++ b/check_urls.py @@ -2,7 +2,7 @@ """ Robot interface - check URLs from bookmarks database - Written by Broytman. Copyright (C) 2000-2007 PhiloSoft Design. + Written by Broytman. Copyright (C) 2000-2010 PhiloSoft Design. """ @@ -31,7 +31,7 @@ def run(): pass if report_stats: - print "Broytman check_urls, Copyright (C) 1997-2007 PhiloSoft Design" + print "Broytman check_urls, Copyright (C) 1997-2010 PhiloSoft Design" if args: sys.stderr.write("check_urls: too many arguments\n") @@ -103,6 +103,10 @@ def run(): object_count = object_count + 1 if object.isBookmark: + if object.href.startswith('place:'): # Firefox SmartBookmarks + log("Skipped %s" % object.href) + continue + if only_errors: if hasattr(object, "error"): delattr(object, "error")