diff -ruN orig/chrome/content/foxylicious/delicious.js dev/chrome/content/foxylicious/delicious.js
--- orig/chrome/content/foxylicious/delicious.js	2006-10-23 21:33:49.000000000 +0200
+++ dev/chrome/content/foxylicious/delicious.js	2007-03-09 14:25:03.000000000 +0100
@@ -13,7 +13,8 @@
 	this.version = "0.6";
 	this.method = "GET";
   this.scheme = "https://";
-	this.host = "api.del.icio.us/v1/";
+	/*this.host = "api.del.icio.us/v1/";*/
+	this.host = "my_own_scuttle_url/api/";
 	this.port = 80;
 	this.username = null;
 	this.password = null;
@@ -181,7 +182,7 @@
 Delicious.prototype.get_post_dates = function(tag)
 {
 	// build path and query string
-	var queryString = 'posts/dates?'; // action
+	var queryString = 'posts_dates.php?'; // action
 	
 	if(tag)
 	{
@@ -199,7 +200,7 @@
 Delicious.prototype.get_tags = function()
 {
 	// build path and query string
-	var queryString = 'tags/get?'; // action
+	var queryString = 'tags_get.php?'; // action
 	
 	// send
 	return this.send(queryString);
@@ -212,7 +213,7 @@
 Delicious.prototype.get_all_posts = function()
 {
 	// build path and query string
-	var queryString = 'posts/all'; // action
+	var queryString = 'posts_all.php'; // action
 	
 	// send
 	return this.send(queryString);
@@ -229,7 +230,7 @@
 Delicious.prototype.get_posts = function(tag,dt)
 {
 	// build path and query string
-	var queryString = 'posts/get?'; // action
+	var queryString = 'posts_get.php?'; // action
 	
 	if(tag)
 	{
@@ -254,7 +255,7 @@
 Delicious.prototype.get_recent_posts = function(tag,count)
 {
 	// build path and query string
-	var queryString = 'posts/recent?'; // action
+	var queryString = 'posts_recent.php?'; // action
 	
 	if(tag)
 	{
@@ -277,7 +278,7 @@
 Delicious.prototype.update = function()
 {
 	// build path and query string
-	var queryString = 'posts/update'; // action
+	var queryString = 'posts_update.php'; // action
 	
 	// send
 	this.send(queryString);
@@ -309,7 +310,7 @@
 {
 	// build path and query string
 	var queryString =
-	'posts/add?'					// action
+	'posts_add.php?'					// action
 	+ '&url=' + link						// link for post
 	+ '&description=' + escape(title)	// description for post
 	+ '&extended=' + escape(content)	// extended for post
diff -ruN orig/chrome/content/foxylicious/deliciousOverlay.js dev/chrome/content/foxylicious/deliciousOverlay.js
--- orig/chrome/content/foxylicious/deliciousOverlay.js	2006-10-24 21:10:32.000000000 +0200
+++ dev/chrome/content/foxylicious/deliciousOverlay.js	2007-03-09 15:11:55.000000000 +0100
@@ -169,7 +169,7 @@
         replace("%user%", username).
         replace("%location%", encodeURIComponent(doc.location)).
         replace("%title%", encodeURIComponent(doc.title));
-      window.open(postURL, 'delicious', 'toolbar=no,width=700,height=250');
+      window.open(postURL, 'delicious', 'toolbar=no,width=730,height=465');
     } catch(ex) {
       alert(ex);
     }
diff -ruN orig/defaults/preferences/foxylicious.js dev/defaults/preferences/foxylicious.js
--- orig/defaults/preferences/foxylicious.js	2006-10-24 21:22:58.000000000 +0200
+++ dev/defaults/preferences/foxylicious.js	2007-03-09 14:25:03.000000000 +0100
@@ -4,7 +4,7 @@
 pref("foxylicious.fullSync", false);
 pref("foxylicious.hierarchyFromTags", false);
 pref("foxylicious.normalizeTags", false);
-pref("foxylicious.postURL", "http://del.icio.us/%user%?v=2&noui=yes&jump=close&url=%location%&title=%title%");
+pref("foxylicious.postURL", "https://my_own_scuttle_url/bookmarks.php?action=add&popup=1&address=%location%&title=%title%");
 pref("foxylicious.updateDaily", false);
 pref("foxylicious.useBundles", false);
 pref("foxylicious.useOnlyBundles", false);
