Only in contemplate: cerveza.flv
diff -ur contemplate.orig/contemplate/contemplate.install contemplate/contemplate.install
--- contemplate.orig/contemplate/contemplate.install	2007-09-22 14:15:09.000000000 -0300
+++ contemplate/contemplate.install	2007-11-06 20:11:31.000000000 -0200
@@ -28,14 +28,14 @@
       body text NOT NULL,
       rss text NOT NULL,
       enclosure varchar(128) NOT NULL,
-      flags int(8) unsigned NOT NULL default '0',
+      flags int8 NOT NULL default '0',
       PRIMARY KEY (type)
       );");
 
     db_query("CREATE TABLE {contemplate_files} (
       site varchar(255) NOT NULL,
-      data longblob NOT NULL,
-      UNIQUE KEY site (site(255))
+      data bytea NOT NULL,
+      PRIMARY KEY (site)
       );");  // This code is untested. Please post a fix to the issue queue if incorrect
 
     db_query("UPDATE {system} SET weight = 10 WHERE name = 'contemplate'");
Only in contemplate: contemplate.install~
diff -ur contemplate.orig/contemplate/contemplate.module contemplate/contemplate.module
--- contemplate.orig/contemplate/contemplate.module	2007-08-12 18:32:41.000000000 -0300
+++ contemplate/contemplate.module	2007-11-06 19:21:06.000000000 -0200
@@ -451,7 +451,7 @@
 }
 
 function contemplate_delete($type) {
-  return db_query('DELETE FROM {contemplate} WHERE type = "%s"', $type);
+  return db_query('DELETE FROM {contemplate} WHERE type = \'%s\'', $type);
 }
 
 /**
