20020212_11
diff --git a/update/org.eclipse.update.core/.options b/update/org.eclipse.update.core/.options
index bd3bdd4..d00b933 100644
--- a/update/org.eclipse.update.core/.options
+++ b/update/org.eclipse.update.core/.options
@@ -1,7 +1,7 @@
 org.eclipse.update.core/debug=true

 org.eclipse.update.core/debug/warning=true

-org.eclipse.update.core/debug/parsing=true

-org.eclipse.update.core/debug/install=true

+org.eclipse.update.core/debug/parsing=false

+org.eclipse.update.core/debug/install=false

 org.eclipse.update.core/debug/configuration=true

 org.eclipse.update.core/debug/type=true

 org.eclipse.update.core/debug/web=true

diff --git a/update/org.eclipse.update.core/src/org/eclipse/update/core/model/InstallConfigurationModel.java b/update/org.eclipse.update.core/src/org/eclipse/update/core/model/InstallConfigurationModel.java
index 2913146..81d92e6 100644
--- a/update/org.eclipse.update.core/src/org/eclipse/update/core/model/InstallConfigurationModel.java
+++ b/update/org.eclipse.update.core/src/org/eclipse/update/core/model/InstallConfigurationModel.java
@@ -36,7 +36,7 @@
 			// file doesn't exist, ok, log it and continue 

 			// log no config

 			if (UpdateManagerPlugin.DEBUG && UpdateManagerPlugin.DEBUG_SHOW_WARNINGS) {

-				UpdateManagerPlugin.getPlugin().debug(getLocationURLString() + " does not exist, the local site is not in synch with the filesystem and is pointing to a file taht doesn;t exist.");

+				UpdateManagerPlugin.getPlugin().debug(getLocationURLString() + " does not exist, the local site is not in synch with the filesystem and is pointing to a file that doesn't exist.");

 			}

 		} catch (SAXException exception) {

 			String id = UpdateManagerPlugin.getPlugin().getDescriptor().getUniqueIdentifier();

diff --git a/update/org.eclipse.update.core/src/org/eclipse/update/internal/core/InternalSiteManager.java b/update/org.eclipse.update.core/src/org/eclipse/update/internal/core/InternalSiteManager.java
index 265d8d1..1dd4520 100644
--- a/update/org.eclipse.update.core/src/org/eclipse/update/internal/core/InternalSiteManager.java
+++ b/update/org.eclipse.update.core/src/org/eclipse/update/internal/core/InternalSiteManager.java
@@ -278,7 +278,8 @@
 				siteLocation.mkdirs();

 				URL siteURL = siteLocation.toURL();

 				site = (Site) getSite(siteURL, true);

-				site.save();

+				// FIXME, when creating a site, should we manage site.xml ?

+				//site.save();

 			} catch (MalformedURLException e) {

 				throw newCoreException("Cannot create a URL from:" + siteLocation.getAbsolutePath(), e);

 			}