]> git.phdru.name Git - bookmarks_db.git/blobdiff - check_urls.py
Robots no longer have one global temporary file - there are at least two
[bookmarks_db.git] / check_urls.py
index 2e9fe83c8a2a72328a7ff7d022e27d7f1edadff0..f75cb16cc20f47ae769ee6775763e27a1293e9a9 100755 (executable)
@@ -2,12 +2,11 @@
 """
    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.
 """
 
 
 import sys, os
-tempfname = "check_urls.tmp"
 
 
 def run():
@@ -31,7 +30,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")
@@ -63,7 +62,7 @@ def run():
    storage = storage()
 
    from robots import robot
-   robot = robot(tempfname, log)
+   robot = robot(log)
 
    if report_stats:
       sys.stdout.write("Loading %s: " % storage.filename)
@@ -103,6 +102,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")
@@ -149,11 +152,6 @@ def run():
       log("check_urls finished ok")
    log.close()
 
-   try:
-      os.unlink(tempfname)
-   except os.error:
-      pass
-
 
 if __name__ == '__main__':
    run()