* tag delete is available now. It moves the selected bookmarks
to another one
* bookmarks without a tag can be selected now
- *
+ * Fix the text/html content type going that's snapshotted
+ This is not needed. Since we use the charset info
+ to determine utf, we need this information
Tue Jul 14 21:38 EST 2009 Luke Reeve <luke@neuro-tech.net>
==========================================================================
- Quote marks screw up adding a bookmark
- Move htaccess management into the configuration page
-- Fix the text/html content type going that's snapshotted
Everything else
-RewriteEngine On\r
-RewriteBase /yourwebdirectory\r
-RewriteRule ^bookmarks/(.*) insipid.cgi?tag=$1 [QSA]\r
-RewriteRule ^bookmarks insipid.cgi [QSA]\r
-RewriteRule ^feeds/bookmarks/(.*) insipid.cgi?op=rss&tag=$1 [QSA]\r
-RewriteRule ^feeds/bookmarks insipid.cgi?op=rss [QSA]\r
-RewriteRule ^snapshot/(.*) insipid.cgi?op=viewsnapshot&md5=$1 [QSA]\r
-\r
-RewriteRule ^feeds/json/tags/(.*) insipid.cgi?op=json_tags&tag=$1 [QSA]\r
-RewriteRule ^feeds/json/tags insipid.cgi?op=json_tags [QSA]\r
-\r
-RewriteRule ^feeds/json/posts/(.*) insipid.cgi?op=json_posts&tag=$1 [QSA]\r
-RewriteRule ^feeds/json/posts insipid.cgi?op=json_posts [QSA]\r
-\r
+Options +FollowSymlinks -Indexes
+
+RewriteEngine On
+RewriteBase /yourwebdirectory
+RewriteRule ^bookmarks/(.*) insipid.cgi?tag=$1 [QSA]
+RewriteRule ^bookmarks insipid.cgi [QSA]
+RewriteRule ^feeds/bookmarks/(.*) insipid.cgi?op=rss&tag=$1 [QSA]
+RewriteRule ^feeds/bookmarks insipid.cgi?op=rss [QSA]
+RewriteRule ^snapshot/(.*) insipid.cgi?op=viewsnapshot&md5=$1 [QSA]
+
+RewriteRule ^feeds/json/tags/(.*) insipid.cgi?op=json_tags&tag=$1 [QSA]
+RewriteRule ^feeds/json/tags insipid.cgi?op=json_tags [QSA]
+
+RewriteRule ^feeds/json/posts/(.*) insipid.cgi?op=json_posts&tag=$1 [QSA]
+RewriteRule ^feeds/json/posts insipid.cgi?op=json_posts [QSA]
+
my $sth = $dbh->prepare($sql);
my $ct = $res->header('Content-Type');
if(length($ct) > 50) { $ct = substr($ct, 0, 50); }
-
+
$sth->bind_param(1, $md5);
$sth->bind_param(2, $url);
$sth->bind_param(3, $ct);