convert line delimiters
diff --git a/update/org.eclipse.update.core/schema/featureTypes.exsd b/update/org.eclipse.update.core/schema/featureTypes.exsd
index 7129a6a..a84a492 100644
--- a/update/org.eclipse.update.core/schema/featureTypes.exsd
+++ b/update/org.eclipse.update.core/schema/featureTypes.exsd
@@ -6,16 +6,16 @@
          <meta.schema plugin="org.eclipse.update.core" id="featureTypes" name="Feature Type Factory"/>

       </appInfo>

       <documentation>

-         The platform update mechanism supports pluggable feature type
-implementations. A new feature type can be registered in order
-to support
-alternate packaging and verification schemes.
-&lt;p&gt;
-The &lt;code&gt;featureTypes&lt;/code&gt;
-extension point allows alternate feature implementations to be
-registered using a symbolic type identifier. Whenever the 
-type is referenced using this identifier, the supplied factory
-is used to create the correct concrete feature implementation.
+         The platform update mechanism supports pluggable feature type

+implementations. A new feature type can be registered in order

+to support

+alternate packaging and verification schemes.

+&lt;p&gt;

+The &lt;code&gt;featureTypes&lt;/code&gt;

+extension point allows alternate feature implementations to be

+registered using a symbolic type identifier. Whenever the 

+type is referenced using this identifier, the supplied factory

+is used to create the correct concrete feature implementation.

 &lt;/p&gt;

       </documentation>

    </annotation>

@@ -69,18 +69,18 @@
          <meta.section type="examples"/>

       </appInfo>

       <documentation>

-         The following is an example of new feature type registration:
-&lt;p&gt;
-&lt;pre&gt;
-   &lt;extension
-      id=&quot;custom&quot;
-      point=&quot;org.eclipse.update.core.featureTypes&quot;
-      name=&quot;Custom packaged feature&quot;&gt;
-      &lt;feature-factory
-          class=&quot;com.xyz.update.CustomFeatureFactory&quot;&gt;
-      &lt;/feature-factory&gt;
-   &lt;/extension&gt;
-&lt;/pre&gt;
+         The following is an example of new feature type registration:

+&lt;p&gt;

+&lt;pre&gt;

+   &lt;extension

+      id=&quot;custom&quot;

+      point=&quot;org.eclipse.update.core.featureTypes&quot;

+      name=&quot;Custom packaged feature&quot;&gt;

+      &lt;feature-factory

+          class=&quot;com.xyz.update.CustomFeatureFactory&quot;&gt;

+      &lt;/feature-factory&gt;

+   &lt;/extension&gt;

+&lt;/pre&gt;

 &lt;/p&gt;

       </documentation>

    </annotation>

@@ -90,7 +90,7 @@
          <meta.section type="apiInfo"/>

       </appInfo>

       <documentation>

-         Registered factory classes must implement 
+         Registered factory classes must implement 

 &lt;code&gt;&lt;b&gt;org.eclipse.update.core.IFeatureFactory&lt;/b&gt;&lt;/code&gt;

       </documentation>

    </annotation>

@@ -100,8 +100,8 @@
          <meta.section type="implementation"/>

       </appInfo>

       <documentation>

-         The platform supplies two standard implementations of feature
-types. One representing the default packaged feature type, and
+         The platform supplies two standard implementations of feature

+types. One representing the default packaged feature type, and

 the other representing an installed feature type.

       </documentation>

    </annotation>

@@ -111,7 +111,7 @@
          <meta.section type="copyright"/>

       </appInfo>

       <documentation>

-         Copyright (c) 2002, 2003 IBM Corporation and others.
+         Copyright (c) 2002, 2003 IBM Corporation and others.

 All rights reserved.   This program and the accompanying materials are made available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at &lt;a href=&quot;http://www.eclipse.org/legal/cpl-v10.html&quot;&gt;http://www.eclipse.org/legal/cpl-v10.html&lt;/a&gt;.

       </documentation>

    </annotation>

diff --git a/update/org.eclipse.update.core/schema/installHandlers.exsd b/update/org.eclipse.update.core/schema/installHandlers.exsd
index 28dd832..1e4fd79 100644
--- a/update/org.eclipse.update.core/schema/installHandlers.exsd
+++ b/update/org.eclipse.update.core/schema/installHandlers.exsd
@@ -6,10 +6,10 @@
          <meta.schema plugin="org.eclipse.update.core" id="installHandlers" name="Global Install Handlers"/>

       </appInfo>

       <documentation>

-         Extension point for registering global install handlers. Global
-install handlers can be referenced by features 
-(using the &lt;code&gt;&amp;lt;feature&amp;gt; &amp;lt;install-handler&amp;gt;&lt;/code&gt;
-tags) without having to include a copy of the handler code as
+         Extension point for registering global install handlers. Global

+install handlers can be referenced by features 

+(using the &lt;code&gt;&amp;lt;feature&amp;gt; &amp;lt;install-handler&amp;gt;&lt;/code&gt;

+tags) without having to include a copy of the handler code as

 part of the downloadable feature.

       </documentation>

    </annotation>

@@ -48,7 +48,7 @@
          <attribute name="class" type="string" use="required">

             <annotation>

                <documentation>

-                  fully qualified name of the handler implementation class for the identified
+                  fully qualified name of the handler implementation class for the identified

 install handler

                </documentation>

             </annotation>

@@ -61,18 +61,18 @@
          <meta.section type="examples"/>

       </appInfo>

       <documentation>

-         The following is an example of new global install handler registration:
-&lt;p&gt;
-&lt;pre&gt;
-   &lt;extension
-        id=&quot;custom&quot;
-        point=&quot;org.eclipse.update.core.installHandlers&quot;
-        name=&quot;Custom install handler&quot;&gt;
-     &lt;install-handler
-        class=&quot;com.xyz.update.CustomInstallHandler&quot;&gt;
-     &lt;/install-handler&gt;
-   &lt;/extension&gt;
-&lt;/pre&gt;
+         The following is an example of new global install handler registration:

+&lt;p&gt;

+&lt;pre&gt;

+   &lt;extension

+        id=&quot;custom&quot;

+        point=&quot;org.eclipse.update.core.installHandlers&quot;

+        name=&quot;Custom install handler&quot;&gt;

+     &lt;install-handler

+        class=&quot;com.xyz.update.CustomInstallHandler&quot;&gt;

+     &lt;/install-handler&gt;

+   &lt;/extension&gt;

+&lt;/pre&gt;

 &lt;/p&gt;

       </documentation>

    </annotation>

@@ -82,8 +82,8 @@
          <meta.section type="apiInfo"/>

       </appInfo>

       <documentation>

-         Registered install handler classes must implement 
-&lt;code&gt;org.eclipse.update.core.IInstallHandler&lt;/code&gt; interface.
+         Registered install handler classes must implement 

+&lt;code&gt;org.eclipse.update.core.IInstallHandler&lt;/code&gt; interface.

 Implementers should extend base class &lt;code&gt;org.eclipse.update.core.BaseInstallHandler&lt;/code&gt;.

       </documentation>

    </annotation>

@@ -102,7 +102,7 @@
          <meta.section type="copyright"/>

       </appInfo>

       <documentation>

-         Copyright (c) 2002, 2003 IBM Corporation and others.
+         Copyright (c) 2002, 2003 IBM Corporation and others.

 All rights reserved.   This program and the accompanying materials are made available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at &lt;a href=&quot;http://www.eclipse.org/legal/cpl-v10.html&quot;&gt;http://www.eclipse.org/legal/cpl-v10.html&lt;/a&gt;.

       </documentation>

    </annotation>

diff --git a/update/org.eclipse.update.core/schema/siteTypes.exsd b/update/org.eclipse.update.core/schema/siteTypes.exsd
index 5748954..385f783 100644
--- a/update/org.eclipse.update.core/schema/siteTypes.exsd
+++ b/update/org.eclipse.update.core/schema/siteTypes.exsd
@@ -6,15 +6,15 @@
          <meta.schema plugin="org.eclipse.update.core" id="siteTypes" name="Site Type Factory"/>

       </appInfo>

       <documentation>

-         The platform update mechanism supports pluggable site type
-implementations. A new site type can be registered in order
-to support alternate site layout schemes.
-&lt;p&gt;
-The &lt;code&gt;siteTypes&lt;/code&gt;
-extension point allows alternate site implementations to be
-registered using a symbolic type identifier. Whenever the 
-type is referenced using this identifier, the supplied factory
-is used to create the correct concrete site implementation.
+         The platform update mechanism supports pluggable site type

+implementations. A new site type can be registered in order

+to support alternate site layout schemes.

+&lt;p&gt;

+The &lt;code&gt;siteTypes&lt;/code&gt;

+extension point allows alternate site implementations to be

+registered using a symbolic type identifier. Whenever the 

+type is referenced using this identifier, the supplied factory

+is used to create the correct concrete site implementation.

 &lt;/p&gt;

       </documentation>

    </annotation>

@@ -53,7 +53,7 @@
          <attribute name="class" type="string" use="required">

             <annotation>

                <documentation>

-                  fully qualified name of the factory class for the identified
+                  fully qualified name of the factory class for the identified

 site type

                </documentation>

             </annotation>

@@ -66,18 +66,18 @@
          <meta.section type="examples"/>

       </appInfo>

       <documentation>

-         The following is an example of new site type registration.
-&lt;p&gt;
-&lt;pre&gt;
-   &lt;extension
-        id=&quot;custom&quot;
-        point=&quot;org.eclipse.update.core.siteTypes&quot;
-        name=&quot;Custom site&quot;&gt;
-      &lt;site-factory
-          class=&quot;com.xyz.update.CustomSiteFactory&quot;&gt;
-      &lt;/site-factory&gt;
-   &lt;/extension&gt;
-&lt;/pre&gt;
+         The following is an example of new site type registration.

+&lt;p&gt;

+&lt;pre&gt;

+   &lt;extension

+        id=&quot;custom&quot;

+        point=&quot;org.eclipse.update.core.siteTypes&quot;

+        name=&quot;Custom site&quot;&gt;

+      &lt;site-factory

+          class=&quot;com.xyz.update.CustomSiteFactory&quot;&gt;

+      &lt;/site-factory&gt;

+   &lt;/extension&gt;

+&lt;/pre&gt;

 &lt;/p&gt;

       </documentation>

    </annotation>

@@ -87,7 +87,7 @@
          <meta.section type="apiInfo"/>

       </appInfo>

       <documentation>

-         Registered factory classes must implement 
+         Registered factory classes must implement 

 &lt;code&gt;&lt;b&gt;org.eclipse.update.core.ISiteFactory&lt;/b&gt;&lt;/code&gt;

       </documentation>

    </annotation>

@@ -97,8 +97,8 @@
          <meta.section type="implementation"/>

       </appInfo>

       <documentation>

-         The platform supplies two standard implementations of site
-types. One representing the default update server type, and
+         The platform supplies two standard implementations of site

+types. One representing the default update server type, and

 the other representing the local file system site.

       </documentation>

    </annotation>

@@ -108,7 +108,7 @@
          <meta.section type="copyright"/>

       </appInfo>

       <documentation>

-         Copyright (c) 2002, 2003 IBM Corporation and others.
+         Copyright (c) 2002, 2003 IBM Corporation and others.

 All rights reserved.   This program and the accompanying materials are made available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at &lt;a href=&quot;http://www.eclipse.org/legal/cpl-v10.html&quot;&gt;http://www.eclipse.org/legal/cpl-v10.html&lt;/a&gt;.

       </documentation>

    </annotation>