= BookmarksProject Wishlist = - import/export of bookmark data - tool to scan database for broken URLs - machine tags - could this be useful: http://stackoverflow.com/questions/418898/sqlite-upsert-not-insert-or-replace - better name - deleting bookmarks (#8) - renaming tags {{{#!perl sub rename_tag { my ($old_tag, $new_tag) = @_; my $sth = $dbh->prepare("UPDATE tag SET tag = ? WHERE tag = ?;"); $sth->execute($new_tag, $old_tag); } }}}