diff -ruN orig/chrome/content/foxylicious/delicious.js dev/chrome/content/foxylicious/delicious.js
--- orig/chrome/content/foxylicious/delicious.js	2008-08-20 01:49:33.000000000 +0200
+++ dev/chrome/content/foxylicious/delicious.js	2008-11-01 20:14:07.000000000 +0100
@@ -4,8 +4,8 @@
 	this.version = "0.7.2";
 	this.method = "GET";
   	this.scheme = "https://";
-	this.host = "api.del.icio.us/v1/";
-	this.port = 80;
+	this.host = "your_host/api/";
+	this.port = 443;
 	this.username = null;
 	this.password = null;
 	this.error = false;
@@ -167,7 +167,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)
 	{
@@ -185,7 +185,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);
@@ -198,7 +198,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);
@@ -215,7 +215,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)
 	{
@@ -240,7 +240,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)
 	{
@@ -263,7 +263,7 @@
 Delicious.prototype.update = function()
 {
 	// send
-	this.send('posts/update');
+	this.send('posts_update.php');
 	
 	/* for some reason, FF doesn't think the result is xml,
 	so we need to manually get the date
@@ -292,7 +292,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	2008-08-20 01:48:00.000000000 +0200
+++ dev/chrome/content/foxylicious/deliciousOverlay.js	2008-11-01 21:32:03.000000000 +0100
@@ -166,16 +166,14 @@
     try {
 		var postURL = getPref("foxylicious.postURL");
 		// fix url for existing extension installations
-		if (postURL.indexOf("delicious.com") < 0)
+		if (postURL.indexOf("your_host") < 0)
 		{
-			f.prefs.setCharPref("foxylicious.postURL", "http://delicious.com/save?v=2&noui=yes&jump=close&url=%location%&title=%title%");
+			f.prefs.setCharPref("foxylicious.postURL", "https://your_host/bookmarks.php?action=add&popup=1&address=%location%&title=%title%");
 			postURL = getPref("foxylicious.postURL");
 		}
-      	
-        postURL.replace("%user%", username).
-        replace("%location%", encodeURIComponent(doc.location)).
-        replace("%title%", encodeURIComponent(doc.title));
-      	window.open(postURL, 'delicious', 'toolbar=no,width=700,height=370');
+        postURL = postURL.replace(/%location%/, encodeURIComponent(doc.location));
+        postURL = postURL.replace(/%title%/, encodeURIComponent(doc.title));
+      	window.open(postURL, 'delicious', 'toolbar=no,width=730,height=465');
     } catch(ex) {
 		Components.utils.reportError(ex);
 		alert(ex);
diff -ruN orig/chrome/locale/en-US/foxylicious.dtd dev/chrome/locale/en-US/foxylicious.dtd
--- orig/chrome/locale/en-US/foxylicious.dtd	2008-05-09 17:57:44.000000000 +0200
+++ dev/chrome/locale/en-US/foxylicious.dtd	2008-11-01 20:33:06.000000000 +0100
@@ -1,5 +1,5 @@
 <!ENTITY foxylicious.label				  "Foxylicious">
-<!ENTITY foxylicious.version				"0.7.1">
+<!ENTITY foxylicious.version				"0.7.2">
 <!ENTITY foxylicious.version.label	"version">
 <!ENTITY foxylicious.about.wintitle "Foxylicious - About">
 <!ENTITY foxylicious.about.created  "Created By:">
diff -ruN orig/defaults/preferences/foxylicious.js dev/defaults/preferences/foxylicious.js
--- orig/defaults/preferences/foxylicious.js	2008-08-19 04:29:58.000000000 +0200
+++ dev/defaults/preferences/foxylicious.js	2008-11-01 20:46:22.000000000 +0100
@@ -4,7 +4,7 @@
 pref("foxylicious.fullSync", false);
 pref("foxylicious.hierarchyFromTags", false);
 pref("foxylicious.normalizeTags", false);
-pref("foxylicious.postURL", "http://delicious.com/save?v=2&noui=yes&jump=close&url=%location%&title=%title%");
+pref("foxylicious.postURL", "https://your_host/bookmarks.php?action=add&popup=1&address=%location%&title=%title%");
 pref("foxylicious.updateDaily", false);
 pref("foxylicious.useBundles", false);
 pref("foxylicious.useOnlyBundles", false);
