dict["type"] = "text/x-moz-place"
dict["uri"] = uri = b.href
if uri.startswith('place:'):
- if uri.startswith('place:sort=8'):
+ if uri.startswith('place:sort=8') \
+ or uri.startswith('place://sort=8'):
value = 'MostVisited'
- elif uri.startswith('place:folder=BOOKMARKS_MENU'):
+ elif uri.startswith('place:folder=BOOKMARKS_MENU') \
+ or uri.startswith('place://folder=BOOKMARKS_MENU'):
value = 'RecentlyBookmarked'
- elif uri.startswith('place:sort=14'):
+ elif uri.startswith('place:sort=14') \
+ or uri.startswith('place://sort=14'):
value = 'RecentTags'
dict["annos"] = make_annos(value, name='Places/SmartBookmark')
del dict["dateAdded"]