Ogee documentation and Compatibility fixes bug id 458714

Change-Id: I457f5d4e72a9045df309598dd19c03d2484f561a
Signed-off-by: Shreya Dixit <shreya.dixit@sap.com>
diff --git a/org.eclipse.ogee.core/contextHelp.xml b/org.eclipse.ogee.core/contextHelp.xml
index 863e325..19e68b1 100644
--- a/org.eclipse.ogee.core/contextHelp.xml
+++ b/org.eclipse.ogee.core/contextHelp.xml
@@ -2,7 +2,7 @@
 	
   	
 	<context id="NewODataModel">
-    <topic href="../org.eclipse.ogee.help/html/65b63a88329544efac81319f48e6fd23.html" label="NewODataModel"/>
+    <topic href="../org.eclipse.ogee.help/html/Creating a Blank OData Model.html" label="NewODataModel"/>
 		<!-- <topic 	label="Creating an OData Model" href="/com.sap.odata.dt.help/13e6d8bc3e304ac9901b069c7bb39a94.html"/>
 		<topic 	label="Creating a Blank OData Model" href="/com.sap.odata.dt.help/50cf5dd2fff94fa085caf96d1bdad90d.html"/>
 		<topic 	label="Creating an OData Model Using Service URL" href="/com.sap.odata.dt.help/f5a0a01cae844b328853442725c723f5.html"/>
@@ -11,12 +11,12 @@
  	</context>
  	
 	<context id="SvcFromUrl">
-  <topic href="../org.eclipse.ogee.help/html/60eb920cc2a240fc80c95c19d6c92bce.html" label="SvcFromUrl"/>
+  <topic href="../org.eclipse.ogee.help/html/Creating an OData Model Using Service URL.html" label="SvcFromUrl"/>
 		<!-- <topic label="Creating an OData Model Using Service URL" href="/com.sap.odata.dt.help/f5a0a01cae844b328853442725c723f5.html"/> --> 
 	</context>
 	
 	<context id="SvcFromFile">
-  <topic href="../org.eclipse.ogee.help/html/499be3856baa45b1b2efacf2da6ea863.html" label="SvcFromFile"/>
+  <topic href="../org.eclipse.ogee.help/html/Creating an OData Model Using Metadata File.html" label="SvcFromFile"/>
 		<!-- <topic label="Creating an OData Model Using Service Metadata File" href="/com.sap.odata.dt.help/6d410ce9a48c46929ebe825258a1456b.html"/> --> 
 	</context>
 </contexts>
diff --git a/org.eclipse.ogee.core/src/org/eclipse/ogee/core/wizard/ODataModelImportWizard.java b/org.eclipse.ogee.core/src/org/eclipse/ogee/core/wizard/ODataModelImportWizard.java
index aec90e0..db6a5be 100644
--- a/org.eclipse.ogee.core/src/org/eclipse/ogee/core/wizard/ODataModelImportWizard.java
+++ b/org.eclipse.ogee.core/src/org/eclipse/ogee/core/wizard/ODataModelImportWizard.java
@@ -13,7 +13,6 @@
 
 import java.io.File;
 import java.lang.reflect.InvocationTargetException;
-import java.util.List;
 
 import org.eclipse.core.resources.IFile;
 import org.eclipse.core.resources.IWorkspaceRoot;
@@ -22,16 +21,11 @@
 import org.eclipse.core.runtime.IConfigurationElement;
 import org.eclipse.core.runtime.IProgressMonitor;
 import org.eclipse.core.runtime.Path;
-import org.eclipse.core.runtime.Platform;
 import org.eclipse.emf.common.util.EList;
 import org.eclipse.jface.operation.IRunnableWithProgress;
 import org.eclipse.jface.viewers.IStructuredSelection;
 import org.eclipse.jface.wizard.IWizardPage;
 import org.eclipse.jface.wizard.Wizard;
-import org.eclipse.ogee.core.Activator;
-import org.eclipse.ogee.core.extensions.ExtensionAttributes;
-import org.eclipse.ogee.core.extensions.ExtensionException;
-import org.eclipse.ogee.core.extensions.odata.model.internal.ODataModelExtension;
 import org.eclipse.ogee.core.nls.messages.FrameworkMessages;
 import org.eclipse.ogee.core.wizard.common.CommonWizardBusinessData;
 import org.eclipse.ogee.core.wizard.common.CommonWizardObject;
@@ -50,7 +44,6 @@
 import org.eclipse.ogee.model.odata.EDMXSet;
 import org.eclipse.ogee.model.odata.Schema;
 import org.eclipse.ogee.utils.logger.Logger;
-import org.eclipse.osgi.util.NLS;
 import org.eclipse.ui.INewWizard;
 import org.eclipse.ui.IWorkbench;
 
@@ -62,7 +55,6 @@
 	public ServiceFromFileWizardPage serviceFromFileWizardPage;
 	public ServiceFromUrlWizardPage serviceFromUrlWizardPage;
 	private IStructuredSelection folderSelection;
-	public IWizardPage serviceCatalogWizardPage;
 	private IConfigurationElement[] odataModelConfigElements;
 
 	public ODataModelImportWizard()
@@ -102,8 +94,11 @@
 
 			serviceFromUrlWizardPage = new ServiceFromUrlWizardPage(wizardObject);
 			addPage(serviceFromUrlWizardPage);
+			if (null != businessData && null != businessData.getServiceCatalogWizardPage())
+			{
+				addPage(businessData.getServiceCatalogWizardPage());
+			}
 
-			loadModelExtensions();
 		}
 		catch (Exception e)
 		{
@@ -112,45 +107,6 @@
 
 	}
 
-	private void loadModelExtensions() throws Exception
-	{
-
-		// Retrieves the odata model extensions from the plugin.xml
-		this.odataModelConfigElements = Platform.getExtensionRegistry().getConfigurationElementsFor(
-				Activator.PLUGIN_ID + WizardPagesConstants.ODATA_MODEL);
-
-		for (IConfigurationElement odataModelConfigElement : this.odataModelConfigElements)
-		{
-			if (odataModelConfigElement == null)
-			{
-				throw new Exception(FrameworkMessages.OdataModelElementNull);
-			}
-
-			try
-			{
-				ODataModelExtension odataModelExtension = new ODataModelExtension(odataModelConfigElement);
-				if (odataModelExtension.getDisplayName().equalsIgnoreCase("Service Catalog"))
-				{
-					List<IWizardPage> wizardPages = odataModelExtension.getODataModelProvider().getWizardPages();
-					for (IWizardPage wizardPage : wizardPages)
-					{
-						serviceCatalogWizardPage = wizardPage;
-						addPage(wizardPage);
-					}
-				}
-			}
-			catch (ExtensionException e)
-			{
-				String id = odataModelConfigElement.getAttribute(ExtensionAttributes.id.name());
-				Logger.getFrameworkLogger()
-						.logWarning(
-								e.getMessage()
-										+ NLS.bind(FrameworkMessages.ODataModelExecutableExtensionIDCreationFailure, id));
-			}
-		}
-
-
-	}
 
 	@Override
 	public boolean canFinish()
@@ -181,9 +137,10 @@
 				return serviceFromUrlWizardPage;
 			}
 			else if (businessData.getCommonODataObject().getDisplayName()
-					.equalsIgnoreCase(WizardPagesConstants.SERVICE_CATALOG))
+					.equalsIgnoreCase(WizardPagesConstants.SERVICE_CATALOG)
+					&& null != businessData && null != businessData.getServiceCatalogWizardPage())
 			{
-				return serviceCatalogWizardPage;
+				return businessData.getServiceCatalogWizardPage();
 			}
 		}
 		return null;
diff --git a/org.eclipse.ogee.core/src/org/eclipse/ogee/core/wizard/ODataModelWizard.java b/org.eclipse.ogee.core/src/org/eclipse/ogee/core/wizard/ODataModelWizard.java
index f89fb11..d51620f 100644
--- a/org.eclipse.ogee.core/src/org/eclipse/ogee/core/wizard/ODataModelWizard.java
+++ b/org.eclipse.ogee.core/src/org/eclipse/ogee/core/wizard/ODataModelWizard.java
@@ -13,7 +13,6 @@
 
 import java.io.File;
 import java.lang.reflect.InvocationTargetException;
-import java.util.List;
 
 import org.eclipse.core.resources.IFile;
 import org.eclipse.core.resources.IWorkspaceRoot;
@@ -22,16 +21,11 @@
 import org.eclipse.core.runtime.IConfigurationElement;
 import org.eclipse.core.runtime.IProgressMonitor;
 import org.eclipse.core.runtime.Path;
-import org.eclipse.core.runtime.Platform;
 import org.eclipse.emf.common.util.EList;
 import org.eclipse.jface.operation.IRunnableWithProgress;
 import org.eclipse.jface.viewers.IStructuredSelection;
 import org.eclipse.jface.wizard.IWizardPage;
 import org.eclipse.jface.wizard.Wizard;
-import org.eclipse.ogee.core.Activator;
-import org.eclipse.ogee.core.extensions.ExtensionAttributes;
-import org.eclipse.ogee.core.extensions.ExtensionException;
-import org.eclipse.ogee.core.extensions.odata.model.internal.ODataModelExtension;
 import org.eclipse.ogee.core.nls.messages.FrameworkMessages;
 import org.eclipse.ogee.core.wizard.common.CommonWizardBusinessData;
 import org.eclipse.ogee.core.wizard.common.CommonWizardObject;
@@ -50,7 +44,6 @@
 import org.eclipse.ogee.model.odata.EDMXSet;
 import org.eclipse.ogee.model.odata.Schema;
 import org.eclipse.ogee.utils.logger.Logger;
-import org.eclipse.osgi.util.NLS;
 import org.eclipse.ui.INewWizard;
 import org.eclipse.ui.IWorkbench;
 
@@ -61,7 +54,6 @@
 	public ODataModelProjectPage oDataModelProjectPage;
 	public ServiceFromFileWizardPage serviceFromFileWizardPage;
 	public ServiceFromUrlWizardPage serviceFromUrlWizardPage;
-	public IWizardPage serviceCatalogWizardPage;
 	private IStructuredSelection folderSelection;
 	private IConfigurationElement[] odataModelConfigElements;
 
@@ -121,8 +113,10 @@
 
 			serviceFromUrlWizardPage = new ServiceFromUrlWizardPage(wizardObject);
 			addPage(serviceFromUrlWizardPage);
-
-			loadModelExtensions();
+			if (null != businessData && null != businessData.getServiceCatalogWizardPage())
+			{
+				addPage(businessData.getServiceCatalogWizardPage());
+			}
 		}
 		catch (Exception e)
 		{
@@ -130,45 +124,6 @@
 		}
 	}
 
-	private void loadModelExtensions() throws Exception
-	{
-
-		// Retrieves the odata model extensions from the plugin.xml
-		this.odataModelConfigElements = Platform.getExtensionRegistry().getConfigurationElementsFor(
-				Activator.PLUGIN_ID + WizardPagesConstants.ODATA_MODEL);
-
-		for (IConfigurationElement odataModelConfigElement : this.odataModelConfigElements)
-		{
-			if (odataModelConfigElement == null)
-			{
-				throw new Exception(FrameworkMessages.OdataModelElementNull);
-			}
-
-			try
-			{
-				ODataModelExtension odataModelExtension = new ODataModelExtension(odataModelConfigElement);
-				if (odataModelExtension.getDisplayName().equalsIgnoreCase("Service Catalog"))
-				{
-					List<IWizardPage> wizardPages = odataModelExtension.getODataModelProvider().getWizardPages();
-					for (IWizardPage wizardPage : wizardPages)
-					{
-						serviceCatalogWizardPage = wizardPage;
-						addPage(wizardPage);
-					}
-				}
-			}
-			catch (ExtensionException e)
-			{
-				String id = odataModelConfigElement.getAttribute(ExtensionAttributes.id.name());
-				Logger.getFrameworkLogger()
-						.logWarning(
-								e.getMessage()
-										+ NLS.bind(FrameworkMessages.ODataModelExecutableExtensionIDCreationFailure, id));
-			}
-		}
-
-
-	}
 
 	@Override
 	public boolean canFinish()
@@ -199,9 +154,10 @@
 				return serviceFromUrlWizardPage;
 			}
 			else if (businessData.getCommonODataObject().getDisplayName()
-					.equalsIgnoreCase(WizardPagesConstants.SERVICE_CATALOG))
+					.equalsIgnoreCase(WizardPagesConstants.SERVICE_CATALOG)
+					&& null != businessData && null != businessData.getServiceCatalogWizardPage())
 			{
-				return serviceCatalogWizardPage;
+				return businessData.getServiceCatalogWizardPage();
 			}
 		}
 
diff --git a/org.eclipse.ogee.core/src/org/eclipse/ogee/core/wizard/common/CommonWizardBusinessData.java b/org.eclipse.ogee.core/src/org/eclipse/ogee/core/wizard/common/CommonWizardBusinessData.java
index 4a00e0c..7718c22 100644
--- a/org.eclipse.ogee.core/src/org/eclipse/ogee/core/wizard/common/CommonWizardBusinessData.java
+++ b/org.eclipse.ogee.core/src/org/eclipse/ogee/core/wizard/common/CommonWizardBusinessData.java
@@ -12,6 +12,7 @@
 package org.eclipse.ogee.core.wizard.common;

 

 import org.eclipse.core.runtime.IPath;

+import org.eclipse.jface.wizard.IWizardPage;

 import org.eclipse.ogee.model.odata.EDMXSet;

 

 /**

@@ -30,8 +31,10 @@
 	private String odataPageFolderPath = null;

 	private String odataPageServiceName = null;

 	private CommonODataObject odataPageCommonODataObject = null;

+	private IWizardPage serviceCatalogWizardPage = null;

 	private EDMXSet odataPageEdmxSet = null;

 	private static EDMXSet odataPageEdmxFromServiceCatalog = null;

+	

 

 	public CommonWizardBusinessData()

 	{

@@ -130,5 +133,15 @@
 		this.smpVersionID = versionID;

 	}

 

+	public IWizardPage getServiceCatalogWizardPage()

+	{

+		return serviceCatalogWizardPage;

+	}

+

+	public void setServiceCatalogWizardPage(IWizardPage serviceCatalogWizardPage)

+	{

+		this.serviceCatalogWizardPage = serviceCatalogWizardPage;

+	}

+

 

 }

diff --git a/org.eclipse.ogee.core/src/org/eclipse/ogee/core/wizard/pages/ODataModelProjectPage.java b/org.eclipse.ogee.core/src/org/eclipse/ogee/core/wizard/pages/ODataModelProjectPage.java
index 31abc65..45b53a3 100644
--- a/org.eclipse.ogee.core/src/org/eclipse/ogee/core/wizard/pages/ODataModelProjectPage.java
+++ b/org.eclipse.ogee.core/src/org/eclipse/ogee/core/wizard/pages/ODataModelProjectPage.java
@@ -4,6 +4,7 @@
 import java.net.URL;
 import java.util.Iterator;
 import java.util.LinkedHashSet;
+import java.util.List;
 import java.util.Set;
 import java.util.regex.Matcher;
 import java.util.regex.Pattern;
@@ -36,14 +37,19 @@
 import org.eclipse.jface.wizard.IWizardPage;
 import org.eclipse.jface.wizard.WizardPage;
 import org.eclipse.ogee.core.Activator;
+import org.eclipse.ogee.core.extensions.ExtensionAttributes;
+import org.eclipse.ogee.core.extensions.ExtensionException;
+import org.eclipse.ogee.core.extensions.odata.model.internal.ODataModelExtension;
 import org.eclipse.ogee.core.nls.messages.FrameworkMessages;
 import org.eclipse.ogee.core.wizard.common.CommonODataObject;
 import org.eclipse.ogee.core.wizard.common.CommonWizardBusinessData;
 import org.eclipse.ogee.core.wizard.common.CommonWizardObject;
 import org.eclipse.ogee.core.wizard.common.CommonWizardStructureData;
 import org.eclipse.ogee.core.wizard.controller.WizardControllerException;
+import org.eclipse.ogee.help.IHelpConstants;
 import org.eclipse.ogee.utils.ProjectUtils;
 import org.eclipse.ogee.utils.logger.Logger;
+import org.eclipse.osgi.util.NLS;
 import org.eclipse.swt.SWT;
 import org.eclipse.swt.custom.SashForm;
 import org.eclipse.swt.custom.StyledText;
@@ -63,7 +69,6 @@
 import org.eclipse.swt.widgets.Text;
 import org.eclipse.ui.PlatformUI;
 import org.eclipse.ui.dialogs.ContainerSelectionDialog;
-import org.eclipse.ogee.help.IHelpConstants;
 
 /**
  * Represents the page for the OData Service wizard.
@@ -83,6 +88,7 @@
 	private Set<CommonODataObject> commonData = new LinkedHashSet<CommonODataObject>();
 	private IStructuredSelection folderSelection;
 	private TableViewer tableViewer;
+	private IWizardPage serviceCatalogWizardPage;
 
 
 	public static final ImageDescriptor imageDescriptor;
@@ -123,6 +129,16 @@
 		this.structureData = wizardObject.getStructureData();
 		this.firstTime = true;
 		this.folderSelection = this.structureData.getSelection();
+		try
+		{
+			loadModelExtensions();
+		}
+		catch (Exception e)
+		{
+			Logger.getFrameworkLogger().logError(e);
+		}
+
+
 		if (null != this.structureData.getPageTitle() && !this.structureData.isSMPWizard())
 		{
 			setTitle(this.structureData.getPageTitle());
@@ -146,6 +162,49 @@
 
 	}
 
+	/**
+	 * Retrieves the odata model extensions from the plugin.xml
+	 * 
+	 * @throws Exception
+	 */
+	private void loadModelExtensions() throws Exception
+	{
+		this.odataModelConfigElements = Platform.getExtensionRegistry().getConfigurationElementsFor(
+				Activator.PLUGIN_ID + WizardPagesConstants.ODATA_MODEL);
+
+		for (IConfigurationElement odataModelConfigElement : this.odataModelConfigElements)
+		{
+			if (odataModelConfigElement == null)
+			{
+				throw new Exception(FrameworkMessages.OdataModelElementNull);
+			}
+
+			try
+			{
+				ODataModelExtension odataModelExtension = new ODataModelExtension(odataModelConfigElement);
+				if (odataModelExtension.getDisplayName().equalsIgnoreCase(WizardPagesConstants.SERVICE_CATALOG))
+				{
+					List<IWizardPage> wizardPages = odataModelExtension.getODataModelProvider().getWizardPages();
+					for (IWizardPage wizardPage : wizardPages)
+					{
+						serviceCatalogWizardPage = wizardPage;
+						this.businessData.setServiceCatalogWizardPage(serviceCatalogWizardPage);
+					}
+				}
+			}
+			catch (ExtensionException e)
+			{
+				String id = odataModelConfigElement.getAttribute(ExtensionAttributes.id.name());
+				Logger.getFrameworkLogger()
+						.logWarning(
+								e.getMessage()
+										+ NLS.bind(FrameworkMessages.ODataModelExecutableExtensionIDCreationFailure, id));
+			}
+		}
+
+	}
+
+
 	/*
 	 * Add the model group
 	 */
@@ -821,7 +880,7 @@
 			}
 			// set the matching help context to the page when it's visible
 			PlatformUI.getWorkbench().getHelpSystem().setHelp(getShell(), IHelpConstants.NEW_ODATA_MODEL);
-			
+
 			TableItem tableItem = null;
 			final IFile odataFile = extractODataFilePathFromSelection(folderSelection);
 			if (this.firstTime)
diff --git a/org.eclipse.ogee.core/src/org/eclipse/ogee/core/wizard/pages/WizardPagesConstants.java b/org.eclipse.ogee.core/src/org/eclipse/ogee/core/wizard/pages/WizardPagesConstants.java
index d53f3c3..c024d4a 100644
--- a/org.eclipse.ogee.core/src/org/eclipse/ogee/core/wizard/pages/WizardPagesConstants.java
+++ b/org.eclipse.ogee.core/src/org/eclipse/ogee/core/wizard/pages/WizardPagesConstants.java
@@ -16,7 +16,6 @@
 	public static String BLANK_IMAGE = "res/images/blank.png";//$NON-NLS-1$

 	public static String URL_IMAGE = "res/images/service url.png";//$NON-NLS-1$

 	public static String FILE_IMAGE = "res/images/service file.png";//$NON-NLS-1$

-	public static String SERVICE_IMAGE = "res/images/service_catalog.png";//$NON-NLS-1$

 	public static String BLANKID = "org.eclipse.ogee.wizard.blank";//$NON-NLS-1$

 	public static String URLID = "org.eclipse.ogee.wizard.urldisplayName";//$NON-NLS-1$

 	public static String FILEID = "org.eclipse.ogee.wizard.filedisplayName";//$NON-NLS-1$

diff --git a/org.eclipse.ogee.designer/contextHelp_editor.xml b/org.eclipse.ogee.designer/contextHelp_editor.xml
index 62d5d33..73f1250 100644
--- a/org.eclipse.ogee.designer/contextHelp_editor.xml
+++ b/org.eclipse.ogee.designer/contextHelp_editor.xml
@@ -1,6 +1,6 @@
 <contexts>
 	<context id="odataeditor" title="OData Model Editor">
-    <topic href="../org.eclipse.ogee.help/html/0b5776c556a04e34964b5bf481bb1ecc.html" label="odataeditor"/>
+    <topic href="../org.eclipse.ogee.help/html/Working with the OData Model Editor.html" label="odataeditor"/>
     
     
     <!--topic label="Graphical OData Editor UI"/>
@@ -35,7 +35,7 @@
 
 
  <context id="odataeditorpreferences" title="OData Model Editor Layout">
-    <topic href="../org.eclipse.ogee.help/html/f159edb90e754bd78496eec86c7e66ea.html" label="odataeditorpreferences"/>
+    <topic href="../org.eclipse.ogee.help/html/Basic Layout.html" label="odataeditorpreferences"/>
  
  </context>
  <context id="edmxreferencedialog" title="Specifying the EDMX Reference to be Added">
diff --git a/org.eclipse.ogee.export/contextHelp.xml b/org.eclipse.ogee.export/contextHelp.xml
index 704cf8f..0d085cf 100644
--- a/org.eclipse.ogee.export/contextHelp.xml
+++ b/org.eclipse.ogee.export/contextHelp.xml
@@ -1,6 +1,6 @@
 <contexts>
 	<context id="ModelExport">
-    <topic href="../org.eclipse.ogee.help/html/45ffe494a3bc4a1bb355a94db1f5f72e.html" label="ModelExport"/>
+    <topic href="../org.eclipse.ogee.help/html/Exporting an OData Model from the OData Model Editor.html" label="ModelExport"/>
   		<!-- <topic href="/com.sap.odata.dt.help/d7397d6fe51b47b0925c37da30564aa1.html" label="Exporting an OData Model from the OData Model Editor"/> --> 
 	</context>
 </contexts>
diff --git a/org.eclipse.ogee.help/contexts.xml b/org.eclipse.ogee.help/contexts.xml
deleted file mode 100644
index 266d1e0..0000000
--- a/org.eclipse.ogee.help/contexts.xml
+++ /dev/null
@@ -1,131 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>

-<?NLS TYPE="org.eclipse.help.contexts"?>

-<contexts>

-<context id="ff3f01ab585d4c799c5360b46cf78bab">

-	<topic label="Upgrading Ogee" href="html/ff3f01ab585d4c799c5360b46cf78bab.html"/>

-	<description>Instructions for upgrading the Ogee.</description>

-</context>

-<context id="eef0a787772546da8bb64168fba51823">

-	<topic label="Creating a Bidirectional Association" href="html/eef0a787772546da8bb64168fba51823.html"/>

-	<description>Instructions about how to create a bidirectional associations.</description>

-</context>

-<context id="9719d8b8382643869d6785542387d684">

-	<topic label="Ogee: Developer Guide" href="html/9719d8b8382643869d6785542387d684.html"/>

-	<description>Ogee provides the OData Model Editor to create OData Models. The Developer Guide focuses on guiding the user to use OData Model Editor effectively to create the OData Models.</description>

-</context>

-<context id="65b63a88329544efac81319f48e6fd23">

-	<topic label="Creating a Blank OData Model" href="html/65b63a88329544efac81319f48e6fd23.html"/>

-	<description>Creating a blank OData model.</description>

-</context>

-<context id="5b0a3dc96c744886b4ec0bdf6d8038ed">

-	<topic label="Ogee: Software Prerequisites" href="html/5b0a3dc96c744886b4ec0bdf6d8038ed.html"/>

-	<description>Software prerequisites for using and installing the Ogee.</description>

-</context>

-<context id="9ec05803b170491095b0469418f6a60f">

-	<topic label="Creating a Function Import" href="html/9ec05803b170491095b0469418f6a60f.html"/>

-	<description>This section provides instructions to create a Function Import.</description>

-</context>

-<context id="7720bd44f939467ab34694fab1d259d2">

-	<topic label="Creating a Self Association" href="html/7720bd44f939467ab34694fab1d259d2.html"/>

-	<description>Explains how to create self associations in the entities.</description>

-</context>

-<context id="d963dae97f7d4764918f4ea798f727d2">

-	<topic label="Verifying the Installed Features" href="html/d963dae97f7d4764918f4ea798f727d2.html"/>

-	<description>This section will guide you to verify if the Ogee is installed successfully..</description>

-</context>

-<context id="02fac08dac9c41d89e6341aee03a43eb">

-	<topic label="Deleting OData Model Elements" href="html/02fac08dac9c41d89e6341aee03a43eb.html"/>

-	<description>Explains how to delete OData model elements in the OData Model Editor.</description>

-</context>

-<context id="499be3856baa45b1b2efacf2da6ea863">

-	<topic label="Creating an OData Model Using Metadata File" href="html/499be3856baa45b1b2efacf2da6ea863.html"/>

-</context>

-<context id="f331294ccbe54bcf8d2b68ef5a57773b">

-	<topic label="Adding an Entity Set" href="html/f331294ccbe54bcf8d2b68ef5a57773b.html"/>

-	<description>This section provides information to add entity sets to the entitites.</description>

-</context>

-<context id="50dc336f79024ca2a560d049846eb5e8">

-	<topic label="Creating an Association" href="html/50dc336f79024ca2a560d049846eb5e8.html"/>

-	<description>This sectoin provides information to create Association between Entities.</description>

-</context>

-<context id="4b867f2a7cd44a88a1067ef757864c9d">

-	<topic label="Creating OData Model Elements" href="html/4b867f2a7cd44a88a1067ef757864c9d.html"/>

-	<description>Creating OData Model Elements in the OData Model Editor.</description>

-</context>

-<context id="504f84d32071419eb2bb5489f0658c21">

-	<topic label="Working in the Properties View" href="html/504f84d32071419eb2bb5489f0658c21.html"/>

-	<description>The Properties View allows you to edit OData properties. These properties are used to define the different artifacts in the model. </description>

-</context>

-<context id="0b5776c556a04e34964b5bf481bb1ecc">

-	<topic label="Working in the OData Model Editor" href="html/0b5776c556a04e34964b5bf481bb1ecc.html"/>

-	<description>Working in the OData Model Editor</description>

-</context>

-<context id="12526533ccd3464b87542a9527c1b780">

-	<topic label="Creating an Entity Type" href="html/12526533ccd3464b87542a9527c1b780.html"/>

-	<description>This section guides you to create an Entity Type</description>

-</context>

-<context id="a3997075e60b4dd3b3e47a8126070414">

-	<topic label="Working with the OData Model Element" href="html/a3997075e60b4dd3b3e47a8126070414.html"/>

-	<description>Understanding the OData model element.</description>

-</context>

-<context id="028bcef958aa430e84a49cbc943b9709">

-	<topic label="Creating a Project" href="html/028bcef958aa430e84a49cbc943b9709.html"/>

-	<description>Creating a project </description>

-</context>

-<context id="8777b42c12bc4796a5898dbba6feb3fb">

-	<topic label="Adding Properties" href="html/8777b42c12bc4796a5898dbba6feb3fb.html"/>

-	<description>This section provides instructions to add properties for an entity and complex type.</description>

-</context>

-<context id="45eb75892a764571b63b8d3290df10b2">

-	<topic label="Ogee Installation and Configuration Guide" href="html/45eb75892a764571b63b8d3290df10b2.html"/>

-	<description>This section provides instructions to install Ogee. </description>

-</context>

-<context id="a53be72ad4fb4a3bb9b2ac83dc67ec2f">

-	<topic label="Saving the OData Model" href="html/a53be72ad4fb4a3bb9b2ac83dc67ec2f.html"/>

-	<description>This section will guide you to save a OData model.</description>

-</context>

-<context id="3a147172bf2046a28fc4e9573b1d9130">

-	<topic label="Uninstalling Ogee" href="html/3a147172bf2046a28fc4e9573b1d9130.html"/>

-	<description>Instructions for uninstalling Ogee.</description>

-</context>

-<context id="09acf63fcff846ff9b774c95bfcbce3b">

-	<topic label="Layouting in OData Model Editor" href="html/09acf63fcff846ff9b774c95bfcbce3b.html"/>

-	<description>Explains layouting for the OData model in the OData Model Editor.</description>

-</context>

-<context id="eef506110fb04dd9a0b93ba240ca529c">

-	<topic label="Ogee: Master Guide" href="html/eef506110fb04dd9a0b93ba240ca529c.html"/>

-	<description>Ogee provides Eclipse-based developer tools to produce data using the OData protocol.</description>

-</context>

-<context id="f159edb90e754bd78496eec86c7e66ea">

-	<topic label="Basic Layout" href="html/f159edb90e754bd78496eec86c7e66ea.html"/>

-	<description>This section provides information on setting up the basic layout for your OData model in the OData model editor.</description>

-</context>

-<context id="df07ead44d8b420fa4c3712d4168bc12">

-	<topic label="Creating an OData Model" href="html/df07ead44d8b420fa4c3712d4168bc12.html"/>

-</context>

-<context id="3c19aab92826496c830a9f6ab061ae91">

-	<topic label="Supporting Languages Other than English" href="html/3c19aab92826496c830a9f6ab061ae91.html"/>

-	<description>Enable the use of characters in languages other than English.</description>

-</context>

-<context id="45ffe494a3bc4a1bb355a94db1f5f72e">

-	<topic label="Exporting an OData Model from the OData Model Editor" href="html/45ffe494a3bc4a1bb355a94db1f5f72e.html"/>

-	<description>Use the Export OData Model wizard to export an OData model file, *.odata, from a project in the OData Model Editor, to an XML file. Later, you can use the exported file in another tool to quickly implement an OData service from the model.</description>

-</context>

-<context id="f4a962fc49d94c05b6e44ab9b5fd7a8c">

-	<topic label="Opening OData Perspective" href="html/f4a962fc49d94c05b6e44ab9b5fd7a8c.html"/>

-</context>

-<context id="60eb920cc2a240fc80c95c19d6c92bce">

-	<topic label="Creating an OData Model Using Service URL" href="html/60eb920cc2a240fc80c95c19d6c92bce.html"/>

-</context>

-<context id="86e4b6eede0b408ba9d69f24b8148642">

-	<topic label="Importing an OData Model" href="html/86e4b6eede0b408ba9d69f24b8148642.html"/>

-	<description>Import XML and EDMX files into a project</description>

-</context>

-<context id="22be92df80da42cf982b9506e31d8ae8">

-	<topic label="Creating a Single Association" href="html/22be92df80da42cf982b9506e31d8ae8.html"/>

-</context>

-<context id="c31d3ad78d7244fbb1071e7721d72ea7">

-	<topic label="Creating a Complex Type" href="html/c31d3ad78d7244fbb1071e7721d72ea7.html"/>

-	<description>Creating a Complex Type</description>

-</context>

-</contexts>

diff --git a/org.eclipse.ogee.help/css/commonltr.css b/org.eclipse.ogee.help/css/commonltr.css
deleted file mode 100644
index dbf5d15..0000000
--- a/org.eclipse.ogee.help/css/commonltr.css
+++ /dev/null
@@ -1,135 +0,0 @@
-/*

- | This file is part of the DITA Open Toolkit project hosted on 

- | Sourceforge.net. See the accompanying license.txt file for 

- | applicable licenses.

-*/

-

-/*

- | (c) Copyright IBM Corp. 2004, 2005 All Rights Reserved.

- */

- 

-.unresolved { background-color: skyblue; }

-.noTemplate { background-color: yellow; }

-

-.base { background-color: #ffffff; }

-

-/* Add space for top level topics */

-.nested0 { margin-top : 1em;}

-

-/* div with class=p is used for paragraphs that contain blocks, to keep the XHTML valid */

-.p {margin-top: 1em}

-

-/* Default of italics to set apart figure captions */

-.figcap { font-style: italic }

-.figdesc { font-style: normal }

-

-/* Use @frame to create frames on figures */

-.figborder { border-style: solid; padding-left : 3px; border-width : 2px; padding-right : 3px; margin-top: 1em; border-color : Silver;}

-.figsides { border-left : 2px solid; padding-left : 3px; border-right : 2px solid; padding-right : 3px; margin-top: 1em; border-color : Silver;}

-.figtop { border-top : 2px solid; margin-top: 1em; border-color : Silver;}

-.figbottom { border-bottom : 2px solid; border-color : Silver;}

-.figtopbot { border-top : 2px solid; border-bottom : 2px solid; margin-top: 1em; border-color : Silver;}

-

-/* Most link groups are created with <div>. Ensure they have space before and after. */

-.ullinks { list-style-type: none }

-.ulchildlink { margin-top: 1em; margin-bottom: 1em }

-.olchildlink { margin-top: 1em; margin-bottom: 1em }

-.linklist { margin-bottom: 1em }

-.linklistwithchild { margin-left: 1.5em; margin-bottom: 1em  }

-.sublinklist { margin-left: 1.5em; margin-bottom: 1em  }

-.relconcepts { margin-top: 1em; margin-bottom: 1em }

-.reltasks { margin-top: 1em; margin-bottom: 1em }

-.relref { margin-top: 1em; margin-bottom: 1em }

-.relinfo { margin-top: 1em; margin-bottom: 1em }

-.breadcrumb { font-size : smaller; margin-bottom: 1em }

-dt.prereq { margin-left : 20px;}

-

-/* Set heading sizes, getting smaller for deeper nesting */

-.topictitle1 { margin-top: 0pc; margin-bottom: .1em; font-size: 1.34em; }

-.topictitle2 { margin-top: 1pc; margin-bottom: .45em; font-size: 1.17em; }

-.topictitle3 { margin-top: 1pc; margin-bottom: .17em; font-size: 1.17em; font-weight: bold; }

-.topictitle4 { margin-top: .83em; font-size: 1.17em; font-weight: bold; }

-.topictitle5 { font-size: 1.17em; font-weight: bold; }

-.topictitle6 { font-size: 1.17em; font-style: italic; }

-.sectiontitle { margin-top: 1em; margin-bottom: 0em; color: black; font-size: 1.17em; font-weight: bold;}

-.section { margin-top: 1em; margin-bottom: 1em }

-.example { margin-top: 1em; margin-bottom: 1em }

-div.tasklabel { margin-top: 1em; margin-bottom: 1em; }

-h2.tasklabel, h3.tasklabel, h4.tasklabel, h5.tasklabel, h6.tasklabel { font-size: 100%; }

-

-/* All note formats have the same default presentation */

-.note { margin-top: 1em; margin-bottom : 1em;}

-.notetitle { font-weight: bold }

-.notelisttitle { font-weight: bold }

-.tip { margin-top: 1em; margin-bottom : 1em;}

-.tiptitle { font-weight: bold }

-.fastpath { margin-top: 1em; margin-bottom : 1em;}

-.fastpathtitle { font-weight: bold }

-.important { margin-top: 1em; margin-bottom : 1em;}

-.importanttitle { font-weight: bold }

-.remember { margin-top: 1em; margin-bottom : 1em;}

-.remembertitle { font-weight: bold }

-.restriction { margin-top: 1em; margin-bottom : 1em;}

-.restrictiontitle { font-weight: bold }

-.attention { margin-top: 1em; margin-bottom : 1em;}

-.attentiontitle { font-weight: bold }

-.dangertitle { font-weight: bold }

-.danger { margin-top: 1em; margin-bottom : 1em;}

-.cautiontitle { font-weight: bold }

-.caution { font-weight: bold; margin-bottom : 1em; }

-.warning { margin-top: 1em; margin-bottom : 1em;}

-.warningtitle { font-weight: bold }

-

-/* Simple lists do not get a bullet */

-ul.simple { list-style-type: none }

-

-/* Used on the first column of a table, when rowheader="firstcol" is used */

-.firstcol { font-weight : bold;}

-

-/* Various basic phrase styles */

-.bold { font-weight: bold; }

-.boldItalic { font-weight: bold; font-style: italic; }

-.italic { font-style: italic; }

-.underlined { text-decoration: underline; }

-.uicontrol { font-weight: bold; }

-.parmname { font-weight: bold; }

-.kwd { font-weight: bold; }

-.defkwd { font-weight: bold; text-decoration: underline; }

-.var { font-style : italic;}

-.shortcut { text-decoration: underline; }

-

-/* Default of bold for definition list terms */

-.dlterm { font-weight: bold; }

-

-/* Use CSS to expand lists with @compact="no" */

-.dltermexpand { font-weight: bold; margin-top: 1em; }

-*[compact="yes"]>li { margin-top: 0em;}

-*[compact="no"]>li { margin-top: .53em;}

-.liexpand { margin-top: 1em; margin-bottom: 1em }

-.sliexpand { margin-top: 1em; margin-bottom: 1em }

-.dlexpand { margin-top: 1em; margin-bottom: 1em }

-.ddexpand { margin-top: 1em; margin-bottom: 1em }

-.stepexpand { margin-top: 1em; margin-bottom: 1em }

-.substepexpand { margin-top: 1em; margin-bottom: 1em }

-

-/* Align images based on @align on topic/image */

-div.imageleft { text-align: left }

-div.imagecenter { text-align: center }

-div.imageright { text-align: right }

-div.imagejustify { text-align: justify }

-

-/* The cell border can be turned on with

-   {border-right:solid}

-   This value creates a very thick border in Firefox (does not match other tables)

-

-   Firefox works with 

-   {border-right:solid 1pt}

-   but this causes a barely visible line in IE */

-.cellrowborder { border-left:none; border-top:none; border-right:solid 1px; border-bottom:solid 1px }

-.row-nocellborder { border-left:none; border-right:none; border-top:none; border-right: hidden; border-bottom:solid 1px}

-.cell-norowborder { border-top:none; border-bottom:none; border-left:none; border-bottom: hidden; border-right:solid 1px}

-.nocellnorowborder { border:none; border-right: hidden;border-bottom: hidden }

-

-pre.screen { padding: 5px 5px 5px 5px; border: outset; background-color: #CCCCCC; margin-top: 2px; margin-bottom : 2px; white-space: pre}

-

-span.filepath, samp.codeph, pre.codeblock { font-family:monospace }
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/css/commonrtl.css b/org.eclipse.ogee.help/css/commonrtl.css
deleted file mode 100644
index e1200cd..0000000
--- a/org.eclipse.ogee.help/css/commonrtl.css
+++ /dev/null
@@ -1,135 +0,0 @@
-/*

- | This file is part of the DITA Open Toolkit project hosted on 

- | Sourceforge.net. See the accompanying license.txt file for 

- | applicable licenses.

-*/

-

-/*

- | (c) Copyright IBM Corp. 2004, 2005 All Rights Reserved.

- */

- 

-.unresolved { background-color: skyblue; }

-.noTemplate { background-color: yellow; }

-

-.base { background-color: #ffffff; }

-

-/* Add space for top level topics */

-.nested0 { margin-top : 1em;}

-

-/* div with class=p is used for paragraphs that contain blocks, to keep the XHTML valid */

-.p {margin-top: 1em}

-

-/* Default of italics to set apart figure captions */

-.figcap { font-style: italic }

-.figdesc { font-style: normal }

-

-/* Use @frame to create frames on figures */

-.figborder { border-style: solid; padding-left : 3px; border-width : 2px; padding-right : 3px; margin-top: 1em; border-color : Silver;}

-.figsides { border-left : 2px solid; padding-left : 3px; border-right : 2px solid; padding-right : 3px; margin-top: 1em; border-color : Silver;}

-.figtop { border-top : 2px solid; margin-top: 1em; border-color : Silver;}

-.figbottom { border-bottom : 2px solid; border-color : Silver;}

-.figtopbot { border-top : 2px solid; border-bottom : 2px solid; margin-top: 1em; border-color : Silver;}

-

-/* Most link groups are created with <div>. Ensure they have space before and after. */

-.ullinks { list-style-type: none }

-.ulchildlink { margin-top: 1em; margin-bottom: 1em }

-.olchildlink { margin-top: 1em; margin-bottom: 1em }

-.linklist { margin-top: 1em; margin-bottom: 1em }

-.linklistwithchild { margin-top: 1em; margin-right: 1.5em; margin-bottom: 1em  }

-.sublinklist { margin-top: 1em; margin-right: 1.5em; margin-bottom: 1em  }

-.relconcepts { margin-top: 1em; margin-bottom: 1em }

-.reltasks { margin-top: 1em; margin-bottom: 1em }

-.relref { margin-top: 1em; margin-bottom: 1em }

-.relinfo { margin-top: 1em; margin-bottom: 1em }

-.breadcrumb { font-size : smaller; margin-bottom: 1em }

-dt.prereq { margin-right : 20px;}

-

-/* Set heading sizes, getting smaller for deeper nesting */

-.topictitle1 { margin-top: 0pc; margin-bottom: .1em; font-size: 1.34em; }

-.topictitle2 { margin-top: 1pc; margin-bottom: .45em; font-size: 1.17em; }

-.topictitle3 { margin-top: 1pc; margin-bottom: .17em; font-size: 1.17em; font-weight: bold; }

-.topictitle4 { margin-top: .83em; font-size: 1.17em; font-weight: bold; }

-.topictitle5 { font-size: 1.17em; font-weight: bold; }

-.topictitle6 { font-size: 1.17em; font-style: italic; }

-.sectiontitle { margin-top: 1em; margin-bottom: 0em; color: black; font-size: 1.17em; font-weight: bold;}

-.section { margin-top: 1em; margin-bottom: 1em }

-.example { margin-top: 1em; margin-bottom: 1em }

-div.tasklabel { margin-top: 1em; margin-bottom: 1em; }

-h2.tasklabel, h3.tasklabel, h4.tasklabel, h5.tasklabel, h6.tasklabel { font-size: 100%; }

-

-/* All note formats have the same default presentation */

-.note { margin-top: 1em; margin-bottom : 1em;}

-.notetitle { font-weight: bold }

-.notelisttitle { font-weight: bold }

-.tip { margin-top: 1em; margin-bottom : 1em;}

-.tiptitle { font-weight: bold }

-.fastpath { margin-top: 1em; margin-bottom : 1em;}

-.fastpathtitle { font-weight: bold }

-.important { margin-top: 1em; margin-bottom : 1em;}

-.importanttitle { font-weight: bold }

-.remember { margin-top: 1em; margin-bottom : 1em;}

-.remembertitle { font-weight: bold }

-.restriction { margin-top: 1em; margin-bottom : 1em;}

-.restrictiontitle { font-weight: bold }

-.attention { margin-top: 1em; margin-bottom : 1em;}

-.attentiontitle { font-weight: bold }

-.dangertitle { font-weight: bold }

-.danger { margin-top: 1em; margin-bottom : 1em;}

-.cautiontitle { font-weight: bold }

-.caution { font-weight: bold; margin-bottom : 1em; }

-.warning { margin-top: 1em; margin-bottom : 1em;}

-.warningtitle { font-weight: bold }

-

-/* Simple lists do not get a bullet */

-ul.simple { list-style-type: none }

-

-/* Used on the first column of a table, when rowheader="firstcol" is used */

-.firstcol { font-weight : bold;}

-

-/* Various basic phrase styles */

-.bold { font-weight: bold; }

-.boldItalic { font-weight: bold; font-style: italic; }

-.italic { font-style: italic; }

-.underlined { text-decoration: underline; }

-.uicontrol { font-weight: bold; }

-.parmname { font-weight: bold; }

-.kwd { font-weight: bold; }

-.defkwd { font-weight: bold; text-decoration: underline; }

-.var { font-style : italic;}

-.shortcut { text-decoration: underline; }

-

-/* Default of bold for definition list terms */

-.dlterm { font-weight: bold; }

-

-/* Use CSS to expand lists with @compact="no" */

-.dltermexpand { font-weight: bold; margin-top: 1em; }

-*[compact="yes"]>li { margin-top: 0em;}

-*[compact="no"]>li { margin-top: .53em;}

-.liexpand { margin-top: 1em; margin-bottom: 1em }

-.sliexpand { margin-top: 1em; margin-bottom: 1em }

-.dlexpand { margin-top: 1em; margin-bottom: 1em }

-.ddexpand { margin-top: 1em; margin-bottom: 1em }

-.stepexpand { margin-top: 1em; margin-bottom: 1em }

-.substepexpand { margin-top: 1em; margin-bottom: 1em }

-

-/* Align images based on @align on topic/image */

-div.imageleft { text-align: left }

-div.imagecenter { text-align: center }

-div.imageright { text-align: right }

-div.imagejustify { text-align: justify }

-

-/* The cell border can be turned on with

-   {border-right:solid}

-   This value creates a very thick border in Firefox (does not match other tables)

-

-   Firefox works with 

-   {border-right:solid 1pt}

-   but this causes a barely visible line in IE */

-.cellrowborder { border-right:none; border-top:none; border-left:solid 1px; border-bottom:solid 1px }

-.row-nocellborder { border-left:none; border-right:none; border-top:none; border-left: hidden; border-bottom:solid 1px}

-.cell-norowborder { border-top:none; border-bottom:none; border-right:none; border-bottom: hidden; border-left:solid 1px}

-.nocellnorowborder { border:none; border-left: hidden;border-bottom: hidden }

-

-pre.screen { padding: 5px 5px 5px 5px; border: outset; background-color: #CCCCCC; margin-top: 2px; margin-bottom : 2px; white-space: pre}

-

-span.filepath, samp.codeph, pre.codeblock { font-family:monospace }
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/css/dataTables.colVis.min.css b/org.eclipse.ogee.help/css/dataTables.colVis.min.css
deleted file mode 100644
index 7351806..0000000
--- a/org.eclipse.ogee.help/css/dataTables.colVis.min.css
+++ /dev/null
@@ -1 +0,0 @@
-div.ColVis{float:right;margin-bottom:1em}button.ColVis_Button,ul.ColVis_collection li{position:relative;float:left;margin-right:3px;padding:5px 8px;border:1px solid #999;cursor:pointer;*cursor:hand;font-size:0.88em;color:black !important;white-space:nowrap;-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;border-radius:2px;-webkit-box-shadow:1px 1px 3px #ccc;-moz-box-shadow:1px 1px 3px #ccc;-ms-box-shadow:1px 1px 3px #ccc;-o-box-shadow:1px 1px 3px #ccc;box-shadow:1px 1px 3px #ccc;background:#ffffff;background:-webkit-linear-gradient(top, #fff 0%, #f3f3f3 89%, #f9f9f9 100%);background:-moz-linear-gradient(top, #fff 0%, #f3f3f3 89%, #f9f9f9 100%);background:-ms-linear-gradient(top, #fff 0%, #f3f3f3 89%, #f9f9f9 100%);background:-o-linear-gradient(top, #fff 0%, #f3f3f3 89%, #f9f9f9 100%);background:linear-gradient(top, #fff 0%, #f3f3f3 89%, #f9f9f9 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f9f9f9',GradientType=0 )}.ColVis_Button:hover,ul.ColVis_collection li:hover{border:1px solid #666;text-decoration:none !important;-webkit-box-shadow:1px 1px 3px #999;-moz-box-shadow:1px 1px 3px #999;-ms-box-shadow:1px 1px 3px #999;-o-box-shadow:1px 1px 3px #999;box-shadow:1px 1px 3px #999;background:#f3f3f3;background:-webkit-linear-gradient(top, #f3f3f3 0%, #e2e2e2 89%, #f4f4f4 100%);background:-moz-linear-gradient(top, #f3f3f3 0%, #e2e2e2 89%, #f4f4f4 100%);background:-ms-linear-gradient(top, #f3f3f3 0%, #e2e2e2 89%, #f4f4f4 100%);background:-o-linear-gradient(top, #f3f3f3 0%, #e2e2e2 89%, #f4f4f4 100%);background:linear-gradient(top, #f3f3f3 0%, #e2e2e2 89%, #f4f4f4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3f3f3', endColorstr='#f4f4f4',GradientType=0 )}button.ColVis_Button{height:30px;padding:3px 8px}button.ColVis_Button::-moz-focus-inner{border:none !important;padding:0}button.ColVis_Button:active{outline:none}div.ColVis_collectionBackground{position:fixed;top:0;left:0;height:100%;width:100%;background-color:black;z-index:1100}ul.ColVis_collection{width:150px;padding:8px 8px 4px 8px;margin:0;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.4);background-color:#f3f3f3;background-color:rgba(255,255,255,0.3);overflow:hidden;z-index:2002;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;-webkit-box-shadow:3px 3px 5px rgba(0,0,0,0.3);-moz-box-shadow:3px 3px 5px rgba(0,0,0,0.3);-ms-box-shadow:3px 3px 5px rgba(0,0,0,0.3);-o-box-shadow:3px 3px 5px rgba(0,0,0,0.3);box-shadow:3px 3px 5px rgba(0,0,0,0.3)}ul.ColVis_collection li{position:relative;height:auto;left:0;right:0;padding:0.5em;display:block;float:none;margin-bottom:4px;-webkit-box-shadow:1px 1px 3px #999;-moz-box-shadow:1px 1px 3px #999;-ms-box-shadow:1px 1px 3px #999;-o-box-shadow:1px 1px 3px #999;box-shadow:1px 1px 3px #999}ul.ColVis_collection li{text-align:left}ul.ColVis_collection li.ColVis_Button:hover{border:1px solid #999;background-color:#f0f0f0}ul.ColVis_collection li span{display:inline-block;padding-left:0.5em;cursor:pointer}ul.ColVis_collection li.ColVis_Special{border-color:#555;background:#ededed;background:-webkit-linear-gradient(top, #ededed 0%, #d6d6d6 77%, #e8e8e8 100%);background:-moz-linear-gradient(top, #ededed 0%, #d6d6d6 77%, #e8e8e8 100%);background:-ms-linear-gradient(top, #ededed 0%, #d6d6d6 77%, #e8e8e8 100%);background:-o-linear-gradient(top, #ededed 0%, #d6d6d6 77%, #e8e8e8 100%);background:linear-gradient(to bottom, #ededed 0%, #d6d6d6 77%, #e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#e8e8e8',GradientType=0 )}ul.ColVis_collection li.ColVis_Special:hover{background:#e2e2e2;background:-webkit-linear-gradient(top, #d0d0d0 0%, #d5d5d5 89%, #e2e2e2 100%);background:-moz-linear-gradient(top, #d0d0d0 0%, #d5d5d5 89%, #e2e2e2 100%);background:-ms-linear-gradient(top, #d0d0d0 0%, #d5d5d5 89%, #e2e2e2 100%);background:-o-linear-gradient(top, #d0d0d0 0%, #d5d5d5 89%, #e2e2e2 100%);background:linear-gradient(top, #d0d0d0 0%, #d5d5d5 89%, #e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3f3f3', endColorstr='#e2e2e2',GradientType=0 )}span.ColVis_radio{display:inline-block;width:20px}div.ColVis_catcher{position:absolute;z-index:1101}.disabled{color:#999}

diff --git a/org.eclipse.ogee.help/css/documentation.css b/org.eclipse.ogee.help/css/documentation.css
deleted file mode 100644
index f0a5cda..0000000
--- a/org.eclipse.ogee.help/css/documentation.css
+++ /dev/null
@@ -1,1381 +0,0 @@
-@import 'dataTables.colVis.min.css';

-

-[lang="zh-cn"] {font-weight: normal !important; font-style: normal !important;}

-[lang="zh-tw"] {font-weight: normal !important; font-style: normal !important;}

-:lang(zh) {font-weight: normal !important; font-style: normal !important; }

-

-ol, ul, div {

-	font-family: Arial, Arial Unicode MS, Helvetica, sans-serif;

-	line-height: 1.6em;

-}

-

-[lang="ar-sa"] ol, [lang="ar-sa"] ul, [lang="ar-sa"] div {font-family: "Traditional Arabic", Arial Unicode MS, sans-serif;}

-ol:lang(ar), ul:lang(ar), div:lang(ar) {font-family: "Traditional Arabic", Arial Unicode MS, sans-serif;}

-[lang="ja-jp"] ol, [lang="ja-jp"] ul, [lang="ja-jp"] div {font-family: MS PGothic, Arial Unicode MS, sans-serif;}

-ol:lang(ja), ul:lang(ja), div:lang(ja) {font-family: MS PGothic, Arial Unicode MS, sans-serif;}

-[lang="ko-kr"] ol, [lang="ko-kr"] ul, [lang="ko-kr"] div {font-family: Malgun Gothic, Arial Unicode MS, sans-serif;}

-ol:lang(ko), ul:lang(ko), div:lang(ko) {font-family: Malgun Gothic, Arial Unicode MS, sans-serif;}

-[lang="zh-cn"] ol, [lang="zh-cn"] ul, [lang="zh-cn"] div {font-family: HYZhongDengXianJ, SimHei, Arial Unicode MS, sans-serif;}

-[lang="zh-tw"] ol, [lang="zh-tw"] ul, [lang="zh-tw"] div {font-family: HYZhongDengXianJ, SimHei, Arial Unicode MS, sans-serif;}

-ol:lang(zh), ul:lang(zh), div:lang(zh) {font-family: HYZhongDengXianJ, SimHei, Arial Unicode MS, sans-serif;}

-

-.codeblock ol{

-	font-family: "Courier New", Courier, monospace;

-}

-

-body 

-{

-	background-color: #FFF;

-	color: #333;

-	font-family: Arial, Arial Unicode MS, Helvetica, sans-serif;

-	font-size: 0.8em;

-	margin: 0;

-	padding: 0 20px 20px 50px;

-}

-[lang="ar-sa"] body {font-family: "Traditional Arabic", Arial Unicode MS, sans-serif; padding: 0 50px 20px 20px;}

-body:lang(ar) {font-family: "Traditional Arabic", Arial Unicode MS, sans-serif; padding: 0 50px 20px 20px;}

-[lang="fa-ir"] body, [lang="he-il"] body {padding: 0px 50px 20px 20px;}

-body:lang(fa), body:lang(he), body:lang(ps), body:lang(ur) {padding: 0 50px 20px 20px;}

-[lang="ja-jp"] body {font-family: MS PGothic, Arial Unicode MS, sans-serif;}

-body:lang(ja) {font-family: MS PGothic, Arial Unicode MS, sans-serif;}

-[lang="ko-kr"] body {font-family: Malgun Gothic, Arial Unicode MS, sans-serif;}

-body:lang(ko) {font-family: Malgun Gothic, Arial Unicode MS, sans-serif;}

-[lang="zh-cn"] body {font-family: HYZhongDengXianJ, SimHei, Arial Unicode MS, sans-serif;}

-[lang="zh-tw"] body {font-family: HYZhongDengXianJ, SimHei, Arial Unicode MS, sans-serif;}

-body:lang(zh) {font-family: HYZhongDengXianJ, SimHei, Arial Unicode MS, sans-serif;}

-

-p {

-	color: #333;

-	line-height: 1.6em;

-	orphans: 2;

-	padding: 0;

-	widows: 2;

-}

-

-li > p {

-    margin-top: 0px;

-    margin-bottom: 0px;

-} 

-

-.topictitle1 

-{ 

-	color: #595959;

-	font-family: "Arial Black", Arial, Arial Unicode MS, Helvetica, sans-serif;

-	font-size: 225%;

-	line-height: 1.3em; 

-	margin: 1em 0 0 0;

-	page-break-after: avoid;

-	page-break-inside: avoid;

-	font-weight: normal !important; 

-}

-[lang="ar-sa"] .topictitle1 {font-family: "Traditional Arabic", Arial Unicode MS, sans-serif;}

-.topictitle1:lang(ar) {font-family: "Traditional Arabic", Arial Unicode MS, sans-serif;}

-[lang="ja-jp"] .topictitle1 {font-family: MS PGothic, Arial Unicode MS, sans-serif;}

-.topictitle1:lang(ja) {font-family: MS PGothic, Arial Unicode MS, sans-serif;}

-[lang="ko-kr"].topictitle1 {font-family: Malgun Gothic, Arial Unicode MS, sans-serif;}

-.topictitle1:lang(ko) {font-family: Malgun Gothic, Arial Unicode MS, sans-serif;}

-[lang="zh-cn"] .topictitle1 {font-family: HYZhongDengXianJ, SimHei, Arial Unicode MS, sans-serif;}

-[lang="zh-tw"] .topictitle1 {font-family: HYZhongDengXianJ, SimHei, Arial Unicode MS, sans-serif;}

-.topictitle1:lang(zh) {font-family: HYZhongDengXianJ, SimHei, Arial Unicode MS, sans-serif;}

-

-.topictitle2 

-{ 

-	color: #999;

-	font-size: 160%;

-	font-weight: bold;

-	margin: 2em 0 0.2em 0;

-	page-break-after: avoid;

-	page-break-inside: avoid;

-}

-

-.sectiontitle, 

-.relinfotitle,

-.section_title{ 

-	color: #666;

-	font-size: 125%;

-	font-weight: bold;

-	margin: 2em 0 0.2em 0;

-	page-break-after: avoid;

-	page-break-inside: avoid;

-	font-weight: normal !important; 

-}

-

-.relinfotitle {

-	display:inline-block;

-	padding-bottom: 5px;

-	}

-

-.relinfo {

-	margin-top:3px;

-	}

-

-.topictitle4 {

-	color: #666;

-	font-size: 100%;

-	font-weight: bold;

-	margin: 2.2em 0 0.2em 0;

-	page-break-after: avoid;

-	page-break-inside: avoid;

-}

-

-.dl li p:first-child {

-display: inline;

-}

-

-

-.dl li {

-margin: 10px 0;

-}

-

-li ul {}

-

-li ul li {

-	list-style-type: circle;

-	list-style-position: outside;

-	margin: 0 0 0 -1.8em;

-}

-[lang="ar-sa"] li ul li, [lang="fa-ir"] li ul li, [lang="he-il"] li ul li {

-    margin: 0 -1.8em 0 0;

-}

-li ul li:lang(ar), li ul li:lang(fa), li ul li:lang(he), li ul li:lang(ps), li ul li:lang(ur) {

-    margin: 0 -1.8em 0 0;

-}

-

-li ol {}

-

-ol li ol {

-	list-style-type: lower-alpha;

-}

-

-li ol li {

-	margin: 0 0 0 -1.3em;

-	}

-li ol li:lang(ar), li ol li:lang(fa), li ol li:lang(he), li ol li:lang(ps), li ol li:lang(ur) {

-    margin: 0 -1.8em 0 0;

-}

-	

-.sli {

-	list-style-type: none;

-}

-

-.note, .example, .caution, .recommendation, .syntax, .tip 

-{

-	background-color: #FFF7E3;

-	margin: 1em 0;

-	padding: 4px 5px 3px 8px;

-	page-break-inside: avoid;

-}

-[lang="ar-sa"] .note, [lang="ar-sa"] .example, [lang="ar-sa"] .caution, [lang="ar-sa"] .recommendation, [lang="ar-sa"] .syntax, [lang="ar-sa"] .tip,

-[lang="fa-ir"] .note, [lang="fa-ir"] .example, [lang="fa-ir"] .caution, [lang="fa-ir"] .recommendation, [lang="fa-ir"] .syntax, [lang="fa-ir"] .tip,

-[lang="he-il"] .note, [lang="he-il"] .example, [lang="he-il"] .caution, [lang="he-il"] .recommendation, [lang="he-il"] .syntax, [lang="he-il"] .tip

-{

-    padding: 4px 8px 3px 5px;

-}

-.note:lang(ar), .example:lang(ar), .caution:lang(ar), .recommendation:lang(ar), .syntax:lang(ar), .tip:lang(ar)

-{

-    padding: 4px 8px 3px 5px;

-}

-

-body.sap_bluecrystal .note,

-body.sap_bluecrystal .example, 

-body.sap_bluecrystal .caution, 

-body.sap_bluecrystal .recommendation, 

-body.sap_bluecrystal .syntax,

-body.sap_bluecrystal.tip 

-{

-    background-color:  rgb(229, 242, 249);   

-}

-

-.example p 

-{

-	background-color: inherit;

-}

-

-

-.cautiontitle, .recommendationtitle, .syntaxtitle, .tiptitle, .notetitle, 

-.dangertitle, .fastpathtitle, .importanttitle, .remembertitle, .restrictiontitle, 

-.example h2, .exampletitle, .sourcecodeblocktitle, .outputcodeblocktitle, .samplecodetitle, .codesyntaxtitle, .limitationstitle, .othertitle, 

-.attentiontitle, .warningtitle 

-{

-	color: #BBB;

-	font-size: 1.38em; 

-	line-height: 1.5em;

-	margin: 0;

-	display:block;

-	padding-left: 28px;

-	background-repeat:no-repeat;

-	background-position:left top;

-}

-[lang="ar-sa"] .cautiontitle, [lang="ar-sa"] .recommendationtitle, [lang="ar-sa"] .syntaxtitle, [lang="ar-sa"] .tiptitle, [lang="ar-sa"] .notetitle, 

-[lang="ar-sa"] .dangertitle, [lang="ar-sa"] .fastpathtitle, [lang="ar-sa"] .importanttitle, [lang="ar-sa"] .remembertitle, [lang="ar-sa"] .restrictiontitle, 

-[lang="ar-sa"] .example h2, [lang="ar-sa"] .exampletitle, [lang="ar-sa"] .sourcecodeblocktitle, [lang="ar-sa"] .outputcodeblocktitle, [lang="ar-sa"] .samplecodetitle, [lang="ar-sa"] .codesyntaxtitle, [lang="ar-sa"] .limitationstitle, [lang="ar-sa"] .othertitle, 

-[lang="ar-sa"] .attentiontitle, [lang="ar-sa"] .warningtitle,

-[lang="fa-ir"] .cautiontitle, [lang="fa-ir"] .recommendationtitle, [lang="fa-ir"] .syntaxtitle, [lang="fa-ir"] .tiptitle, [lang="fa-ir"] .notetitle, 

-[lang="fa-ir"] .dangertitle, [lang="fa-ir"] .fastpathtitle, [lang="fa-ir"] .importanttitle, [lang="fa-ir"] .remembertitle, [lang="fa-ir"] .restrictiontitle, 

-[lang="fa-ir"] .example h2, [lang="fa-ir"] .exampletitle, [lang="fa-ir"] .sourcecodeblocktitle, [lang="fa-ir"] .outputcodeblocktitle, [lang="fa-ir"] .samplecodetitle, [lang="fa-ir"] .codesyntaxtitle, [lang="fa-ir"] .limitationstitle, [lang="fa-ir"] .othertitle, 

-[lang="fa-ir"] .attentiontitle, [lang="fa-ir"] .warningtitle,

-[lang="he-il"] .cautiontitle, [lang="he-il"] .recommendationtitle, [lang="he-il"] .syntaxtitle, [lang="he-il"] .tiptitle, [lang="he-il"] .notetitle, 

-[lang="he-il"] .dangertitle, [lang="he-il"] .fastpathtitle, [lang="he-il"] .importanttitle, [lang="he-il"] .remembertitle, [lang="he-il"] .restrictiontitle, 

-[lang="he-il"] .example h2, [lang="he-il"] .exampletitle, [lang="he-il"] .sourcecodeblocktitle, [lang="he-il"] .outputcodeblocktitle, [lang="he-il"] .samplecodetitle, [lang="he-il"] .codesyntaxtitle, [lang="he-il"] .limitationstitle, [lang="he-il"] .othertitle

-[lang="he-il"] .attentiontitle, [lang="he-il"] .warningtitle

-{

-    padding-right: 28px;

-    background-position:right top;

-}

-.cautiontitle:lang(ar), .recommendationtitle:lang(ar), .syntaxtitle:lang(ar), .tiptitle:lang(ar), .notetitle:lang(ar), .limitationstitle:lang(ar), 

-.dangertitle:lang(ar), .fastpathtitle:lang(ar), .importanttitle:lang(ar), .remembertitle:lang(ar), .restrictiontitle:lang(ar), 

-.example:lang(ar) h2, .exampletitle:lang(ar), .sourcecodeblocktitle:lang(ar), .outputcodeblocktitle:lang(ar), .samplecodetitle:lang(ar), .codesyntaxtitle:lang(ar), .othertitle:lang(ar),

-.attentiontitle:lang(ar), .warningtitle:lang(ar),

-.cautiontitle:lang(fa), .recommendationtitle:lang(fa), .syntaxtitle:lang(fa), .tiptitle:lang(fa), .notetitle:lang(fa), .limitationstitle:lang(fa),

-.dangertitle:lang(fa), .fastpathtitle:lang(fa), .importanttitle:lang(fa), .remembertitle:lang(fa), .restrictiontitle:lang(fa), 

-.example:lang(fa) h2, .exampletitle:lang(fa), .sourcecodeblocktitle:lang(fa), .outputcodeblocktitle:lang(fa), .samplecodetitle:lang(fa), .codesyntaxtitle:lang(fa), .othertitle:lang(fa),

-.attentiontitle:lang(fa), .warningtitle:lang(fa),

-.cautiontitle:lang(he), .recommendationtitle:lang(he), .syntaxtitle:lang(he), .tiptitle:lang(he), .notetitle:lang(he), .limitationstitle:lang(he),

-.dangertitle:lang(he), .fastpathtitle:lang(he), .importanttitle:lang(he), .remembertitle:lang(he), .restrictiontitle:lang(he), 

-.example:lang(he) h2, .exampletitle:lang(he), .sourcecodeblocktitle:lang(he), .outputcodeblocktitle:lang(he), .samplecodetitle:lang(he), .codesyntaxtitle:lang(he), .othertitle:lang(he),

-.attentiontitle:lang(he), .warningtitle:lang(he),

-.cautiontitle:lang(ps), .recommendationtitle:lang(ps), .syntaxtitle:lang(ps), .tiptitle:lang(ps), .notetitle:lang(ps), .limitationstitle:lang(ps),

-.dangertitle:lang(ps), .fastpathtitle:lang(ps), .importanttitle:lang(ps), .remembertitle:lang(ps), .restrictiontitle:lang(ps), 

-.example:lang(ps) h2, .exampletitle:lang(ps), .sourcecodeblocktitle:lang(ps), .outputcodeblocktitle:lang(ps), .samplecodetitle:lang(ps), .codesyntaxtitle:lang(ps), .othertitle:lang(ps),

-.attentiontitle:lang(ps), .warningtitle:lang(ps),

-.cautiontitle:lang(ur), .recommendationtitle:lang(ur), .syntaxtitle:lang(ur), .tiptitle:lang(ur), .notetitle:lang(ur), .limitationstitle:lang(ur),

-.dangertitle:lang(ur), .fastpathtitle:lang(ur), .importanttitle:lang(ur), .remembertitle:lang(ur), .restrictiontitle:lang(ur), 

-.example:lang(ur) h2, .exampletitle:lang(ur), .sourcecodeblocktitle:lang(ur), .outputcodeblocktitle:lang(ur), .samplecodetitle:lang(ur), .codesyntaxtitle:lang(ur), .othertitle:lang(ur),

-.attentiontitle:lang(ur), .warningtitle:lang(ur)

-{

-	padding-right: 28px;

-	background-position:right top;

-}

-

-

-.cautiontitle, .recommendationtitle, .syntaxtitle, .tiptitle, .notetitle, 

-.dangertitle, .fastpathtitle, .importanttitle, .remembertitle, .restrictiontitle 

-	{text-transform:  lowercase;}

-.cautiontitle:first-letter, .recommendationtitle:first-letter, .syntaxtitle:first-letter, .tiptitle:first-letter, .notetitle:first-letter,

-.dangertitle:first-letter, .fastpathtitle:first-letter, .importanttitle:first-letter, .remembertitle:first-letter, .restrictiontitle:first-letter, 

-.limitationstitle:first-letter /*IDDCKMODVDC-188*/

-	{text-transform:  uppercase;}

-

-

-.remembertitle {background-image:url('../images/recommendation.gif');} 

-[lang="ar-sa"] .remembertitle, [lang="fa-ir"] .remembertitle, [lang="he-il"] .remembertitle {background-image:url('../images/recommendation-rtl.gif');}

-.remembertitle:lang(ar), .remembertitle:lang(fa), .remembertitle:lang(he), .remembertitle:lang(ps), .remembertitle:lang(ur) {background-image:url('../images/recommendation-rtl.gif');}

-

-.restrictiontitle {background-image:url('../images/caution.gif');} 

-[lang="ar-sa"] .restrictiontitle, [lang="fa-ir"] .restrictiontitle, [lang="he-il"] .restrictiontitle {background-image:url('../images/caution-rtl.gif');}

-.restrictiontitle:lang(ar), .restrictiontitle:lang(fa) , .restrictiontitle:lang(he), .restrictiontitle:lang(ps), .restrictiontitle:lang(ur) {background-image:url('../images/caution-rtl.gif');}

-

-.notetitle {background-image:url('../images/note.gif');}

-[lang="ar-sa"] .notetitle, [lang="fa-ir"] .notetitle, [lang="he-il"] .notetitle {background-image:url('../images/note-rtl.gif');} 

-.notetitle:lang(ar), .notetitle:lang(fa), .notetitle:lang(he), .notetitle:lang(ps), .notetitle:lang(ur) {background-image:url('../images/note-rtl.gif');}

-

-.cautiontitle {background-image:url('../images/caution.gif');}

-[lang="ar-sa"] .cautiontitle, [lang="fa-ir"] .cautiontitle, [lang="he-il"] .cautiontitle {background-image:url('../images/caution-rtl.gif');} 

-.cautiontitle:lang(ar), .cautiontitle:lang(fa), .cautiontitle:lang(he), .cautiontitle:lang(ps), .cautiontitle:lang(ur) {background-image:url('../images/caution-rtl.gif');}

-

-.recommendationtitle {background-image:url('../images/recommendation.gif');}

-[lang="ar-sa"] .recommendationtitle, [lang="fa-ir"] .recommendationtitle, [lang="he-il"] .recommendationtitle {background-image:url('../images/recommendation-rtl.gif');}

-.recommendationtitle:lang(ar), .recommendationtitle:lang(fa), .recommendationtitle:lang(he), .recommendationtitle:lang(ps), .recommendationtitle:lang(ur) {background-image:url('../images/recommendation-rtl.gif');}

-

-.syntaxtitle {background-image:url('../images/syntax.gif');}

-[lang="ar-sa"] .syntaxtitle, [lang="fa-ir"] .syntaxtitle, [lang="he-il"] .syntaxtitle {background-image:url('../images/syntax-rtl.gif');}

-.syntaxtitle:lang(ar), .syntaxtitle:lang(fa), .syntaxtitle:lang(he), .syntaxtitle:lang(ps), .syntaxtitle:lang(ur) {background-image:url('../images/syntax-rtl.gif');}

-

-.tiptitle {background-image:url('../images/recommendation.gif');}

-[lang="ar-sa"] .tiptitle, [lang="fa-ir"] .tiptitle, [lang="he-il"] .tiptitle {background-image:url('../images/recommendation-rtl.gif');}

-.tiptitle:lang(ar), .tiptitle:lang(fa), .tiptitle:lang(he), .tiptitle:lang(ps), .tiptitle:lang(ur) {background-image:url('../images/recommendation-rtl.gif');}

-

-.dangertitle {background-image:url('../images/caution.gif');}

-[lang="ar-sa"] .dangertitle, [lang="fa-ir"] .dangertitle, [lang="he-il"] .dangertitle {background-image:url('../images/caution-rtl.gif');}

-.dangertitle:lang(ar), .dangertitle:lang(fa), .dangertitle:lang(he), .dangertitle:lang(ps), .dangertitle:lang(ur) {background-image:url('../images/caution-rtl.gif');}

-

-.example h2.sectiontitle {background-image:url('../images/example.gif');}

-[lang="ar-sa"] .example h2.sectiontitle, [lang="fa-ir"] .example h2.sectiontitle, [lang="he-il"] .example h2.sectiontitle {background-image:url('../images/example-rtl.gif');}

-.example h2.sectiontitle:lang(ar), .example h2.sectiontitle:lang(fa), .example h2.sectiontitle:lang(he), .example h2.sectiontitle:lang(ps), .example h2.sectiontitle:lang(ur) {background-image:url('../images/example-rtl.gif');}

-

-.exampletitle {background-image:url('../images/example.gif');}

-[lang="ar-sa"] .exampletitle, [lang="fa-ir"] .exampletitle, [lang="he-il"] .exampletitle {background-image:url('../images/example-rtl.gif');}

-.exampletitle:lang(ar), .exampletitle:lang(fa), .exampletitle:lang(he), .exampletitle:lang(ps), .exampletitle:lang(ur) {background-image:url('../images/example-rtl.gif');}

-

-.sourcecodeblocktitle {background-image:url('../images/syntax.gif');}

-[lang="ar-sa"] .sourcecodeblocktitle, [lang="fa-ir"] .sourcecodeblocktitle, [lang="he-il"] .sourcecodeblocktitle {background-image:url('../images/syntax-rtl.gif');}

-.sourcecodeblocktitle:lang(ar), .sourcecodeblocktitle:lang(fa), .sourcecodeblocktitle:lang(he), .sourcecodeblocktitle:lang(ps), .sourcecodeblocktitle:lang(ur) {background-image:url('../images/syntax-rtl.gif');}

-

-.outputcodeblocktitle {background-image:url('../images/syntax.gif');}

-[lang="ar-sa"] .outputcodeblocktitle, [lang="fa-ir"] .outputcodeblocktitle, [lang="he-il"] .outputcodeblocktitle {background-image:url('../images/syntax-rtl.gif');}

-.outputcodeblocktitle:lang(ar), .outputcodeblocktitle:lang(fa), .outputcodeblocktitle:lang(he), .outputcodeblocktitle:lang(ps), .outputcodeblocktitle:lang(ur) {background-image:url('../images/syntax-rtl.gif');}

-

-.samplecodetitle {background-image:url('../images/syntax.gif');}

-[lang="ar-sa"] .samplecodetitle, [lang="fa-ir"] .samplecodetitle, [lang="he-il"] .samplecodetitle {background-image:url('../images/syntax-rtl.gif');} 

-.samplecodetitle:lang(ar), .samplecodetitle:lang(fa), .samplecodetitle:lang(he), .samplecodetitle:lang(ps), .samplecodetitle:lang(ur) {background-image:url('../images/syntax-rtl.gif');}

-

-.codesyntaxtitle {background-image:url('../images/syntax.gif');}

-[lang="ar-sa"] .codesyntaxtitle, [lang="fa-ir"] .codesyntaxtitle, [lang="he-il"] .codesyntaxtitle {background-image:url('../images/syntax-rtl.gif');}

-.codesyntaxtitle:lang(ar), .codesyntaxtitle:lang(fa), .codesyntaxtitle:lang(he), .codesyntaxtitle:lang(ps), .codesyntaxtitle:lang(ur) {background-image:url('../images/syntax-rtl.gif');}

-

-.othertitle {background-image:url('../images/note.gif');}

-[lang="ar-sa"] .othertitle, [lang="fa-ir"] .othertitle, [lang="he-il"] .othertitle {background-image:url('../images/note-rtl.gif');}

-.othertitle:lang(ar), .othertitle:lang(fa), .othertitle:lang(he), .othertitle:lang(ps), .othertitle:lang(ur) {background-image:url('../images/note-rtl.gif');}

-

-.limitationstitle {background-image:url('../images/recommendation.gif');}

-[lang="ar-sa"] .limitationstitle, [lang="fa-ir"] .limitationstitle, [lang="he-il"] .limitationstitle {background-image:url('../images/recommendation-rtl.gif');}

-.limitationstitle:lang(ar), .limitationstitle:lang(fa), .limitationstitle:lang(he), .limitationstitle:lang(ps), .limitationstitle:lang(ur) {background-image:url('../images/recommendation-rtl.gif');}

-

-.attentiontitle {background-image:url('../images/caution.gif');}

-[lang="ar-sa"] .attentiontitle, [lang="fa-ir"] .attentiontitle, [lang="he-il"] .attentiontitle {background-image:url('../images/caution-rtl.gif');}

-.attentiontitle:lang(ar), .attentiontitle:lang(fa), .attentiontitle:lang(he), .attentiontitle:lang(ps), .attentiontitle:lang(ur) {background-image:url('../images/caution-rtl.gif');}

-

-.warningtitle {background-image:url('../images/caution.gif');}

-[lang="ar-sa"] .warningtitle, [lang="fa-ir"] .warningtitle, [lang="he-il"] .warningtitle {background-image:url('../images/caution-rtl.gif');} 

-.warningtitle:lang(ar), .warningtitle:lang(fa), .warningtitle:lang(he), .warningtitle:lang(ps), .warningtitle:lang(ur) {background-image:url('../images/caution-rtl.gif');}

-

-

-.fastpathtitle {background-image:url('../images/note.gif');}

-[lang="ar-sa"] .fastpathtitle, [lang="fa-ir"] .fastpathtitle, [lang="he-il"] .fastpathtitle {background-image:url('../images/note-rtl.gif');}

-.fastpathtitle:lang(ar), .fastpathtitle:lang(fa), .fastpathtitle:lang(he), .fastpathtitle:lang(ps), .fastpathtitle:lang(ur) {background-image:url('../images/note-rtl.gif');}

-

-.importanttitle {background-image:url('../images/note.gif');}

-[lang="ar-sa"] .importanttitle, [lang="fa-ir"] .importanttitle, [lang="he-il"] .importanttitle  {background-image:url('../images/note-rtl.gif');}

-.importanttitle:lang(ar), .importanttitle:lang(fa), .importanttitle:lang(he), .importanttitle:lang(ps), .importanttitle:lang(ur) {background-image:url('../images/note-rtl.gif');}

-

-.authorexampletitle {

-    font-weight:bold;

-}

-

-.refsyn .sectiontitle{

-	color: #666;

-	font-size: 90%;

-	font-weight: bold;

-	margin: 1.5em 0 0.5em 0;

-	page-break-after: avoid;

-	page-break-inside: avoid

-}

-

-table

-{

-	border-collapse: collapse;

-	border-spacing: 0;

-	font-size: 90%;

-	margin: 0.5em 0;

-	table-layout: fixed;

-	border-spacing: 0px;

-}

-

-.tablecap

-{

-	color: #666;

-	font-family: Arial, Helvetica, sans-serif;

-	font-size: 110%;

-	page-break-after: avoid;

-	page-break-inside: avoid;

-	font-weight: normal !important; 

-	white-space: nowrap;

-}

-

-.tbltitle 

-{

-	font-size: 90%;

-	margin-bottom: -0.5em;

-}

-

-tr{

-	background-color: #FFFFFF;

-	color: inherit;

-	page-break-inside: avoid;

-}

-

-tr:hover{

-	background-color: #F6F6F6;

-}

-

-th{

-	background-color: #999999;

-	caption-side: top;

-	color: #FFFFFF;

-	font-weight: bold;

-	padding: 2px 4px 2px 5px;

-	page-break-after: avoid;

-	page-break-inside: avoid;

-	text-align: left;

-	border: 1px solid #D6D7D6;

-	word-wrap: break-word;

-}

-[lang="ar-sa"] th, [lang="fa-ir"] th, [lang="he-il"] th {

-  padding: 2px 5px 2px 4px;

-  text-align: right;

-}

-th:lang(ar), th:lang(fa), th:lang(he), th:lang(ps), th:lang(ur) {

-  padding: 2px 5px 2px 4px;

-  text-align: right;

-}

-

-th p {

-    color:inherit;

-}

-

-td{

-	border: 1px solid #D6D7D6;

-	padding: 1px 4px 1px 5px;

-	vertical-align: top;

-	word-wrap: break-word;

-}

-[lang="ar-sa"] th, [lang="fa-ir"] th, [lang="he-il"] th {

-    padding: 1px 5px 1px 4px;

-}

-th:lang(ar), th:lang(fa), th:lang(he), th:lang(ps), th:lang(ur) {

-    padding: 1px 5px 1px 4px;

-}

-

-.background_yellow{

-	background-color:#F9C000;

-	color:#222222

-}

-

-.background_blue{

-	background-color:#334D7D;

-	color:#FFFFFF}

-

-.background_green{

-	background-color:#93D24B;

-	color:#222222

-}

-

-.image, .icon{

-	margin:0; 

-}

-

-p > .image, .icon {margin:0;}

-

-.figcap{

-	font-size: 90%;

-	padding: 1px 4px 1px 5px;

-	page-break-inside: avoid;

-}

-[lang="ar-sa"] th, [lang="fa-ir"] th, [lang="he-il"] th {

-    padding: 1px 5px 1px 4px;

-}

-th:lang(ar), th:lang(fa), th:lang(he), th:lang(ps), th:lang(ur) {

-    padding: 1px 5px 1px 4px;

-}

-

-.alias

-{

-	font-family: "Courier New",Courier,monospace;

-	font-style: normal;

-	font-weight: normal;

-	text-transform: lowercase; 

-}

-[lang="ar-sa"] .alias {font-family: "Traditional Arabic", Arial Unicode MS, Courier, monospace !important;}

-.alias:lang(ar) {font-family: "Traditional Arabic", Arial Unicode MS, Courier, monospace !important;}

-[lang="ja-jp"] .alias {font-family: MS Gothic, "Courier New", Courier, monospace !important;}

-.alias:lang(ja) {font-family: MS Gothic, "Courier New", Courier, monospace !important;}

-[lang="ko-kr"] .alias {font-family: GungsuhChe, "Courier New", Courier, monospace !important;}

-.alias:lang(ko) {font-family: GungsuhChe, "Courier New", Courier, monospace !important;}

-[lang="zh-cn"] .alias {font-family: SimSun, "Courier New", Courier, monospace !important;}

-[lang="zh-tw"] .alias {font-family: SimSun, "Courier New", Courier, monospace !important;}

-.alias:lang(zh) {font-family: SimSun, "Courier New", Courier, monospace !important;}

-

-.keyword, .term {

-	font-style: italic; 

-}

-

-.refsyn .keyword{

-	font-style: normal;

-}

-

-em, .emphasis

-{

-	font-weight: bold;

-}

-

-a {

-   color: #0076CB;

-   text-decoration: none;}

-

-body.sap_bluecrystal a {

-    color:rgb(0,103,158);

-}

-

-a:hover {

-  border-bottom: 1px solid #0076CB;

-}

-

-body.sap_bluecrystal a:hover {

-     border-bottom: 1px solid #00679E;

-}

-

-.codeph, pre 

-{

-	font-family: "Courier New",Courier,monospace !important;

-}

-[lang="ar-sa"] .codeph, [lang="ar-sa"] pre {font-family: "Traditional Arabic", Arial Unicode MS, Courier, monospace !important;}

-.codeph:lang(ar), pre:lang(ar) {font-family: "Traditional Arabic", Arial Unicode MS, Courier, monospace !important;}

-[lang="ja-jp"] .codeph, [lang="ja-jp"] pre {font-family: MS Gothic, "Courier New", Courier, monospace !important;}

-.codeph:lang(ja), pre:lang(ja) {font-family: MS Gothic, "Courier New", Courier, monospace !important;}

-[lang="ko-kr"] .codeph, [lang="ja-jp"] pre {font-family: GungsuhChe, "Courier New", Courier, monospace !important;} 

-.codeph:lang(ko), pre:lang(ko) {font-family: GungsuhChe, "Courier New", Courier, monospace !important;}

-[lang="zh-cn"] .codeph, [lang="zh-cn"] pre {font-family: SimSun, "Courier New", Courier, monospace !important;}

-[lang="zh-tw"] .codeph, [lang="zh-tw"] pre {font-family: SimSun, "Courier New", Courier, monospace !important;}

-.codeph:lang(zh), pre:lang(zh) {font-family: SimSun, "Courier New", Courier, monospace !important;}

-

-.div_pre_codeblock{

-	overflow: auto;

-}

-

-.codeblock {

-	background-color: Gainsboro;

-	padding-left: 2px;

-	padding-right: 2px;

-	font-family: "Courier New",Courier,monospace;

-	overflow: auto;

-}

-[lang="ar-sa"] .codeblock {font-family: "Traditional Arabic", Arial Unicode MS, Courier, monospace !important;}

-.codeblock:lang(ar) {font-family: "Traditional Arabic", Arial Unicode MS, Courier, monospace !important;}

-[lang="ja-jp"] .codeblock {font-family: MS Gothic, "Courier New", Courier, monospace !important;}

-.codeblock:lang(ja) {font-family: MS Gothic, "Courier New", Courier, monospace !important;}

-[lang="ko-kr"] .codeblock {font-family: GungsuhChe, "Courier New", Courier, monospace !important;}

-.codeblock:lang(ko) {font-family: GungsuhChe, "Courier New", Courier, monospace !important;}

-[lang="zh-cn"] .codeblock {font-family: SimSun, "Courier New", Courier, monospace !important;}

-[lang="zh-tw"] .codeblock {font-family: SimSun, "Courier New", Courier, monospace !important;}

-.codeblock:lang(zh) {font-family: SimSun, "Courier New", Courier, monospace !important;}

-

-.refsyn .codeblock{

-	background-color: #FFFFFF;

-}

-

-.sap-technical-name {

-       font-family: "Courier New",Courier,monospace !important;

-}

-[lang="ar-sa"] .sap-technical-name {font-family: "Traditional Arabic", Arial Unicode MS, Courier, monospace !important;}

-.sap-technical-name:lang(ar) {font-family: "Traditional Arabic", Arial Unicode MS, Courier, monospace !important;}

-[lang="ja-jp"] .sap-technical-name {font-family: MS Gothic, "Courier New", Courier, monospace !important;}

-.sap-technical-name:lang(ja) {font-family: MS Gothic, "Courier New", Courier, monospace !important;}

-[lang="ko-kr"] .sap-technical-name {font-family: GungsuhChe, "Courier New", Courier, monospace !important;}

-.sap-technical-name:lang(ko) {font-family: GungsuhChe, "Courier New", Courier, monospace !important;}

-[lang="zh-cn"] .sap-technical-name {font-family: SimSun, "Courier New", Courier, monospace !important;}

-[lang="zh-tw"] .sap-technical-name {font-family: SimSun, "Courier New", Courier, monospace !important;}

-.sap-technical-name:lang(zh) {font-family: SimSun, "Courier New", Courier, monospace !important;}

-

-.key {

-	border: 1px solid #BBBBBB;

-	bottom: 2px;

-	color: #333333;

-	font-family: "Courier New",Courier,monospace;

-	font-size: 85%;

-	font-weight: bold;

-	padding: 1px 4px;

-	position: relative;

-	white-space: nowrap;

-}

-[lang="ar-sa"] .key {

-    font-family: "Traditional Arabic", Arial Unicode MS, Courier, monospace;

-    padding: 1px 0px;

-    position: static;

-}

-.key:lang(ar) {font-family: "Traditional Arabic", Arial Unicode MS, Courier, monospace;}

-[lang="ja-jp"] .key {font-family: MS Gothic, "Courier New", Courier, monospace;}

-.key:lang(ja) {font-family: MS Gothic, "Courier New", Courier, monospace;}

-[lang="ko-kr"] .key {font-family: GungsuhChe, "Courier New", Courier, monospace;}

-.key:lang(ko) {font-family: GungsuhChe, "Courier New", Courier, monospace;}

-[lang="zh-cn"] .key {font-family: SimSun, "Courier New", Courier, monospace;}

-[lang="zh-tw"] .key {font-family: SimSun, "Courier New", Courier, monospace;}

-.key:lang(zh) {font-family: SimSun, "Courier New", Courier, monospace;}

-[lang="fa-ir"] .key, [lang="he-il"] .key  {

-    padding: 1px 0px;

-    position: static;

-}

-.key:lang(fa), .key:lang(he), .key:lang(ps), .key:lang(ur)  {

-    padding: 1px 4px;

-    position: relative;

-}

-

-.wintitle, .uilabel, .uinolabel, .uicontrol {

-	color: #003283;

-	font-style: italic;

-	font-weight: normal; 

-}

-

-.varname, .userinput {

-	color: #45157E;

-	font-family: "Courier New", Courier, monospace;

-	font-weight: bold; 

-}

-[lang="ar-sa"] .varname, [lang="ar-sa"] .userinput {font-family: "Traditional Arabic", Arial Unicode MS, Courier, monospace;}

-.varname:lang(ar), .userinput:lang(ar) {font-family: "Traditional Arabic", Arial Unicode MS, Courier, monospace;}

-[lang="ja-jp"] .varname, [lang="ja-jp"] .userinput {font-family: MS Gothic, "Courier New", Courier, monospace;}

-.varname:lang(ja), .userinput:lang(ja) {font-family: MS Gothic, "Courier New", Courier, monospace;}

-[lang="ko-kr"] .varname, [lang="ko-kr"] .userinput {font-family: GungsuhChe, "Courier New", Courier, monospace;}

-.varname:lang(ko), .userinput:lang(ko) {font-family: GungsuhChe, "Courier New", Courier, monospace;}

-[lang="zh-cn"] .varname, [lang="zh-cn"] .userinput {font-family: SimSun, "Courier New", Courier, monospace;}

-[lang="zh-tw"] .varname, [lang="zh-tw"] .userinput {font-family: SimSun, "Courier New", Courier, monospace;}

-.varname:lang(zh), .userinput:lang(zh) {font-family: SimSun, "Courier New", Courier, monospace;}

-

-.refsyn .userinput {

-	font-weight: normal;

-	font-style: italic;

-	color: #333;

-}

-

-.apiname, .parmname, .filepath {

-	 font-family: "Courier New", Courier, monospace;

-	font-style: normal;

-	font-weight: normal; 

-}

-[lang="ar-sa"] .apiname, [lang="ar-sa"] .parmname, [lang="ar-sa"] .filepath {font-family: "Traditional Arabic", Arial Unicode MS, Courier, monospace;} 

-.apiname:lang(ar), .parmname:lang(ar), .filepath:lang(ar) {font-family: "Traditional Arabic", Arial Unicode MS, Courier, monospace;}

-[lang="ja-jp"] .apiname, [lang="ja-jp"] .parmname, [lang="ja-jp"] .filepath {font-family: MS Gothic, "Courier New", Courier, monospace;}

-.apiname:lang(ja), .parmname:lang(ja), .filepath:lang(ja) {font-family: MS Gothic, "Courier New", Courier, monospace;}

-[lang="ko-kr"] .apiname, [lang="ko-kr"] .parmname, [lang="ko-kr"] .filepath {font-family: GungsuhChe, "Courier New", Courier, monospace;}

-.apiname:lang(ko), .parmname:lang(ko), .filepath:lang(ko) {font-family: GungsuhChe, "Courier New", Courier, monospace;}

-[lang="zh-cn"] .apiname, [lang="zh-cn"] .parmname, [lang="zh-cn"] .filepath,

-[lang="zh-tw"] .apiname, [lang="zh-tw"] .parmname, [lang="zh-tw"] .filepath {font-family: SimSun, "Courier New", Courier, monospace;}

-.apiname:lang(zh), .parmname:lang(zh), .filepath:lang(zh) {font-family: SimSun, "Courier New", Courier, monospace;}

-

-.systemoutput {

-	font-size: 13px;

-}

-

-.menucascade{}

-

-.menucascade_start {

-	background-image: url('../images/navstart.gif');

-	background-repeat: no-repeat;

-	background-position: left top;

-	padding-left:15px;

-	margin-right:-7px;

-	}

-[lang="ar-sa"] .menucascade_start, [lang="fa-ir"] .menucascade_start, [lang="he-il"] .menucascade_start {

-    background-image: url('../images/navstart-rtl.gif');

-    background-position:  right top;

-    padding-right:15px;

-    margin-left:-7px;

-    }	

-.menucascade_start:lang(ar), .menucascade_start:lang(fa), .menucascade_start:lang(he), .menucascade_start:lang(ps), .menucascade_start:lang(ur) {

-	background-image: url('../images/navstart-rtl.gif');

-	background-position:  right top;

-	padding-right:15px;

-	margin-left:-7px;

-	}

-

-.menucascade_end {

-	background-image: url('../images/navend.gif');

-	background-repeat: no-repeat;

-	background-position: right top;

-	padding-left:5px;

-	}

-[lang="ar-sa"] .menucascade_end, [lang="fa-ir"] .menucascade_end, [lang="he-il"] .menucascade_end:lang(he) {

-    background-image: url('../images/navend-rtl.gif');

-    background-position: left top;

-    padding-right:5px;

-    }

-.menucascade_end:lang(ar), .menucascade_end:lang(fa), .menucascade_end:lang(he), .menucascade_end:lang(ps), .menucascade_end:lang(ur) {

-	background-image: url('../images/navend-rtl.gif');

-	background-position: left top;

-	padding-right:5px;

-	}

-

-.menucascade_separator {

-	background-image: url('../images/navstep.gif');

-	background-repeat: no-repeat;

-	margin-left: 0.5em;

-	padding-right: 0.5em;

-	}

-[lang="ar-sa"] .menucascade_separator, [lang="fa-ir"] .menucascade_separator, [lang="he-il"] .menucascade_separator {

-	background-image: url('../images/navstep-rtl.gif');

-	margin-right: 0.5em;

-	padding-left: 0.5em;

-	}

-.menucascade_separator:lang(ar), .menucascade_separator:lang(fa), .menucascade_separator:lang(he), .menucascade_separator:lang(ps), .menucascade_separator:lang(ur) {

-    background-image: url('../images/navstep-rtl.gif');

-    margin-right: 0.5em;

-    padding-left: 0.5em;

-    }

-

-.section_hide{

-	display:none;

-}

-

-.sectionexpand{

-	background-image: url('../images/arrowdn.gif');

-	background-repeat: no-repeat;

-	background-position: left;

-	padding-left: 18px;

-	display: block;

-}

-/* TODO continu to review RTL support */

-/*

- * [lang="ar-sa"] .sectionexpand, [lang="fa-ir"] .sectionexpand, [lang="he-il"] .sectionexpand  {

- *     background-image: url('../images/arrowdn.gif');

- *     background-position: right;

- *     padding-right: 18px;

- * }

- * .sectionexpand:lang(ar), .sectionexpand:lang(fa), .sectionexpand:lang(he), .sectionexpand:lang(ps), .sectionexpand:lang(ur)  {

- *     background-image: url('../images/arrowdn.gif');

- *     background-position: right;

- *     padding-right: 18px;

- * }

- */

-/* TODO font handling */

-

-.sectioncontract{

-	background-image: url('../images/arrowrt.gif');

-	background-repeat: no-repeat;

-	background-position: left;

-	padding-left: 18px;

-	display: block;

-}

-

-.codeblockexpand{

-	background-image: url('../images/arrowdn.gif');

-	background-repeat: no-repeat;

-	background-position: left;

-	padding-left: 18px;

-	display: block;

-}

-

-.codeblockcontract{

-	background-image: url('../images/arrowrt.gif');

-	background-repeat: no-repeat;

-	background-position: left;

-	padding-left: 18px;

-	display: block;

-}

-

-.video-links-disclaimer-label {

-    font-weight:bold;

-}

-

-.iframe-wrapper {

-    margin-top:20px;

-    

-}

-iframe {

-    max-width:95%;

-}

-

-

-/********************************************************************************** */	

-/********************************************************************************** */	

-/* HEADER/FOOTER STYLES */

-#header.theme-e {

-	background-color:#DDDDDD;

-	height:46px;

-	position:relative;

-	z-index:100;

-	margin-right: -20px;

-	margin-left: -50px;

-

-	

-

-}

-#header.theme-e #txtSearchTerms {

-	height:20px;

-	width:100%;

-    padding-left: 5px;

-

-}

-

-#header.theme-e #searchBtn {

-	width: 20px; 

-	height:20px;

-	vertical-align:top;

-	background: white url('../images/search_grey_16.png') no-repeat;

-	background-size:20px 20px;

-	position:absolute;

-	border:0;

-	right:0px;

-	top:3px;

-	}

-

-#header.theme-e .search {

-    border-radius: 0;            

-    -moz-border-radius: 0;       

-    -khtml-border-radius: 0;    

-    -webkit-border-radius: 0;

-	height:20px;

-	margin-top:10px;

-	border: 0px solid #BFBFBF;

-	position:absolute;

-	left:20px;

-	right:20px;

-}

-

-#footer.theme-e {

-   margin-top:100px;

-  font-size:12pt;

-  font-weight:bold;

-   height:60px;

-   line-height:60px;

-}

-

-#footer.theme-e .icon {

-    text-decoration: none;

-    border:0;

-    top:10px;

-    position:relative;

-    padding-right: 10px;

-}

-

-#custom-footerSpacer {

-	height: 30px;

-}

-

-#custom-footer a, .datestamp {

-	color: #333;

-	margin: 0 10px 0 10px;

-	text-decoration: none;

-	font-weight: bold;

-}

-

-#custom-header {

-	margin-top: 10px;

-}

-

-#custom-header a{

-	margin: 0 5px;

-}

-

-/********************************************************************************** */	

-/********************************************************************************** */	

-/* NAVIGATION TREE STYLES */

-.KWLang-EN{

-  background-image: none;

-  border-right: 3px solid #DDDDDD;

-  font-family: Arial, Helvetica, sans-serif;

-  margin: 0;

-  padding: 0px 20px;

-}

-

-.KWLang-EN a {

-  background-color: inherit;

-  color: #0076CB;

-  font-size: 1.2em;

-  font-style: normal;

-  font-weight: normal;

-  text-decoration: none;

-}

-

-.KWLang-EN.sap_bluecrystal a {

-    color:rgb(0,103,158);    

-}

-

-.KWLang-EN a:visited {

-  background-color: inherit;

-  color: #0076CB;

-}

-

-.KWLang-EN a:focus {

-  background-color: inherit;

-  color: #0076CB;

-}

-

-.KWLang-EN a:hover {

-  background-color: inherit;

-  color: #0076CB;

-  padding-bottom: 1px;

-  border-bottom: 0;

-  text-decoration: underline; 

-}

-

-.KWLang-EN a:active {

-  background-color: inherit;

-  color: #0076CB;

-}

-

-

-.KWLang-EN.sap_bluecrystal a:visited, 

-.KWLang-EN.sap_bluecrystal a:focus,

-.KWLang-EN.sap_bluecrystal a:hover,

-.KWLang-EN.sap_bluecrystal a:active{

-    color:rgb(0,103,158);  

-    text-decoration:none;

-}

-

-

-.KWLang-EN a[href=""]:focus,

-.KWLang-EN a[href=""]:hover,

-.KWLang-EN a[href=""]:active {

-  border-bottom: none;

-}

-

-.KWLang-EN img {

-  border: none;

-  margin-right: 3px;

-}

-

-.KWLang-EN table {

-  border-collapse: collapse;

-  border-spacing: 0px; /* Netscape 6.0 only */

-  width: 100%;

-  border-left: 0px;

-}

-.KWLang-EN td {

-  border-top: 1px solid #DDDDDD;

-  border-bottom: 1px solid #DDDDDD;

-  padding-top: 8px;

-  padding-bottom: 8px;

-  border-left: 0px;

-  border-right: 0px;

-}

-

-.KWLang-EN td.treeLevel0 {

-  -x-text-indent: -36px;

-  -x-padding-left: 36px;

-  text-indent: -21px;

-  padding-left: 21px;

-}

-

-/* .KWLang-he td.treeLevel0 { padding-left: 0; -x-padding-right: 36px; padding-right: 21px; } */

-

-.KWLang-EN td.treeLevel1 {

-  -x-text-indent: -47px;

-  -x-padding-left: 47px;

-  text-indent: -33px;

-  padding-left: 33px;

-}

-

-/* .KWLang-he td.treeLevel1 { padding-left: 0; -x-padding-right: 47px; padding-right: 33px; } */

-

-.KWLang-EN td.treeLevel2 {

-  -x-text-indent: -60px;

-  -x-padding-left: 60px;

-  text-indent: -45px;

-  padding-left: 45px;

-}

-/* .KWLang-he td.treeLevel2 { padding-left: 0; -x-padding-right: 60px; padding-right: 45px; } */

-

-.KWLang-EN td.treeLevel3 {

-  -x-text-indent: -72px;

-  -x-padding-left: 72px;

-  text-indent: -57px;

-  padding-left: 57px;

-}

-

-/* .KWLang-he td.treeLevel3 { padding-left: 0; -x-padding-right: 72px; padding-right: 57px; } */

-

-.KWLang-EN td.treeLevel4 {

-  -x-text-indent: -84px;

-  -x-padding-left: 84px;

-  text-indent: -69px;

-  padding-left: 69px;

-}

-

-/* .KWLang-he td.treeLevel4 { padding-left: 0; -x-padding-right: 84px; padding-right: 69px; } */

-

-.KWLang-EN td.treeLevel5 {

-  -x-text-indent: -96px;

-  -x-padding-left: 96px;

-  text-indent: -81px;

-  padding-left: 81px;

-}

-

-/* .KWLang-he td.treeLevel5 { padding-left: 0; -x-padding-right: 96px; padding-right: 81px; } */

-

-.KWLang-EN td.treeLevel6 {

-  -x-text-indent: -108px;

-  -x-padding-left: 108px;

-  text-indent: -93px;

-  padding-left: 93px;

-}

-/* .KWLang-he td.treeLevel6 { padding-left: 0; -x-padding-right: 108px; padding-right: 93px; } */

-

-.KWLang-EN td.treeLevel7 {

-  -x-text-indent: -120px;

-  -x-padding-left: 120px;

-  text-indent: -105px;

-  padding-left: 105px;

-}

-

-/* .KWLang-he td.treeLevel7 { padding-left: 0; -x-padding-right: 120px; padding-right: 105px; } */

-

-.KWLang-EN td.treeLevel8 {

-  -x-text-indent: -132px;

-  -x-padding-left: 132px;

-  text-indent: -117px;

-  padding-left: 117px;

-}

-

-/* .KWLang-he td.treeLevel8 { padding-left: 0; -x-padding-right: 132px; padding-right: 117px; } */

-

-.KWLang-EN td.treeLevel9 {

-  -x-text-indent: -144px;

-  -x-padding-left: 144px;

-  text-indent: -129px;

-  padding-left: 129px;

-}

-

-/* .KWLang-he td.treeLevel9 { padding-left: 0; -x-padding-right: 144px; padding-right: 129px; } */

-

-.KWLang-EN td.selected {

-    background-color: #F2F2F2;

-}

-

-.KWLang-EN.sap_bluecrystal td.selected {

-    background-color:#E5F2F9;

-}

-/********************************************************************************** */	

-/********************************************************************************** */	

-/* WELCOME TABLE STYLES */

-

-.welcometable{

-	border: none;

-	width:700px;  

-	margin-right: 15px; 

-	margin-top: 43px;

-	border-collapse:separate;

-	}

-

-.welcometable td {

-  	padding-left:15px;

-	border-width: 0px;

-}

-

-.welcometable tr:nth-child(2n+1) td{

-	background-color: rgb(246, 246, 246);

-	vertical-align: middle;

-	font-size:10pt;

-	background-color: rgb(246,246,246);

-	background: -moz-linear-gradient(top, rgb(214,215,214) 0%, rgb(246,246,246) 5%); /* FF3.6+ */

-	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(214,215,214)), color-stop(5%,rgb(246,246,246))); /* Chrome,Safari4+ */

-	background: -webkit-linear-gradient(top, rgb(214,215,214) 0%,rgb(246,246,246) 5%); /* Chrome10+,Safari5.1+ */

-	background: -o-linear-gradient(top, rgb(214,215,214) 0%,rgb(246,246,246) 5%); /* Opera 11.10+ */

-	background: -ms-linear-gradient(top, rgb(214,215,214) 0%,rgb(246,246,246) 5%); /* IE10+ */

-	background: linear-gradient(to bottom, rgb(214,215,214) 0%,rgb(246,246,246) 5%); /* W3C */

-}

-

-.welcometable tr:nth-child(2n) td{

-	border-width:0;

-	padding-top:20px;

-	padding-bottom:8px;

-}

-

-.welcometable td:nth-child(2n+1){

-	padding-top:0;

-	padding-bottom:0;

-	width: 48px;

-	border-image-width:1;

-}

-

-.welcometable tr td:nth-child(2n){

-	border-right-width: 27px;

-	border-right-color: white;

-}

-

-.welcometable tr:hover {

-	background-color:#FFFFFF; 

-}

-

-/********************************************************************************** */	

-/********************************************************************************** */	

-/* SEARCH RESULT STYLES */

- 

- .searchItem {

-	margin-top: 5px;

-	padding-top: 0px;

-	padding-bottom: 10px;

-	text-align: top;

-	border-bottom-style:dotted;

-	border-bottom-width: 1px;

-	border-bottom-color: #000000;

-}

-.searchItem:hover {

-	background-color: #F6F6F6;

-}

-

-body.sap_bluecrystal .searchItem:hover {

-     background-color:#E5F2F9;

-}

-

-.shortdesclink {

-	margin-top: 10px;

-}

-

-.searchPageTitle {

-	font-size: 1.34em;

-	font-weight:bold;

-	border-bottom-style:solid;

-	border-bottom-width: 2px;

-	border-bottom-color: #007DC0;

-}

-

-.searchPageSectionTitle, .searchNoResults {

-	font-size: 1em;

-	font-weight:bold;

-	padding-bottom: 40px;

-	}

-

-.searchPageSpacer{

-	height:30px;

-	}

-

-.image_float_left {

-	float:left; 

-	margin-right:10px; 

-	margin-bottom:50px; 

-	}

-.theme-e #resultsheader {

-    padding-top:12px;

-    margin-left: -20px;

-}

-.theme-e #results {

-    margin-left: -20px; 

-}

-/********************************************************************************** */	

-/********************************************************************************** */	

-/* DATA TABLE CSS*/

-

-/*

- * Table

- */

-table.dataTable {

-	margin: 0 auto;

-	clear: both;

-	table-layout: auto;

-	width: 100% !important;

-}

-

-.datatable-scroll{

-	overflow-x: auto;

-}

-table.dataTable thead th {

-	padding: 3px 18px 3px 10px;

-	border-bottom: 1px solid black;

-	font-weight: bold;

-	cursor: pointer;

-	color: #333;

-	*cursor: hand;

-	background-color: white;

-}

-

-table.dataTable tfoot th {

-	padding: 3px 18px 3px 10px;

-	border-top: 1px solid black;

-	font-weight: bold;

-	background-color: transparent;

-	color: #333;

-}

-

-table.dataTable td {

-	padding: 3px 10px;

-}

-

-table.dataTable td.center,

-table.dataTable td.dataTables_empty {

-	text-align: center;

-}

-

-table.dataTable tr.odd { background-color: #E2E4FF; }

-table.dataTable tr.even { background-color: white; }

-

-table.dataTable tr.odd td.sorting_1 { background-color: #D3D6FF; }

-table.dataTable tr.odd td.sorting_2 { background-color: #DADCFF; }

-table.dataTable tr.odd td.sorting_3 { background-color: #E0E2FF; }

-table.dataTable tr.even td.sorting_1 { background-color: #EAEBFF; }

-table.dataTable tr.even td.sorting_2 { background-color: #F2F3FF; }

-table.dataTable tr.even td.sorting_3 { background-color: #F9F9FF; }

-

-

-/*

- * Table wrapper

- */

-.dataTables_wrapper {

-	position: relative;

-	clear: both;

-	*zoom: 1;

-	width: 100%;

-}

-

-

-/*

- * Page length menu

- */

-.dataTables_length {

-	float: left;

-}

-

-

-/*

- * Filter

- */

-.dataTables_filter {

-	text-align: center;

-}

-

-

-/*

- * Table information

- */

-.dataTables_info {

-	clear: both;

-	float: left;

-}

-

-

-/*

- * Pagination

- */

-.dataTables_paginate {

-	float: right;

-	text-align: right;

-}

-.dataTables_paginate:lang(ar), .dataTables_paginate:lang(fa), .dataTables_paginate:lang(he), .dataTables_paginate:lang(ps), .dataTables_paginate:lang(ur) {

-  float: left;

-  text-align: left;

-}

-

-/* Two button pagination - previous / next */

-.paginate_disabled_previous,

-.paginate_enabled_previous,

-.paginate_disabled_next,

-.paginate_enabled_next {

-	height: 19px;

-	float: left;

-	cursor: pointer;

-	*cursor: hand;

-	color: #111 !important;

-}

-.paginate_disabled_previous:hover,

-.paginate_enabled_previous:hover,

-.paginate_disabled_next:hover,

-.paginate_enabled_next:hover {

-	text-decoration: none !important;

-}

-.paginate_disabled_previous:active,

-.paginate_enabled_previous:active,

-.paginate_disabled_next:active,

-.paginate_enabled_next:active {

-	outline: none;

-}

-

-.paginate_disabled_previous,

-.paginate_disabled_next {

-	color: #666 !important;

-}

-.paginate_disabled_previous,

-.paginate_enabled_previous {

-	padding-left: 23px;

-}

-.paginate_disabled_next,

-.paginate_enabled_next {

-	padding-right: 23px;

-	margin-left: 10px;

-}

-

-.paginate_enabled_previous { background: url('../images/back_enabled.png') no-repeat top left; }

-.paginate_enabled_previous:hover { background: url('../images/back_enabled_hover.png') no-repeat top left; }

-.paginate_disabled_previous { background: url('../images/back_disabled.png') no-repeat top left; }

-

-.paginate_enabled_next { background: url('../images/forward_enabled.png') no-repeat top right; }

-.paginate_enabled_next:hover { background: url('../images/forward_enabled_hover.png') no-repeat top right; }

-.paginate_disabled_next { background: url('../images/forward_disabled.png') no-repeat top right; }

-

-/* Full number pagination */

-.paging_full_numbers {

-	height: 22px;

-	line-height: 22px;

-}

-.paging_full_numbers a:active {

-	outline: none

-}

-.paging_full_numbers a:hover {

-	text-decoration: none;

-}

-

-.paging_full_numbers a.paginate_button,

-.paging_full_numbers a.paginate_active {

-	border: 1px solid #aaa;

-	-webkit-border-radius: 5px;

-	-moz-border-radius: 5px;

-	border-radius: 5px;

-	padding: 2px 5px;

-	margin: 0 3px;

-	cursor: pointer;

-	*cursor: hand;

-	color: #333 !important;

-}

-

-.paging_full_numbers a.paginate_button {

-	background-color: #ddd;

-}

-

-.paging_full_numbers a.paginate_button:hover {

-	background-color: #ccc;

-	text-decoration: none !important;

-}

-

-.paging_full_numbers a.paginate_active {

-	background-color: #99B3FF;

-}

-

-

-/*

- * Processing indicator

- */

-.dataTables_processing {

-	position: absolute;

-	top: 50%;

-	left: 50%;

-	width: 250px;

-	height: 30px;

-	margin-left: -125px;

-	margin-top: -15px;

-	padding: 14px 0 2px 0;

-	border: 1px solid #ddd;

-	text-align: center;

-	color: #999;

-	font-size: 14px;

-	background-color: white;

-}

-

-

-/*

- * Sorting

- */

-.sorting { background: url('../images/sort_both.png') no-repeat center right; }

-.sorting_asc { background: url('../images/sort_asc.png') no-repeat center right; }

-.sorting_desc { background: url('../images/sort_desc.png') no-repeat center right; }

-

-.sorting_asc_disabled { background: url('../images/sort_asc_disabled.png') no-repeat center right; }

-.sorting_desc_disabled { background: url('../images/sort_desc_disabled.png') no-repeat center right; }

- 

-table.dataTable thead th:active,

-table.dataTable thead td:active {

-	outline: none;

-}

-

-

-/*

- * Scrolling

- */

-.dataTables_scroll {

-	clear: both;

-}

-

-.dataTables_scrollBody {

-	*margin-top: -1px;

-	-webkit-overflow-scrolling: touch;

-}

-

-/*

- * Data table header/footer background

- */ 

- .table-top{

-	padding: 5px;

-	border-top-right-radius: 4px;

-	border-top-left-radius: 4px;

-	border: 1px solid rgb(170, 170, 170);

-	overflow: auto;

-	background: url("../images/ui-bg_highlight-soft_75_cccccc_1x100.png") repeat-x scroll 50% 50% rgb(204, 204, 204);

-	}

-	

-.table-bottom{

-	padding: 5px;

-	border-bottom-right-radius: 4px;

-	border-bottom-left-radius: 4px;

-	border: 1px solid rgb(170, 170, 170);

-	overflow: auto;

-	background: url("../images/ui-bg_highlight-soft_75_cccccc_1x100.png") repeat-x scroll 50% 50% rgb(204, 204, 204);

-	margin-bottom: 10px;

-	}

-

-

diff --git a/org.eclipse.ogee.help/html/028bcef958aa430e84a49cbc943b9709.html b/org.eclipse.ogee.help/html/028bcef958aa430e84a49cbc943b9709.html
deleted file mode 100644
index 674f105..0000000
--- a/org.eclipse.ogee.help/html/028bcef958aa430e84a49cbc943b9709.html
+++ /dev/null
@@ -1,50 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="Creating a project"/>
-<meta name="description" content="Creating a project"/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Creating a Project</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio028bcef958aa430e84a49cbc943b9709">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Creating a Project</h1>
-<div class="body taskbody"><p class="shortdesc">Creating a project </p>
-<div class="section context" id="loio028bcef958aa430e84a49cbc943b9709__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<p class="p">After the OData Perspective is selected as detailed in the <a class="xref" href="f4a962fc49d94c05b6e44ab9b5fd7a8c.html">Opening OData Perspective</a>, the next step is to create a
-				project. </p>
-
-			<p class="p">To create a project proceed as follows:</p>
-
-		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loio028bcef958aa430e84a49cbc943b9709__steps_ymg_j44_mj"><li class="li step stepexpand" id="loio028bcef958aa430e84a49cbc943b9709__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Click <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">File</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">New</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Other</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span>.</span><div class="itemgroup stepresult">
-					<p class="p">The <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">New </span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Select a wizard</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span> window appears.</p>
-
-				</div></li>
-<li class="li step stepexpand" id="loio028bcef958aa430e84a49cbc943b9709__step_N1004E_N1001E_N10012_N10001"><span class="ph cmd">Expand the <span class="ph emphasis emphasis">General </span>folder and choose
-					<span class="ph emphasis emphasis">Project</span>.</span></li>
-<li class="li step stepexpand" id="loio028bcef958aa430e84a49cbc943b9709__step_N1005F_N1001E_N10012_N10001"><span class="ph cmd">Click<strong class="ph b"> Next </strong>to proceed.</span><div class="itemgroup stepresult">The <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">New Project</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Project</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span> window appears.</div></li>
-<li class="li step stepexpand" id="loio028bcef958aa430e84a49cbc943b9709__step_N1007C_N1001E_N10012_N10001"><span class="ph cmd">Enter a name for the project in the <span class="ph emphasis emphasis">Project name</span> field and click
-						<span class="ph emphasis emphasis">Finish</span> to create the project.</span></li>
-<li class="li step stepexpand"><span class="ph cmd">Either use the default location for the project, or uncheck the <span class="q">"Use default
-						location"</span> check box to specify a location of your choice. </span></li>
-<li class="li step stepexpand"><span class="ph cmd">Select the <span class="q">"Add project to the working sets"</span> option to select a working
-					set using the <span class="ph emphasis emphasis">Select</span> button. You can also create a working
-					set in the "<span class="ph emphasis emphasis">Select Working Sets</span>" window</span></li>
-<li class="li step stepexpand"><span class="ph cmd">Click <span class="ph emphasis emphasis">Next </span>to see the <span class="ph emphasis emphasis">Project
-						References</span> window..</span></li>
-<li class="li step stepexpand"><span class="ph cmd">Select a referenced project of your choice and click
-						<span class="ph emphasis emphasis">Finish</span>.</span><div class="itemgroup stepresult">The new project is displayed in the Project Explorer region.
-				</div></li>
-</ol>
-</div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/05e98917dbe94a13bf2d1a4b9465f23d.image b/org.eclipse.ogee.help/html/05e98917dbe94a13bf2d1a4b9465f23d.image
deleted file mode 100644
index 38c7e9a..0000000
--- a/org.eclipse.ogee.help/html/05e98917dbe94a13bf2d1a4b9465f23d.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/060607031e1b40028bab7cc9931ce307.image b/org.eclipse.ogee.help/html/060607031e1b40028bab7cc9931ce307.image
deleted file mode 100644
index c705eb0..0000000
--- a/org.eclipse.ogee.help/html/060607031e1b40028bab7cc9931ce307.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/0a80b8c1b2c849a19e6d612219b8618c.image b/org.eclipse.ogee.help/html/0a80b8c1b2c849a19e6d612219b8618c.image
deleted file mode 100644
index 6cde8ea..0000000
--- a/org.eclipse.ogee.help/html/0a80b8c1b2c849a19e6d612219b8618c.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/0e2536af9f4742c39aa011ef06dc5b2d.image b/org.eclipse.ogee.help/html/0e2536af9f4742c39aa011ef06dc5b2d.image
deleted file mode 100644
index 47387f3..0000000
--- a/org.eclipse.ogee.help/html/0e2536af9f4742c39aa011ef06dc5b2d.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/19d0a305f7a1484aa4829b84ce8f7fa1.image b/org.eclipse.ogee.help/html/19d0a305f7a1484aa4829b84ce8f7fa1.image
deleted file mode 100644
index 50ae9d1..0000000
--- a/org.eclipse.ogee.help/html/19d0a305f7a1484aa4829b84ce8f7fa1.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/1ac2fa8c5d124f15aeb00d970936fb86.image b/org.eclipse.ogee.help/html/1ac2fa8c5d124f15aeb00d970936fb86.image
deleted file mode 100644
index 492fad3..0000000
--- a/org.eclipse.ogee.help/html/1ac2fa8c5d124f15aeb00d970936fb86.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/1fccaf93801b454a9ff337af3a7ee953.image b/org.eclipse.ogee.help/html/1fccaf93801b454a9ff337af3a7ee953.image
deleted file mode 100644
index 9a222b3..0000000
--- a/org.eclipse.ogee.help/html/1fccaf93801b454a9ff337af3a7ee953.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/22e701aa3ef94af9978f32fe0c837025.image b/org.eclipse.ogee.help/html/22e701aa3ef94af9978f32fe0c837025.image
deleted file mode 100644
index 874948a..0000000
--- a/org.eclipse.ogee.help/html/22e701aa3ef94af9978f32fe0c837025.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/2f3c9d2007b842db9eb437676b3c538f.html b/org.eclipse.ogee.help/html/2f3c9d2007b842db9eb437676b3c538f.html
deleted file mode 100644
index 3eee41a..0000000
--- a/org.eclipse.ogee.help/html/2f3c9d2007b842db9eb437676b3c538f.html
+++ /dev/null
@@ -1,129 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="You can enable the use of HTTPS protocol for secure communications where the information that is exchanged between your application and server is sensitive."/>
-<meta name="description" content="You can enable the use of HTTPS protocol for secure communications where the information that is exchanged between your application and server is sensitive."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css?x=2735338516717223"/>
-<title>Enabling HTTPS for Secure Communications</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-<script type="text/javascript" src="js/jquery-1.10.1.min.js"> </script>
-</head>
-<body class="" id="loio2f3c9d2007b842db9eb437676b3c538f">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Enabling HTTPS for Secure Communications</h1>
-<div class="body taskbody"><p class="shortdesc">You can enable the use of HTTPS protocol for secure communications where the
-		information that is exchanged between your application and server is
-		sensitive.</p>
-<div class="section context"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<p class="p">First, configure the use of secure socket layer (SSL) in the 
-				landscape, and then configure SSL in the framework. </p>
-
-			<p class="p">The following is an overview of how to enable HTTPS protocol for secure
-				communications:</p>
-
-			<ol class="ol" id="loio2f3c9d2007b842db9eb437676b3c538f__ol_mf2_skj_vk"><li class="li">Obtain and install in your work station, the root certificate (CA root
-					certificate) of the server that has been configured as the
-					SSL server.</li>
-<li class="li">Add information about the SSL server certificate to the Java Runtime Environment
-					(JRE) Keystore using the application, <span class="ph uicontrol">Keytool</span>. <div class="note note"><span class="notetitle">Note</span> You
-						can obtain the CA root certificate directly from the system administrator of
-						the server.</div>
-</li>
-</ol>
-
-		</div></div>
-<div class="topic task nested1" id="task_sjm_knj_vk"><h2 class="title topictitle2">Obtain and Install the CA certificate from the server</h2>
-<div class="body taskbody"><div class="section context"><div class="tasklabel"><h3 class="sectiontitle tasklabel">Context</h3></div>To export an SSL server certificate from the SSL Server Standard PSE in the host:</div><div class="tasklabel"><h3 class="sectiontitle tasklabel">Procedure</h3></div><ol class="ol steps" id="task_sjm_knj_vk__steps_cnv_mnj_vk"><li class="li step"><span class="ph cmd">Use the <span class="keyword cmdname">Trust manager</span> (transaction
-							<span class="ph cmdtext">STRUST</span>) in the system to export
-						the CA’s Root certificate. </span></li>
-<li class="li step"><span class="ph cmd">Select <span class="keyword uilabel">SSL Server Standard node</span> in right-hand side
-						tree.</span></li>
-<li class="li step"><span class="ph cmd">Choose the <span class="keyword uilabel">SSL certificate</span> under <span class="keyword uilabel">Own
-							Certificate</span>, choose <span class="keyword uilabel">Certificate</span>, and then
-						choose <span class="keyword uilabel">Export</span>.</span></li>
-<li class="li step"><span class="ph cmd">Specify the location of the certificate in your file system.</span></li>
-</ol>
-</div>
-</div>
-<div class="topic task nested1" id="task_rvy_pnj_vk"><h2 class="title topictitle2">Add Information about the Gateway Server Certificate to Your Keystore</h2>
-<div class="body taskbody"><div class="section context"><div class="tasklabel"><h3 class="sectiontitle tasklabel">Context</h3></div>
-				<p class="p"> Download the utility, <span class="ph uicontrol">Keytool</span>, to help you create and
-					manage digital certificates. </p>
-
-				<p class="p">You can obtain the utility at: <a class="extlink" href="http://java.sun.com/j2se/1.3/docs/tooldocs/win32/keytool.html" target="_blank">http://java.sun.com/j2se/1.3/docs/tooldocs/win32/keytool.html<img src="../images/3rd_link.png" class="link-external" alt="Information published" title="Information published" border="0"/></a>
-				</p>
-
-				<p class="p">Keytool is a command-line utility that allows you to create and manage keystores
-					for digital certificates in the Java environment. </p>
-
-				<p class="p">You can list the current certificates contained within the keystore using the
-						<span class="keyword cmdname">-list</span> command of the keytool. </p>
-
-				<p class="p">The initial password for the <span class="keyword uilabel">ca certs</span> keystore is
-						<span class="keyword cmdname">changeit</span>. </p>
-
-			</div><div class="example"><h2 class="exampletitle">Example</h2>
-				<pre class="pre screen">C:\Program Files\Java\jdk1.6.0_26\jre\bin&gt;keytool -list –keystore ..\lib\security\cacerts</pre>
-
-				<p class="p">Enter keystore password: <span class="keyword cmdname">changeit</span>. </p>
-
-				<p class="p">The following displays:</p>
-
-				<pre class="pre screen">Keystore type: jks Keystore provider: SUN
-Your keystore contains 11 entries: engweb, Wed Apr 11 16:22:49 EDT 2001, trustedCertEntry, 
-Certificate fingerprint (MD5): 8C:24:DA:52:7A:4A:16:4B:8E:FB:67:44:C9:D2:E4:16 thawtepersonalfreemailca, Fri Feb 12 15:12:16 EST 1999,trustedCertEntry, 
-Certificate fingerprint (MD5):1E:74:C3:86:3C:0C:35:C5:3E:C2:7F:EF:3C:AA:3C:D9 thawtepersonalbasicca, Fri Feb 12 15:11:01 EST 1999, trustedCertEntry, 
-Certificate fingerprint (MD5): E6:0B:D2:C9:CA:2D:88:DB:1A:71:0E:4B:78:EB:02:41 verisignclass3ca, Mon Jun 29 13:05:51 EDT 1998, trustedCertEntry, 
-Certificate fingerprint (MD5): 78:2A:02:DF:DB:2E:14:D5:A7:5F:0A:DF:B6:8E:9C:5D thawteserverca, Fri Feb 12 15:14:33 EST 1999, trustedCertEntry, 
-Certificate fingerprint (MD5): C5:70:C4:A2:ED:53:78:0C:C8:10:53:81:64:CB:D0:1D thawtepersonalpremiumca, Fri Feb 12 15:13:21 EST 1999, trustedCertEntry, 
-Certificate fingerprint (MD5): 3A:B2:DE:22:9A:20:93:49:F9:ED:C8:D2:8A:E7:68:0D verisignclass4ca, Mon Jun 29 13:06:57 EDT 1998, trustedCertEntry, 
-Certificate fingerprint (MD5): 1B:D1:AD:17:8B:7F:22:13:24:F5:26:E2:5D:4E:B9:10 verisignclass1ca, Mon Jun 29 13:06:17 EDT 1998, trustedCertEntry, 
-Certificate fingerprint (MD5): 51:86:E8:1F:BC:B1:C3:71:B5:18:10:DB:5F:DC:F6:20 verisignserverca, Mon Jun 29 13:07:34 EDT 1998, trustedCertEntry, 
-Certificate fingerprint (MD5): 74:7B:82:03:43:F0:00:9E:6B:B3:EC:47:BF:85:A5:93 thawtepremiumserverca, Fri Feb 12 15:15:26 EST 1999, trustedCertEntry, 
-Certificate fingerprint (MD5): 06:9F:69:79:16:66:90:02:1B:8C:8C:A2:C3:07:6F:3A verisignclass2ca, Mon Jun 29 13:06:39 EDT 1998, trustedCertEntry, 
-Certificate fingerprint (MD5): EC:40:7D:2B:76:52:67:05:2C:EA:F2:3A:4F:65:F0:D8</pre>
-
-			</div>
-</div>
-</div>
-<div class="topic task nested1" id="task_h1l_cqj_vk"><h2 class="title topictitle2">Add the CA Root Certificate to the Keystore</h2>
-<div class="body taskbody"><div class="section context"><div class="tasklabel"><h3 class="sectiontitle tasklabel">Context</h3></div>You must add the CA certificate you received from the 
-				server to the Eclipse keystore.<p class="p">From the command line, enter <span class="keyword cmdname">keytool
-						–import</span>, to import the file into your cacerts
-				keystore.</p>
-</div><div class="example"><h2 class="exampletitle">Example</h2><pre class="pre screen">C:\Program Files\Java\jdk1.6.0_26\jre\bin&gt;keytool -import –keystore ..\lib\security\cacerts -file c:\ Rootca.cer </pre>
-To
-				check, run <span class="keyword cmdname">keytool -list</span> again to verify that your private root
-				certificate was added. For example,
-				<pre class="pre screen">C:\Program Files\Java\jdk1.6.0_26\jre\bin&gt;keytool -list -keystore ..\lib\security\cacerts</pre>
-You
-				should now see a list of all the certificates including the one you just added.<div class="p">In
-					addition, verify that the JAVA home location is defined in the file,
-						<span class="keyword uilabel">eclipse.ini.</span> For example,
-					<pre class="pre screen">-vm C:/Program Files/Java/jdk1.6.0_21/bin/javaw.exe</pre>
-
-				</div>
-</div>
-</div>
-</div>
-<div class="topic task nested1" id="task_rxx_drj_vk"><h2 class="title topictitle2">Configure HTTPS in the Framework</h2>
-<div class="body taskbody"><div class="section context"><div class="tasklabel"><h3 class="sectiontitle tasklabel">Context</h3></div>After you have configured the use of SSL in the landscape, you can configure SSL in the framework. <p class="p">To configure SSL in the
-					framework:</p>
-</div><div class="tasklabel"><h3 class="sectiontitle tasklabel">Procedure</h3></div><ol class="ol steps" id="task_rxx_drj_vk__steps_gtg_grj_vk"><li class="li step"><span class="ph cmd">From the main menu, select <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">Window</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol"> Preferences </span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol"> OData Development </span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol"> </span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol"> Connections</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span>. The <span class="keyword uilabel">Create Connections </span>dialog displays.
-					</span></li>
-<li class="li step"><span class="ph cmd">Choose <span class="keyword uilabel">Add</span>. The Connections displays.</span></li>
-<li class="li step"><span class="ph cmd">Select <span class="keyword uilabel">Use HTTPS (Certificate needed)</span>, and enter the
-						connection settings for the host.</span></li>
-</ol>
-</div>
-</div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/339c222d34684a1089df2762df4fa95a.image b/org.eclipse.ogee.help/html/339c222d34684a1089df2762df4fa95a.image
deleted file mode 100644
index aaee0b9..0000000
--- a/org.eclipse.ogee.help/html/339c222d34684a1089df2762df4fa95a.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/3a147172bf2046a28fc4e9573b1d9130.html b/org.eclipse.ogee.help/html/3a147172bf2046a28fc4e9573b1d9130.html
deleted file mode 100644
index d04f1e6..0000000
--- a/org.eclipse.ogee.help/html/3a147172bf2046a28fc4e9573b1d9130.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="Instructions for uninstalling Ogee."/>
-<meta name="description" content="Instructions for uninstalling Ogee."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Uninstalling Ogee</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio3a147172bf2046a28fc4e9573b1d9130">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Uninstalling Ogee</h1>
-<div class="body taskbody"><p class="shortdesc">Instructions for uninstalling Ogee.</p>
-<div class="section context" id="loio3a147172bf2046a28fc4e9573b1d9130__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<p class="p">To uninstall Ogee proceed as follows:</p>
-
-		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loio3a147172bf2046a28fc4e9573b1d9130__steps_yqp_g2v_sp"><li class="li step" id="loio3a147172bf2046a28fc4e9573b1d9130__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Start Eclipse.</span></li>
-<li class="li step" id="loio3a147172bf2046a28fc4e9573b1d9130__step_N1002A_N1001E_N10012_N10001"><span class="ph cmd">From the menu bar, choose <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">Eclipse</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">About Eclipse</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span>. The <span class="ph uicontrol">About Eclipse</span> dialog box is
-					displayed.</span></li>
-<li class="li step" id="loio3a147172bf2046a28fc4e9573b1d9130__step_N10043_N1001E_N10012_N10001"><span class="ph cmd">Choose <span class="ph uicontrol">Installation Details</span>.</span></li>
-<li class="li step" id="loio3a147172bf2046a28fc4e9573b1d9130__step_N10050_N1001E_N10012_N10001"><span class="ph cmd">Select the<span class="ph uicontrol"> Installed Software</span> tab. The list of installed
-					software components is displayed.</span></li>
-<li class="li step" id="loio3a147172bf2046a28fc4e9573b1d9130__step_N1005D_N1001E_N10012_N10001"><span class="ph cmd">Select the features you want to uninstall and choose
-						<span class="ph uicontrol">Uninstall</span>. The <span class="ph uicontrol">Uninstall
-						Details</span> page is displayed.</span></li>
-<li class="li step" id="loio3a147172bf2046a28fc4e9573b1d9130__step_N10072_N1001E_N10012_N10001"><span class="ph cmd">Choose <span class="ph uicontrol">Finish</span>. The selected features are
-					uninstalled.</span></li>
-<li class="li step" id="loio3a147172bf2046a28fc4e9573b1d9130__step_N1007F_N1001E_N10012_N10001"><span class="ph cmd">You must restart Eclipse for the changes to take effect. </span></li>
-</ol>
-</div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/3c19aab92826496c830a9f6ab061ae91.html b/org.eclipse.ogee.help/html/3c19aab92826496c830a9f6ab061ae91.html
deleted file mode 100644
index 05ae5a0..0000000
--- a/org.eclipse.ogee.help/html/3c19aab92826496c830a9f6ab061ae91.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="Enable the use of characters in languages other than English."/>
-<meta name="description" content="Enable the use of characters in languages other than English."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Supporting Languages Other than English</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio3c19aab92826496c830a9f6ab061ae91">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Supporting Languages Other than English</h1>
-<div class="body taskbody"><p class="shortdesc">Enable the use of characters in languages other than English.</p>
-<div class="section context" id="loio3c19aab92826496c830a9f6ab061ae91__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<p class="p">To enable the use of characters in languages other than English:</p>
-
-		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loio3c19aab92826496c830a9f6ab061ae91__steps_sr2_d2v_sp"><li class="li step" id="loio3c19aab92826496c830a9f6ab061ae91__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Navigate to the location where Eclipse is installed on your computer.</span></li>
-<li class="li step" id="loio3c19aab92826496c830a9f6ab061ae91__step_N1002A_N1001E_N10012_N10001"><span class="ph cmd"> Open the eclipse.ini file for editing and add the following in a new line:
-						<span class="ph filepath">-Dfile.encoding=UTF-8</span></span></li>
-<li class="li step" id="loio3c19aab92826496c830a9f6ab061ae91__step_N10036_N1001E_N10012_N10001"><span class="ph cmd">Restart Eclipse. Your default encoding in eclipse is changed to UTF-8.</span></li>
-<li class="li step" id="loio3c19aab92826496c830a9f6ab061ae91__step_N1003F_N1001E_N10012_N10001"><span class="ph cmd">In Eclipse, select <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">Window</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Preferences</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">General</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Workspace</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span>.</span></li>
-<li class="li step" id="loio3c19aab92826496c830a9f6ab061ae91__step_N1005C_N1001E_N10012_N10001"><span class="ph cmd">In the <strong class="ph b">Text file encoding</strong> section, make sure <span class="ph filepath">UTF-8</span>
-					is selected either as the default or as an option in the
-						<span class="ph filepath">Other</span> radio button. </span></li>
-</ol>
-</div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/3d19bb269f6845bb97f4d6ee68236fef.html b/org.eclipse.ogee.help/html/3d19bb269f6845bb97f4d6ee68236fef.html
deleted file mode 100644
index 12b2e52..0000000
--- a/org.eclipse.ogee.help/html/3d19bb269f6845bb97f4d6ee68236fef.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css?x=6663937177082286"/>
-<title>Glossary</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-<script type="text/javascript" src="js/jquery-1.10.1.min.js"> </script>
-</head>
-<body class="" id="loio3d19bb269f6845bb97f4d6ee68236fef">
-<div id="wrapper"><div id="container">
-<h1 class="title title glossterm topictitle1">Glossary</h1>
-<div class="abstract abstract glossdef">
-		<p class="p"/>
-
-	</div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/3dad04c8b7cc479e8ae3a27c90add919.image b/org.eclipse.ogee.help/html/3dad04c8b7cc479e8ae3a27c90add919.image
deleted file mode 100644
index ce65503..0000000
--- a/org.eclipse.ogee.help/html/3dad04c8b7cc479e8ae3a27c90add919.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/41ddb30b77804ebf95df9a866931ed0e.image b/org.eclipse.ogee.help/html/41ddb30b77804ebf95df9a866931ed0e.image
deleted file mode 100644
index 89fb32b..0000000
--- a/org.eclipse.ogee.help/html/41ddb30b77804ebf95df9a866931ed0e.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/45eb75892a764571b63b8d3290df10b2.html b/org.eclipse.ogee.help/html/45eb75892a764571b63b8d3290df10b2.html
deleted file mode 100644
index 71382b5..0000000
--- a/org.eclipse.ogee.help/html/45eb75892a764571b63b8d3290df10b2.html
+++ /dev/null
@@ -1,61 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="This section provides instructions to install Ogee."/>
-<meta name="description" content="This section provides instructions to install Ogee."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Ogee Installation and Configuration Guide</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio45eb75892a764571b63b8d3290df10b2">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Ogee Installation and Configuration Guide</h1>
-<div class="body taskbody"><p class="shortdesc">This section provides instructions to install <span class="ph pname">Ogee</span>. </p>
-<div class="section prereq p" id="loio45eb75892a764571b63b8d3290df10b2__prereq_N10019_N10016_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Prerequisites</h2></div>For installation of <span class="ph pname">Ogee</span>, you require:<ul class="ul" id="loio45eb75892a764571b63b8d3290df10b2__ul_spp_cbz_yj"><li class="li">Java SE6 (JDK 1.6). Download it from <a class="extlink" href="http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-javase6-419409.html." target="_blank">http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-javase6-419409.html.<img src="../images/3rd_link.png" class="link-external" alt="Information published" title="Information published" border="0"/></a></li>
-<li class="li">Eclipse installation via <a class="extlink" href="http://www.eclipse.org/downloads/" target="_blank">http://www.eclipse.org/downloads/<img src="../images/3rd_link.png" class="link-external" alt="Information published" title="Information published" border="0"/></a></li>
-</ul>
-
-		</div>
-<div class="section context" id="loio45eb75892a764571b63b8d3290df10b2__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<p class="p">To install <span class="ph pname">Ogee</span>, proceed as follows: </p>
-
-		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol><li class="li step stepexpand" id="loio45eb75892a764571b63b8d3290df10b2__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Open the Eclipse application where the <span class="ph uicontrol">Workspace
-						Launcher</span> window appears.</span></li>
-<li class="li step stepexpand" id="loio45eb75892a764571b63b8d3290df10b2__step_N10032_N1001E_N10012_N10001"><span class="ph cmd">Either work with the default workspace or select another workspace by using the
-						<span class="ph uicontrol">Browse</span> button.</span></li>
-<li class="li step stepexpand" id="loio45eb75892a764571b63b8d3290df10b2__step_N1003F_N1001E_N10012_N10001"><span class="ph cmd">Click <span class="ph uicontrol">OK</span>.</span></li>
-<li class="li step stepexpand" id="loio45eb75892a764571b63b8d3290df10b2__step_N10053_N1001E_N10012_N10001"><span class="ph cmd">On the Eclipse screen, choose <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">Help</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Install New Software</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span>. </span></li>
-<li class="li step stepexpand" id="loio45eb75892a764571b63b8d3290df10b2__step_N1007D_N1001E_N10012_N10001"><span class="ph cmd">In the <span class="ph uicontrol">Work with:</span> field, click <span class="ph emphasis emphasis">Add</span>
-					to either enter the update site URL or click <span class="ph emphasis emphasis">Archive</span> to
-					select a .zip file obtained from the Ogee downloads page. To obtain the update
-					site information and the Ogee.zip file follow the steps given below:</span></li>
-</ol><p class="li stepsection">
-				<ol class="ol" type="a" id="loio45eb75892a764571b63b8d3290df10b2__ol_uwq_bjd_tp"><li class="li">Open the Ogee project page : <a class="extlink" href="https://projects.eclipse.org/projects/technology.ogee" target="_blank">https://projects.eclipse.org/projects/technology.ogee<img src="../images/3rd_link.png" class="link-external" alt="Information published" title="Information published" border="0"/></a></li>
-<li class="li">Navigate to the <span class="ph emphasis emphasis">Downloads </span>tab. </li>
-<li class="li">Copy the update site link mentioned under <span class="ph emphasis emphasis">Update Sites
-							</span>.<p class="p">Alternatively, you can download the .zip file available
-							under <span class="ph emphasis emphasis">Downloads</span> to your local system.</p>
-</li>
-</ol>
-
-			</p><ol start="6"><li class="li step stepexpand"><span class="ph cmd">The update site lists the features available for Ogee.</span></li>
-<li class="li step stepexpand"><span class="ph cmd">Select <span class="ph emphasis emphasis">Ogee (Incubation)</span>.</span></li>
-<li class="li step stepexpand"><span class="ph cmd">Choose <span class="ph emphasis emphasis">Next</span> to proceed.</span><div class="itemgroup stepresult">The review page to recheck the selected software(s)
-					appears.</div></li>
-<li class="li step stepexpand"><span class="ph cmd">If required, choose <span class="ph emphasis emphasis">Back</span> to return to the previous screen
-					to modify your selections.</span></li>
-<li class="li step stepexpand"><span class="ph cmd">Choose <span class="ph emphasis emphasis">Next</span> to proceed.</span><div class="itemgroup stepresult">The Review Licenses page appears.</div></li>
-<li class="li step stepexpand"><span class="ph cmd">Accept the terms and click <span class="ph emphasis emphasis">Finish</span>.</span><div class="itemgroup stepresult">The installation process begins for the selected feature(s). After the
-					installation process is complete, you will be prompted to restart your Eclipse
-					installation.</div></li>
-</ol></div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/45ffe494a3bc4a1bb355a94db1f5f72e.html b/org.eclipse.ogee.help/html/45ffe494a3bc4a1bb355a94db1f5f72e.html
deleted file mode 100644
index 19b4180..0000000
--- a/org.eclipse.ogee.help/html/45ffe494a3bc4a1bb355a94db1f5f72e.html
+++ /dev/null
@@ -1,55 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="Use the Export OData Model wizard to export an OData model file, *.odata, from a project in the OData Model Editor, to an XML file. Later, you can use the exported file in another tool to quickly implement an OData service from the model."/>
-<meta name="description" content="Use the Export OData Model wizard to export an OData model file, *.odata, from a project in the OData Model Editor, to an XML file. Later, you can use the exported file in another tool to quickly implement an OData service from the model."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Exporting an OData Model from the OData Model Editor</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio45ffe494a3bc4a1bb355a94db1f5f72e">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Exporting an OData Model from the OData Model Editor</h1>
-<div class="body taskbody"><p class="shortdesc">Use the Export OData Model wizard to export an OData model file,
-			<span class="keyword uilabel">*.odata</span>, from a project in the OData Model Editor, to an XML file.
-		Later, you can use the exported file in another tool to quickly implement an OData service
-		from the model.</p>
-<div class="section context" id="loio45ffe494a3bc4a1bb355a94db1f5f72e__context_N10019_N10016_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div><div class="p">The export feature allows you to specify the
-				supported XML format based on the version of the OData Common Schema Definition
-				Language (CSDL) you want. The exported file can be in one of the following versions
-				of CSDL: <ul class="ul" id="loio45ffe494a3bc4a1bb355a94db1f5f72e__ul_vrd_xss_3j"><li class="li">OData V2 <p class="p"> Select this option if you want the exported file to be saved in
-							version two of OData CSDL. </p>
-</li>
-</ul>
-</div>
-<p class="p">In addition, the framework enables you to create and implement your own
-				custom export functionality to save the exported file to your custom file formats.
-			</p>
-To export the OData model file, proceed as follows:</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loio45ffe494a3bc4a1bb355a94db1f5f72e__steps_ndr_mqy_tj"><li class="li step" id="loio45ffe494a3bc4a1bb355a94db1f5f72e__step_N10042_N1003F_N10016_N10001"><span class="ph cmd"> From the File menu, choose <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">Export</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span>
-					<span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">&gt;</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span>
-					<span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">Ogee</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span>
-					<span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">&gt; </span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span><span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">OData Model</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span>, and choose <span class="keyword uilabel">Next</span>. The Export Service Model
-					window opens. </span></li>
-<li class="li step" id="loio45ffe494a3bc4a1bb355a94db1f5f72e__step_N1007C_N10045_N10016_N10001"><span class="ph cmd">In Model Name, choose <span class="keyword uilabel">Browse</span> to select the specific
-						<kbd class="ph userinput">*.odata </kbd>file you want to export. If you have already
-					selected the specific<kbd class="ph userinput"> *.odata </kbd>file, it is displayed with
-					the full pathname.</span></li>
-<li class="li step" id="loio45ffe494a3bc4a1bb355a94db1f5f72e__step_N10091_N10045_N10016_N10001"><span class="ph cmd">From <span class="ph emphasis emphasis"><span class="ph emphasis emphasis"><span class="ph emphasis emphasis">Export Format</span></span></span>, select
-					the OData protocol version in which you want to save the file. The following is
-					the supported formats, OData V2.</span></li>
-<li class="li step" id="loio45ffe494a3bc4a1bb355a94db1f5f72e__step_N1009E_N10045_N10016_N10001"><span class="ph cmd">In <span class="ph emphasis emphasis">Export As</span>, choose <span class="keyword uilabel">Browse</span> to specify
-					the folder in which you want to save the new file, and enter a name for the
-					file. The file is saved as an XML file. </span></li>
-<li class="li step" id="loio45ffe494a3bc4a1bb355a94db1f5f72e__step_N100A7_N10045_N10016_N10001"><span class="ph cmd">Choose <span class="keyword uilabel">Finish</span> to export the file.</span></li>
-</ol>
-</div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/48e6e741025e4c62bc869dbbc609917d.image b/org.eclipse.ogee.help/html/48e6e741025e4c62bc869dbbc609917d.image
deleted file mode 100644
index e52ffaa..0000000
--- a/org.eclipse.ogee.help/html/48e6e741025e4c62bc869dbbc609917d.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/499be3856baa45b1b2efacf2da6ea863.html b/org.eclipse.ogee.help/html/499be3856baa45b1b2efacf2da6ea863.html
deleted file mode 100644
index ea35e94..0000000
--- a/org.eclipse.ogee.help/html/499be3856baa45b1b2efacf2da6ea863.html
+++ /dev/null
@@ -1,69 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content=""/>
-<meta name="description" content=""/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Creating an OData Model Using Metadata File</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio499be3856baa45b1b2efacf2da6ea863">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Creating an OData Model Using Metadata File</h1>
-<div class="body taskbody"><p class="shortdesc"/>
-<div class="section context" id="loio499be3856baa45b1b2efacf2da6ea863__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<p class="p">The File Import function is used to import metadata files types (edmx and xml) to
-				create an OData model.</p>
-
-			<div class="p">During the import of an EDMX file, the graphical information is computed, and the
-				corresponding shapes are created in the OData Model Editor and arranged as
-					follows:<ul class="ul" id="loio499be3856baa45b1b2efacf2da6ea863__ul_xsr_tjp_mj"><li class="li">Entities</li>
-<li class="li">Complex Types</li>
-<li class="li">Function Imports </li>
-</ul>
-</div>
-
-			<p class="p">To create an OData model using a service metadata file proceed as follows:</p>
-
-		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loio499be3856baa45b1b2efacf2da6ea863__steps_pzz_3kw_sp"><li class="li step stepexpand" id="loio499be3856baa45b1b2efacf2da6ea863__step_N10045_N10042_N10012_N10001"><span class="ph cmd">Create a project as outlined in the <a class="xref" href="028bcef958aa430e84a49cbc943b9709.html" title="Creating a project">Creating a Project</a>
-					section. </span></li>
-<li class="li step stepexpand" id="loio499be3856baa45b1b2efacf2da6ea863__step_N1004E_N10042_N10012_N10001"><span class="ph cmd">Right click on the project in the Project Tree region, and select <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">New</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Other</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span>.</span><div class="itemgroup stepresult">The <span class="ph emphasis emphasis">Select a Wizard </span>window displays. </div></li>
-<li class="li step stepexpand" id="loio499be3856baa45b1b2efacf2da6ea863__step_N10067_N10042_N10012_N10001"><span class="ph cmd">Locate <span class="ph emphasis emphasis">Ogee</span> folder, expand it and select <span class="ph emphasis emphasis">OData
-						Model</span>.</span></li>
-<li class="li step stepexpand" id="loio499be3856baa45b1b2efacf2da6ea863__step_N10078_N10042_N10012_N10001"><span class="ph cmd">Click <span class="ph emphasis emphasis">Next</span> to proceed.</span><div class="itemgroup stepresult">
-					<p class="p">The <span class="ph emphasis emphasis">Create New OData Model</span> window appears. </p>
-
-				</div></li>
-<li class="li step stepexpand" id="loio499be3856baa45b1b2efacf2da6ea863__step_N10091_N10042_N10012_N10001"><span class="ph cmd">Choose <span class="ph emphasis emphasis">Browse </span>or enter the folder name in the
-						<span class="ph emphasis emphasis">Folder</span> field to select a project folder for the new
-					OData model.</span></li>
-<li class="li step stepexpand" id="loio499be3856baa45b1b2efacf2da6ea863__step_N100A2_N10042_N10012_N10001"><span class="ph cmd">Enter a name for the model in the <span class="ph emphasis emphasis">Model name </span>field.</span></li>
-<li class="li step stepexpand" id="loio499be3856baa45b1b2efacf2da6ea863__step_N100AF_N10042_N10012_N10001"><span class="ph cmd">Select <span class="ph emphasis emphasis">OData Metadata File</span> from the list and click
-						<span class="ph emphasis emphasis">Next</span>. </span><div class="itemgroup stepresult">The <span class="ph emphasis emphasis">New OData model based on a metadata file</span> system
-					window appears.</div></li>
-<li class="li step stepexpand" id="loio499be3856baa45b1b2efacf2da6ea863__step_N100C8_N10042_N10012_N10001"><span class="ph cmd">Enter the path to access the edmx or xml file, or click
-						<span class="ph emphasis emphasis">Browse</span> to choose the file from the system and click
-						<span class="ph emphasis emphasis">Go</span>.</span><div class="itemgroup stepresult">On selection of a valid file the contents of the file will be populated
-					in the <span class="ph pname">Service details</span> region of the window.</div></li>
-<li class="li step stepexpand" id="loio499be3856baa45b1b2efacf2da6ea863__step_N100D9_N10042_N10012_N10001"><span class="ph cmd">Click <span class="ph emphasis emphasis">Finish</span>.</span><div class="itemgroup stepresult">The selected file is converted to an OData service and displayed in the
-					OData Model Editor. All the sections in entity element open up in a expanded
-					state for editing.<div class="note note" id="loio499be3856baa45b1b2efacf2da6ea863__note_N100DF_N100DC_N100D1_N10042_N10012_N10001"><span class="notetitle">Note</span> The
-						errors in the imported model are indicated by the error icons. The
-							<span class="ph emphasis emphasis">Problems</span> tab view in the properties view displays
-						the errors in the model.</div>
-<p class="p">The service is now ready to be edited and
-						will be stored under the folder selected in the Project Explorer.
-					</p>
-</div></li>
-</ol>
-</div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/4dc1228674484e01ab5a6619fdbd605a.image b/org.eclipse.ogee.help/html/4dc1228674484e01ab5a6619fdbd605a.image
deleted file mode 100644
index 98ffde5..0000000
--- a/org.eclipse.ogee.help/html/4dc1228674484e01ab5a6619fdbd605a.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/4e3df04d5c144fbaa7d158081f9008f9.image b/org.eclipse.ogee.help/html/4e3df04d5c144fbaa7d158081f9008f9.image
deleted file mode 100644
index a974632..0000000
--- a/org.eclipse.ogee.help/html/4e3df04d5c144fbaa7d158081f9008f9.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/504f84d32071419eb2bb5489f0658c21.html b/org.eclipse.ogee.help/html/504f84d32071419eb2bb5489f0658c21.html
deleted file mode 100644
index 9cc8264..0000000
--- a/org.eclipse.ogee.help/html/504f84d32071419eb2bb5489f0658c21.html
+++ /dev/null
@@ -1,174 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="The Properties View allows you to edit OData properties. These properties are used to define the different artifacts in the model."/>
-<meta name="description" content="The Properties View allows you to edit OData properties. These properties are used to define the different artifacts in the model."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Working in the Properties View</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio504f84d32071419eb2bb5489f0658c21">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Working in the Properties View</h1>
-<div class="body conbody"><p class="shortdesc">The Properties View allows you to edit OData properties. These properties are used to
-		define the different artifacts in the model. </p>
-<p class="p"><img class="image" id="loio504f84d32071419eb2bb5489f0658c21__image_h43_d2k_tp" width="960px" src="ebfd42f61e7a4b3bb3ece79a169b6eb1.image"/>
-		</p>
-<p class="p">Each artifact displays a different set of attributes according to the OData specifications.
-			When you change the selection of an artifact in the OData Model Editor or in the project
-			explorer tree, the attributes displayed in the Properties View change accordingly. </p>
-<div class="p"><div class="note note" id="loio504f84d32071419eb2bb5489f0658c21__note_N10087_N10080_N10012_N10001"><span class="notetitle">Note</span> When selecting an artifact in the OData Model
-				Editor its properties are displayed in the Properties view in read-only mode.
-			</div>
-When you change an attribute in the OData Model Editor, the changes are reflected
-			automatically in the Properties view and vice-versa. For example, you can change the
-			name of the artifact in either place and it will be updated in both. The Properties view
-			also allows you to change attributes that are not editable in the OData Model Editor,
-			for example, changing the name of the schema. </div>
-<div class="p">To display the Properties view:<ol class="ol" id="loio504f84d32071419eb2bb5489f0658c21__ol_wnl_wbc_4j"><li class="li">Select <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">Window</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Show View</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Other</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span>. The<strong class="ph b"> Show View </strong>dialog is displayed</li>
-<li class="li">Select <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">General</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Properties</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span>. The <strong class="ph b">Properties</strong> view is displayed.</li>
-</ol>
-</div>
-<div class="p">To edit the properties of OData artifacts: <ol class="ol" id="loio504f84d32071419eb2bb5489f0658c21__ol_wgq_wbc_4j"><li class="li">Select the desired artifact.</li>
-<li class="li">From the <strong class="ph b">General</strong> tab, give the desired value to the artifact’s attributes
-					displayed. </li>
-</ol>
-</div>
-<div class="section" id="loio504f84d32071419eb2bb5489f0658c21__section_N1005A_N10012_N10001"><div class="section_title">Referential Constraints</div><div type="Referential Constraints">
-			
-			<p class="p">A referential constraint asserts that the entity on the principal end of the
-				referential constraint must exist in order for the entity on the dependent end to
-				exist. This assertion is established by the
-					<span class="ph filepath">edm:ReferentialConstraint</span> element.</p>
-
-			<p class="p">A referential constraint must contain exactly one <span class="ph filepath">edm:Principal
-				</span>element and exactly one <span class="ph filepath">edm:Dependent </span>element. </p>
-
-			<div class="p">To maintain association referential constraints: <div class="note note" id="loio504f84d32071419eb2bb5489f0658c21__note_N10120_N1011D_N10101_N10012_N10001"><span class="notetitle">Note</span> Referential constraints are not
-					relevant for associations in a many to many relationship.</div>
-<ol class="ol" id="loio504f84d32071419eb2bb5489f0658c21__ol_l2f_5cc_4j"><li class="li">Select desired association. The association’s attributes are displayed in
-						the Properties view. </li>
-<li class="li">Select <span class="ph uicontrol">Referential Constraint</span>. </li>
-<li class="li">In the <span class="ph uicontrol">Value</span> column, choose <img class="image" id="loio504f84d32071419eb2bb5489f0658c21__image_srd_s2k_tp" src="41ddb30b77804ebf95df9a866931ed0e.image"/>.
-						The <span class="ph uicontrol">Referential Constraint</span> page is displayed. </li>
-<li class="li">From the <span class="ph uicontrol">Principle</span> drop-down list, select the entity
-						with the principal role. The <span class="ph uicontrol">Dependent</span> column is
-						filled in automatically with the second entity in the association. <div class="note note" id="loio504f84d32071419eb2bb5489f0658c21__note_N10152_N10147_N10124_N1011D_N10101_N10012_N10001"><span class="notetitle">Note</span>  If the
-							association is 1:many, the entity from which the association goes to
-							many is automatically selected as Principal.</div>
-</li>
-<li class="li">In the<span class="ph uicontrol"> Principle Key</span> column, select the property key
-						that will act as lead in the association. <div class="note note" id="loio504f84d32071419eb2bb5489f0658c21__note_N1015E_N10157_N10124_N1011D_N10101_N10012_N10001"><span class="notetitle">Note</span> The
-							properties displayed in the <span class="ph uicontrol">Principal Key</span> column,
-							depend on the properties defined as Key in the OData Model
-							Editor.</div>
-</li>
-<li class="li"> From the<span class="ph uicontrol"> Dependent Property</span> drop-down list, select
-						the desired property to be dependent on the principal key. <div class="note note" id="loio504f84d32071419eb2bb5489f0658c21__note_N1016E_N10167_N10124_N1011D_N10101_N10012_N10001"><span class="notetitle">Note</span> You cannot
-							use the same property for two different Principle keys.</div>
-</li>
-<li class="li">Choose <span class="ph uicontrol">OK</span>. The referential constraint is displayed in
-						the <span class="ph uicontrol">Value</span> column of the Properties Editor. </li>
-</ol>
-</div>
-
-			<div class="p">To delete a referential constraint:<ol class="ol" id="loio504f84d32071419eb2bb5489f0658c21__ol_gpn_wgf_pj"><li class="li">Select desired association. The association’s attributes are displayed in
-						the Properties view.</li>
-<li class="li">Select<span class="ph uicontrol"> Referential Constraint</span>.</li>
-<li class="li">In the <span class="ph uicontrol">Value</span> column, choose <img class="image" id="loio504f84d32071419eb2bb5489f0658c21__image_ljj_gfk_tp" src="41ddb30b77804ebf95df9a866931ed0e.image"/> .
-						The <span class="ph uicontrol">Referential Constraint</span> page is displayed. </li>
-<li class="li">Choose <span class="ph uicontrol">Delete</span>. All the referential constraints for
-						these entities are deleted.</li>
-</ol>
-</div>
-
-			<div class="p">To maintain association set:<ol class="ol" id="loio504f84d32071419eb2bb5489f0658c21__ol_orx_ngf_pj"><li class="li">Select desired association. The association’s attributes are displayed in
-						the Properties view. </li>
-<li class="li">Select <span class="ph uicontrol">Association Sets</span>.</li>
-<li class="li">In the <span class="ph uicontrol">Value</span> column, choose . The<span class="ph uicontrol"> Association
-							Sets</span> page is displayed. On the displayed page you can see a
-						table with the association set properties (name of the association set, end1
-						entity set, and end2 entity set). </li>
-<li class="li">To add a new association set, choose the <span class="ph uicontrol">Add</span>. </li>
-<li class="li">To delete an association set, select it from the table and choose
-							<span class="ph uicontrol">Remove</span>. </li>
-<li class="li">To edit the name of the association set, in the Name column, select the
-						desired name and edit it. </li>
-<li class="li">To change an entity set of the association set, select the desired entity
-						set and change it by selecting a different one from the drop-down list. </li>
-<li class="li">Choose <span class="ph uicontrol">Apply</span>.</li>
-</ol>
-</div>
-
-		</div></div>
-</div>
-<div class="topic nested1" id="topic_dmx_thf_pj"><h2 class="title topictitle2">Annotations</h2>
-<div class="body"><p class="shortdesc">You can apply annotations to OData artifacts from the Properties View
-				<span class="ph uicontrol">Annotations</span> tab.</p>
-<div class="note note" id="topic_dmx_thf_pj__note_N1020E_N1020B_N101F8_N10001"><span class="notetitle">Note</span> The <span class="ph uicontrol">Annotations</span> tab
-				is enabled only when an OData artifact that supports annotations is selected.</div>
-<div class="p">To apply annotations to an OData artifact:<ol class="ol" id="topic_dmx_thf_pj__ol_ccn_lmf_pj"><li class="li">Select the desired artifact from the model and choose <img class="image" id="topic_dmx_thf_pj__image_stp_xfk_tp" src="0a80b8c1b2c849a19e6d612219b8618c.image"/>(maintain annotation) from the Properties view toolbar. The
-							<span class="ph uicontrol">Maintain Annotation</span> page is displayed showing the
-						available (loaded) vocabularies. These vocabularies contain the applicable
-						terms for the selected artifact.</li>
-<li class="li">Expand the desired vocabulary. <div class="note note" id="topic_dmx_thf_pj__note_N101A2_N1019F_N1018C_N10189_N1017D_N1016A_N10001"><span class="notetitle">Note</span> If terms have
-							already been selected for this vocabulary, they appear in the list with
-							thier checkbox selected.</div>
-</li>
-<li class="li">If the desired vocabulary is missing, you can add it manually using the
-							<span class="ph filepath">edmx</span> references. For more information see the
-							<cite class="cite">Adding EDMX References</cite> topic.</li>
-<li class="li">Select the checkbox of the desired term(s).</li>
-<li class="li">When finished, choose <span class="ph uicontrol">OK</span>. The annotations tab is
-						displayed in the Properties view.</li>
-<li class="li">You can edit each term in the <span class="ph uicontrol">Value</span> column according
-						to the term's limitations.</li>
-</ol>
-</div>
-<p class="p"/>
-<div class="p">To edit simple value annotations:<ul class="ul" id="topic_dmx_thf_pj__ul_px2_g4f_pj"><li class="li">Entering the appropriate value (according to the annotation type).</li>
-<li class="li">Selecting an artifact from the <span class="ph uicontrol">Value</span> drop-down list.
-						If there are other artifacts of the same type (for example, edm.string
-						type), they are displayed in the drop-down list.</li>
-</ul>
-<div class="note note" id="topic_dmx_thf_pj__note_N10258_N10249_N1020B_N101F8_N10001"><span class="notetitle">Note</span> For Boolean annotations, the
-					drop-down list contains <span class="ph uicontrol">True</span>,
-						<span class="ph uicontrol">False</span>, and Artifacts of type Boolean (in this case
-					you cannot enter the value).</div>
-<div class="note note" id="topic_dmx_thf_pj__note_N1026C_N1024D_N1020B_N101F8_N10001"><span class="notetitle">Note</span> If the term is annotated with the
-					annotation <span class="ph filepath">isPropertyPath</span>, you can choose its value only
-					from the drop-down list . You can check the annotations for the terms in each of
-					the vocabularies. To acces the vocabularies provided out-of-the-box, go to the
-					OASIS repositories webpage. </div>
-</div>
-<p class="p">Annotations of type record can contain simple value annotations and annotation
-				collections within them. To see what the record annotiation is composed of, expand
-				the term cell. </p>
-<div class="p">To edit record annotations:<ul class="ul" id="topic_dmx_thf_pj__ul_urj_dm1_qj"><li class="li">Edit the simple value annotations.</li>
-<li class="li">Edit collections:<ol class="ol" id="topic_dmx_thf_pj__ol_hdb_kn1_qj"><li class="li"> selecting the value cell and choosing <img class="image" id="topic_dmx_thf_pj__image_gns_ggk_tp" src="41ddb30b77804ebf95df9a866931ed0e.image"/>. The<span class="ph uicontrol"> Maintain Dynamic
-									Annotation </span>dialog is opened.</li>
-<li class="li">Expand the collection to set the value for each annotation.</li>
-<li class="li">To add a collectable expression, select the desired collection row
-								and choose <span class="ph uicontrol">Add</span>. </li>
-<li class="li">To remove a collectable expression, select the desired collectable
-								expression's row and choose <span class="ph uicontrol">Remove</span>.</li>
-</ol>
-</li>
-</ul>
-</div>
-</div>
-<div class="related-links"> 
-<div class="relinfo"><div class="relinfotitle ">Related Information</div>
-<div><a class="extlink" href="http://tools.oasis-open.org/version-control/browse/wsvn/odata/trunk/spec/examples/#_trunk_spec_examples_" target="_blank">OASIS repositories webpage<img src="../images/3rd_link.png" class="link-external" alt="Information published" title="Information published" border="0"/></a></div>
-</div>
-</div></div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/50dc336f79024ca2a560d049846eb5e8.html b/org.eclipse.ogee.help/html/50dc336f79024ca2a560d049846eb5e8.html
deleted file mode 100644
index 2655a04..0000000
--- a/org.eclipse.ogee.help/html/50dc336f79024ca2a560d049846eb5e8.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="This sectoin provides information to create Association between Entities."/>
-<meta name="description" content="This sectoin provides information to create Association between Entities."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Creating an Association</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio50dc336f79024ca2a560d049846eb5e8">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Creating an Association</h1>
-<div class="body conbody"><p class="shortdesc">This sectoin provides information to create Association between Entities.</p>
-<p class="p">An association is a named relationship between two entities. Association defines a
-			peer-to-peer relationship between participating entity types and can support different
-			multiplicities at both the ends. An example of an association is the relationship
-			between the Customer and Order entities.</p>
-<p class="p">You can create three types of association:</p>
-<ul class="ul" id="loio50dc336f79024ca2a560d049846eb5e8__ul_cmp_qc2_gj"><li class="li"><strong class="ph b">Single Association</strong> - This is the unidirectional association, which allows navigation
-				in only one direction. See <a class="xref" href="22be92df80da42cf982b9506e31d8ae8.html">Creating a Single Association</a>
-				.</li>
-<li class="li"><strong class="ph b">Bi-directional Association</strong> - The bi-directional association allows navigation in both
-				directions of the association. The bi-directional association is defaulted to
-				one-to-many. See <a class="xref" href="eef0a787772546da8bb64168fba51823.html" title="Instructions about how to create a bidirectional associations.">Creating a Bidirectional Association</a> .</li>
-<li class="li"><strong class="ph b">Self Association </strong> - Self association has the ends of the association point to the same
-				entity . See <a class="xref" href="7720bd44f939467ab34694fab1d259d2.html" title="Explains how to create self associations in the entities.">Creating a Self Association</a>.</li>
-</ul>
-</div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/52336b71a55448bb943b425683f1bf43.image b/org.eclipse.ogee.help/html/52336b71a55448bb943b425683f1bf43.image
deleted file mode 100644
index 58b8e1f..0000000
--- a/org.eclipse.ogee.help/html/52336b71a55448bb943b425683f1bf43.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/55f78ad8c6db4c01a1dcb775c0cbcb35.image b/org.eclipse.ogee.help/html/55f78ad8c6db4c01a1dcb775c0cbcb35.image
deleted file mode 100644
index fc89448..0000000
--- a/org.eclipse.ogee.help/html/55f78ad8c6db4c01a1dcb775c0cbcb35.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/58c5a8563fda463283bd1b4d20ba8dda.image b/org.eclipse.ogee.help/html/58c5a8563fda463283bd1b4d20ba8dda.image
deleted file mode 100644
index 614d562..0000000
--- a/org.eclipse.ogee.help/html/58c5a8563fda463283bd1b4d20ba8dda.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/5950fd49b10f48f2849c637ffc9fc479.image b/org.eclipse.ogee.help/html/5950fd49b10f48f2849c637ffc9fc479.image
deleted file mode 100644
index be3d60b..0000000
--- a/org.eclipse.ogee.help/html/5950fd49b10f48f2849c637ffc9fc479.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/5b0a3dc96c744886b4ec0bdf6d8038ed.html b/org.eclipse.ogee.help/html/5b0a3dc96c744886b4ec0bdf6d8038ed.html
deleted file mode 100644
index 77082e4..0000000
--- a/org.eclipse.ogee.help/html/5b0a3dc96c744886b4ec0bdf6d8038ed.html
+++ /dev/null
@@ -1,51 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="Software prerequisites for using and installing the Ogee."/>
-<meta name="description" content="Software prerequisites for using and installing the Ogee."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Ogee: Software Prerequisites</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio5b0a3dc96c744886b4ec0bdf6d8038ed">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Ogee: Software Prerequisites</h1>
-<div class="body conbody"><p class="shortdesc">Software prerequisites for using and installing the <span class="ph pname">Ogee</span>.</p>
-<div class="p">To use <span class="ph emphasis emphasis">Ogee</span>, ensure that the mimimum software prerequisites for the
-			operating environments are met:
-<div class="tablenoborder"><table summary="" id="loio5b0a3dc96c744886b4ec0bdf6d8038ed__table_dyj_gvv_gj" class="table" frame="border" border="1" rules="all"><caption><span class="tablecap">Table 1:
-					Software Prerequisites</span></caption><thead class="thead" align="left"><tr class="row"><th class="entry" valign="top" width="33.33333333333333%" id="d48899e29">Operating System</th>
-<th class="entry" valign="top" width="33.33333333333333%" id="d48899e31">Hardware</th>
-<th class="entry" valign="top" width="33.33333333333333%" id="d48899e33">Java Runtime Environment</th>
-</tr>
-</thead>
-<tbody class="tbody"><tr class="row"><td class="entry" valign="top" width="33.33333333333333%" headers="d48899e29 ">Windows 7</td>
-<td class="entry" valign="top" width="33.33333333333333%" headers="d48899e31 ">x86 64-bit</td>
-<td class="entry" valign="top" width="33.33333333333333%" headers="d48899e33 ">Oracle JDK 6 (64-bit version for Windows 7)</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="33.33333333333333%" headers="d48899e29 ">Mac OS X 10.6 or higher</td>
-<td class="entry" valign="top" width="33.33333333333333%" headers="d48899e31 ">Apple Java 6 64-bit</td>
-<td class="entry" valign="top" width="33.33333333333333%" headers="d48899e33 "> </td>
-</tr>
-</tbody>
-</table>
-</div>
-</div>
-<div class="section" id="loio5b0a3dc96c744886b4ec0bdf6d8038ed__section_N10021_N10016_N10001">
-			<p class="p">For the minimum installation of <span class="ph pname">Ogee</span> you require:</p>
-
-			<ul class="ul" id="loio5b0a3dc96c744886b4ec0bdf6d8038ed__ul_zmy_mym_pj"><li class="li">Java SE6 (JDK 1.6). Download it from <a class="extlink" href="http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-javase6-419409.html" target="_blank">http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-javase6-419409.html<img src="../images/3rd_link.png" class="link-external" alt="Information published" title="Information published" border="0"/></a>.</li>
-</ul>
-
-		</div>
-</div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/60eb920cc2a240fc80c95c19d6c92bce.html b/org.eclipse.ogee.help/html/60eb920cc2a240fc80c95c19d6c92bce.html
deleted file mode 100644
index 3eae79b..0000000
--- a/org.eclipse.ogee.help/html/60eb920cc2a240fc80c95c19d6c92bce.html
+++ /dev/null
@@ -1,56 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content=""/>
-<meta name="description" content=""/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Creating an OData Model Using Service URL</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio60eb920cc2a240fc80c95c19d6c92bce">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Creating an OData Model Using Service URL</h1>
-<div class="body taskbody"><p class="shortdesc"/>
-<div class="section context" id="loio60eb920cc2a240fc80c95c19d6c92bce__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<p class="p">To create an OData model using a service metadata URL proceed as follows:</p>
-
-		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loio60eb920cc2a240fc80c95c19d6c92bce__steps_r4g_kmp_mj"><li class="li step stepexpand" id="loio60eb920cc2a240fc80c95c19d6c92bce__step_N10045_N10042_N10012_N10001"><span class="ph cmd">Create a project as outlined in the <a class="xref" href="028bcef958aa430e84a49cbc943b9709.html" title="Creating a project">Creating a Project</a>
-					section. </span></li>
-<li class="li step stepexpand" id="loio60eb920cc2a240fc80c95c19d6c92bce__step_N1004E_N10042_N10012_N10001"><span class="ph cmd">Right click on the project in the Project Tree region, and select <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">New</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Other</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span>.</span><div class="itemgroup stepresult">The <span class="ph emphasis emphasis">Select a Wizard</span> window displays. </div></li>
-<li class="li step stepexpand" id="loio60eb920cc2a240fc80c95c19d6c92bce__step_N10067_N10042_N10012_N10001"><span class="ph cmd">Locate <span class="ph emphasis emphasis">Ogee</span> folder, expand it and select <span class="ph emphasis emphasis">OData
-						Model</span>. </span></li>
-<li class="li step stepexpand" id="loio60eb920cc2a240fc80c95c19d6c92bce__step_N10078_N10042_N10012_N10001"><span class="ph cmd">Click <span class="ph emphasis emphasis">Next</span> to proceed.</span><div class="itemgroup stepresult">
-					<p class="p">The <span class="ph emphasis emphasis">Create New OData Model </span>window appears. </p>
-
-				</div></li>
-<li class="li step stepexpand" id="loio60eb920cc2a240fc80c95c19d6c92bce__step_N10091_N10042_N10012_N10001"><span class="ph cmd">Choose <span class="ph emphasis emphasis">Browse </span>or enter the folder name in the
-						<span class="ph emphasis emphasis">Folder</span> field to select a project folder for the new
-					OData model.</span></li>
-<li class="li step stepexpand" id="loio60eb920cc2a240fc80c95c19d6c92bce__step_N100A2_N10042_N10012_N10001"><span class="ph cmd">Enter a name for the model in the <span class="ph emphasis emphasis">Model name</span> field.</span></li>
-<li class="li step stepexpand" id="loio60eb920cc2a240fc80c95c19d6c92bce__step_N100AF_N10042_N10012_N10001"><span class="ph cmd">Select <span class="ph emphasis emphasis">OData Service URL</span> from the list and click
-						<span class="ph pname">Next</span>. </span><div class="itemgroup stepresult">The New OData model from remote source window appears. </div></li>
-<li class="li step stepexpand" id="loio60eb920cc2a240fc80c95c19d6c92bce__step_N100C8_N10042_N10012_N10001"><span class="ph cmd">Enter the service URL of the service to be imported in the <span class="ph emphasis emphasis">Service
-						URL</span> field and click <span class="ph emphasis emphasis">Go</span>.</span><div class="itemgroup stepresult">On providing a valid URL the service will be populated in the<span class="ph emphasis emphasis">
-						Service details</span> region of the window. </div></li>
-<li class="li step stepexpand" id="loio60eb920cc2a240fc80c95c19d6c92bce__step_N100D9_N10042_N10012_N10001"><span class="ph cmd">Click <strong class="ph b">Finish</strong>.</span><div class="itemgroup stepresult">The selected file is converted to OData service and displayed in the
-					OData Model Editor. All the sections in entities open up in a expanded state for
-						editing.<div class="note note" id="loio60eb920cc2a240fc80c95c19d6c92bce__note_N100DF_N100DC_N100D1_N10042_N10012_N10001"><span class="notetitle">Note</span> The errors
-						in the imported model are indicated by the error icons. The
-							<span class="ph emphasis emphasis">Problems</span> tab view in the properties view displays
-						the existing errors in the service.</div>
-<p class="p">The service is now ready to be
-						edited and will be stored under the selected folder in the Project Explorer.
-					</p>
-</div></li>
-</ol>
-</div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/65b63a88329544efac81319f48e6fd23.html b/org.eclipse.ogee.help/html/65b63a88329544efac81319f48e6fd23.html
deleted file mode 100644
index aa16a45..0000000
--- a/org.eclipse.ogee.help/html/65b63a88329544efac81319f48e6fd23.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="Creating a blank OData model."/>
-<meta name="description" content="Creating a blank OData model."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Creating a Blank OData Model</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio65b63a88329544efac81319f48e6fd23">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Creating a Blank OData Model</h1>
-<div class="body taskbody"><p class="shortdesc">Creating a blank OData model.</p>
-<div class="section context" id="loio65b63a88329544efac81319f48e6fd23__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<p class="p">To create a blank OData model proceed as follows:</p>
-
-		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol><li class="li step stepexpand" id="loio65b63a88329544efac81319f48e6fd23__step_N10021_N1001E_N10012_N10001x"><span class="ph cmd">Open Eclipse screen.</span></li>
-<li class="li step stepexpand" id="loio65b63a88329544efac81319f48e6fd23__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Right-click the new project in the Project Explorer and choose <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">New</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Other</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span> in the resulting menu.</span><ul class="ul choices" id="loio65b63a88329544efac81319f48e6fd23__choices_hnf_pzx_wj"><li class="li choice">Alternately, you can click on <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">File</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">New</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Other</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span>.</li>
-</ul>
-<div class="itemgroup stepresult">The <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">New</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Select a wizard </span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span> window appears.</div></li>
-<li class="li step stepexpand" id="loio65b63a88329544efac81319f48e6fd23__step_N10068_N1001E_N10012_N10001"><span class="ph cmd">Locate and expand the <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">Ogee</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span> folder.</span></li>
-<li class="li step stepexpand" id="loio65b63a88329544efac81319f48e6fd23__step_N1003D_N1001E_N10012_N10001"><span class="ph cmd">Choose <strong class="ph b">OData Model </strong> and click <strong class="ph b">Next</strong>.</span></li>
-</ol><p class="li stepsection">The <span class="ph emphasis emphasis">New OData model</span> screen opens.</p><ol start="5"><li class="li step stepexpand" id="loio65b63a88329544efac81319f48e6fd23__step_N1005A_N1001E_N10012_N10001"><span class="ph cmd">Enter a name for the model in the <strong class="ph b">Model Name</strong> field.</span></li>
-<li class="li step stepexpand" id="loio65b63a88329544efac81319f48e6fd23__step_N1006B_N1001E_N10012_N10001"><span class="ph cmd">Choose <strong class="ph b">Blank OData Model </strong> in the Initial model content region and click
-						<strong class="ph b">Finish</strong>.</span><div class="itemgroup stepresult">The new model is created and opens as a tab page in the OData Model
-					Editor for editing. Also, the model will be stored under the folder selected in
-					the Project Explorer. </div></li>
-</ol></div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/6f79b9f0d7e84260964d146adf96678e.html b/org.eclipse.ogee.help/html/6f79b9f0d7e84260964d146adf96678e.html
deleted file mode 100644
index b6fc493..0000000
--- a/org.eclipse.ogee.help/html/6f79b9f0d7e84260964d146adf96678e.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="Lists documentation explaining configuration settings for features."/>
-<meta name="description" content="Lists documentation explaining configuration settings for features."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css?x=5430219400283577"/>
-<title>Configuring OData Modeler</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-<script type="text/javascript" src="js/jquery-1.10.1.min.js"> </script>
-</head>
-<body class="" id="loio6f79b9f0d7e84260964d146adf96678e">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Configuring OData Modeler</h1>
-<div class="body conbody"><p class="shortdesc">Lists documentation explaining configuration settings for features.</p>
-<p class="p">After you have installed the feature, refer to
-			the following documentation where applicable for more information about how to configure
-			the individual features and toolkits.</p>
-<div class="p">
-			<ul class="ul" id="loio6f79b9f0d7e84260964d146adf96678e__ul_frl_25z_yj"><li class="li">Enable HTTPS for Secure Communications<p class="p">You can enable the use of the HTTPS
-						protocol for secure communications where the information that is exchanged
-						between your application and the host is sensitive.
-						Configure the use of SSL in the application and then
-						configure SSL in the Java Runtime Environment. See .</p>
-</li>
-<li class="li">Configure connection settings to your existing host.<div class="p">You
-						must enable the tools and wizards to display a list of hosts from which you can choose the OData service you want.<div class="note note" id="loio6f79b9f0d7e84260964d146adf96678e__note_N10039_N10036_N10033_N10028_N10025_N10019_N10016_N10001"><span class="notetitle">Note</span> You
-							can configure connection settings when running a wizard or using a
-							tool.</div>
-</div>
-</li>
-</ul>
-
-		</div>
-</div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/7190fdb120b14d21b3a222f2e5d41bcc.image b/org.eclipse.ogee.help/html/7190fdb120b14d21b3a222f2e5d41bcc.image
deleted file mode 100644
index c21bc71..0000000
--- a/org.eclipse.ogee.help/html/7190fdb120b14d21b3a222f2e5d41bcc.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/726aea8cdc914721b1a52777dd6215b0.image b/org.eclipse.ogee.help/html/726aea8cdc914721b1a52777dd6215b0.image
deleted file mode 100644
index 60f118e..0000000
--- a/org.eclipse.ogee.help/html/726aea8cdc914721b1a52777dd6215b0.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/78ca878648554e95af56878d64a5dbe6.image b/org.eclipse.ogee.help/html/78ca878648554e95af56878d64a5dbe6.image
deleted file mode 100644
index b4a32f0..0000000
--- a/org.eclipse.ogee.help/html/78ca878648554e95af56878d64a5dbe6.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/7a300bd3bf2e4ebd8e82499f5917bee2.image b/org.eclipse.ogee.help/html/7a300bd3bf2e4ebd8e82499f5917bee2.image
deleted file mode 100644
index c2e3df2..0000000
--- a/org.eclipse.ogee.help/html/7a300bd3bf2e4ebd8e82499f5917bee2.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/7d9542f49462404a94ffb69a7995fcc6.image b/org.eclipse.ogee.help/html/7d9542f49462404a94ffb69a7995fcc6.image
deleted file mode 100644
index d57d748..0000000
--- a/org.eclipse.ogee.help/html/7d9542f49462404a94ffb69a7995fcc6.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/7de0aefc499f40e6988734b12f1e98f1.image b/org.eclipse.ogee.help/html/7de0aefc499f40e6988734b12f1e98f1.image
deleted file mode 100644
index d925aa0..0000000
--- a/org.eclipse.ogee.help/html/7de0aefc499f40e6988734b12f1e98f1.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/7ecca138e0cd4536a9d4b8685ab4801e.image b/org.eclipse.ogee.help/html/7ecca138e0cd4536a9d4b8685ab4801e.image
deleted file mode 100644
index 00cdc4d..0000000
--- a/org.eclipse.ogee.help/html/7ecca138e0cd4536a9d4b8685ab4801e.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/804f9805a814473098f0216d1d996cc7.image b/org.eclipse.ogee.help/html/804f9805a814473098f0216d1d996cc7.image
deleted file mode 100644
index 7decc79..0000000
--- a/org.eclipse.ogee.help/html/804f9805a814473098f0216d1d996cc7.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/80bf05f75cb74264a6528f68502375a3.image b/org.eclipse.ogee.help/html/80bf05f75cb74264a6528f68502375a3.image
deleted file mode 100644
index 94db7b8..0000000
--- a/org.eclipse.ogee.help/html/80bf05f75cb74264a6528f68502375a3.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/81e6e29016e34aa98d5b6fce237e8b9d.html b/org.eclipse.ogee.help/html/81e6e29016e34aa98d5b6fce237e8b9d.html
deleted file mode 100644
index f9ecfb7..0000000
--- a/org.eclipse.ogee.help/html/81e6e29016e34aa98d5b6fce237e8b9d.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="Explains how to solve errors that might arise."/>
-<meta name="description" content="Explains how to solve errors that might arise."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css?x=5256387041861651"/>
-<title>Troubleshooting</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-<script type="text/javascript" src="js/jquery-1.10.1.min.js"> </script>
-</head>
-<body class="" id="loio81e6e29016e34aa98d5b6fce237e8b9d">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Troubleshooting</h1>
-<p class="shortdesc">Explains how to solve errors that might arise.</p>
-<div class="topic concept nested1" id="concept_pbp_bqd_fj"><h2 class="title topictitle2">Network Connections</h2>
-<div class="body conbody"><div class="section"><div class="section_title">Error: Network connection error / SSL error</div><div type="Error: Network connection error / SSL error">
-				
-				<div class="p"><strong class="ph b">Description</strong>: You may encounter this error, if you have not configured a
-					certificate while creating connection. To workaround this issue, ensure you have
-					the certificate of the server you want to connect saved on the client system and
-					perform the following steps:<div class="note note"><span class="notetitle">Note</span> Ensure to take a backup of the original
-						cacerts file,to revert back to your original configuration at any point of
-						time.</div>
-<ol class="ol" id="concept_pbp_bqd_fj__ol_y3w_xbg_3p"><li class="li">Import the certificate to the Java keystore. To import the certificate,
-							in the command prompt, go to <span class="ph filepath">{Java home
-								location}\jre\lib\security</span>. </li>
-<li class="li">Run the following command: <p class="p"><span class="ph filepath">keytool -import -file
-									&lt;filename&gt; -keystore cacerts</span></p>
- Here, filename
-							is the server certificate with a complete file location path. </li>
-<li class="li">For <span class="ph uicontrol">Enter keystore Password</span>, enter changeit.</li>
-<li class="li">Check if the current eclipse environment is running on the same jdk/jre
-							configured with the server certificate in step 2. </li>
-</ol>
-</div>
-
-			</div></div>
-</div>
-</div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/825cf65fc5d547619134d14c3f94ec92.image b/org.eclipse.ogee.help/html/825cf65fc5d547619134d14c3f94ec92.image
deleted file mode 100644
index bf97f7f..0000000
--- a/org.eclipse.ogee.help/html/825cf65fc5d547619134d14c3f94ec92.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/83c9556bdbf641d3892e1b8434521499.image b/org.eclipse.ogee.help/html/83c9556bdbf641d3892e1b8434521499.image
deleted file mode 100644
index 98ffde5..0000000
--- a/org.eclipse.ogee.help/html/83c9556bdbf641d3892e1b8434521499.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/8617a33461f645a38cbefe58b66154b1.image b/org.eclipse.ogee.help/html/8617a33461f645a38cbefe58b66154b1.image
deleted file mode 100644
index be3d60b..0000000
--- a/org.eclipse.ogee.help/html/8617a33461f645a38cbefe58b66154b1.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/86e4b6eede0b408ba9d69f24b8148642.html b/org.eclipse.ogee.help/html/86e4b6eede0b408ba9d69f24b8148642.html
deleted file mode 100644
index 4887c3b..0000000
--- a/org.eclipse.ogee.help/html/86e4b6eede0b408ba9d69f24b8148642.html
+++ /dev/null
@@ -1,56 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="Import XML and EDMX files into a project"/>
-<meta name="description" content="Import XML and EDMX files into a project"/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Importing an OData Model</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio86e4b6eede0b408ba9d69f24b8148642">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Importing an OData Model</h1>
-<div class="body taskbody"><p class="shortdesc">Import XML and EDMX files into a project</p>
-<div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol><li class="li step stepexpand"><span class="ph cmd">Open Eclipse and navigate to
-						<span class="ph uicontrol">File</span><span class="ph uicontrol">Import</span> to open the
-						<span class="ph emphasis emphasis">Import-Select</span> window.</span></li>
-<li class="li step stepexpand"><span class="ph cmd">In the Import window, expand <span class="ph uicontrol">Ogee</span><span class="ph uicontrol">OData
-					Model</span>.</span></li>
-<li class="li step stepexpand"><span class="ph cmd">Click <span class="ph emphasis emphasis">Next</span> to open the <span class="ph emphasis emphasis">Import OData
-						Model</span> window.</span></li>
-<li class="li step stepexpand"><span class="ph cmd">Choose <span class="ph emphasis emphasis">Browse</span> or enter the folder name in the
-						<span class="ph emphasis emphasis">Folder</span> field to select a project folder for the new
-					OData model.</span></li>
-<li class="li step stepexpand"><span class="ph cmd">Enter a name for the model in the <span class="ph emphasis emphasis">Model Name</span> field</span></li>
-<li class="li step stepexpand"><span class="ph cmd">Select either <span class="ph emphasis emphasis">OData Metadata File</span> or <span class="ph emphasis emphasis">OData
-						Service URL</span> from the list and click
-					<span class="ph emphasis emphasis">Next</span>.</span></li>
-<li class="li step stepexpand"><span class="ph cmd">Do the following in the next page based on your selection:</span></li>
-</ol><p class="li stepsection">
-				<ul class="ul" id="loio86e4b6eede0b408ba9d69f24b8148642__ul_jvn_xwl_tp"><li class="li"><span class="ph emphasis emphasis">OData Metadata File</span>- Enter the path to access the edmx
-						or xml file, or click <span class="ph emphasis emphasis">Browse </span> to choose the file from
-						the system and click <span class="ph emphasis emphasis">Go</span>. On selection of a valid file
-						the contents of the file will be populated in the Service details region of
-						the window. </li>
-<li class="li"><span class="ph emphasis emphasis">OData Service URL</span>- Enter the service URL of the service
-						to be imported in the Service URL field and click <span class="ph emphasis emphasis">Go</span> On
-						providing a valid URL the service will be populated in the<span class="ph emphasis emphasis"> Service
-							details</span> region of the window..</li>
-</ul>
-
-			</p><ol start="8"><li class="li step stepexpand"><span class="ph cmd">Click <span class="ph emphasis emphasis">Finish</span>.</span></li>
-<li class="li step stepexpand"><span class="ph cmd">The selected file is converted to an OData service and displayed in the OData
-					Model Editor. All the sections in entity element open up in a expanded state for
-					editing.</span><div class="itemgroup stepresult">The service is now ready to be edited and will be stored under the
-					folder selected in the Project Explorer.</div></li>
-</ol></div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/8777b42c12bc4796a5898dbba6feb3fb.html b/org.eclipse.ogee.help/html/8777b42c12bc4796a5898dbba6feb3fb.html
deleted file mode 100644
index 6c7fb32..0000000
--- a/org.eclipse.ogee.help/html/8777b42c12bc4796a5898dbba6feb3fb.html
+++ /dev/null
@@ -1,69 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="This section provides instructions to add properties for an entity and complex type."/>
-<meta name="description" content="This section provides instructions to add properties for an entity and complex type."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Adding Properties</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio8777b42c12bc4796a5898dbba6feb3fb">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Adding Properties</h1>
-<div class="body taskbody"><p class="shortdesc">This section provides instructions to add properties for an entity and complex
-		type.</p>
-<div class="section context" id="loio8777b42c12bc4796a5898dbba6feb3fb__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<div class="note note" id="loio8777b42c12bc4796a5898dbba6feb3fb__note_N10015_N10012_N10001"><span class="notetitle">Note</span> A key property is automatically added to the entity
-				when the entity is created.</div>
-
-			<p class="p"/>
-
-		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol><li class="li step" id="loio8777b42c12bc4796a5898dbba6feb3fb__step_N10025_N10022_N10012_N10001"><span class="ph cmd">Right click on the header of the <span class="ph emphasis emphasis">Entity Type</span> of the OData
-					Model Element and select <span class="ph emphasis emphasis">Add Properties</span> and select the
-					property to be added of your choice: </span><ul class="ul choices" id="loio8777b42c12bc4796a5898dbba6feb3fb__choices_ufw_vpv_sp"><li class="li choice">You can also create similar properties by selecting the existing
-						property and pressing the <em class="ph i">Enter</em> key.</li>
-</ul>
-</li>
-</ol><p class="li stepsection">The properties have different icons as shown in the table below:
-<div class="tablenoborder"><table summary="" id="loio8777b42c12bc4796a5898dbba6feb3fb__table_fzv_lwf_xj" class="table" frame="border" border="1" rules="all"><caption><span class="tablecap">Table 1:
-					Properties</span></caption><thead class="thead" align="left"><tr class="row"><th class="entry" valign="top" width="21.50537634408602%" id="d66972e45">Properties</th>
-<th class="entry" valign="top" width="78.49462365591397%" id="d66972e47">Icons</th>
-</tr>
-</thead>
-<tbody class="tbody"><tr class="row"><td class="entry" valign="top" width="21.50537634408602%" headers="d66972e45 ">Key </td>
-<td class="entry" valign="top" width="78.49462365591397%" headers="d66972e47 "><img class="image" id="loio8777b42c12bc4796a5898dbba6feb3fb__image_bry_s1k_tp" src="d5b2d0a90b884f7a9cb96d5db1e489a2.image"/></td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="21.50537634408602%" headers="d66972e45 ">Simple</td>
-<td class="entry" valign="top" width="78.49462365591397%" headers="d66972e47 "><img class="image" id="loio8777b42c12bc4796a5898dbba6feb3fb__image_hnw_bbk_tp" src="21ddbd2392ec4be0b10e7fe4e879a3d0.image"/></td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="21.50537634408602%" headers="d66972e45 ">Complex</td>
-<td class="entry" valign="top" width="78.49462365591397%" headers="d66972e47 "><img class="image" id="loio8777b42c12bc4796a5898dbba6feb3fb__image_ggv_1ck_tp" src="264a88124808438bb832623e5959df06.image"/></td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="21.50537634408602%" headers="d66972e45 ">Navigation</td>
-<td class="entry" valign="top" width="78.49462365591397%" headers="d66972e47 "><img class="image" id="loio8777b42c12bc4796a5898dbba6feb3fb__image_k1x_qck_tp" src="894f07f1e567433da521636073c398a2.image"/></td>
-</tr>
-</tbody>
-</table>
-</div>
-<div class="note note" id="loio8777b42c12bc4796a5898dbba6feb3fb__note_N100C9_N10043_N10022_N10012_N10001"><span class="notetitle">Note</span> The navigation property
-					will be added under the Navigation Properties region. </div>
-<img class="image" id="loio8777b42c12bc4796a5898dbba6feb3fb__image_h5l_1dk_tp" src="7ecca138e0cd4536a9d4b8685ab4801e.image"/></p><ol start="2"><li class="li step" id="loio8777b42c12bc4796a5898dbba6feb3fb__step_N100D7_N10022_N10012_N10001"><span class="ph cmd">Select a Property to view and edit its properties in the Properties View.</span>
-					<div class="note note" id="loio8777b42c12bc4796a5898dbba6feb3fb__note_N100E6_N100E3_N100DB_N10022_N10012_N10001"><span class="notetitle">Note</span> To delete a property,
-						right click on the property and select <span class="ph emphasis emphasis">Delete</span></div>
-
-				</li>
-</ol></div>
-<div class="related-links"> 
-<div class="relinfo"><div class="relinfotitle ">Related Information</div>
-<div><a class="link" href="a3997075e60b4dd3b3e47a8126070414.html" title="Understanding the OData model element.">Working with the OData Model Element</a></div>
-</div>
-</div></div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/894f07f1e567433da521636073c398a2.image b/org.eclipse.ogee.help/html/894f07f1e567433da521636073c398a2.image
deleted file mode 100644
index 0262d80..0000000
--- a/org.eclipse.ogee.help/html/894f07f1e567433da521636073c398a2.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/90194a0df65145a68a7626801f1b6f7a.image b/org.eclipse.ogee.help/html/90194a0df65145a68a7626801f1b6f7a.image
deleted file mode 100644
index f6239b5..0000000
--- a/org.eclipse.ogee.help/html/90194a0df65145a68a7626801f1b6f7a.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/91351c36ba3f4cc7bd959de0014cc071.image b/org.eclipse.ogee.help/html/91351c36ba3f4cc7bd959de0014cc071.image
deleted file mode 100644
index 5017c5a..0000000
--- a/org.eclipse.ogee.help/html/91351c36ba3f4cc7bd959de0014cc071.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/9719d8b8382643869d6785542387d684.html b/org.eclipse.ogee.help/html/9719d8b8382643869d6785542387d684.html
deleted file mode 100644
index 5b62b4a..0000000
--- a/org.eclipse.ogee.help/html/9719d8b8382643869d6785542387d684.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="Ogee provides the OData Model Editor to create OData Models. The Developer Guide focuses on guiding the user to use OData Model Editor effectively to create the OData Models."/>
-<meta name="description" content="Ogee provides the OData Model Editor to create OData Models. The Developer Guide focuses on guiding the user to use OData Model Editor effectively to create the OData Models."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Ogee: Developer Guide</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio9719d8b8382643869d6785542387d684">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Ogee: Developer Guide</h1>
-<p class="shortdesc">Ogee provides the OData Model Editor to create OData Models. The Developer Guide focuses
-		on guiding the user to use OData Model Editor effectively to create the OData
-		Models.</p>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/9ac4b270ae9940d5ba2c7017a5425df9.image b/org.eclipse.ogee.help/html/9ac4b270ae9940d5ba2c7017a5425df9.image
deleted file mode 100644
index 772c5a6..0000000
--- a/org.eclipse.ogee.help/html/9ac4b270ae9940d5ba2c7017a5425df9.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/9c4b39ac6fde49c9a69c32d4ed84c2c5.html b/org.eclipse.ogee.help/html/9c4b39ac6fde49c9a69c32d4ed84c2c5.html
deleted file mode 100644
index 481283a..0000000
--- a/org.eclipse.ogee.help/html/9c4b39ac6fde49c9a69c32d4ed84c2c5.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="The Master Guide for Ogee provides you with a starting point for implementation and provides an overview of the features you need to install as a minimum requirement and those that are optional."/>
-<meta name="description" content="The Master Guide for Ogee provides you with a starting point for implementation and provides an overview of the features you need to install as a minimum requirement and those that are optional."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css?x=7077620421871471"/>
-<title>Ogee: Documentation Overview</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-<script type="text/javascript" src="js/jquery-1.10.1.min.js"> </script>
-</head>
-<body class="" id="loio9c4b39ac6fde49c9a69c32d4ed84c2c5">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Ogee: Documentation Overview</h1>
-<p class="shortdesc">The Master Guide for Ogee provides you with a starting point for implementation and
-		provides an overview of the features you need to install as a minimum requirement and those
-		that are optional.</p>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/Adding Properties.html b/org.eclipse.ogee.help/html/Adding Properties.html
new file mode 100644
index 0000000..9d82d52
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Adding Properties.html
@@ -0,0 +1,63 @@
+

+<html lang="en-us">

+<head>

+</head>

+<h1 class="title topictitle1">Adding Properties</h1>

+<div class="body taskbody"><p class="shortdesc">This section provides instructions to add properties for an entity and complex

+		type.</p>

+

+			<b>NOTE:</b></span> A key property is automatically added to the entity

+				when the entity is created.</div>

+

+			<p class="p"/>

+

+		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol><li class="li step" id="loio8777b42c12bc4796a5898dbba6feb3fb__step_N10025_N10022_N10012_N10001"><span class="ph cmd">Right click on the header of the <span class="ph emphasis emphasis">Entity Type</span> of the OData

+					Model Element and select <b>Add Properties</b></span> and select the

+					property to be added of your choice: </span><ul class="ul choices" id="loio8777b42c12bc4796a5898dbba6feb3fb__choices_ufw_vpv_sp"><li class="li choice">You can also create similar properties by selecting the existing

+						property and pressing the <em class="ph i">Enter</em> key.</li>

+</ul>

+</li>

+</ol><p class="li stepsection">The properties have different icons as shown in the table below:

+<div class="tablenoborder"><table summary="" id="loio8777b42c12bc4796a5898dbba6feb3fb__table_fzv_lwf_xj" class="table" frame="border" border="1" rules="all"><caption><span class="tablecap">Table 1:

+					Properties</span></caption><thead class="thead" align="left"><tr class="row"><th class="entry" valign="top" width="21.50537634408602%" id="d66972e45">Properties</th>

+<th class="entry" valign="top" width="78.49462365591397%" id="d66972e47">Icons</th>

+</tr>

+</thead>

+<tbody class="tbody"><tr class="row"><td class="entry" valign="top" width="21.50537634408602%" headers="d66972e45 ">Key </td>

+<td class="entry" valign="top" width="78.49462365591397%" headers="d66972e47 "><img src="key.png" alt="key" style="width:20px;height:20px"/></td>

+</tr>

+<tr class="row"><td class="entry" valign="top" width="21.50537634408602%" headers="d66972e45 ">Simple</td>

+<td class="entry" valign="top" width="78.49462365591397%" headers="d66972e47 "><img src="Simple.png" alt="Simple" style="width:20px;height:20px""/></td>

+</tr>

+<tr class="row"><td class="entry" valign="top" width="21.50537634408602%" headers="d66972e45 ">Complex</td>

+<td class="entry" valign="top" width="78.49462365591397%" headers="d66972e47 "><img src="Complex.png" alt="Complex" style="width:20px;height:20px""/></td>

+</tr>

+<tr class="row"><td class="entry" valign="top" width="21.50537634408602%" headers="d66972e45 ">Navigation</td>

+<td class="entry" valign="top" width="78.49462365591397%" headers="d66972e47 "><img src="navigation.png" alt="navigation" style="width:20px;height:20px"/></td>

+</tr>

+</tbody>

+</table> <p>

+</div>

+<p>

+<p>

+<div class="note note" id="loio8777b42c12bc4796a5898dbba6feb3fb__note_N100C9_N10043_N10022_N10012_N10001"><span class="notetitle"><b>NOTE:</b></span> The navigation property

+					will be added under the Navigation Properties region. </div>

+					

+<p>

+</p>					

+<img src="Proiperities.png" alt="Properties" style="width:150px;height:200px""/></p>

+<p>

+<p>

+<ol start="2"><li class="li step" id="loio8777b42c12bc4796a5898dbba6feb3fb__step_N100D7_N10022_N10012_N10001"><span class="ph cmd">Select a Property to view and edit its properties in the Properties View.</span>

+					<div class="note note" id="loio8777b42c12bc4796a5898dbba6feb3fb__note_N100E6_N100E3_N100DB_N10022_N10012_N10001"><span class="notetitle">Note</span> To delete a property,

+						right click on the property and select <span class="ph emphasis emphasis">Delete</span></div>

+

+				</li>

+</ol></div>

+<div class="related-links"> 

+<div class="relinfo"><div class="relinfotitle ">Related Information</div>

+<div><a class="link" href="Working with the OData Model Element.html" title="Understanding the OData model element.">Working with the OData Model Element</a></div>

+</div>

+</div></div></div>

+</body>

+</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/Adding an Entity Set.html b/org.eclipse.ogee.help/html/Adding an Entity Set.html
new file mode 100644
index 0000000..546bd20
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Adding an Entity Set.html
@@ -0,0 +1,41 @@
+<html lang="en-us">

+<head>

+<title> Adding an Entity Set </title>

+</head>

+<h1 class="title topictitle1">Adding an Entity Set</h1>

+<div class="body taskbody"><p class="shortdesc">This section provides information to add entity sets to the entities. An entity set is automatically created when an entity type is created. Further, you

+				can also add more entity sets to the entity type as required.</p>

+

+		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loiof331294ccbe54bcf8d2b68ef5a57773b__steps_qmx_bqv_sp"><li class="li step stepexpand" id="loiof331294ccbe54bcf8d2b68ef5a57773b__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Right click on the header of the <span class="ph pname"><b>Entity Type</b></span> OData Model Element

+					and select <span class="ph pname">Add Entity Sets</span></span><ul class="ul choices" id="loiof331294ccbe54bcf8d2b68ef5a57773b__choices_ap4_kkf_xj"><li class="li choice">You can also create an entity set, by selecting the existing entity set

+						and pressing the <em class="ph i">Enter</em> key. </li>

+</ul>

+<p> 

+</p>

+

+<img src="Adding an Entity set.png" alt="Adding an Entity set" style="width:304px;height:228px"/> <p> 

+</p>

+				<div class="itemgroup stepresult">The new entity set is added under the Entity Sets section and is ready for

+						editing.<div class="note note" id="loiof331294ccbe54bcf8d2b68ef5a57773b__note_N10044_N10041_N10021_N1001E_N10012_N10001">

+						<p></p>

+						<span class="notetitle"><b>NOTE:</b></span> An unique

+						name will be displayed for the new entity set.</div>

+						<p> 

+</p>

+

+					<img src="Adding an Entity set 2.png" alt="Adding an Entity set-unique name" style="width:228px;height:228px""/>

+					<p> 

+</p>

+				</div></li>

+				

+<li class="li step stepexpand" id="loiof331294ccbe54bcf8d2b68ef5a57773b__step_N10057_N1001E_N10012_N10001"><span class="ph cmd">Select an Entity Set to view and edit its properties in the Properties

+					View.</span></li>

+</ol>

+</div>

+<div class="related-links"> 

+<div class="relinfo"><div class="relinfotitle ">Related Information</div>

+<div><a href="Adding Properties.html" >Adding Properties</a></div>

+</div>

+</div></div></div>

+</body>

+</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/Adding an Entity set 2.png b/org.eclipse.ogee.help/html/Adding an Entity set 2.png
new file mode 100644
index 0000000..b151e5f
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Adding an Entity set 2.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/Adding an Entity set.png b/org.eclipse.ogee.help/html/Adding an Entity set.png
new file mode 100644
index 0000000..54f72d5
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Adding an Entity set.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/BDA1.png b/org.eclipse.ogee.help/html/BDA1.png
new file mode 100644
index 0000000..5fae6f8
--- /dev/null
+++ b/org.eclipse.ogee.help/html/BDA1.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/BDA2.png b/org.eclipse.ogee.help/html/BDA2.png
new file mode 100644
index 0000000..67b9661
--- /dev/null
+++ b/org.eclipse.ogee.help/html/BDA2.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/BDA3.png b/org.eclipse.ogee.help/html/BDA3.png
new file mode 100644
index 0000000..7df5e2b
--- /dev/null
+++ b/org.eclipse.ogee.help/html/BDA3.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/Basic Layout.html b/org.eclipse.ogee.help/html/Basic Layout.html
new file mode 100644
index 0000000..5cb1ea5
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Basic Layout.html
@@ -0,0 +1,40 @@
+<html lang="en-us">

+<head>

+<title>Basic Layout</title>

+</head>

+<h1 class="title topictitle1">Basic Layout</h1>

+<div class="body taskbody"><p class="shortdesc">This section provides information on setting up the basic layout for your OData model in

+		the OData model editor.</p>

+<h2 class="sectiontitle tasklabel">Context</h2></div>

+			<p class="p">The Basic layout provides the user with only one default option to layout the model in the

+				OData model editor. But, you can create your own layout by using the extension

+				points.</p>

+

+		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loiof159edb90e754bd78496eec86c7e66ea__steps_b5f_v3w_sp"><li class="li step stepexpand" id="loiof159edb90e754bd78496eec86c7e66ea__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">From the Eclipse main menu, select <b>Windows</b></span> and then

+						<span class="ph pname"><b>Preferences</b></span></span><div class="itemgroup stepresult">The <b>Preferences</b></span> page appears.</div></li>

+<li class="li step stepexpand" id="loiof159edb90e754bd78496eec86c7e66ea__step_N10039_N1001E_N10012_N10001"><span class="ph cmd">Expand <b>OData Development</b> and choose <b>OData Model Editor</b>.

+						</span>.</span><div class="itemgroup stepresult">The OData Model Editor Layout options opens in the details region and the Basic

+					Layout is selected by default. Here is a sample of the basic layouting:

+							<p class="p"><img src="Basiclayout1.png" alt="basic Layout" style="width:240px;height:300px"/></p>

+<div class="p">The basic layout avoids overlapping of the

+						models and layouts the model in the following order:<ol class="ol" type="a" id="loiof159edb90e754bd78496eec86c7e66ea__ol_f3y_mdw_fj"><li class="li">Self associated entities and non-associated entitites.</li>

+<li class="li">Associated entities</li>

+<li class="li">Function Imports</li>

+<li class="li">Complex Types</li>

+</ol>

+<div class="note note" id="loiof159edb90e754bd78496eec86c7e66ea__note_N1006D_N10052_N10047_N10038_N1001E_N10012_N10001"><span class="notetitle">Note</span> You

+							can also select a layout by right clicking on the OData Model Editor and

+							choosing <strong class="ph b">Layout</strong> and selecting a layout of your choice from the

+							context menu. If there are no extra layouts other than basic, then no

+							additional layout(s) will be displayed.<p class="p"><img src="Basiclayout2.png" alt="basic Layout" style="width:240px;height:200px"/></p>

+</div>

+</div>

+</div></li>

+<li class="li step stepexpand" id="loiof159edb90e754bd78496eec86c7e66ea__step_N10081_N1001E_N10012_N10001"><span class="ph cmd">Choose <strong class="ph b">Apply</strong> to apply the layout for the OData Model Editor.</span></li>

+<li class="li step stepexpand" id="loiof159edb90e754bd78496eec86c7e66ea__step_N1008E_N1001E_N10012_N10001"><span class="ph cmd">Open the OData Model Editor to view the OData model in the selected

+					layout.</span></li>

+</ol>

+</div>

+</div></div>

+</body>

+</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/BasicLayout1.png b/org.eclipse.ogee.help/html/BasicLayout1.png
new file mode 100644
index 0000000..b8c5956
--- /dev/null
+++ b/org.eclipse.ogee.help/html/BasicLayout1.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/BasicLayout2.png b/org.eclipse.ogee.help/html/BasicLayout2.png
new file mode 100644
index 0000000..08dedde
--- /dev/null
+++ b/org.eclipse.ogee.help/html/BasicLayout2.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/CET.png b/org.eclipse.ogee.help/html/CET.png
new file mode 100644
index 0000000..d09825a
--- /dev/null
+++ b/org.eclipse.ogee.help/html/CET.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/CF5.png b/org.eclipse.ogee.help/html/CF5.png
new file mode 100644
index 0000000..fdb9946
--- /dev/null
+++ b/org.eclipse.ogee.help/html/CF5.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/CFI1.png b/org.eclipse.ogee.help/html/CFI1.png
new file mode 100644
index 0000000..6a92a86
--- /dev/null
+++ b/org.eclipse.ogee.help/html/CFI1.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/CFI2.png b/org.eclipse.ogee.help/html/CFI2.png
new file mode 100644
index 0000000..c05bc38
--- /dev/null
+++ b/org.eclipse.ogee.help/html/CFI2.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/CFI3.png b/org.eclipse.ogee.help/html/CFI3.png
new file mode 100644
index 0000000..2912322
--- /dev/null
+++ b/org.eclipse.ogee.help/html/CFI3.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/CFI4.png b/org.eclipse.ogee.help/html/CFI4.png
new file mode 100644
index 0000000..976e044
--- /dev/null
+++ b/org.eclipse.ogee.help/html/CFI4.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/CSA1.png b/org.eclipse.ogee.help/html/CSA1.png
new file mode 100644
index 0000000..7e3876a
--- /dev/null
+++ b/org.eclipse.ogee.help/html/CSA1.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/CSA2.png b/org.eclipse.ogee.help/html/CSA2.png
new file mode 100644
index 0000000..8ae0340
--- /dev/null
+++ b/org.eclipse.ogee.help/html/CSA2.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/CSA3.png b/org.eclipse.ogee.help/html/CSA3.png
new file mode 100644
index 0000000..831ad56
--- /dev/null
+++ b/org.eclipse.ogee.help/html/CSA3.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/CT1.png b/org.eclipse.ogee.help/html/CT1.png
new file mode 100644
index 0000000..28497c1
--- /dev/null
+++ b/org.eclipse.ogee.help/html/CT1.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/CT2.png b/org.eclipse.ogee.help/html/CT2.png
new file mode 100644
index 0000000..7acfba9
--- /dev/null
+++ b/org.eclipse.ogee.help/html/CT2.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/Choose.png b/org.eclipse.ogee.help/html/Choose.png
new file mode 100644
index 0000000..386132a
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Choose.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/Collapse.png b/org.eclipse.ogee.help/html/Collapse.png
new file mode 100644
index 0000000..336f304
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Collapse.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/264a88124808438bb832623e5959df06.image b/org.eclipse.ogee.help/html/Complex.png
similarity index 77%
rename from org.eclipse.ogee.help/html/264a88124808438bb832623e5959df06.image
rename to org.eclipse.ogee.help/html/Complex.png
index 66e46e6..1b2fd0f 100644
--- a/org.eclipse.ogee.help/html/264a88124808438bb832623e5959df06.image
+++ b/org.eclipse.ogee.help/html/Complex.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/Creating Bidirectional Association.html b/org.eclipse.ogee.help/html/Creating Bidirectional Association.html
new file mode 100644
index 0000000..6020206
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Creating Bidirectional Association.html
@@ -0,0 +1,45 @@
+<html lang="en-us">

+<head>

+<title>Creating a Bidirectional Association</title>

+</head>

+<h1 class="title topictitle1">Creating a Bidirectional Association</h1>

+<div class="body taskbody"><p class="shortdesc">Instructions about how to create a bidirectional associations.</p>

+<div class="section context" id="loioeef0a787772546da8bb64168fba51823__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>

+			<p class="p">To create a bidirectional association proceed as follows:</p>

+

+		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loioeef0a787772546da8bb64168fba51823__steps_arg_pgw_sp"><li class="li step stepexpand" id="loioeef0a787772546da8bb64168fba51823__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Create two entity types as mentioned in the <a class="xref" href="Creating an Entity Type.html" title="This section guides you to create an Entity Type">Creating an Entity Type</a> section.</span></li>

+<li class="li step stepexpand" id="loioeef0a787772546da8bb64168fba51823__step_N1002E_N1001E_N10012_N10001"><span class="ph cmd">Select the <span class="ph pname">Bidirectional</span>

+					object under <strong class="ph b">Associations.</strong>

+					<p><img src="BDA1.png" alt="Mountain View" style="width:100px;height:28px">

+					</p>

+					</span><div class="itemgroup stepresult">Once Bidirectional is selected and on moving the mouse pointer into the

+					OData Model Editor, the mouse pointer changes its shape indicating that the

+					association creation mode in active. </div></li>

+<li class="li step stepexpand" id="loioeef0a787772546da8bb64168fba51823__step_N10049_N1001E_N10012_N10001"><span class="ph cmd">Click in the source entity type to create a bidirectional association and drag

+					the mouse to the destination entity type.</span>

+					<div class="note note" id="loioeef0a787772546da8bb64168fba51823__note_N10054_N10051_N10049_N1001E_N10012_N10001"><span class="notetitle">Note</span> The destination OData Model Element

+						cannot be a complex type, function import. The cursor icon changes for

+						invalid destination OData Model Element.</div>

+

+				<div class="itemgroup stepresult">The association is created and a line with an arrow at both the ends

+					connects the shapes. </div></li>

+<li class="li step stepexpand" id="loioeef0a787772546da8bb64168fba51823__step_N10056_N1001E_N10012_N10001"><span class="ph cmd">Create multiple bidirectional association as required. </span></li>

+<li class="li step stepexpand" id="loioeef0a787772546da8bb64168fba51823__step_N1005F_N1001E_N10012_N10001"><span class="ph cmd">Choose the <span class="ph pname">Select </span><img src="BDA2.png" alt="" style="width:100px;height:20px"/> Icon in the Pallete to come

+					out of the association create mode.</span><ul class="ul choices" id="loioeef0a787772546da8bb64168fba51823__choices_jtm_52c_yj"><li class="li choice">Press escape from the keyboard to come out of the association create mode.<p class="p"><img src="BDA3.png" alt="" style="width:304px;height:228px""/></p>

+</li>

+</ul>

+

+					<div class="note note" id="loioeef0a787772546da8bb64168fba51823__note_N10080_N1007D_N1005B_N1001E_N10012_N10001"><span class="notetitle">Note</span> A Navigation Property

+						is automatically created for the new association. You can rename the

+						navigation property by double clicking on it or by pressing <kbd class="key">F2</kbd>.

+						Every navigation property should have a unique name. </div>

+

+					<p class="p">On saving the project, the tree region populates the Entity Types, new

+						Association and the corresponding Navigation Properties. </p>

+

+				</li>

+</ol>

+</div>

+</div></div>

+</body>

+</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/4b867f2a7cd44a88a1067ef757864c9d.html b/org.eclipse.ogee.help/html/Creating OData Model Elements.html
similarity index 75%
rename from org.eclipse.ogee.help/html/4b867f2a7cd44a88a1067ef757864c9d.html
rename to org.eclipse.ogee.help/html/Creating OData Model Elements.html
index 8dbb163..71c7cbb 100644
--- a/org.eclipse.ogee.help/html/4b867f2a7cd44a88a1067ef757864c9d.html
+++ b/org.eclipse.ogee.help/html/Creating OData Model Elements.html
@@ -1,42 +1,36 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="Creating OData Model Elements in the OData Model Editor."/>
-<meta name="description" content="Creating OData Model Elements in the OData Model Editor."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Creating OData Model Elements</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio4b867f2a7cd44a88a1067ef757864c9d">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Creating OData Model Elements</h1>
-<div class="body taskbody"><p class="shortdesc">Creating OData Model Elements in the OData Model Editor.</p>
-<div class="section context" id="loio4b867f2a7cd44a88a1067ef757864c9d__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<p class="p">This section will guide you to use the elements in the palette. There are two ways to
-				transport the elements from the palette onto the OData Model Editor:</p>
-
-		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><div class="li step p" id="loio4b867f2a7cd44a88a1067ef757864c9d__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Select the element in the palette by clicking on it and then clicking inside
-					the OData Model Editor.</span><ul class="ul choices" id="loio4b867f2a7cd44a88a1067ef757864c9d__choices_ewj_ntz_wj"><li class="li choice">Alternately, you can also select an element under
-							<span class="ph emphasis emphasis">Objects</span> in the pallete, press and hold down the
-						left mouse button, drag the element onto the OData Model Editor.</li>
-<li class="li choice">Drop the element by releasing the mouse button. </li>
-</ul>
-<div class="itemgroup stepresult">The OData Model Element is created in the OData Model Editor. <div class="p">
-						<div class="note note" id="loio4b867f2a7cd44a88a1067ef757864c9d__note_N1004E_N1004B_N10042_N10021_N1001E_N10012_N10001"><span class="notetitle">Note</span> Every new
-							element created in the OData Model Editor will have a unique name at the
-							time of creation.</div>
-
-					</div>
-<p class="p">The object's name field is editable immediately.</p>
-</div></div>
-</div>
-</div></div>
-</body>
+

+<html lang="en-us">

+<head>

+<title>Creating OData Model Elements</title>

+<!--[if lte IE 7]><style>

+      .codeblock{

+          overflow:visible;

+      }</style><![endif]-->

+</head>

+<body class="" id="loio4b867f2a7cd44a88a1067ef757864c9d">

+<div id="wrapper"><div id="container">

+<h1 class="title topictitle1">Creating OData Model Elements</h1>

+<div class="body taskbody"><p class="shortdesc">Creating OData Model Elements in the OData Model Editor.</p>

+<div class="section context" id="loio4b867f2a7cd44a88a1067ef757864c9d__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>

+			<p class="p">This section will guide you to use the elements in the palette. There are two ways to

+				transport the elements from the palette onto the OData Model Editor:</p>

+

+		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><div class="li step p" id="loio4b867f2a7cd44a88a1067ef757864c9d__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Select the element in the palette by clicking on it and then clicking inside

+					the OData Model Editor.</span><ul class="ul choices" id="loio4b867f2a7cd44a88a1067ef757864c9d__choices_ewj_ntz_wj"><li class="li choice">Alternately, you can also select an element under

+							<span class="ph emphasis emphasis"><b>Objects</b></span> in the pallete, press and hold down the

+						left mouse button, drag the element onto the OData Model Editor.</li>

+<li class="li choice">Drop the element by releasing the mouse button. </li>

+</ul>

+<div class="itemgroup stepresult">The OData Model Element is created in the OData Model Editor. <div class="p">

+<p> </p>

+						<div class="note note" id="loio4b867f2a7cd44a88a1067ef757864c9d__note_N1004E_N1004B_N10042_N10021_N1001E_N10012_N10001"><span class="notetitle"><b>Note</b></span> Every new

+							element created in the OData Model Editor will have a unique name at the

+							time of creation.</div>

+

+					</div>

+<p class="p">The object's name field is editable immediately.</p>

+</div></div>

+</div>

+</div></div>

+</body>

 </html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/Creating a Blank OData Model.html b/org.eclipse.ogee.help/html/Creating a Blank OData Model.html
new file mode 100644
index 0000000..d7b2ffe
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Creating a Blank OData Model.html
@@ -0,0 +1,25 @@
+<html lang="en-us">

+<head>

+<title>Creating a Blank OData Model</title>

+

+</head>

+<h1 class="title topictitle1">Creating a Blank OData Model</h1>

+			<p class="p">To create a blank OData model proceed as follows:</p>

+

+		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol><li class="li step stepexpand" id="loio65b63a88329544efac81319f48e6fd23__step_N10021_N1001E_N10012_N10001x"><span class="ph cmd">Open Eclipse screen.</span></li>

+<li class="li step stepexpand" id="loio65b63a88329544efac81319f48e6fd23__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Right-click the new project in the Project Explorer and choose New and then Other in the resulting menu.

+<p></p>

+Alternately, you can also click on <b>File</b>, <b>New</b> and <b>Other</b>.</li>

+</ul>

+<div class="itemgroup stepresult">The <b>New</b>-<b>Select a wizard</b> window appears.</div></li>

+<li class="li step stepexpand" id="loio65b63a88329544efac81319f48e6fd23__step_N10068_N1001E_N10012_N10001"><span class="ph cmd">Locate and expand the Ogee folder.</span></li>

+<li class="li step stepexpand" id="loio65b63a88329544efac81319f48e6fd23__step_N1003D_N1001E_N10012_N10001"><span class="ph cmd">Choose <strong class="ph b">OData Model </strong> and click <strong class="ph b">Next</strong>.</span></li>

+</ol><p class="li stepsection">The <span class="ph emphasis emphasis">New OData model</span> screen opens.</p><ol start="5"><li class="li step stepexpand" id="loio65b63a88329544efac81319f48e6fd23__step_N1005A_N1001E_N10012_N10001"><span class="ph cmd">Enter a name for the model in the <strong class="ph b">Model Name</strong> field.</span></li>

+<li class="li step stepexpand" id="loio65b63a88329544efac81319f48e6fd23__step_N1006B_N1001E_N10012_N10001"><span class="ph cmd">Choose <strong class="ph b">Blank OData Model </strong> in the Initial model content region and click

+						<strong class="ph b">Finish</strong>.</span><div class="itemgroup stepresult">The new model is created and opens as a tab page in the OData Model

+					Editor for editing. Also, the model will be stored under the folder selected in

+					the Project Explorer. </div></li>

+</ol></div>

+</div></div>

+</body>

+</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/c31d3ad78d7244fbb1071e7721d72ea7.html b/org.eclipse.ogee.help/html/Creating a Complex Type.html
similarity index 66%
rename from org.eclipse.ogee.help/html/c31d3ad78d7244fbb1071e7721d72ea7.html
rename to org.eclipse.ogee.help/html/Creating a Complex Type.html
index 4f005fd..2b2da8c 100644
--- a/org.eclipse.ogee.help/html/c31d3ad78d7244fbb1071e7721d72ea7.html
+++ b/org.eclipse.ogee.help/html/Creating a Complex Type.html
@@ -1,49 +1,36 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="Creating a Complex Type"/>
-<meta name="description" content="Creating a Complex Type"/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Creating a Complex Type</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loioc31d3ad78d7244fbb1071e7721d72ea7">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Creating a Complex Type</h1>
-<div class="body taskbody"><p class="shortdesc">Creating a Complex Type</p>
-<div class="section context" id="loioc31d3ad78d7244fbb1071e7721d72ea7__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<p class="p">To create a complex type in the OData Model Editor proceed as follows </p>
-
-		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loioc31d3ad78d7244fbb1071e7721d72ea7__steps_j5b_gpv_sp"><li class="li step stepexpand" id="loioc31d3ad78d7244fbb1071e7721d72ea7__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Select <strong class="ph b">Complex Type</strong> under <strong class="ph b">Objects</strong> in the palette, press and hold
-					down the left mouse button, drag the object onto the OData Model Editor.</span><div class="note note" id="loioc31d3ad78d7244fbb1071e7721d72ea7__note_N10038_N10030_N10021_N1001E_N10012_N10001"><span class="notetitle">Note</span> The new complex type will
-						be created with a unique default name.</div>
-<p class="p">The context pad of the
-						complex type OData Model Element has three menus: </p>
-<ul class="ul" id="loioc31d3ad78d7244fbb1071e7721d72ea7__ul_pcl_sy1_yj"><li class="li"><span class="ph pname">Add Property </span> - Choose <img class="image" id="loioc31d3ad78d7244fbb1071e7721d72ea7__image_ojy_2gk_tp" src="fd28c017bdfe4c68aa5fc10d93294320.image"/> to add a new property to the Complex Type </li>
-<li class="li"><span class="ph pname">Add Complex Property </span>- Choose <img class="image" id="loioc31d3ad78d7244fbb1071e7721d72ea7__image_fs4_fgk_tp" src="e80d784707f04c7b8b4a38f47f628775.image"/> to add a new Complex property </li>
-</ul>
-See <a class="xref" href="0b5776c556a04e34964b5bf481bb1ecc.html" title="Working in the OData Model Editor">Working in the OData Model Editor</a> for more
-					information of working with the OData Model Elements.<div class="note note" id="loioc31d3ad78d7244fbb1071e7721d72ea7__note_N10079_N10030_N10021_N1001E_N10012_N10001"><span class="notetitle">Note</span> The OData Model Element
-						also comes with a context menu Alternatively, the context menu can be used
-						to add preferred property.</div>
-</li>
-<li class="li step stepexpand" id="loioc31d3ad78d7244fbb1071e7721d72ea7__step_N10080_N1001E_N10012_N10001"><span class="ph cmd">Select the added property and navigate to the Properties view and configure the
-					newly added properties. </span><div class="itemgroup stepxmp">In the Properties view, choose the drop-down in the <span class="ph pname">Type</span>
-					field and select a type to be assigned for new property. </div></li>
-<li class="li step stepexpand" id="loioc31d3ad78d7244fbb1071e7721d72ea7__step_N10099_N1001E_N10012_N10001"><span class="ph cmd">Save the Odata Model Editor.</span></li>
-</ol>
-</div>
-<div class="related-links"> 
-<div class="relinfo"><div class="relinfotitle ">Related Information</div>
-<div><a class="link" href="a3997075e60b4dd3b3e47a8126070414.html" title="Understanding the OData model element.">Working with the OData Model Element</a></div>
-</div>
-</div></div></div>
-</body>
+

+<html lang="en-us">

+<head>

+<title>Creating a Complex Type</title>

+</head>

+<h1 class="title topictitle1">Creating a Complex Type</h1>

+<div class="body taskbody"><p class="shortdesc">Creating a Complex Type</p>

+<div class="section context" id="loioc31d3ad78d7244fbb1071e7721d72ea7__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>

+			<p class="p">To create a complex type in the OData Model Editor proceed as follows </p>

+

+		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loioc31d3ad78d7244fbb1071e7721d72ea7__steps_j5b_gpv_sp"><li class="li step stepexpand" id="loioc31d3ad78d7244fbb1071e7721d72ea7__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Select <strong class="ph b">Complex Type</strong> under <strong class="ph b">Objects</strong> in the palette, press and hold

+					down the left mouse button, drag the object onto the OData Model Editor.</span><div class="note note" id="loioc31d3ad78d7244fbb1071e7721d72ea7__note_N10038_N10030_N10021_N1001E_N10012_N10001"><span class="notetitle">Note</span> The new complex type will

+						be created with a unique default name.</div>

+<p class="p">The context pad of the

+						complex type OData Model Element has three menus: </p>

+<ul class="ul" id="loioc31d3ad78d7244fbb1071e7721d72ea7__ul_pcl_sy1_yj"><li class="li"><span class="ph pname">Add Property </span> - Choose <img src="CT1.png" alt="" style="width:30px;height:30px"/> to add a new property to the Complex Type </li>

+<li class="li"><span class="ph pname">Add Complex Property </span>- Choose <img src="CT2.png" alt="" style="width:30px;height:30px"/> to add a new Complex property </li>

+</ul>

+See <a class="xref" href="Working in the OData Model Editor.html" title="Working in the OData Model Editor">Working in the OData Model Editor</a> for more

+					information of working with the OData Model Elements.<div class="note note" id="loioc31d3ad78d7244fbb1071e7721d72ea7__note_N10079_N10030_N10021_N1001E_N10012_N10001"><span class="notetitle">Note</span> The OData Model Element

+						also comes with a context menu Alternatively, the context menu can be used

+						to add preferred property.</div>

+</li>

+<li class="li step stepexpand" id="loioc31d3ad78d7244fbb1071e7721d72ea7__step_N10080_N1001E_N10012_N10001"><span class="ph cmd">Select the added property and navigate to the Properties view and configure the

+					newly added properties. </span><div class="itemgroup stepxmp">In the Properties view, choose the drop-down in the <span class="ph pname">Type</span>

+					field and select a type to be assigned for new property. </div></li>

+<li class="li step stepexpand" id="loioc31d3ad78d7244fbb1071e7721d72ea7__step_N10099_N1001E_N10012_N10001"><span class="ph cmd">Save the Odata Model Editor.</span></li>

+</ol>

+</div>

+<div class="related-links"> 

+<div class="relinfo"><div class="relinfotitle ">Related Information</div>

+<div><a class="link" href="Working with the OData Model Element.html" title="Understanding the OData model element.">Working with the OData Model Element</a></div>

+</div>

+</div></div></div>

+</body>

 </html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/9ec05803b170491095b0469418f6a60f.html b/org.eclipse.ogee.help/html/Creating a Function Import.html
similarity index 65%
rename from org.eclipse.ogee.help/html/9ec05803b170491095b0469418f6a60f.html
rename to org.eclipse.ogee.help/html/Creating a Function Import.html
index bbddf12..2615bcf 100644
--- a/org.eclipse.ogee.help/html/9ec05803b170491095b0469418f6a60f.html
+++ b/org.eclipse.ogee.help/html/Creating a Function Import.html
@@ -1,65 +1,52 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="This section provides instructions to create a Function Import."/>
-<meta name="description" content="This section provides instructions to create a Function Import."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Creating a Function Import</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio9ec05803b170491095b0469418f6a60f">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Creating a Function Import</h1>
-<div class="body taskbody"><p class="shortdesc">This section provides instructions to create a Function Import.</p>
-<div class="section context" id="loio9ec05803b170491095b0469418f6a60f__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<div class="p">To create a Function Import proceed as follows:<ol class="ol" id="loio9ec05803b170491095b0469418f6a60f__ol_bjg_rzd_gj"><li class="li">Select <strong class="ph b">Function Import </strong>under <strong class="ph b">Objects </strong>in the pallete, press and
-						hold down the left mouse button, drag the object onto the OData Model
-						Editor.</li>
-<li class="li">Drop the object by releasing the mouse button. A graphical representation of
-						the entity type object is created in the graphical editor.<div class="p"> Alternatively,
-							you can also click on Function Import in the palette and click inside
-							the OData Model Editor to create a complex type.<div class="note note" id="loio9ec05803b170491095b0469418f6a60f__note_N1002E_N1002B_N10028_N10018_N10015_N10012_N10001"><span class="notetitle">Note</span> The new
-								Function Import will be created with a unique name by
-								default.</div>
-</div>
-<div class="p">The context pad of the complex type has the
-							following menus:<ul class="ul" id="loio9ec05803b170491095b0469418f6a60f__ul_m4y_xzd_gj"><li class="li"><strong class="ph b">Delete </strong>- Choose <img class="image" id="loio9ec05803b170491095b0469418f6a60f__image_uys_r2k_tp" src="eeb1b5c1683f49b88fb19354d60021a3.image"/> to delete the function import from
-									this model.</li>
-<li class="li"><strong class="ph b">Add Parameter</strong> - Choose <img class="image" id="loio9ec05803b170491095b0469418f6a60f__image_vfw_52k_tp" src="55f78ad8c6db4c01a1dcb775c0cbcb35.image"/> to add a new input parameter to the
-									Function Import.</li>
-<li class="li"><strong class="ph b">Add Simple Return Type</strong> - Choose <img class="image" id="loio9ec05803b170491095b0469418f6a60f__image_u3n_y2k_tp" src="fd28c017bdfe4c68aa5fc10d93294320.image"/> to add a simple return type. </li>
-<li class="li"><strong class="ph b">Add Complex Return Type </strong>- Choose <img class="image" id="loio9ec05803b170491095b0469418f6a60f__image_dpx_cfk_tp" src="e80d784707f04c7b8b4a38f47f628775.image"/> to add a complex type. Ensure that
-									you have created a complex type. the drop-down list displays all
-									the available complex types.</li>
-<li class="li"><strong class="ph b">Add Entity Return Type </strong>- Choose <img class="image" id="loio9ec05803b170491095b0469418f6a60f__image_i4b_kfk_tp" src="9ac4b270ae9940d5ba2c7017a5425df9.image"/> to add a entity type. Ensure that
-									you have created a entity type. the drop-down list displays all
-									the available entity type in the model.</li>
-</ul>
-</div>
-</li>
-<li class="li">Do the following to complete the function import definition:<ul class="ul" id="loio9ec05803b170491095b0469418f6a60f__ul_kqn_htj_kj"><li class="li">Select the function import and navigate to the properties view.</li>
-<li class="li">Click the drop-down list in the <strong class="ph b">Type</strong> field and select an
-								entity type.</li>
-</ul>
-</li>
-<li class="li"> Right click and select <span class="ph pname">Delete</span> in the resulting menu to
-						select an element.<p class="p">The <kbd class="key">Delete</kbd> key from the keyboard can also be
-							used to delete an element.</p>
-<p class="p">On selecting Delete, the <span class="ph pname">Confirm
-								Delete </span>window appears.</p>
-</li>
-<li class="li">Click <span class="ph pname">Yes</span> to delete the entity type.</li>
-</ol>
-</div>
-
-		</div></div>
-</div></div>
-</body>
+<html lang="en-us">

+<head>

+<title>Creating a Function Import</title>

+</head>

+

+<h1 class="title topictitle1">Creating a Function Import</h1>

+<div class="body taskbody"><p class="shortdesc">This section provides instructions to create a Function Import.</p>

+<div class="section context" id="loio9ec05803b170491095b0469418f6a60f__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>

+			<div class="p">To create a Function Import proceed as follows:<ol class="ol" id="loio9ec05803b170491095b0469418f6a60f__ol_bjg_rzd_gj"><li class="li">Select <strong class="ph b">Function Import </strong>under <strong class="ph b">Objects </strong>in the pallete, press and

+						hold down the left mouse button, drag the object onto the OData Model

+						Editor.</li>

+<li class="li">Drop the object by releasing the mouse button. A graphical representation of

+						the entity type object is created in the graphical editor.<div class="p"> Alternatively,

+							you can also click on Function Import in the palette and click inside

+							the OData Model Editor to create a complex type.<div class="note note" id="loio9ec05803b170491095b0469418f6a60f__note_N1002E_N1002B_N10028_N10018_N10015_N10012_N10001"><span class="notetitle">Note</span> The new

+								Function Import will be created with a unique name by

+								default.</div>

+</div>

+<div class="p">The context pad of the complex type has the

+							following menus:<ul class="ul" id="loio9ec05803b170491095b0469418f6a60f__ul_m4y_xzd_gj"><li class="li"><strong class="ph b">Delete </strong>- Choose <img src="CFI1.png" alt="" style="width:30px;height:25px""/> to delete the function import from

+									this model.</li>

+<li class="li"><strong class="ph b">Add Parameter</strong> - Choose <img src="CFI2.png" alt="" style="width:30px;height:25px"/> to add a new input parameter to the

+									Function Import.</li>

+<li class="li"><strong class="ph b">Add Simple Return Type</strong> - Choose <img src="CFI3.png" alt="" style="width:30px;height:25px"/> to add a simple return type. </li>

+<li class="li"><strong class="ph b">Add Complex Return Type </strong>- Choose <img src="CFI4.png" alt="" style="width:30px;height:25px"/> to add a complex type. Ensure that

+									you have created a complex type. the drop-down list displays all

+									the available complex types.</li>

+<li class="li"><strong class="ph b">Add Entity Return Type </strong>- Choose <img src="CF5.png" alt="" style="width:30px;height:25px"/> to add a entity type. Ensure that

+									you have created a entity type. the drop-down list displays all

+									the available entity type in the model.</li>

+</ul>

+</div>

+</li>

+<li class="li">Do the following to complete the function import definition:<ul class="ul" id="loio9ec05803b170491095b0469418f6a60f__ul_kqn_htj_kj"><li class="li">Select the function import and navigate to the properties view.</li>

+<li class="li">Click the drop-down list in the <strong class="ph b">Type</strong> field and select an

+								entity type.</li>

+</ul>

+</li>

+<li class="li"> Right click and select <span class="ph pname">Delete</span> in the resulting menu to

+						select an element.<p class="p">The <kbd class="key">Delete</kbd> key from the keyboard can also be

+							used to delete an element.</p>

+<p class="p">On selecting Delete, the <span class="ph pname">Confirm

+								Delete </span>window appears.</p>

+</li>

+<li class="li">Click <span class="ph pname">Yes</span> to delete the entity type.</li>

+</ol>

+</div>

+

+		</div></div>

+</div></div>

+</body>

 </html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/df07ead44d8b420fa4c3712d4168bc12.html b/org.eclipse.ogee.help/html/Creating a OData Model.html
similarity index 62%
rename from org.eclipse.ogee.help/html/df07ead44d8b420fa4c3712d4168bc12.html
rename to org.eclipse.ogee.help/html/Creating a OData Model.html
index 107269a..22e9e6c 100644
--- a/org.eclipse.ogee.help/html/df07ead44d8b420fa4c3712d4168bc12.html
+++ b/org.eclipse.ogee.help/html/Creating a OData Model.html
@@ -1,32 +1,32 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content=""/>
-<meta name="description" content=""/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Creating an OData Model</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loiodf07ead44d8b420fa4c3712d4168bc12">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Creating an OData Model</h1>
-<div class="body conbody"><p class="shortdesc"/>
-<div class="p">After creating a project as detailed in the <a class="xref" href="028bcef958aa430e84a49cbc943b9709.html" title="Creating a project">Creating a Project</a> section, the next step is to define the attributes for creating a OData model. Once
-			the project is successfully created, the project folder appears in the project explorer
-			region. The next step is to create an OData model. <span class="ph emphasis emphasis">OData Modeler</span>
-			provides multiple options to create an OData Model:<ul class="ul" id="loiodf07ead44d8b420fa4c3712d4168bc12__ul_igg_hhp_mj"><li class="li">From a Blank OData Model. See <a class="xref" href="65b63a88329544efac81319f48e6fd23.html" title="Creating a blank OData model.">Creating a Blank OData Model</a> for more information.</li>
-<li class="li">From a OData service metadata url. See <a class="xref" href="60eb920cc2a240fc80c95c19d6c92bce.html">Creating an OData Model Using Service URL</a> for more information.</li>
-<li class="li">From a OData service metadata file. See <a class="xref" href="499be3856baa45b1b2efacf2da6ea863.html">Creating an OData Model Using Metadata File</a> for more information.</li>
-</ul>
-</div>
-</div>
-</div></div>
-</body>
+<!--?xml version="1.0" encoding="UTF-8"?-->

+<!DOCTYPE html

+  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

+<html lang="en-us">

+<head>

+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

+<meta name="abstract" content=""/>

+<meta name="description" content=""/>

+

+<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>

+<title>Creating an OData Model</title>

+<!--[if lte IE 7]><style>

+      .codeblock{

+          overflow:visible;

+      }</style><![endif]-->

+</head>

+<body class="" id="loiodf07ead44d8b420fa4c3712d4168bc12">

+<div id="wrapper"><div id="container">

+<h1 class="title topictitle1">Creating an OData Model</h1>

+<div class="body conbody"><p class="shortdesc"/>

+<div class="p">After creating a project as detailed in the <a class="xref" href="Creating a Project.html" title="Creating a project">Creating a Project</a> section, the next step is to define the attributes for creating a OData model. Once

+			the project is successfully created, the project folder appears in the project explorer

+			region. The next step is to create an OData model. <span class="ph emphasis emphasis">OData Modeler</span>

+			provides multiple options to create an OData Model:<ul class="ul" id="Creating a Blank OData Model.html"><li class="li">From a Blank OData Model. See <a class="xref" href="Creating a Blank OData Model.html" title="Creating a blank OData model.">Creating a Blank OData Model</a> for more information.</li>

+<li class="li">From a OData service metadata url. See <a class="xref" href="Creating an OData Model Using Service URL.html">Creating an OData Model Using Service URL</a> for more information.</li>

+<li class="li">From a OData service metadata file. See <a class="xref" href="Creating an OData Model Using Metadata File.html">Creating an OData Model Using Metadata File</a> for more information.</li>

+</ul>

+</div>

+</div>

+</div></div>

+</body>

 </html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/Creating a Project.html b/org.eclipse.ogee.help/html/Creating a Project.html
new file mode 100644
index 0000000..977cdd5
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Creating a Project.html
@@ -0,0 +1,53 @@
+<!--?xml version="1.0" encoding="UTF-8"?-->

+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

+<meta content="Creating a project" name="abstract" />

+<meta content="Creating a project" name="description" />

+<link href="../css/documentation.css" rel="stylesheet" type="text/css" />

+<title></title>

+<!--[if lte IE 7]><style>

+      .codeblock{

+          overflow:visible;

+      }</style><![endif]-->

+<div id="wrapper">

+<div id="container">

+<h1 class="title topictitle1">Creating a Project</h1>

+

+<div class="body taskbody">

+<p class="shortdesc">Creating a project</p>

+

+<div class="section context" id="loio028bcef958aa430e84a49cbc943b9709__context_N10015_N10012_N10001">

+<div class="tasklabel">

+<h2 class="sectiontitle tasklabel">Context</h2>

+</div>

+

+<p class="p">After the OData Perspective is selected as detailed in the <a class="xref" href="OData Perspective.html">Opening OData Perspective</a>, the next step is to create a project.</p>

+

+<p class="p">To create a project proceed as follows:</p>

+</div>

+

+<div class="tasklabel">

+<h2 class="sectiontitle tasklabel">Procedure</h2>

+</div>

+

+<ol class="ol steps" id="loio028bcef958aa430e84a49cbc943b9709__steps_ymg_j44_mj">

+	<li class="li step stepexpand" id="loio028bcef958aa430e84a49cbc943b9709__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Click <span class="ph menucascade"><span class="ph uicontrol"><strong>File</strong>,&nbsp;</span><strong><span class="ph uicontrol">New</span>&nbsp;</strong>and&nbsp;<strong><span class="ph uicontrol">Other</span></strong></span>.</span>

+

+	<div class="itemgroup stepresult">

+	<p class="p">The<strong> </strong><span class="ph menucascade"><span class="ph uicontrol"><strong>New</strong>,&nbsp;</span><strong><span class="ph uicontrol">Select a wizard</span></strong> </span>window appears.</p>

+	</div>

+	</li>

+	<li class="li step stepexpand" id="loio028bcef958aa430e84a49cbc943b9709__step_N1004E_N1001E_N10012_N10001"><span class="ph cmd">Expand the <span class="ph emphasis emphasis"><strong>General</strong> </span>folder and choose<strong> <span class="ph emphasis emphasis">Project</span></strong>.</span></li>

+	<li class="li step stepexpand" id="loio028bcef958aa430e84a49cbc943b9709__step_N1005F_N1001E_N10012_N10001"><span class="ph cmd">Click<strong class="ph b"> Next </strong>to proceed.</span>

+	<div class="itemgroup stepresult">The <span class="ph menucascade"><span class="ph uicontrol"><strong>New Project</strong>,</span>&nbsp;<strong><span class="ph uicontrol">Project</span></strong> </span>&nbsp;window appears.</div>

+	</li>

+	<li class="li step stepexpand" id="loio028bcef958aa430e84a49cbc943b9709__step_N1007C_N1001E_N10012_N10001"><span class="ph cmd">Enter a name for the project in the <strong><span class="ph emphasis emphasis">Project name</span></strong> field and click <strong><span class="ph emphasis emphasis">Finish</span></strong> to create the project.</span></li>

+	<li class="li step stepexpand"><span class="ph cmd">Either use the default location for the project, or uncheck the <span class="q">&quot;Use default location&quot;</span> check box to specify a location of your choice. </span></li>

+	<li class="li step stepexpand"><span class="ph cmd">Select the <span class="q">&quot;<strong>Add project to the working sets</strong>&quot;</span> option to select a working set using the <strong><span class="ph emphasis emphasis">Select</span></strong> button. You can also create a working set in the &quot;<span class="ph emphasis emphasis">Select Working Sets</span>&quot; window</span></li>

+	<li class="li step stepexpand"><span class="ph cmd">Click <strong><span class="ph emphasis emphasis">Next </span></strong>to see the <span class="ph emphasis emphasis">Project References</span> window..</span></li>

+	<li class="li step stepexpand"><span class="ph cmd">Select a referenced project of your choice and click <span class="ph emphasis emphasis">Finish</span>.</span>

+	<div class="itemgroup stepresult">The new project is displayed in the Project Explorer region.</div>

+	</li>

+</ol>

+</div>

+</div>

+</div>

diff --git a/org.eclipse.ogee.help/html/7720bd44f939467ab34694fab1d259d2.html b/org.eclipse.ogee.help/html/Creating a Self Association.html
similarity index 65%
rename from org.eclipse.ogee.help/html/7720bd44f939467ab34694fab1d259d2.html
rename to org.eclipse.ogee.help/html/Creating a Self Association.html
index b0257d6..9363c07 100644
--- a/org.eclipse.ogee.help/html/7720bd44f939467ab34694fab1d259d2.html
+++ b/org.eclipse.ogee.help/html/Creating a Self Association.html
@@ -1,65 +1,55 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="Explains how to create self associations in the entities."/>
-<meta name="description" content="Explains how to create self associations in the entities."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Creating a Self Association</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio7720bd44f939467ab34694fab1d259d2">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Creating a Self Association</h1>
-<div class="body taskbody"><p class="shortdesc">Explains how to create self associations in the entities.</p>
-<div class="section context" id="loio7720bd44f939467ab34694fab1d259d2__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<p class="p">To create a self single/bidirectional association proceed as follows: </p>
-
-		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loio7720bd44f939467ab34694fab1d259d2__steps_ppq_mhw_sp"><li class="li step stepexpand" id="loio7720bd44f939467ab34694fab1d259d2__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Create an entity type as mentioned in the  <a class="xref" href="12526533ccd3464b87542a9527c1b780.html" title="This section guides you to create an Entity Type">Creating an Entity Type</a> section. </span></li>
-<li class="li step stepexpand" id="loio7720bd44f939467ab34694fab1d259d2__step_N1002E_N1001E_N10012_N10001"><span class="ph cmd">Select <span class="ph pname">Single</span>
-					<img class="image" id="loio7720bd44f939467ab34694fab1d259d2__image_fd1_3mj_tp" src="4e3df04d5c144fbaa7d158081f9008f9.image"/> to
-					create a single self association and select <span class="ph pname">Bidirectional</span><img class="image" id="loio7720bd44f939467ab34694fab1d259d2__image_ggw_lmj_tp" src="c01a543abe9a4203a6b8edece02e1af1.image"/> to
-					create a bidirectional self association. </span>
-					<div class="note note" id="loio7720bd44f939467ab34694fab1d259d2__note_N1004C_N10049_N1002D_N1001E_N10012_N10001"><span class="notetitle">Note</span> An example for single
-						self association is the association between a Manager and his direct
-						reports. An example for birectional seft association is the association
-						between the Employees and Manager as well as Employees and
-						DirectReports.</div>
-
-				</li>
-<li class="li step stepexpand" id="loio7720bd44f939467ab34694fab1d259d2__step_N10055_N1001E_N10012_N10001"><span class="ph cmd">Double click (click in the entity type shape and drag the mouse inside the
-					entity type. Then click again inside the entity type shape) in the entity type
-					shape to create a single/bidrectional self association.</span><div class="itemgroup stepresult">The self association is created and a dotted arrow line appears.<p class="p"><img class="image" id="loio7720bd44f939467ab34694fab1d259d2__image_omw_5mj_tp" src="c151d33892d64bd0b86444b8d100fa64.image"/></p>
-</div></li>
-<li class="li step stepexpand" id="loio7720bd44f939467ab34694fab1d259d2__step_N1006A_N1001E_N10012_N10001"><span class="ph cmd">Choose the <span class="ph pname">Select </span>
-					<img class="image" id="loio7720bd44f939467ab34694fab1d259d2__image_dwm_xmj_tp" src="22e701aa3ef94af9978f32fe0c837025.image"/>
-					Icon in the Palette to come out of the association create mode.</span><ul class="ul choices" id="loio7720bd44f939467ab34694fab1d259d2__choices_jtm_52c_yj"><li class="li choice">Press escape from the keyboard to come out of the association create mode. <p class="p"><img class="image" id="loio7720bd44f939467ab34694fab1d259d2__image_mwx_fnj_tp" src="91351c36ba3f4cc7bd959de0014cc071.image"/></p>
-</li>
-</ul>
-
-					<div class="note note" id="loio7720bd44f939467ab34694fab1d259d2__note_N1008D_N1008A_N10067_N1001E_N10012_N10001"><span class="notetitle">Note</span> A Navigation Property
-						is automatically created for the new association. You can rename the
-						navigation property by double clicking on it. Every navigation propery
-						should have a unique name. </div>
-
-				</li>
-<li class="li step stepexpand" id="loio7720bd44f939467ab34694fab1d259d2__step_N10098_N1001E_N10012_N10001"><span class="ph cmd">Select the association in the graphical editor. </span><div class="itemgroup stepresult">The properties of the association are displayed in the Properties view. <p class="p"><img class="image" id="loio7720bd44f939467ab34694fab1d259d2__image_s3g_knj_tp" src="c6fb374beeba4a5fa7e8247f078de734.image"/></p>
-</div></li>
-<li class="li step stepexpand" id="loio7720bd44f939467ab34694fab1d259d2__step_N100AD_N1001E_N10012_N10001"><span class="ph cmd">Click in the <span class="ph pname">Value</span> column for the Multiplicity to edit the
-					multiplicity.</span></li>
-<li class="li step stepexpand" id="loio7720bd44f939467ab34694fab1d259d2__step_N100BA_N1001E_N10012_N10001"><span class="ph cmd">Select a multiplicity and the OData Model Element displays the changes.</span>
-					<p class="p">The value for the Role of the association can also be edited in the
-						Properties view.</p>
-
-				</li>
-</ol>
-</div>
-</div></div>
-</body>
+

+<html lang="en-us">

+<head>

+<title>Creating a Self Association</title>

+</head>

+<body class="" id="loio7720bd44f939467ab34694fab1d259d2">

+<div id="wrapper"><div id="container">

+<h1 class="title topictitle1">Creating a Self Association</h1>

+<div class="body taskbody"><p class="shortdesc">This section will guide you to create self associations in the entities.</p>

+<div class="section context" id="loio7720bd44f939467ab34694fab1d259d2__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>

+			<p class="p">To create a self single/bidirectional association proceed as follows: </p>

+

+		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loio7720bd44f939467ab34694fab1d259d2__steps_ppq_mhw_sp"><li class="li step stepexpand" id="loio7720bd44f939467ab34694fab1d259d2__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Create an entity type as mentioned in the  <a class="xref" href="Creating an Entity Type.html" title="This section guides you to create an Entity Type">Creating an Entity Type</a> section. </span></li>

+<li class="li step stepexpand" id="loio7720bd44f939467ab34694fab1d259d2__step_N1002E_N1001E_N10012_N10001"><span class="ph cmd">Select <span class="ph pname">Single</span>

+					<img class="image" src="Single.png" alt="" style="width:30px;height:25px"/> to

+					create a single self association and select <span class="ph pname">Bidirectional</span><img class="image" src="BDA1.png" alt="" style="width:80px;height:30px"/> to

+					create a bidirectional self association. </span>

+					<p> </p>

+					<div class="note note" id="loio7720bd44f939467ab34694fab1d259d2__note_N1004C_N10049_N1002D_N1001E_N10012_N10001"><span class="notetitle">Note</span> An example for single

+						self association is the association between a Manager and his direct

+						reports. An example for birectional self association is the association

+						between the Employees and Manager as well as Employees and

+						DirectReports.</div>

+

+				</li>

+<li class="li step stepexpand" id="loio7720bd44f939467ab34694fab1d259d2__step_N10055_N1001E_N10012_N10001"><span class="ph cmd">Double click (click in the entity type shape and drag the mouse inside the

+					entity type. Then click again inside the entity type shape) in the entity type

+					shape to create a single/bidrectional self association.</span><div class="itemgroup stepresult">The self association is created and a dotted arrow line appears.<p class="p"><img src="CSA1.png" alt="" style="width:404px;height:228px""/></p>

+</div></li>

+<li class="li step stepexpand" id="loio7720bd44f939467ab34694fab1d259d2__step_N1006A_N1001E_N10012_N10001"><span class="ph cmd">Choose the <span class="ph pname">Select </span>

+					<img src="BDA2.png" alt="" style="width:40px;height:20px""/>

+					Icon in the Palette to come out of the association create mode.</span><ul class="ul choices" id="loio7720bd44f939467ab34694fab1d259d2__choices_jtm_52c_yj"><li class="li choice">Press escape from the keyboard to come out of the association create mode. <p class="p"><img class="image" src="CSA2.png" alt="" style="width:350px;height:300px""/></p>

+</li>

+</ul>

+

+					<div class="note note" id="loio7720bd44f939467ab34694fab1d259d2__note_N1008D_N1008A_N10067_N1001E_N10012_N10001"><span class="notetitle">Note</span> A Navigation Property

+						is automatically created for the new association. You can rename the

+						navigation property by double clicking on it. Every navigation propery

+						should have a unique name. </div>

+

+				</li>

+<li class="li step stepexpand" id="loio7720bd44f939467ab34694fab1d259d2__step_N10098_N1001E_N10012_N10001"><span class="ph cmd">Select the association in the graphical editor. </span><div class="itemgroup stepresult">The properties of the association are displayed in the Properties view. <p class="p"><img src="CSA3.png" alt="" style="width:500px;height:600px"/></p>

+</div></li>

+<li class="li step stepexpand" id="loio7720bd44f939467ab34694fab1d259d2__step_N100AD_N1001E_N10012_N10001"><span class="ph cmd">Click in the <span class="ph pname">Value</span> column for the Multiplicity to edit the

+					multiplicity.</span></li>

+<li class="li step stepexpand" id="loio7720bd44f939467ab34694fab1d259d2__step_N100BA_N1001E_N10012_N10001"><span class="ph cmd">Select a multiplicity and the OData Model Element displays the changes.</span>

+					<p class="p">The value for the Role of the association can also be edited in the

+						Properties view.</p>

+

+				</li>

+</ol>

+</div>

+</div></div>

+</body>

 </html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/22be92df80da42cf982b9506e31d8ae8.html b/org.eclipse.ogee.help/html/Creating a Single Association.html
similarity index 66%
rename from org.eclipse.ogee.help/html/22be92df80da42cf982b9506e31d8ae8.html
rename to org.eclipse.ogee.help/html/Creating a Single Association.html
index 7647a77..d082b1a 100644
--- a/org.eclipse.ogee.help/html/22be92df80da42cf982b9506e31d8ae8.html
+++ b/org.eclipse.ogee.help/html/Creating a Single Association.html
@@ -1,66 +1,61 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content=""/>
-<meta name="description" content=""/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Creating a Single Association</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio22be92df80da42cf982b9506e31d8ae8">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Creating a Single Association</h1>
-<div class="body taskbody"><p class="shortdesc"/>
-<div class="section context" id="loio22be92df80da42cf982b9506e31d8ae8__context_N10014_N10011_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<p class="p">To define single association proceed as follows:</p>
-
-		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loio22be92df80da42cf982b9506e31d8ae8__steps_r1v_2gw_sp"><li class="li step stepexpand" id="loio22be92df80da42cf982b9506e31d8ae8__step_N10020_N1001D_N10011_N10001"><span class="ph cmd">Create entity types as detailed in the <a class="xref" href="12526533ccd3464b87542a9527c1b780.html" title="This section guides you to create an Entity Type">Creating an Entity Type</a> section.</span></li>
-<li class="li step stepexpand" id="loio22be92df80da42cf982b9506e31d8ae8__step_N1002D_N1001D_N10011_N10001"><span class="ph cmd">Select the <span class="ph pname">Single</span>
-					<img class="image" id="loio22be92df80da42cf982b9506e31d8ae8__image_x1m_k4j_tp" src="4e3df04d5c144fbaa7d158081f9008f9.image"/>
-					menu under <span class="ph pname">Associations</span>.</span><div class="itemgroup stepresult">Once Single is selected and on moving the mouse pointer into the OData Model Editor,
-					the mouse pointer changes its shape indicating that the association creation
-					mode in active. <p class="p"><img class="image" id="loio22be92df80da42cf982b9506e31d8ae8__image_rr5_2tj_tp" src="ebe44a243c304e18bacf9c5e7a8f5469.image"/></p>
-</div></li>
-<li class="li step stepexpand" id="loio22be92df80da42cf982b9506e31d8ae8__step_N1004F_N1001D_N10011_N10001"><span class="ph cmd">Click in the source entity type shape to create an association and drag the
-					mouse to the destination shape.</span><img class="image" id="loio22be92df80da42cf982b9506e31d8ae8__image_lys_jtj_tp" src="b648d21b8baa461c9d3e73eab44f8745.image"/>
-				<div class="itemgroup stepresult">Once on the destination entity shape, left click the mouse to complete
-					the creation of the association. <p class="p">The association is created and a dotted
-						arrow line connects the shapes. </p>
-</div></li>
-<li class="li step stepexpand" id="loio22be92df80da42cf982b9506e31d8ae8__step_N10068_N1001D_N10011_N10001"><span class="ph cmd">Choose <img class="image" id="loio22be92df80da42cf982b9506e31d8ae8__image_hv3_44j_tp" src="22e701aa3ef94af9978f32fe0c837025.image"/> in the
-					Palette to come out of the association create mode.</span><ul class="ul choices" id="loio22be92df80da42cf982b9506e31d8ae8__choices_jtm_52c_yj"><li class="li choice">Press escape from the keyboard to come out of the association create mode. <p class="p"><img class="image" id="loio22be92df80da42cf982b9506e31d8ae8__image_d4d_ttj_tp" src="58c5a8563fda463283bd1b4d20ba8dda.image"/></p>
-</li>
-</ul>
-
-					<div class="note note" id="loio22be92df80da42cf982b9506e31d8ae8__note_N1008A_N10087_N10065_N1001D_N10011_N10001"><span class="notetitle">Note</span> A Navigation Property
-						is automatically created for the new association. You can rename the
-						navigation property by double clicking on it. Every navigation propery
-						should have a unique name. </div>
-
-					<p class="p">The association is created and an arrow with a singe head appears
-						representing the single association. Also the cardinality is displayed on
-						both ends of the arrow implying the relationship one-to-many (star sign
-						represent many). </p>
-
-				</li>
-<li class="li step stepexpand" id="loio22be92df80da42cf982b9506e31d8ae8__step_N10099_N1001D_N10011_N10001"><span class="ph cmd">On saving the project, the tree region displays the entity types, new
-					association and the corresponding navigation property. </span><img class="image" id="loio22be92df80da42cf982b9506e31d8ae8__image_hdt_xtj_tp" src="7de0aefc499f40e6988734b12f1e98f1.image"/><p class="p"><img class="image" id="loio22be92df80da42cf982b9506e31d8ae8__image_prh_b5j_tp" src="05e98917dbe94a13bf2d1a4b9465f23d.image"/></p>
-<div class="p">
-						<div class="note note" id="loio22be92df80da42cf982b9506e31d8ae8__note_N100AD_N100A5_N10095_N1001D_N10011_N10001"><span class="notetitle">Note</span> Association Sets,
-							Referential Constraints and the soruce and target roles are
-							automatically created on creation of an association.</div>
-
-					</div>
-</li>
-</ol>
-</div>
-</div></div>
-</body>
+<html lang="en-us">

+<head>

+<title>Creating a Single Association</title>

+</head>

+<body class="" id="loio22be92df80da42cf982b9506e31d8ae8">

+<div id="wrapper"><div id="container">

+<h1 class="title topictitle1">Creating a Single Association</h1>

+<div class="body taskbody"><p class="shortdesc"/>

+<div class="section context" id="loio22be92df80da42cf982b9506e31d8ae8__context_N10014_N10011_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>

+			<p class="p">To define single association proceed as follows:</p>

+

+		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loio22be92df80da42cf982b9506e31d8ae8__steps_r1v_2gw_sp"><li class="li step stepexpand" id="loio22be92df80da42cf982b9506e31d8ae8__step_N10020_N1001D_N10011_N10001"><span class="ph cmd">Create entity types as detailed in the <a class="xref" href="Creating an Entity Type.html" title="This section guides you to create an Entity Type">Creating an Entity Type</a> section.</span></li>

+<li class="li step stepexpand" id="loio22be92df80da42cf982b9506e31d8ae8__step_N1002D_N1001D_N10011_N10001"><span class="ph cmd">Select the <span class="ph pname">Single</span>

+					<img src="Single.png" alt="" style="width:40px;height:25px"/>

+					menu under <span class="ph pname">Associations</span>.</span><div class="itemgroup stepresult">Once Single is selected and on moving the mouse pointer into the OData Model Editor,

+					the mouse pointer changes its shape indicating that the association creation

+					mode in active. <p class="p"><img src="SA1.png" alt="" style="width:304px;height:270px"/></p>

+</div></li>

+<li class="li step stepexpand" id="loio22be92df80da42cf982b9506e31d8ae8__step_N1004F_N1001D_N10011_N10001"><span class="ph cmd">Click in the source entity type shape to create an association and drag the

+					mouse to the destination shape.</span>

+					<p> </p>

+					<img src="SA2.png" alt="" style="width:304px;height:228px"/>

+					<p> </p>

+				<div class="itemgroup stepresult">Once on the destination entity shape, left click the mouse to complete

+					the creation of the association. <p class="p">The association is created and a dotted

+						arrow line connects the shapes. </p>

+</div></li>

+<li class="li step stepexpand" id="loio22be92df80da42cf982b9506e31d8ae8__step_N10068_N1001D_N10011_N10001"><span class="ph cmd">Choose <img src="BDA2.png" alt="" style="width:40px;height:28px"/> in the

+					Palette to come out of the association create mode.</span><ul class="ul choices" id="loio22be92df80da42cf982b9506e31d8ae8__choices_jtm_52c_yj"><li class="li choice">Press escape from the keyboard to come out of the association create mode. <p class="p"><img src="SA3.png" alt="" style="width:304px;height:228px"/></p>

+</li>

+</ul>

+

+					<div class="note note" id="loio22be92df80da42cf982b9506e31d8ae8__note_N1008A_N10087_N10065_N1001D_N10011_N10001"><span class="notetitle">Note</span> A Navigation Property

+						is automatically created for the new association. You can rename the

+						navigation property by double clicking on it. Every navigation propery

+						should have a unique name. </div>

+

+					<p class="p">The association is created and an arrow with a singe head appears

+						representing the single association. Also the cardinality is displayed on

+						both ends of the arrow implying the relationship one-to-many (star sign

+						represent many). </p>

+

+				</li>

+<li class="li step stepexpand" id="loio22be92df80da42cf982b9506e31d8ae8__step_N10099_N1001D_N10011_N10001"><span class="ph cmd">On saving the project, the tree region displays the entity types, new

+					association and the corresponding navigation property. 

+					<p></p>

+					</span><img src="SA4.png" alt="Mountain View" style="width:604px;height:400px"/><p class="p">

+					<p> </p>

+					<img src="SA6.png" alt="" style="width:604px;height:428px"/></p>

+<div class="p">

+						<div class="note note" id="loio22be92df80da42cf982b9506e31d8ae8__note_N100AD_N100A5_N10095_N1001D_N10011_N10001"><span class="notetitle">Note</span> Association Sets,

+							Referential Constraints and the soruce and target roles are

+							automatically created on creation of an association.</div>

+

+					</div>

+</li>

+</ol>

+</div>

+</div></div>

+</body>

 </html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/Creating an Association.html b/org.eclipse.ogee.help/html/Creating an Association.html
new file mode 100644
index 0000000..7c6b142
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Creating an Association.html
@@ -0,0 +1,26 @@
+<html lang="en-us">

+<head>

+<title>Creating an Association</title>

+</head>

+<body class="" id="loio50dc336f79024ca2a560d049846eb5e8">

+<div id="wrapper"><div id="container">

+<h1 class="title topictitle1">Creating an Association</h1>

+<div class="body conbody"><p class="shortdesc">This sectoin provides information to create Association between Entities.</p>

+<p class="p">An association is a named relationship between two entities. Association defines a

+			peer-to-peer relationship between participating entity types and can support different

+			multiplicities at both the ends. An example of an association is the relationship

+			between the Customer and Order entities.</p>

+<p class="p">You can create three types of association:</p>

+<ul class="ul" id="loio50dc336f79024ca2a560d049846eb5e8__ul_cmp_qc2_gj"><li class="li"><strong class="ph b">Single Association</strong> - This is the unidirectional association, which allows navigation

+				in only one direction. See <a class="xref" href="Creating a Single Association.html">Creating a Single Association</a>

+				.</li>

+<li class="li"><strong class="ph b">Bi-directional Association</strong> - The bi-directional association allows navigation in both

+				directions of the association. The bi-directional association is defaulted to

+				one-to-many. See <a class="xref" href="Creating Bidirectional Association.html" title="Instructions about how to create a bidirectional associations.">Creating a Bidirectional Association</a> .</li>

+<li class="li"><strong class="ph b">Self Association </strong> - Self association has the ends of the association point to the same

+				entity . See <a class="xref" href="Creating a Self Association.html" title="Explains how to create self associations in the entities.">Creating a Self Association</a>.</li>

+</ul>

+</div>

+</div></div>

+</body>

+</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/12526533ccd3464b87542a9527c1b780.html b/org.eclipse.ogee.help/html/Creating an Entity Type.html
similarity index 75%
rename from org.eclipse.ogee.help/html/12526533ccd3464b87542a9527c1b780.html
rename to org.eclipse.ogee.help/html/Creating an Entity Type.html
index 05975cf..c401e24 100644
--- a/org.eclipse.ogee.help/html/12526533ccd3464b87542a9527c1b780.html
+++ b/org.eclipse.ogee.help/html/Creating an Entity Type.html
@@ -1,64 +1,56 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="This section guides you to create an Entity Type"/>
-<meta name="description" content="This section guides you to create an Entity Type"/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Creating an Entity Type</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio12526533ccd3464b87542a9527c1b780">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Creating an Entity Type</h1>
-<div class="body taskbody"><p class="shortdesc">This section guides you to create an Entity Type</p>
-<div class="section context" id="loio12526533ccd3464b87542a9527c1b780__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<p class="p">The Entity Type describe the structure of data in an OData Model. Entity types
-				represent a specific type of data, for example an item or a concept. Entity type
-				OData Model Element comprises of:</p>
-
-			<ul class="ul" id="loio12526533ccd3464b87542a9527c1b780__ul_flz_dzz_fj"><li class="li">Entity name-Unique name</li>
-<li class="li">Entity Sets</li>
-<li class="li">Properties<ul class="ul" id="loio12526533ccd3464b87542a9527c1b780__ul_owq_mtw_yj"><li class="li">Key, which can be defined by one or more properties (Is Key)</li>
-</ul>
-</li>
-<li class="li">Navigation Properties (optional to navigate between associations)</li>
-</ul>
-
-			<p class="p">To create an entity type in your project, proceed as follows:</p>
-
-			<ol class="ol" id="loio12526533ccd3464b87542a9527c1b780__ol_sz1_jzz_fj"><li class="li">Select <span class="ph pname">Entity Type</span> under <span class="ph pname">Objects</span>in the palette,
-					press and hold down the left mouse button, drag the element onto the graphical
-					editor region.</li>
-<li class="li">Drop the element by releasing the mouse button. A graphical representation of
-					the entity type (OData Model Element) is created on the OData Model
-						Editor.<p class="p">Alternatively, you can also click on the Entity Type in the
-						palette and click inside the OData Model Editor to create the entity
-						type.</p>
-<div class="note note" id="loio12526533ccd3464b87542a9527c1b780__note_N10048_N10042_N10032_N10012_N10001"><span class="notetitle">Note</span>  Every new
-						entity will have a unique name at the time of creation.</div>
-<p class="p">The Entity
-						name field is in editable status immediately.</p>
-</li>
-<li class="li"> Enter a name for the Entity and press "Enter" in the keyboard or click outside the entity
-					name field. <p class="p">The following elements are updated for the selected entity with
-						new entity name:</p>
-<ul class="ul" id="loio12526533ccd3464b87542a9527c1b780__ul_zgj_5zz_fj"><li class="li">Entity Set</li>
-<li class="li">Key Property ID</li>
-</ul>
-<img class="image" id="loio12526533ccd3464b87542a9527c1b780__image_ufm_gxj_tp" src="80bf05f75cb74264a6528f68502375a3.image"/><div class="note note" id="loio12526533ccd3464b87542a9527c1b780__note_N1006E_N10066_N10054_N10036_N10015_N10012_N10001"><span class="notetitle">Note</span>  Renaming the
-							entity type will rename the corresponding entity sets, navigation
-							properties and the default key properties.</div>
-</li>
-</ol>
-
-		</div></div>
-</div></div>
-</body>
+

+<html lang="en-us">

+<head>

+<title>Creating an Entity Type</title>

+</head>

+<body class="" id="loio12526533ccd3464b87542a9527c1b780">

+<div id="wrapper"><div id="container">

+<h1 class="title topictitle1">Creating an Entity Type</h1>

+<div class="body taskbody"><p class="shortdesc">This section guides you to create an Entity Type</p>

+<div class="section context" id="loio12526533ccd3464b87542a9527c1b780__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>

+			<p class="p">The Entity Type describe the structure of data in an OData Model. Entity types

+				represent a specific type of data, for example an item or a concept. Entity type

+				OData Model Element comprises of:</p>

+

+			<ul class="ul" id="loio12526533ccd3464b87542a9527c1b780__ul_flz_dzz_fj"><li class="li">Entity name-Unique name</li>

+<li class="li">Entity Sets</li>

+<li class="li">Properties<ul class="ul" id="loio12526533ccd3464b87542a9527c1b780__ul_owq_mtw_yj"><li class="li">Key, which can be defined by one or more properties (Is Key)</li>

+</ul>

+</li>

+<li class="li">Navigation Properties (optional to navigate between associations)</li>

+</ul>

+

+			<p class="p">To create an entity type in your project, proceed as follows:</p>

+

+			<ol class="ol" id="loio12526533ccd3464b87542a9527c1b780__ol_sz1_jzz_fj"><li class="li">Select <span class="ph pname">Entity Type</span> under <span class="ph pname">Objects</span>in the palette,

+					press and hold down the left mouse button, drag the element onto the graphical

+					editor region.</li>

+<li class="li">Drop the element by releasing the mouse button. A graphical representation of

+					the entity type (OData Model Element) is created on the OData Model

+						Editor.<p class="p">Alternatively, you can also click on the Entity Type in the

+						palette and click inside the OData Model Editor to create the entity

+						type.</p>

+<div class="note note" id="loio12526533ccd3464b87542a9527c1b780__note_N10048_N10042_N10032_N10012_N10001"><span class="notetitle">Note</span>  Every new

+						entity will have a unique name at the time of creation.</div>

+<p class="p">The Entity

+						name field is in editable status immediately.</p>

+</li>

+<li class="li"> Enter a name for the Entity and press "Enter" in the keyboard or click outside the entity

+					name field. <p class="p">The following elements are updated for the selected entity with

+						new entity name:</p>

+<ul class="ul" id="loio12526533ccd3464b87542a9527c1b780__ul_zgj_5zz_fj"><li class="li">Entity Set</li>

+<li class="li">Key Property ID</li>

+</ul>

+<p> </p>

+<img src="CET.png" alt="" style="width:304px;height:228px"/>

+<p> </p>

+<div class="note note" id="loio12526533ccd3464b87542a9527c1b780__note_N1006E_N10066_N10054_N10036_N10015_N10012_N10001"><span class="notetitle"><b>Note</b></span>  Renaming the

+							entity type will rename the corresponding entity sets, navigation

+							properties and the default key properties.</div>

+</li>

+</ol>

+

+		</div></div>

+</div></div>

+</body>

 </html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/Creating an OData Model Using Metadata File.html b/org.eclipse.ogee.help/html/Creating an OData Model Using Metadata File.html
new file mode 100644
index 0000000..151cf91
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Creating an OData Model Using Metadata File.html
@@ -0,0 +1,69 @@
+<!--?xml version="1.0" encoding="UTF-8"?-->

+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

+<meta content="" name="abstract" />

+<meta content="" name="description" />

+<link href="../css/documentation.css" rel="stylesheet" type="text/css" />

+<title></title>

+<!--[if lte IE 7]><style>

+      .codeblock{

+          overflow:visible;

+      }</style><![endif]-->

+<div id="wrapper">

+<div id="container">

+<h1 class="title topictitle1">Creating an OData Model Using Metadata File</h1>

+

+<div class="body taskbody">

+<p class="shortdesc">&nbsp;</p>

+

+<div class="section context" id="loio499be3856baa45b1b2efacf2da6ea863__context_N10015_N10012_N10001">

+<div class="tasklabel">

+<h2 class="sectiontitle tasklabel">Context</h2>

+</div>

+

+<p class="p">The File Import function is used to import metadata files types (edmx and xml) to create an OData model.</p>

+

+<div class="p">During the import of an EDMX file, the graphical information is computed, and the corresponding shapes are created in the OData Model Editor and arranged as follows:

+<ul class="ul" id="loio499be3856baa45b1b2efacf2da6ea863__ul_xsr_tjp_mj">

+	<li class="li">Entities</li>

+	<li class="li">Complex Types</li>

+	<li class="li">Function Imports</li>

+</ul>

+</div>

+

+<p class="p">To create an OData model using a service metadata file proceed as follows:</p>

+</div>

+

+<div class="tasklabel">

+<h2 class="sectiontitle tasklabel">Procedure</h2>

+</div>

+

+<ol class="ol steps" id="loio499be3856baa45b1b2efacf2da6ea863__steps_pzz_3kw_sp">

+	<li class="li step stepexpand" id="loio499be3856baa45b1b2efacf2da6ea863__step_N10045_N10042_N10012_N10001"><span class="ph cmd">Create a project as outlined in the <a class="xref" href="Creating a Project.html" title="Creating a project">Creating a Project</a> section. </span></li>

+	<li class="li step stepexpand" id="loio499be3856baa45b1b2efacf2da6ea863__step_N1004E_N10042_N10012_N10001"><span class="ph cmd">Right click on the project in the Project Tree region, and select <span class="ph menucascade"><span class="ph uicontrol"><strong>New</strong>,</span> <strong><span class="ph uicontrol">Other</span></strong></span>.</span>

+	<div class="itemgroup stepresult">The <span class="ph emphasis emphasis"><strong>Select a Wizard</strong> </span>window displays.</div>

+	</li>

+	<li class="li step stepexpand" id="loio499be3856baa45b1b2efacf2da6ea863__step_N10067_N10042_N10012_N10001"><span class="ph cmd">Locate <strong><span class="ph emphasis emphasis">Ogee</span></strong> folder, expand it and select <span class="ph emphasis emphasis">OData Model</span>.</span></li>

+	<li class="li step stepexpand" id="loio499be3856baa45b1b2efacf2da6ea863__step_N10078_N10042_N10012_N10001"><span class="ph cmd">Click <strong><span class="ph emphasis emphasis">Next</span></strong> to proceed.</span>

+	<div class="itemgroup stepresult">

+	<p class="p">The <strong><span class="ph emphasis emphasis">Create New OData Model</span></strong> window appears.</p>

+	</div>

+	</li>

+	<li class="li step stepexpand" id="loio499be3856baa45b1b2efacf2da6ea863__step_N10091_N10042_N10012_N10001"><span class="ph cmd">Choose <span class="ph emphasis emphasis"><strong>Browse</strong> </span>or enter the folder name in the <span class="ph emphasis emphasis">Folder</span> field to select a project folder for the new OData model.</span></li>

+	<li class="li step stepexpand" id="loio499be3856baa45b1b2efacf2da6ea863__step_N100A2_N10042_N10012_N10001"><span class="ph cmd">Enter a name for the model in the <span class="ph emphasis emphasis"><strong>Model name</strong> </span>field.</span></li>

+	<li class="li step stepexpand" id="loio499be3856baa45b1b2efacf2da6ea863__step_N100AF_N10042_N10012_N10001"><span class="ph cmd">Select <span class="ph emphasis emphasis">OData Metadata File</span> from the list and click <strong><span class="ph emphasis emphasis">Next</span></strong>. </span>

+	<div class="itemgroup stepresult">The <span class="ph emphasis emphasis">New OData model based on a metadata file</span> system window appears.</div>

+	</li>

+	<li class="li step stepexpand" id="loio499be3856baa45b1b2efacf2da6ea863__step_N100C8_N10042_N10012_N10001"><span class="ph cmd">Enter the path to access the edmx or xml file, or click <strong><span class="ph emphasis emphasis">Browse</span></strong> to choose the file from the system and click <strong><span class="ph emphasis emphasis">Go</span></strong>.</span>

+	<div class="itemgroup stepresult">On selection of a valid file the contents of the file will be populated in the <span class="ph pname">Service details</span> region of the window.</div>

+	</li>

+	<li class="li step stepexpand" id="loio499be3856baa45b1b2efacf2da6ea863__step_N100D9_N10042_N10012_N10001"><span class="ph cmd">Click <strong><span class="ph emphasis emphasis">Finish</span></strong>.</span>

+	<div class="itemgroup stepresult">The selected file is converted to an OData service and displayed in the OData Model Editor. All the sections in entity element open up in a expanded state for editing.

+	<div class="note note" id="loio499be3856baa45b1b2efacf2da6ea863__note_N100DF_N100DC_N100D1_N10042_N10012_N10001"><strong><span class="notetitle">Note</span></strong> The errors in the imported model are indicated by the error icons. The <span class="ph emphasis emphasis">Problems</span> tab view in the properties view displays the errors in the model.</div>

+

+	<p class="p">The service is now ready to be edited and will be stored under the folder selected in the Project Explorer.</p>

+	</div>

+	</li>

+</ol>

+</div>

+</div>

+</div>

diff --git a/org.eclipse.ogee.help/html/Creating an OData Model Using Service URL.html b/org.eclipse.ogee.help/html/Creating an OData Model Using Service URL.html
new file mode 100644
index 0000000..8d04740
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Creating an OData Model Using Service URL.html
@@ -0,0 +1,52 @@
+<title></title>

+<div id="wrapper">

+<div id="container">

+<h1 class="title topictitle1">Creating an OData Model Using Service URL</h1>

+

+<div class="body taskbody">

+<p class="shortdesc">&nbsp;</p>

+

+<div class="section context" id="loio60eb920cc2a240fc80c95c19d6c92bce__context_N10015_N10012_N10001">

+<div class="tasklabel">

+<h2 class="sectiontitle tasklabel">Context</h2>

+</div>

+

+<p class="p">To create an OData model using a service metadata URL proceed as follows:</p>

+</div>

+

+<div class="tasklabel">

+<h2 class="sectiontitle tasklabel">Procedure</h2>

+</div>

+

+<ol class="ol steps" id="loio60eb920cc2a240fc80c95c19d6c92bce__steps_r4g_kmp_mj">

+	<li class="li step stepexpand" id="loio60eb920cc2a240fc80c95c19d6c92bce__step_N10045_N10042_N10012_N10001"><span class="ph cmd">Create a project as outlined in the <a class="xref" href="Creating a Project.html" title="Creating a project">Creating a Project</a> section. </span></li>

+	<li class="li step stepexpand" id="loio60eb920cc2a240fc80c95c19d6c92bce__step_N1004E_N10042_N10012_N10001"><span class="ph cmd">Right click on the project in the Project Tree region, and select <span class="ph menucascade"><strong><span class="ph uicontrol">New </span></strong><span class="ph uicontrol">and&nbsp;</span><strong><span class="ph uicontrol">Other</span></strong> </span>.</span>

+	<div class="itemgroup stepresult">The <strong><span class="ph emphasis emphasis">Select a Wizard</span></strong> window displays.</div>

+	</li>

+	<li class="li step stepexpand" id="loio60eb920cc2a240fc80c95c19d6c92bce__step_N10067_N10042_N10012_N10001"><span class="ph cmd">Locate <strong><span class="ph emphasis emphasis">Ogee</span></strong> folder, expand it and select <strong><span class="ph emphasis emphasis">OData Model</span></strong>. </span></li>

+	<li class="li step stepexpand" id="loio60eb920cc2a240fc80c95c19d6c92bce__step_N10078_N10042_N10012_N10001"><span class="ph cmd">Click <strong><span class="ph emphasis emphasis">Next</span></strong> to proceed.</span>

+	<div class="itemgroup stepresult">

+	<p class="p">The <strong><span class="ph emphasis emphasis">Create New OData Model </span></strong>window appears.</p>

+	</div>

+	</li>

+	<li class="li step stepexpand" id="loio60eb920cc2a240fc80c95c19d6c92bce__step_N10091_N10042_N10012_N10001"><span class="ph cmd">Choose <span class="ph emphasis emphasis"><strong>Browse</strong> </span>or enter the folder name in the <strong><span class="ph emphasis emphasis">Folder</span></strong> field to select a project folder for the new OData model.</span></li>

+	<li class="li step stepexpand" id="loio60eb920cc2a240fc80c95c19d6c92bce__step_N100A2_N10042_N10012_N10001"><span class="ph cmd">Enter a name for the model in the <span class="ph emphasis emphasis">Model name</span> field.</span></li>

+	<li class="li step stepexpand" id="loio60eb920cc2a240fc80c95c19d6c92bce__step_N100AF_N10042_N10012_N10001"><span class="ph cmd">Select <span class="ph emphasis emphasis">OData Service URL</span> from the list and click <strong><span class="ph pname">Next</span></strong>. </span>

+	<div class="itemgroup stepresult">The New OData model from remote source window appears.</div>

+	</li>

+	<li class="li step stepexpand" id="loio60eb920cc2a240fc80c95c19d6c92bce__step_N100C8_N10042_N10012_N10001"><span class="ph cmd">Enter the service URL of the service to be imported in the <strong><span class="ph emphasis emphasis">Service URL</span></strong> field and click <strong><span class="ph emphasis emphasis">Go</span></strong>.</span>

+	<div class="itemgroup stepresult">On providing a valid URL the service will be populated in the<span class="ph emphasis emphasis"> Service details</span> region of the window.</div>

+	</li>

+	<li class="li step stepexpand" id="loio60eb920cc2a240fc80c95c19d6c92bce__step_N100D9_N10042_N10012_N10001"><span class="ph cmd">Click <strong class="ph b">Finish</strong>.</span>

+	<div class="itemgroup stepresult">

+	<p>The selected file is converted to OData service and displayed in the OData Model Editor. All the sections in entities open up in a expanded state for editing.</p>

+

+	<p><strong><span class="notetitle">Note</span></strong> The errors in the imported model are indicated by the error icons. The <span class="ph emphasis emphasis">Problems</span> tab view in the properties view displays the existing errors in the service.</p>

+

+	<p class="p">The service is now ready to be edited and will be stored under the selected folder in the Project Explorer.</p>

+	</div>

+	</li>

+</ol>

+</div>

+</div>

+</div>

diff --git a/org.eclipse.ogee.help/html/02fac08dac9c41d89e6341aee03a43eb.html b/org.eclipse.ogee.help/html/Deleting an OData Model Element.html
similarity index 72%
rename from org.eclipse.ogee.help/html/02fac08dac9c41d89e6341aee03a43eb.html
rename to org.eclipse.ogee.help/html/Deleting an OData Model Element.html
index cbfe348..8b3d54a 100644
--- a/org.eclipse.ogee.help/html/02fac08dac9c41d89e6341aee03a43eb.html
+++ b/org.eclipse.ogee.help/html/Deleting an OData Model Element.html
@@ -1,43 +1,35 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="Explains how to delete OData model elements in the OData Model Editor."/>
-<meta name="description" content="Explains how to delete OData model elements in the OData Model Editor."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Deleting OData Model Elements</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio02fac08dac9c41d89e6341aee03a43eb">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Deleting OData Model Elements</h1>
-<div class="body taskbody"><p class="shortdesc">Explains how to delete OData model elements in the OData Model Editor.</p>
-<div class="section context" id="loio02fac08dac9c41d89e6341aee03a43eb__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<p class="p">To delete OData model elements, proceed as follows:</p>
-
-		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loio02fac08dac9c41d89e6341aee03a43eb__steps_hwv_c3w_sp"><li class="li step" id="loio02fac08dac9c41d89e6341aee03a43eb__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Click <span class="ph pname">Delete</span> from the context pad.</span><ul class="ul choices" id="loio02fac08dac9c41d89e6341aee03a43eb__choices_v3h_j1d_yj"><li class="li choice">Press Delete from the keyboard. </li>
-<li class="li choice">Right-click and select <span class="ph pname">Delete</span> in the resulting menu.
-					</li>
-</ul>
-</li>
-<li class="li step" id="loio02fac08dac9c41d89e6341aee03a43eb__step_N1003F_N1001E_N10012_N10001"><span class="ph cmd">On selecting Delete, the <span class="ph pname">Confirm Delete</span> window appears. </span>
-					<div class="note hazardstatement note" id="loio02fac08dac9c41d89e6341aee03a43eb__hazardstatement_N1004C_N10049_N1003E_N1001E_N10012_N10001"><span class="notetitle">Note</span> <ul class="ul messagepanel" id="loio02fac08dac9c41d89e6341aee03a43eb__messagepanel_qr1_q1d_yj"><li class="li typeofhazard">On choosing to delete in the entity type OData model
-								element, any existing Entity Sets/Associations will be also
-								deleted.</li>
-<li class="li howtoavoid">Ensure that the OData model element to be deleted is not
-								being used in any OData model.</li>
-</ul>
-</div>
-
-				</li>
-</ol>
-</div>
-</div></div>
-</body>
+<html lang="en-us">

+<head>

+<title>Deleting OData Model Elements</title>

+<!--[if lte IE 7]><style>

+      .codeblock{

+          overflow:visible;

+      }</style><![endif]-->

+</head>

+<body class="" id="loio02fac08dac9c41d89e6341aee03a43eb">

+<div id="wrapper"><div id="container">

+<h1 class="title topictitle1">Deleting OData Model Elements</h1>

+<div class="body taskbody"><p class="shortdesc">Explains how to delete OData model elements in the OData Model Editor.</p>

+<div class="section context" id="loio02fac08dac9c41d89e6341aee03a43eb__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>

+			<p class="p">To delete OData model elements, proceed as follows:</p>

+

+		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loio02fac08dac9c41d89e6341aee03a43eb__steps_hwv_c3w_sp"><li class="li step" id="loio02fac08dac9c41d89e6341aee03a43eb__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Click <span class="ph pname">Delete</span> from the context pad.</span><ul class="ul choices" id="loio02fac08dac9c41d89e6341aee03a43eb__choices_v3h_j1d_yj"><li class="li choice">Press Delete from the keyboard. </li>

+<li class="li choice">Right-click and select <span class="ph pname">Delete</span> in the resulting menu.

+					</li>

+</ul>

+</li>

+<li class="li step" id="loio02fac08dac9c41d89e6341aee03a43eb__step_N1003F_N1001E_N10012_N10001"><span class="ph cmd">On selecting Delete, the <span class="ph pname">Confirm Delete</span> window appears. </span>

+					<div class="note hazardstatement note" id="loio02fac08dac9c41d89e6341aee03a43eb__hazardstatement_N1004C_N10049_N1003E_N1001E_N10012_N10001"><span class="notetitle"><b>NOTE:</b> <ul class="ul messagepanel" id="loio02fac08dac9c41d89e6341aee03a43eb__messagepanel_qr1_q1d_yj"><li class="li typeofhazard">On choosing to delete in the entity type OData model

+								element, any existing Entity Sets/Associations will be also

+								deleted.</li>

+<li class="li howtoavoid">Ensure that the OData model element to be deleted is not

+								being used in any OData model.</li>

+</ul>

+</div>

+

+				</li>

+</ol>

+</div>

+</div></div>

+</body>

 </html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/Expand.png b/org.eclipse.ogee.help/html/Expand.png
new file mode 100644
index 0000000..720dad1
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Expand.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/Exporting an OData Model from the OData Model Editor.html b/org.eclipse.ogee.help/html/Exporting an OData Model from the OData Model Editor.html
new file mode 100644
index 0000000..315f80b
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Exporting an OData Model from the OData Model Editor.html
@@ -0,0 +1,49 @@
+<!--?xml version="1.0" encoding="UTF-8"?-->

+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

+<meta content="Use the Export OData Model wizard to export an OData model file, *.odata, from a project in the OData Model Editor, to an XML file. Later, you can use the exported file in another tool to quickly implement an OData service from the model." name="abstract" />

+<meta content="Use the Export OData Model wizard to export an OData model file, *.odata, from a project in the OData Model Editor, to an XML file. Later, you can use the exported file in another tool to quickly implement an OData service from the model." name="description" />

+<link href="../css/documentation.css" rel="stylesheet" type="text/css" />

+<title></title>

+<!--[if lte IE 7]><style>

+      .codeblock{

+          overflow:visible;

+      }</style><![endif]-->

+<div id="wrapper">

+<div id="container">

+<h1 class="title topictitle1">Exporting an OData Model from the OData Model Editor</h1>

+

+<div class="body taskbody">

+<p class="shortdesc">Use the Export OData Model wizard to export an OData model file, <span class="keyword uilabel">*.odata</span>, from a project in the OData Model Editor, to an XML file. Later, you can use the exported file in another tool to quickly implement an OData service from the model.</p>

+

+<div class="section context" id="loio45ffe494a3bc4a1bb355a94db1f5f72e__context_N10019_N10016_N10001">

+<div class="tasklabel">

+<h2 class="sectiontitle tasklabel">Context</h2>

+</div>

+

+<p>&nbsp;<span style="line-height: 1.6;">The export feature allows you to specify the supported XML format based on the version of the OData Common Schema Definition Language (CSDL) you want. The exported file can be in one of the following versions of CSDL:</span></p>

+

+<div class="p">

+<ul class="ul" id="loio45ffe494a3bc4a1bb355a94db1f5f72e__ul_vrd_xss_3j">

+	<li class="li">OData V2

+	<p class="p">Select this option if you want the exported file to be saved in version two of OData CSDL.</p>

+	</li>

+</ul>

+</div>

+

+<p class="p">In addition, the framework enables you to create and implement your own custom export functionality to save the exported file to your custom file formats.</p>

+To export the OData model file, proceed as follows:</div>

+

+<div class="tasklabel">

+<h2 class="sectiontitle tasklabel">Procedure</h2>

+</div>

+

+<ol class="ol steps" id="loio45ffe494a3bc4a1bb355a94db1f5f72e__steps_ndr_mqy_tj">

+	<li class="li step" id="loio45ffe494a3bc4a1bb355a94db1f5f72e__step_N10042_N1003F_N10016_N10001"><span class="ph cmd">From the <strong>File</strong> menu, choose,&nbsp;<span class="ph menucascade"><span class="ph uicontrol"><strong>Export</strong>&gt;</span></span><span class="ph menucascade">&nbsp;<span class="ph uicontrol"><strong>Ogee</strong>&gt;</span></span>&nbsp;<span class="ph menucascade"><strong><span class="ph uicontrol">OData Model</span></strong> </span>and choose<strong> <span class="keyword uilabel">Next</span></strong>. The <strong>Export Service Model</strong> window opens. </span></li>

+	<li class="li step" id="loio45ffe494a3bc4a1bb355a94db1f5f72e__step_N1007C_N10045_N10016_N10001"><span class="ph cmd">In <strong>Model Name</strong>, choose <strong><span class="keyword uilabel">Browse</span></strong> to select the specific <kbd class="ph userinput">*.odata </kbd>file you want to export. If you have already selected the specific<kbd class="ph userinput"> *.odata </kbd>file, it is displayed with the full pathname.</span></li>

+	<li class="li step" id="loio45ffe494a3bc4a1bb355a94db1f5f72e__step_N10091_N10045_N10016_N10001"><span class="ph cmd">From<strong> <span class="ph emphasis emphasis"><span class="ph emphasis emphasis"><span class="ph emphasis emphasis">Export Format</span></span></span></strong>, select the OData protocol version in which you want to save the file. The following is the supported formats, OData V2.</span></li>

+	<li class="li step" id="loio45ffe494a3bc4a1bb355a94db1f5f72e__step_N1009E_N10045_N10016_N10001"><span class="ph cmd">In <strong><span class="ph emphasis emphasis">Export As</span></strong>, choose <strong><span class="keyword uilabel">Browse</span></strong> to specify the folder in which you want to save the new file, and enter a name for the file. The file is saved as an XML file. </span></li>

+	<li class="li step" id="loio45ffe494a3bc4a1bb355a94db1f5f72e__step_N100A7_N10045_N10016_N10001"><span class="ph cmd">Choose <strong><span class="keyword uilabel">Finish</span></strong> to export the file.</span></li>

+</ol>

+</div>

+</div>

+</div>

diff --git a/org.eclipse.ogee.help/html/Importing an OData Model.html b/org.eclipse.ogee.help/html/Importing an OData Model.html
new file mode 100644
index 0000000..b4d5cde
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Importing an OData Model.html
@@ -0,0 +1,40 @@
+<title></title>

+<!--[if lte IE 7]><style>

+      .codeblock{

+          overflow:visible;

+      }</style><![endif]-->

+<div id="wrapper">

+<div id="container">

+<h1 class="title topictitle1">Importing an OData Model</h1>

+

+<div class="body taskbody">

+<p class="shortdesc">Import XML and EDMX files into a project</p>

+

+<div class="tasklabel">

+<h2 class="sectiontitle tasklabel">Procedure</h2>

+</div>

+

+<ol>

+	<li class="li step stepexpand"><span class="ph cmd">Open Eclipse and navigate to <strong><span class="ph uicontrol">File</span><span class="ph uicontrol">Import</span></strong> to open the<strong> </strong><span class="ph emphasis emphasis"><strong>Import&gt;Select</strong></span> window.</span></li>

+	<li class="li step stepexpand"><span class="ph cmd">In the Import window, expand <strong><span class="ph uicontrol">Ogee</span><span class="ph uicontrol">OData Model</span></strong>.</span></li>

+	<li class="li step stepexpand"><span class="ph cmd">Click <strong><span class="ph emphasis emphasis">Next</span></strong> to open the <strong><span class="ph emphasis emphasis">Import OData Model</span></strong> window.</span></li>

+	<li class="li step stepexpand"><span class="ph cmd">Choose <strong><span class="ph emphasis emphasis">Browse</span></strong> or enter the folder name in the<strong> <span class="ph emphasis emphasis">Folder</span></strong> field to select a project folder for the new OData model.</span></li>

+	<li class="li step stepexpand"><span class="ph cmd">Enter a name for the model in the <strong><span class="ph emphasis emphasis">Model Name</span></strong> field</span></li>

+	<li class="li step stepexpand"><span class="ph cmd">Select either <span class="ph emphasis emphasis">OData Metadata File</span> or <span class="ph emphasis emphasis">OData Service URL</span> from the list and click <strong><span class="ph emphasis emphasis">Next</span></strong>.</span></li>

+	<li class="li step stepexpand"><span class="ph cmd">Do the following in the next page based on your selection:</span></li>

+</ol>

+

+<ul class="ul" id="loio86e4b6eede0b408ba9d69f24b8148642__ul_jvn_xwl_tp">

+	<li class="li"><strong><span class="ph emphasis emphasis">OData Metadata File</span></strong>- Enter the path to access the edmx or xml file, or click <span class="ph emphasis emphasis">Browse </span> to choose the file from the system and click <span class="ph emphasis emphasis">Go</span>. On selection of a valid file the contents of the file will be populated in the Service details region of the window.</li>

+	<li class="li"><strong><span class="ph emphasis emphasis">OData Service URL</span></strong>- Enter the service URL of the service to be imported in the Service URL field and click <span class="ph emphasis emphasis">Go</span> On providing a valid URL the service will be populated in the<span class="ph emphasis emphasis"> Service details</span> region of the window..</li>

+</ul>

+

+<ol start="8">

+	<li class="li step stepexpand"><span class="ph cmd">Click <strong><span class="ph emphasis emphasis">Finish</span></strong>.</span></li>

+	<li class="li step stepexpand"><span class="ph cmd">The selected file is converted to an OData service and displayed in the OData Model Editor. All the sections in entity element open up in a expanded state for editing.</span>

+	<div class="itemgroup stepresult">The service is now ready to be edited and will be stored under the folder selected in the Project Explorer.</div>

+	</li>

+</ol>

+</div>

+</div>

+</div>

diff --git a/org.eclipse.ogee.help/html/Key.png b/org.eclipse.ogee.help/html/Key.png
new file mode 100644
index 0000000..861072d
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Key.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/09acf63fcff846ff9b774c95bfcbce3b.html b/org.eclipse.ogee.help/html/Layouting in OData Model.html
similarity index 66%
rename from org.eclipse.ogee.help/html/09acf63fcff846ff9b774c95bfcbce3b.html
rename to org.eclipse.ogee.help/html/Layouting in OData Model.html
index 5567aed..429bd0c 100644
--- a/org.eclipse.ogee.help/html/09acf63fcff846ff9b774c95bfcbce3b.html
+++ b/org.eclipse.ogee.help/html/Layouting in OData Model.html
@@ -1,37 +1,30 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="Explains layouting for the OData model in the OData Model Editor."/>
-<meta name="description" content="Explains layouting for the OData model in the OData Model Editor."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Layouting in OData Model Editor</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio09acf63fcff846ff9b774c95bfcbce3b">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Layouting in OData Model Editor</h1>
-<div class="body conbody"><p class="shortdesc">Explains layouting for the OData model in the OData Model Editor.</p>
-<div class="p">The OData Model Editor enables you to select and create your own layouts to view the
-			OData model. The layouting can be used in the following scenarios:<ul class="ul" id="loio09acf63fcff846ff9b774c95bfcbce3b__ul_kkz_syv_fj"><li class="li">When importing the EDMX file</li>
-<li class="li">When creating a model using the Service Metadata URL</li>
-<li class="li">When viewing the services from the Service Catalog</li>
-<li class="li">On active OData Model Editor with context menu</li>
-</ul>
-</div>
-<p class="p">The Layouting options can be classified into two categories:</p>
-<ul class="ul" id="loio09acf63fcff846ff9b774c95bfcbce3b__ul_hlm_bzv_fj"><li class="li"><strong class="ph b">Basic Layout</strong> - The basic layout provides basic layouting options and few of the
-				advanced options will not be addressed, for example the objects will not overlap
-				each other but the association will cross each other. See <a class="xref" href="f159edb90e754bd78496eec86c7e66ea.html" title="This section provides information on setting up the basic layout for your OData model in the OData model editor.">Basic Layout</a> section for more
-				information.</li>
-</ul>
-</div>
-</div></div>
-</body>
+

+<html lang="en-us">

+<head>

+<title>Layouting in OData Model Editor</title>

+<!--[if lte IE 7]><style>

+      .codeblock{

+          overflow:visible;

+      }</style><![endif]-->

+</head>

+<body class="" id="loio09acf63fcff846ff9b774c95bfcbce3b">

+<div id="wrapper"><div id="container">

+<h1 class="title topictitle1">Layouting in OData Model Editor</h1>

+<div class="body conbody"><p class="shortdesc">Explains layouting for the OData model in the OData Model Editor.</p>

+<div class="p">The OData Model Editor enables you to select and create your own layouts to view the

+			OData model. The layouting can be used in the following scenarios:<ul class="ul" id="loio09acf63fcff846ff9b774c95bfcbce3b__ul_kkz_syv_fj"><li class="li">When importing the EDMX file</li>

+<li class="li">When creating a model using the Service Metadata URL</li>

+<li class="li">When viewing the services from the Service Catalog</li>

+<li class="li">On active OData Model Editor with context menu</li>

+</ul>

+</div>

+<p class="p">The Layouting options can be classified into two categories:</p>

+<ul class="ul" id="loio09acf63fcff846ff9b774c95bfcbce3b__ul_hlm_bzv_fj"><li class="li"><strong class="ph b">Basic Layout</strong> - The basic layout provides basic layouting options and few of the

+				advanced options will not be addressed, for example the objects will not overlap

+				each other but the association will cross each other. See <a class="xref" href="Basic Layout.html" title="This section provides information on setting up the basic layout for your OData model in the OData model editor.">Basic Layout</a> section for more

+				information.</li>

+</ul>

+</div>

+</div></div>

+</body>

 </html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/MaintainAssociation.png b/org.eclipse.ogee.help/html/MaintainAssociation.png
new file mode 100644
index 0000000..605f9d3
--- /dev/null
+++ b/org.eclipse.ogee.help/html/MaintainAssociation.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/OData Perspective.html b/org.eclipse.ogee.help/html/OData Perspective.html
new file mode 100644
index 0000000..3574106
--- /dev/null
+++ b/org.eclipse.ogee.help/html/OData Perspective.html
@@ -0,0 +1,84 @@
+<!--?xml version="1.0" encoding="UTF-8"?-->

+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

+<meta content="" name="abstract" />

+<meta content="" name="description" />

+<link href="../css/documentation.css" rel="stylesheet" type="text/css" />

+<title></title>

+<!--[if lte IE 7]><style>

+      .codeblock{

+          overflow:visible;

+      }</style><![endif]-->

+<div id="wrapper">

+<div id="container">

+<h1 class="title topictitle1">Opening OData Perspective</h1>

+

+<div class="body conbody">

+<p class="shortdesc">&nbsp;</p>

+

+<p class="p">The OData Perspective is a customized view, which is recommended to be used to create OData models. This section will describe the default views available in the OData Perspective.</p>

+

+<div class="p">

+<ol class="ol" id="loiof4a962fc49d94c05b6e44ab9b5fd7a8c__ol_oxh_rqr_wj">

+	<li class="li">Open Eclipse.</li>

+	<li class="li">Navigate to <span class="ph menucascade"><span class="ph uicontrol">Window&gt;&nbsp;</span><span class="ph uicontrol">Open Perspective&gt;</span> <span class="ph uicontrol">Other.</span></span>

+	<p class="p">The <span class="ph pname">Open Perspective</span> window appears.</p>

+	</li>

+	<li class="li">Locate and choose <span class="ph emphasis emphasis">OData</span> from the list of perspectives.

+	<p class="p">The OData Perspective opens.</p>

+	The table below summarizes the views that are available in the OData Perspective.</li>

+</ol>

+

+<div class="tablenoborder">

+<table border="1" class="table" frame="border" id="loiof4a962fc49d94c05b6e44ab9b5fd7a8c__table_gn5_jjm_z3" rules="all" summary="">

+	<caption><span class="tablecap">Table 1: OData Perspective-Views</span></caption>

+	<thead align="left" class="thead">

+		<tr class="row">

+			<th class="entry" id="d126274e55" valign="top" width="20.40816326530612%">Views</th>

+			<th class="entry" id="d126274e57" valign="top" width="35.306122448979586%">Description</th>

+			<th class="entry" id="d126274e59" valign="top" width="44.285714285714285%">Actions</th>

+		</tr>

+	</thead>

+	<tbody class="tbody">

+		<tr class="row">

+			<td class="entry" headers="d126274e55 " valign="top" width="20.40816326530612%">Project Explorer</td>

+			<td class="entry" headers="d126274e57 " valign="top" width="35.306122448979586%">The project explorer displays all the project(s) created in the current workspace.</td>

+			<td class="entry" headers="d126274e59 " valign="top" width="44.285714285714285%">The project folder holds folders, packages etc. The OData file created using the OData Model Editor will be stored in the relevant folder and when expanded, the underlying artifacts of the OData model can be seen. Furthermore, you can select an OData artifact and the properties view will show the properties of this artifact, which can then be edited.</td>

+		</tr>

+		<tr class="row">

+			<td class="entry" headers="d126274e55 " valign="top" width="20.40816326530612%">Properties View</td>

+			<td class="entry" headers="d126274e57 " valign="top" width="35.306122448979586%">This region displays the properties of the artifacts selected in the OData Model Editor/Project Explorer.</td>

+			<td class="entry" headers="d126274e59 " valign="top" width="44.285714285714285%">Select either the Properties or Problems views to view the appropriate information .</td>

+		</tr>

+		<tr class="row">

+			<td class="entry" headers="d126274e55 " valign="top" width="20.40816326530612%">Problems</td>

+			<td class="entry" headers="d126274e57 " valign="top" width="35.306122448979586%">OData model validation errors are displayed in the Problem view. On saving a OData model validation will be triggered for the underlying model.</td>

+			<td class="entry" headers="d126274e59 " valign="top" width="44.285714285714285%">On selecting an error message, the corresponding erroneous artifact will be highlighted.</td>

+		</tr>

+		<tr class="row">

+			<td class="entry" headers="d126274e55 " valign="top" width="20.40816326530612%">Miniature View</td>

+			<td class="entry" headers="d126274e57 " valign="top" width="35.306122448979586%">This view displays a copy of the OData Model Editor in a very small scale.</td>

+			<td class="entry" headers="d126274e59 " valign="top" width="44.285714285714285%">You can also activate/deactivate the Miniature View from the <span class="ph menucascade">&nbsp;<span class="ph uicontrol">Windows&gt;</span>&nbsp;<span class="ph uicontrol">Show View&gt;</span>&nbsp;<span class="ph uicontrol">Others&gt;</span>&nbsp;<span class="ph uicontrol">General</span></span>&nbsp;menu.</td>

+		</tr>

+	</tbody>

+</table>

+</div>

+</div>

+</div>

+

+<div class="topic concept nested1" id="concept_ddg_syr_wj">

+<h2 class="title topictitle2">Properties and Problems Views</h2>

+

+<div class="body conbody">

+<p class="p">The Properties View is the region that is below the OData Model Editor. This region has a customized view, and you can select the views to be displayed here from the <span class="ph menucascade"><span class="ph uicontrol">Windows&gt;</span> <span class="ph uicontrol">Show View</span> </span>.</p>

+

+<div class="p"><img src="OP1.png" alt="" style="width:404px;height:328px />

+<ul class="ul" id="concept_ddg_syr_wj__ul_or5_j1s_wj">

+	<li class="li"><span class="ph emphasis emphasis">Properties</span>- Choose either the element or the OData model element in the OData Model Editor to view its property. You can also edit the values for the selected elements here, and the changes will be reflected in the OData model element. <p></p>

+	

+	<img src="OP2.png" alt="" style="width:404px;height:328px"/> <p> </p>

+	

+	<li class="li"><span class="ph emphasis emphasis">Problems</span>- On saving a OData model, the underlying OData errors are displayed in the OData Model Editor. The details of error can be viewed by selecting the Problem tab. On selecting an error message and corresponding erroneous elements are selected in the OData model element. The Problems view displays all the existing errors and warnings and information of all the existing projects in the eclipse workspace. Any java or xml validation errors are also listed here. 

+	<p> </p>

+	<img src="OP3.png" alt="" style="width:604px;height:428px" /></li>

+</ul>

+

diff --git a/org.eclipse.ogee.help/html/OP1.png b/org.eclipse.ogee.help/html/OP1.png
new file mode 100644
index 0000000..6b63630
--- /dev/null
+++ b/org.eclipse.ogee.help/html/OP1.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/OP2.png b/org.eclipse.ogee.help/html/OP2.png
new file mode 100644
index 0000000..672e29b
--- /dev/null
+++ b/org.eclipse.ogee.help/html/OP2.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/OP3.png b/org.eclipse.ogee.help/html/OP3.png
new file mode 100644
index 0000000..e8ac8c7
--- /dev/null
+++ b/org.eclipse.ogee.help/html/OP3.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/eef506110fb04dd9a0b93ba240ca529c.html b/org.eclipse.ogee.help/html/Ogee - An Overview.html
similarity index 65%
rename from org.eclipse.ogee.help/html/eef506110fb04dd9a0b93ba240ca529c.html
rename to org.eclipse.ogee.help/html/Ogee - An Overview.html
index d4a3997..e69fdd8 100644
--- a/org.eclipse.ogee.help/html/eef506110fb04dd9a0b93ba240ca529c.html
+++ b/org.eclipse.ogee.help/html/Ogee - An Overview.html
@@ -1,43 +1,27 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="Ogee provides Eclipse-based developer tools to produce data using the OData protocol."/>
-<meta name="description" content="Ogee provides Eclipse-based developer tools to produce data using the OData protocol."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Ogee: Master Guide</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loioeef506110fb04dd9a0b93ba240ca529c">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Ogee: Master Guide</h1>
-<div class="body conbody"><p class="shortdesc">Ogee provides Eclipse-based developer tools to produce data using the OData
-		protocol.</p>
-<p class="p"><span class="ph emphasis emphasis">Ogee</span> comprises a graphical OData Model Editor for the creation of OData
-			models that define the data structure required to create and design the
-			applications.</p>
-<div class="p">Ogee allows developers to:<ul class="ul" id="loioeef506110fb04dd9a0b93ba240ca529c__ul_nnw_lgf_3n"><li class="li">Model new OData services</li>
-<li class="li">Visualize and explore existing OData services</li>
-</ul>
-</div>
-<p class="p">Ogee lowers the barrier for developers who want to produce and consume data, by bringing the
-			OData advantages to the fingertips of Eclipse developers. It enables the community to
-			contribute to this project by extending our contribution with more provider
-			environments, more consumption environments, ensuring interoperability across various
-			industry standards, and promoting OData by easing the development process.</p>
-<p class="p">The graphical <span class="ph emphasis emphasis">OData Model Editor</span> in Eclipse enables you to start the OData
-			service development phase by creating an OData model. Knowledge of the programming
-			language is not required to create an OData model in Eclipse, which means you can focus
-			solely on the data you want to create and define the structure in which you want the
-			data to be published. After you have created a suitable OData model based on your own
-			requirements, you can save it as an OData model definition file.</p>
-</div>
-</div></div>
-</body>
+<html>

+<h1 class="title topictitle1">Ogee: Overview</h1>

+<div class="body conbody"><p class="shortdesc">Ogee provides Eclipse-based developer tools to produce data using the OData

+		protocol.</p>

+<p class="p"><span class="ph emphasis emphasis">Ogee</span> comprises a graphical OData Model Editor for the creation of OData

+			models that define the data structure required to create and design the

+			applications.</p>

+<div class="p">Ogee allows developers to:<ul class="ul" id="loioeef506110fb04dd9a0b93ba240ca529c__ul_nnw_lgf_3n"><li class="li">Model new OData services</li>

+<li class="li">Visualize and explore existing OData services</li>

+</ul>

+</div>

+<p class="p">Ogee lowers the barrier for developers who want to produce and consume data, by bringing the

+			OData advantages to the fingertips of Eclipse developers. It enables the community to

+			contribute to this project by extending our contribution with more provider

+			environments, more consumption environments, ensuring interoperability across various

+			industry standards, and promoting OData by easing the development process.</p>

+<p class="p">The graphical <span class="ph emphasis emphasis">OData Model Editor</span> in Eclipse enables you to start the OData

+			service development phase by creating an OData model. Knowledge of the programming

+			language is not required to create an OData model in Eclipse, which means you can focus

+			solely on the data you want to create and define the structure in which you want the

+			data to be published. After you have created a suitable OData model based on your own

+			requirements, you can save it as an OData model definition file.</p>

+			<img src="aa.png" alt="" style="width:704px;height:428px"/></p>

+</div>

+</div></div>

+</body>

 </html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/Ogee - Developer Guide.html b/org.eclipse.ogee.help/html/Ogee - Developer Guide.html
new file mode 100644
index 0000000..4564574
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Ogee - Developer Guide.html
@@ -0,0 +1,17 @@
+<html lang="en-us">

+<head>

+<title>Ogee: Getting Started</title>

+<!--[if lte IE 7]><style>

+      .codeblock{

+          overflow:visible;

+      }</style><![endif]-->

+</head>

+<body class="" id="loio9719d8b8382643869d6785542387d684">

+<div id="wrapper"><div id="container">

+<h1 class="title topictitle1">Ogee: Getting Started</h1>

+<p class="shortdesc">Ogee provides the OData Model Editor to create OData Models. The Developer Guide focuses

+		on guiding the user to use OData Model Editor effectively to create the OData

+		Models.</p>

+</div></div>

+</body>

+</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/Proiperities.png b/org.eclipse.ogee.help/html/Proiperities.png
new file mode 100644
index 0000000..c448f30
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Proiperities.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/SA1.png b/org.eclipse.ogee.help/html/SA1.png
new file mode 100644
index 0000000..fa68bee
--- /dev/null
+++ b/org.eclipse.ogee.help/html/SA1.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/SA2.png b/org.eclipse.ogee.help/html/SA2.png
new file mode 100644
index 0000000..a4d23b0
--- /dev/null
+++ b/org.eclipse.ogee.help/html/SA2.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/SA3.png b/org.eclipse.ogee.help/html/SA3.png
new file mode 100644
index 0000000..1c0087b
--- /dev/null
+++ b/org.eclipse.ogee.help/html/SA3.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/SA4.png b/org.eclipse.ogee.help/html/SA4.png
new file mode 100644
index 0000000..9cffb53
--- /dev/null
+++ b/org.eclipse.ogee.help/html/SA4.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/SA6.png b/org.eclipse.ogee.help/html/SA6.png
new file mode 100644
index 0000000..20a61e5
--- /dev/null
+++ b/org.eclipse.ogee.help/html/SA6.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/SOM1.png b/org.eclipse.ogee.help/html/SOM1.png
new file mode 100644
index 0000000..6d55003
--- /dev/null
+++ b/org.eclipse.ogee.help/html/SOM1.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/SOM2.png b/org.eclipse.ogee.help/html/SOM2.png
new file mode 100644
index 0000000..3d10f26
--- /dev/null
+++ b/org.eclipse.ogee.help/html/SOM2.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/Saving an OData Model.html b/org.eclipse.ogee.help/html/Saving an OData Model.html
new file mode 100644
index 0000000..8ad4cfc
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Saving an OData Model.html
@@ -0,0 +1,23 @@
+<html lang="en-us">

+<head>

+<title>Saving the OData Model</title>

+</head>

+<body class="" id="loioa53be72ad4fb4a3bb9b2ac83dc67ec2f">

+<div id="wrapper"><div id="container">

+<h1 class="title topictitle1">Saving the OData Model</h1>

+<div class="body conbody"><p class="shortdesc">This section will guide you to save a OData model.</p>

+<p class="p">Whenever a change is made in the OData Model Editor, the page title displays a star sign

+			indicating that the Odata model needs to be saved. </p>

+<p class="p"><img src="SOM1.png" alt="" style="width:304px;height:228px"/></p>

+

+<p class="p">On saving the OData model, if it contains any errors, an error icon is displayed next to

+			the affected artifacts. The title tab also displays the star sign. </p>

+<div class="p"><img src="SOM2.png" alt="" style="width:304px;height:228px">

+<p> </p>

+<span class="notetitle">Note</span> The details of the errors can be seem in the

+					<span class="ph pname">Problems</span> view.</div>

+</div>

+</div>

+</div></div>

+</body>

+</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/21ddbd2392ec4be0b10e7fe4e879a3d0.image b/org.eclipse.ogee.help/html/Simple.png
similarity index 75%
rename from org.eclipse.ogee.help/html/21ddbd2392ec4be0b10e7fe4e879a3d0.image
rename to org.eclipse.ogee.help/html/Simple.png
index 8744ec1..7ab9a1f 100644
--- a/org.eclipse.ogee.help/html/21ddbd2392ec4be0b10e7fe4e879a3d0.image
+++ b/org.eclipse.ogee.help/html/Simple.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/Single.png b/org.eclipse.ogee.help/html/Single.png
new file mode 100644
index 0000000..ba76c72
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Single.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/Supporting Languages Other than English.html b/org.eclipse.ogee.help/html/Supporting Languages Other than English.html
new file mode 100644
index 0000000..8f78802
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Supporting Languages Other than English.html
@@ -0,0 +1,39 @@
+<!--?xml version="1.0" encoding="UTF-8"?-->

+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

+<meta content="Enable the use of characters in languages other than English." name="abstract" />

+<meta content="Enable the use of characters in languages other than English." name="description" />

+<link href="../css/documentation.css" rel="stylesheet" type="text/css" />

+<title></title>

+<!--[if lte IE 7]><style>

+      .codeblock{

+          overflow:visible;

+      }</style><![endif]-->

+<div id="wrapper">

+<div id="container">

+<h1 class="title topictitle1">Supporting Languages Other than English</h1>

+

+<div class="body taskbody">

+<p class="shortdesc">Enable the use of characters in languages other than English.</p>

+

+<div class="section context" id="loio3c19aab92826496c830a9f6ab061ae91__context_N10015_N10012_N10001">

+<div class="tasklabel">

+<h2 class="sectiontitle tasklabel">Context</h2>

+</div>

+

+<p class="p">To enable the use of characters in languages other than English:</p>

+</div>

+

+<div class="tasklabel">

+<h2 class="sectiontitle tasklabel">Procedure</h2>

+</div>

+

+<ol class="ol steps" id="loio3c19aab92826496c830a9f6ab061ae91__steps_sr2_d2v_sp">

+	<li class="li step" id="loio3c19aab92826496c830a9f6ab061ae91__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Navigate to the location where Eclipse is installed on your computer.</span></li>

+	<li class="li step" id="loio3c19aab92826496c830a9f6ab061ae91__step_N1002A_N1001E_N10012_N10001"><span class="ph cmd">Open the eclipse.ini file for editing and add the following in a new line: <span class="ph filepath">-Dfile.encoding=UTF-8</span></span></li>

+	<li class="li step" id="loio3c19aab92826496c830a9f6ab061ae91__step_N10036_N1001E_N10012_N10001"><span class="ph cmd">Restart Eclipse. Your default encoding in eclipse is changed to UTF-8.</span></li>

+	<li class="li step" id="loio3c19aab92826496c830a9f6ab061ae91__step_N1003F_N1001E_N10012_N10001"><span class="ph cmd">In Eclipse, select <span class="ph menucascade">&nbsp;<span class="ph uicontrol">Window&gt;&nbsp;</span><span class="ph uicontrol">Preferences&gt;</span>&nbsp;<span class="ph uicontrol">General&gt;</span>&nbsp;<span class="ph uicontrol">Workspace</span></span>.</span></li>

+	<li class="li step" id="loio3c19aab92826496c830a9f6ab061ae91__step_N1005C_N1001E_N10012_N10001"><span class="ph cmd">In the <strong class="ph b">Text file encoding</strong> section, make sure <span class="ph filepath">UTF-8</span> is selected either as the default or as an option in the <span class="ph filepath">Other</span> radio button. </span></li>

+</ol>

+</div>

+</div>

+</div>

diff --git a/org.eclipse.ogee.help/html/Uninstalling Ogee.html b/org.eclipse.ogee.help/html/Uninstalling Ogee.html
new file mode 100644
index 0000000..a304732
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Uninstalling Ogee.html
@@ -0,0 +1,41 @@
+<!--?xml version="1.0" encoding="UTF-8"?-->

+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

+<meta content="Instructions for uninstalling Ogee." name="abstract" />

+<meta content="Instructions for uninstalling Ogee." name="description" />

+<link href="../css/documentation.css" rel="stylesheet" type="text/css" />

+<title></title>

+<!--[if lte IE 7]><style>

+      .codeblock{

+          overflow:visible;

+      }</style><![endif]-->

+<div id="wrapper">

+<div id="container">

+<h1 class="title topictitle1">Uninstalling Ogee</h1>

+

+<div class="body taskbody">

+<p class="shortdesc">Instructions for uninstalling Ogee.</p>

+

+<div class="section context" id="loio3a147172bf2046a28fc4e9573b1d9130__context_N10015_N10012_N10001">

+<div class="tasklabel">

+<h2 class="sectiontitle tasklabel">Context</h2>

+</div>

+

+<p class="p">To uninstall Ogee proceed as follows:</p>

+</div>

+

+<div class="tasklabel">

+<h2 class="sectiontitle tasklabel">Procedure</h2>

+</div>

+

+<ol class="ol steps" id="loio3a147172bf2046a28fc4e9573b1d9130__steps_yqp_g2v_sp">

+	<li class="li step" id="loio3a147172bf2046a28fc4e9573b1d9130__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Start Eclipse.</span></li>

+	<li class="li step" id="loio3a147172bf2046a28fc4e9573b1d9130__step_N1002A_N1001E_N10012_N10001"><span class="ph cmd">From the menu bar, choose<span class="ph menucascade">&nbsp;<span class="ph uicontrol"><strong>Eclipse</strong>&gt;&nbsp;</span><strong><span class="ph uicontrol">About Eclipse</span></strong> </span>. The <span class="ph uicontrol">About Eclipse</span> dialog box displays.</span></li>

+	<li class="li step" id="loio3a147172bf2046a28fc4e9573b1d9130__step_N10043_N1001E_N10012_N10001"><span class="ph cmd">Choose<strong> <span class="ph uicontrol">Installation Details</span></strong>.</span></li>

+	<li class="li step" id="loio3a147172bf2046a28fc4e9573b1d9130__step_N10050_N1001E_N10012_N10001"><span class="ph cmd">Select the<span class="ph uicontrol"> <strong>Installed Software</strong></span> tab. The list of installed software components displays.</span></li>

+	<li class="li step" id="loio3a147172bf2046a28fc4e9573b1d9130__step_N1005D_N1001E_N10012_N10001"><span class="ph cmd">Select the features you want to uninstall and choose <strong><span class="ph uicontrol">Uninstall</span></strong>. The <strong><span class="ph uicontrol">Uninstall Details</span></strong> page is displayed.</span></li>

+	<li class="li step" id="loio3a147172bf2046a28fc4e9573b1d9130__step_N10072_N1001E_N10012_N10001"><span class="ph cmd">Choose <strong><span class="ph uicontrol">Finish</span></strong>. The selected features are uninstalled.</span></li>

+	<li class="li step" id="loio3a147172bf2046a28fc4e9573b1d9130__step_N1007F_N1001E_N10012_N10001"><span class="ph cmd">You must restart Eclipse for the changes to take effect. </span></li>

+</ol>

+</div>

+</div>

+</div>

diff --git a/org.eclipse.ogee.help/html/Upgrading Ogee.html b/org.eclipse.ogee.help/html/Upgrading Ogee.html
new file mode 100644
index 0000000..05e1bdf
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Upgrading Ogee.html
@@ -0,0 +1,37 @@
+<title></title>

+<!--[if lte IE 7]><style>

+      .codeblock{

+          overflow:visible;

+      }</style><![endif]-->

+<div id="wrapper">

+<div id="container">

+<h1 class="title topictitle1">Upgrading Ogee</h1>

+

+<div class="body taskbody">

+<p class="shortdesc">Instructions for upgrading the Ogee.</p>

+

+<div class="section context" id="loioff3f01ab585d4c799c5360b46cf78bab__context_N10015_N10012_N10001">

+<div class="tasklabel">

+<h2 class="sectiontitle tasklabel">Context</h2>

+</div>

+

+<p class="p">To upgrade the OData Modeler installation, proceed as follows:</p>

+</div>

+

+<div class="tasklabel">

+<h2 class="sectiontitle tasklabel">Procedure</h2>

+</div>

+

+<ol class="ol steps" id="loioff3f01ab585d4c799c5360b46cf78bab__steps_cnl_bdv_sp">

+	<li class="li step" id="loioff3f01ab585d4c799c5360b46cf78bab__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Start Eclipse.</span></li>

+	<li class="li step" id="loioff3f01ab585d4c799c5360b46cf78bab__step_N1002A_N1001E_N10012_N10001"><span class="ph cmd">From the Eclipse menu, choose&nbsp;<span class="ph menucascade"><span class="ph uicontrol"><strong>Help</strong>&gt;</span> &nbsp;<strong><span class="ph uicontrol">Check for updates</span></strong> </span>. The <strong><span class="ph uicontrol">Available Updates</span></strong> page is displayed.</span></li>

+	<li class="li step" id="loioff3f01ab585d4c799c5360b46cf78bab__step_N10043_N1001E_N10012_N10001"><span class="ph cmd">If there are any updates for Ogee, it will be displayed here. </span></li>

+	<li class="li step"><span class="ph cmd">Select the Ogee update.</span></li>

+	<li class="li step" id="loioff3f01ab585d4c799c5360b46cf78bab__step_N10061_N1001E_N10012_N10001"><span class="ph cmd">Choose <strong><span class="ph uicontrol">Next</span></strong>. </span><span class="ph cmd">The <strong><span class="ph uicontrol">Update Details</span></strong> page is displays.</span></li>

+	<li class="li step" id="loioff3f01ab585d4c799c5360b46cf78bab__step_N10072_N1001E_N10012_N10001"><span class="ph cmd">Choose <strong><span class="ph uicontrol">Next</span></strong>. The <strong><span class="ph uicontrol">Review License</span></strong> page is displays.</span></li>

+	<li class="li step" id="loioff3f01ab585d4c799c5360b46cf78bab__step_N10083_N1001E_N10012_N10001"><span class="ph cmd">Review the license agreement to continue with the upgrade.</span></li>

+	<li class="li step" id="loioff3f01ab585d4c799c5360b46cf78bab__step_N1008C_N1001E_N10012_N10001"><span class="ph cmd">Choose <strong><span class="ph uicontrol">Finish</span></strong>. The upgrade procedure begins. Upon completion you will be prompted to restart your Eclipse installation.</span></li>

+</ol>

+</div>

+</div>

+</div>

diff --git a/org.eclipse.ogee.help/html/Verifying the Installed Features.html b/org.eclipse.ogee.help/html/Verifying the Installed Features.html
new file mode 100644
index 0000000..05e1bdf
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Verifying the Installed Features.html
@@ -0,0 +1,37 @@
+<title></title>

+<!--[if lte IE 7]><style>

+      .codeblock{

+          overflow:visible;

+      }</style><![endif]-->

+<div id="wrapper">

+<div id="container">

+<h1 class="title topictitle1">Upgrading Ogee</h1>

+

+<div class="body taskbody">

+<p class="shortdesc">Instructions for upgrading the Ogee.</p>

+

+<div class="section context" id="loioff3f01ab585d4c799c5360b46cf78bab__context_N10015_N10012_N10001">

+<div class="tasklabel">

+<h2 class="sectiontitle tasklabel">Context</h2>

+</div>

+

+<p class="p">To upgrade the OData Modeler installation, proceed as follows:</p>

+</div>

+

+<div class="tasklabel">

+<h2 class="sectiontitle tasklabel">Procedure</h2>

+</div>

+

+<ol class="ol steps" id="loioff3f01ab585d4c799c5360b46cf78bab__steps_cnl_bdv_sp">

+	<li class="li step" id="loioff3f01ab585d4c799c5360b46cf78bab__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Start Eclipse.</span></li>

+	<li class="li step" id="loioff3f01ab585d4c799c5360b46cf78bab__step_N1002A_N1001E_N10012_N10001"><span class="ph cmd">From the Eclipse menu, choose&nbsp;<span class="ph menucascade"><span class="ph uicontrol"><strong>Help</strong>&gt;</span> &nbsp;<strong><span class="ph uicontrol">Check for updates</span></strong> </span>. The <strong><span class="ph uicontrol">Available Updates</span></strong> page is displayed.</span></li>

+	<li class="li step" id="loioff3f01ab585d4c799c5360b46cf78bab__step_N10043_N1001E_N10012_N10001"><span class="ph cmd">If there are any updates for Ogee, it will be displayed here. </span></li>

+	<li class="li step"><span class="ph cmd">Select the Ogee update.</span></li>

+	<li class="li step" id="loioff3f01ab585d4c799c5360b46cf78bab__step_N10061_N1001E_N10012_N10001"><span class="ph cmd">Choose <strong><span class="ph uicontrol">Next</span></strong>. </span><span class="ph cmd">The <strong><span class="ph uicontrol">Update Details</span></strong> page is displays.</span></li>

+	<li class="li step" id="loioff3f01ab585d4c799c5360b46cf78bab__step_N10072_N1001E_N10012_N10001"><span class="ph cmd">Choose <strong><span class="ph uicontrol">Next</span></strong>. The <strong><span class="ph uicontrol">Review License</span></strong> page is displays.</span></li>

+	<li class="li step" id="loioff3f01ab585d4c799c5360b46cf78bab__step_N10083_N1001E_N10012_N10001"><span class="ph cmd">Review the license agreement to continue with the upgrade.</span></li>

+	<li class="li step" id="loioff3f01ab585d4c799c5360b46cf78bab__step_N1008C_N1001E_N10012_N10001"><span class="ph cmd">Choose <strong><span class="ph uicontrol">Finish</span></strong>. The upgrade procedure begins. Upon completion you will be prompted to restart your Eclipse installation.</span></li>

+</ol>

+</div>

+</div>

+</div>

diff --git a/org.eclipse.ogee.help/html/WOE.png b/org.eclipse.ogee.help/html/WOE.png
new file mode 100644
index 0000000..a5334aa
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WOE.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/WOE1.png b/org.eclipse.ogee.help/html/WOE1.png
new file mode 100644
index 0000000..00f37f2
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WOE1.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/WOE10.png b/org.eclipse.ogee.help/html/WOE10.png
new file mode 100644
index 0000000..e48f010
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WOE10.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/WOE11.png b/org.eclipse.ogee.help/html/WOE11.png
new file mode 100644
index 0000000..8ec7646
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WOE11.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/WOE12.png b/org.eclipse.ogee.help/html/WOE12.png
new file mode 100644
index 0000000..79d77b2
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WOE12.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/WOE13.png b/org.eclipse.ogee.help/html/WOE13.png
new file mode 100644
index 0000000..de1cb73
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WOE13.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/WOE14.png b/org.eclipse.ogee.help/html/WOE14.png
new file mode 100644
index 0000000..e536732
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WOE14.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/WOE15.png b/org.eclipse.ogee.help/html/WOE15.png
new file mode 100644
index 0000000..27172c3
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WOE15.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/WOE16.png b/org.eclipse.ogee.help/html/WOE16.png
new file mode 100644
index 0000000..5672e9a
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WOE16.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/WOE17.png b/org.eclipse.ogee.help/html/WOE17.png
new file mode 100644
index 0000000..cce0e73
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WOE17.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/WOE18.png b/org.eclipse.ogee.help/html/WOE18.png
new file mode 100644
index 0000000..a787fe7
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WOE18.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/WOE19.png b/org.eclipse.ogee.help/html/WOE19.png
new file mode 100644
index 0000000..a8be01c
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WOE19.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/WOE2.png b/org.eclipse.ogee.help/html/WOE2.png
new file mode 100644
index 0000000..d3c06c8
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WOE2.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/WOE20.png b/org.eclipse.ogee.help/html/WOE20.png
new file mode 100644
index 0000000..7089944
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WOE20.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/WOE3.png b/org.eclipse.ogee.help/html/WOE3.png
new file mode 100644
index 0000000..e457cf1
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WOE3.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/WOE4.png b/org.eclipse.ogee.help/html/WOE4.png
new file mode 100644
index 0000000..c8325bb
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WOE4.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/WOE5.png b/org.eclipse.ogee.help/html/WOE5.png
new file mode 100644
index 0000000..811aafb
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WOE5.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/WOE6.png b/org.eclipse.ogee.help/html/WOE6.png
new file mode 100644
index 0000000..45ae9a8
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WOE6.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/WOE7.png b/org.eclipse.ogee.help/html/WOE7.png
new file mode 100644
index 0000000..aee1901
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WOE7.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/WOE8.png b/org.eclipse.ogee.help/html/WOE8.png
new file mode 100644
index 0000000..fdfaef6
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WOE8.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/WOE9.png b/org.eclipse.ogee.help/html/WOE9.png
new file mode 100644
index 0000000..b83d581
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WOE9.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/WPV1.png b/org.eclipse.ogee.help/html/WPV1.png
new file mode 100644
index 0000000..a82a039
--- /dev/null
+++ b/org.eclipse.ogee.help/html/WPV1.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/0b5776c556a04e34964b5bf481bb1ecc.html b/org.eclipse.ogee.help/html/Working in the OData Model Editor.html
similarity index 75%
rename from org.eclipse.ogee.help/html/0b5776c556a04e34964b5bf481bb1ecc.html
rename to org.eclipse.ogee.help/html/Working in the OData Model Editor.html
index ffffdde..1ad15a8 100644
--- a/org.eclipse.ogee.help/html/0b5776c556a04e34964b5bf481bb1ecc.html
+++ b/org.eclipse.ogee.help/html/Working in the OData Model Editor.html
@@ -1,28 +1,25 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="Working in the OData Model Editor"/>
-<meta name="description" content="Working in the OData Model Editor"/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Working in the OData Model Editor</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loio0b5776c556a04e34964b5bf481bb1ecc">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Working in the OData Model Editor</h1>
-<div class="body conbody"><p class="shortdesc">Working in the OData Model Editor</p>
-<p class="p">This section guides you to use the OData Model Editor to create an OData model. The
-			objective of this section is to familiarize the users to perform some basic functions
-			while creating an OData model.</p>
-<p class="p"><img class="image" id="loio0b5776c556a04e34964b5bf481bb1ecc__image_l5f_5sv_sp" width="960px" src="726aea8cdc914721b1a52777dd6215b0.image"/></p>
-</div>
-</div></div>
-</body>
+<html lang="en-us">

+<head>

+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

+<meta name="abstract" content="Working in the OData Model Editor"/>

+<meta name="description" content="Working in the OData Model Editor"/>

+

+<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>

+<title>Working in the OData Model Editor</title>

+<!--[if lte IE 7]><style>

+      .codeblock{

+          overflow:visible;

+      }</style><![endif]-->

+</head>

+<body class="" id="loio0b5776c556a04e34964b5bf481bb1ecc">

+<div id="wrapper"><div id="container">

+<h1 class="title topictitle1">Working in the OData Model Editor</h1>

+<div class="body conbody"><p class="shortdesc">Working in the OData Model Editor</p>

+<p class="p">This section guides you to use the OData Model Editor to create an OData model. The

+			objective of this section is to familiarize the users to perform some basic functions

+			while creating an OData model.</p>

+<p class="p"><img src="WOE.png" alt="" style="width:704px;height:428px"/></p>

+</div>

+</div></div>

+</body>

 </html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/Working in the Properties View.html b/org.eclipse.ogee.help/html/Working in the Properties View.html
new file mode 100644
index 0000000..19b196f
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Working in the Properties View.html
@@ -0,0 +1,143 @@
+<title></title>

+<div id="wrapper">

+<div id="container">

+<h1 class="title topictitle1">Working in the Properties View</h1>

+

+<div class="body conbody">

+<p class="shortdesc">The Properties View allows you to edit OData properties. These properties are used to define the different artifacts in the model.</p>

+

+<p class="p"><img src="WPV1.png" alt="" style="width:804px;height:728px" /></p>

+

+<p class="p">Each artifact displays a different set of attributes according to the OData specifications. When you change the selection of an artifact in the OData Model Editor or in the project explorer tree, the attributes displayed in the Properties View change accordingly.</p>

+

+<div class="p">

+<div class="note note" id="loio504f84d32071419eb2bb5489f0658c21__note_N10087_N10080_N10012_N10001"><span class="notetitle">Note</span> When selecting an artifact in the OData Model Editor its properties are displayed in the Properties view in read-only mode.</div>

+When you change an attribute in the OData Model Editor, the changes are reflected automatically in the Properties view and vice-versa. For example, you can change the name of the artifact in either place and it will be updated in both. The Properties view also allows you to change attributes that are not editable in the OData Model Editor, for example, changing the name of the schema.</div>

+

+<div class="p">To display the Properties view:

+<ol class="ol" id="loio504f84d32071419eb2bb5489f0658c21__ol_wnl_wbc_4j">

+	<li class="li">Select<span class="ph menucascade">&nbsp;<span class="ph uicontrol"><strong>Window</strong>&gt;</span>&nbsp;<span class="ph uicontrol"><strong>Show View</strong>&gt;</span>&nbsp;<span class="ph uicontrol"><strong>Other</strong>.</span> </span>The<strong class="ph b"> Show View </strong>dialog is displayed</li>

+	<li class="li">Select <span class="ph menucascade"><strong><span class="ph uicontrol">General&gt;</span> <span class="ph uicontrol">Properties.</span></strong></span>. The <strong class="ph b">Properties</strong> view is displayed.</li>

+</ol>

+</div>

+

+<div class="p">To edit the properties of OData artifacts:

+<ol class="ol" id="loio504f84d32071419eb2bb5489f0658c21__ol_wgq_wbc_4j">

+	<li class="li">Select the desired artifact.</li>

+	<li class="li">From the <strong class="ph b">General</strong> tab, give the desired value to the artifact&rsquo;s attributes displayed.</li>

+</ol>

+</div>

+

+<div class="section" id="loio504f84d32071419eb2bb5489f0658c21__section_N1005A_N10012_N10001">

+<div class="section_title">Referential Constraints</div>

+

+<div type="Referential Constraints">

+<p class="p">A referential constraint asserts that the entity on the principal end of the referential constraint must exist in order for the entity on the dependent end to exist. This assertion is established by the <span class="ph filepath">edm:ReferentialConstraint</span> element.</p>

+

+<p class="p">A referential constraint must contain exactly one <span class="ph filepath">edm:Principal </span>element and exactly one <span class="ph filepath">edm:Dependent </span>element.</p>

+

+<div class="p">To maintain association referential constraints:

+<div class="note note" id="loio504f84d32071419eb2bb5489f0658c21__note_N10120_N1011D_N10101_N10012_N10001"><span class="notetitle">Note</span> Referential constraints are not relevant for associations in a many to many relationship.</div>

+

+<ol class="ol" id="loio504f84d32071419eb2bb5489f0658c21__ol_l2f_5cc_4j">

+	<li class="li">Select desired association. The association&rsquo;s attributes are displayed in the Properties view.</li>

+	<li class="li">Select <span class="ph uicontrol">Referential Constraint</span>.</li>

+	<li class="li">In the <span class="ph uicontrol">Value</span> column, choose <img src="Choose.png" alt="Mountain View" style="width:30px;height:28px" />. The <span class="ph uicontrol">Referential Constraint</span> page is displayed.</li>

+	<li class="li">From the <span class="ph uicontrol">Principle</span> drop-down list, select the entity with the principal role. The <span class="ph uicontrol">Dependent</span> column is filled in automatically with the second entity in the association.

+	<div class="note note" id="loio504f84d32071419eb2bb5489f0658c21__note_N10152_N10147_N10124_N1011D_N10101_N10012_N10001"><span class="notetitle">Note</span> If the association is 1:many, the entity from which the association goes to many is automatically selected as Principal.</div>

+	</li>

+	<li class="li">In the<span class="ph uicontrol"> Principle Key</span> column, select the property key that will act as lead in the association.

+	<div class="note note" id="loio504f84d32071419eb2bb5489f0658c21__note_N1015E_N10157_N10124_N1011D_N10101_N10012_N10001"><span class="notetitle">Note</span> The properties displayed in the <span class="ph uicontrol">Principal Key</span> column, depend on the properties defined as Key in the OData Model Editor.</div>

+	</li>

+	<li class="li">From the<span class="ph uicontrol"> Dependent Property</span> drop-down list, select the desired property to be dependent on the principal key.

+	<div class="note note" id="loio504f84d32071419eb2bb5489f0658c21__note_N1016E_N10167_N10124_N1011D_N10101_N10012_N10001"><span class="notetitle">Note</span> You cannot use the same property for two different Principle keys.</div>

+	</li>

+	<li class="li">Choose <span class="ph uicontrol">OK</span>. The referential constraint is displayed in the <span class="ph uicontrol">Value</span> column of the Properties Editor.</li>

+</ol>

+</div>

+

+<div class="p">To delete a referential constraint:

+<ol class="ol" id="loio504f84d32071419eb2bb5489f0658c21__ol_gpn_wgf_pj">

+	<li class="li">Select desired association. The association&rsquo;s attributes are displayed in the Properties view.</li>

+	<li class="li">Select<span class="ph uicontrol"> Referential Constraint</span>.</li>

+	<li class="li">In the <span class="ph uicontrol">Value</span> column, choose <img src="Choose.png" alt="" style="width:30px;height:28px" /> . The <span class="ph uicontrol">Referential Constraint</span> page is displayed.</li>

+	<li class="li">Choose <span class="ph uicontrol">Delete</span>. All the referential constraints for these entities are deleted.</li>

+</ol>

+</div>

+

+<div class="p">To maintain association set:

+<ol class="ol" id="loio504f84d32071419eb2bb5489f0658c21__ol_orx_ngf_pj">

+	<li class="li">Select desired association. The association&rsquo;s attributes are displayed in the Properties view.</li>

+	<li class="li">Select <span class="ph uicontrol">Association Sets</span>.</li>

+	<li class="li">In the <span class="ph uicontrol">Value</span> column, choose . The<span class="ph uicontrol"> Association Sets</span> page is displayed. On the displayed page you can see a table with the association set properties (name of the association set, end1 entity set, and end2 entity set).</li>

+	<li class="li">To add a new association set, choose the <span class="ph uicontrol">Add</span>.</li>

+	<li class="li">To delete an association set, select it from the table and choose <span class="ph uicontrol">Remove</span>.</li>

+	<li class="li">To edit the name of the association set, in the Name column, select the desired name and edit it.</li>

+	<li class="li">To change an entity set of the association set, select the desired entity set and change it by selecting a different one from the drop-down list.</li>

+	<li class="li">Choose <span class="ph uicontrol">Apply</span>.</li>

+</ol>

+</div>

+</div>

+</div>

+</div>

+

+<div class="topic nested1" id="topic_dmx_thf_pj">

+<h2 class="title topictitle2">Annotations</h2>

+

+<div class="body">

+<p class="shortdesc">You can apply annotations to OData artifacts from the Properties View <span class="ph uicontrol">Annotations</span> tab.</p>

+

+<div class="note note" id="topic_dmx_thf_pj__note_N1020E_N1020B_N101F8_N10001"><span class="notetitle">Note</span> The <span class="ph uicontrol">Annotations</span> tab is enabled only when an OData artifact that supports annotations is selected.</div>

+

+<div class="p">To apply annotations to an OData artifact:

+<ol class="ol" id="topic_dmx_thf_pj__ol_ccn_lmf_pj">

+	<li class="li">Select the desired artifact from the model and choose <img src="MaintainAssociation.png" alt="" style="width:30px;height:28px" />(maintain annotation) from the Properties view toolbar. The <span class="ph uicontrol">Maintain Annotation</span> page is displayed showing the available (loaded) vocabularies. These vocabularies contain the applicable terms for the selected artifact.</li>

+	<li class="li">Expand the desired vocabulary.

+	<div class="note note" id="topic_dmx_thf_pj__note_N101A2_N1019F_N1018C_N10189_N1017D_N1016A_N10001"><span class="notetitle">Note</span> If terms have already been selected for this vocabulary, they appear in the list with thier checkbox selected.</div>

+	</li>

+	<li class="li">If the desired vocabulary is missing, you can add it manually using the <span class="ph filepath">edmx</span> references. For more information see the <cite class="cite">Adding EDMX References</cite> topic.</li>

+	<li class="li">Select the checkbox of the desired term(s).</li>

+	<li class="li">When finished, choose <span class="ph uicontrol">OK</span>. The annotations tab is displayed in the Properties view.</li>

+	<li class="li">You can edit each term in the <span class="ph uicontrol">Value</span> column according to the term&#39;s limitations.</li>

+</ol>

+</div>

+

+<p class="p">&nbsp;</p>

+

+<div class="p">To edit simple value annotations:

+<ul class="ul" id="topic_dmx_thf_pj__ul_px2_g4f_pj">

+	<li class="li">Entering the appropriate value (according to the annotation type).</li>

+	<li class="li">Selecting an artifact from the <span class="ph uicontrol">Value</span> drop-down list. If there are other artifacts of the same type (for example, edm.string type), they are displayed in the drop-down list.</li>

+</ul>

+

+<div class="note note" id="topic_dmx_thf_pj__note_N10258_N10249_N1020B_N101F8_N10001"><span class="notetitle">Note</span> For Boolean annotations, the drop-down list contains <span class="ph uicontrol">True</span>, <span class="ph uicontrol">False</span>, and Artifacts of type Boolean (in this case you cannot enter the value).</div>

+

+<div class="note note" id="topic_dmx_thf_pj__note_N1026C_N1024D_N1020B_N101F8_N10001"><span class="notetitle">Note</span> If the term is annotated with the annotation <span class="ph filepath">isPropertyPath</span>, you can choose its value only from the drop-down list . You can check the annotations for the terms in each of the vocabularies. To acces the vocabularies provided out-of-the-box, go to the OASIS repositories webpage.</div>

+</div>

+

+<p class="p">Annotations of type record can contain simple value annotations and annotation collections within them. To see what the record annotiation is composed of, expand the term cell.</p>

+

+<div class="p">To edit record annotations:

+<ul class="ul" id="topic_dmx_thf_pj__ul_urj_dm1_qj">

+	<li class="li">Edit the simple value annotations.</li>

+	<li class="li">Edit collections:

+	<ol class="ol" id="topic_dmx_thf_pj__ol_hdb_kn1_qj">

+		<li class="li">selecting the value cell and choosing <img src="Choose.png" alt="" style="width:30px;height:28px" />. The<span class="ph uicontrol"> Maintain Dynamic Annotation </span>dialog is opened.</li>

+		<li class="li">Expand the collection to set the value for each annotation.</li>

+		<li class="li">To add a collectable expression, select the desired collection row and choose <span class="ph uicontrol">Add</span>.</li>

+		<li class="li">To remove a collectable expression, select the desired collectable expression&#39;s row and choose <span class="ph uicontrol">Remove</span>.</li>

+	</ol>

+	</li>

+</ul>

+</div>

+</div>

+

+<div class="related-links">

+<div class="relinfo">

+<div class="relinfotitle ">Related Information</div>

+

+</div>

+</div>

+</div>

+</div>

+</div>

diff --git a/org.eclipse.ogee.help/html/Working with the OData Model Editor.html b/org.eclipse.ogee.help/html/Working with the OData Model Editor.html
new file mode 100644
index 0000000..589f79e
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Working with the OData Model Editor.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>

+<html>

+<head>

+<meta charset="ISO-8859-1">

+<title>Insert title here</title>

+</head>

+<body>

+

+</body>

+</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/Working with the OData Model Element.html b/org.eclipse.ogee.help/html/Working with the OData Model Element.html
new file mode 100644
index 0000000..452e998
--- /dev/null
+++ b/org.eclipse.ogee.help/html/Working with the OData Model Element.html
@@ -0,0 +1,443 @@
+<!--?xml version="1.0" encoding="UTF-8"?-->

+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

+<meta content="Understanding the OData model element." name="abstract" />

+<meta content="Understanding the OData model element." name="description" />

+<link href="../css/documentation.css" rel="stylesheet" type="text/css" />

+<title></title>

+<!--[if lte IE 7]><style>

+      .codeblock{

+          overflow:visible;

+      }</style><![endif]-->

+<div id="wrapper">

+<div id="container">

+<h1 class="title topictitle1">Working with the OData Model Element</h1>

+

+<p class="shortdesc"><span style="line-height: 1.6;">Every OData model element will have sections and each section will have section headers and properties under them. For example, the entity object element will have:</span></p>

+

+<div class="topic concept nested1" id="loio0f8c4c075d7340428574cadbf6976a51" lang="en-US">

+<div class="body conbody">

+<div class="p">

+<ul class="ul" id="loio0f8c4c075d7340428574cadbf6976a51__ul_njl_qpm_zl">

+	<li class="li">Entity Sets</li>

+	<li class="li">Properties</li>

+	<li class="li">Navigation Properties</li>

+</ul>

+</div>

+

+<div class="section" id="loio0f8c4c075d7340428574cadbf6976a51__section_N1002D_N10012_N10001">

+<p class="p">This section will guide you to understand the various functions available in the OData model element.</p>

+</div>

+</div>

+

+<div class="topic nested2" id="topic_cb3_4sf_bp">

+<h3 class="title topictitle3">OData Model Elements</h3>

+

+<div class="body">

+<div class="p">The OData model element is a graphical representation of the artifacts in the OData Model Editor. For example, the entity type OData model element has three sections with the following headers:

+<ul class="ul" id="topic_cb3_4sf_bp__ul_wrs_ftf_bp">

+	<li class="li">Entity Sets</li>

+	<li class="li">Properties</li>

+	<li class="li">Navigation Properties</li>

+</ul>

+</div>

+

+<div class="note note"><strong><span class="notetitle">Note</span></strong> The section header names cannot be modified.</div>

+<img src="WOE1.png" alt="" style="width:304px;height:228px" /></div>

+</div>

+

+<div class="topic task nested2" id="task_tgx_xgg_xj">

+<h3 class="title topictitle3"><strong>Selecting an OData Element</strong></h3>

+

+<div class="body taskbody">

+<div class="section context" id="task_tgx_xgg_xj__context_N10062_N1005F_N10054_N10001">

+<div class="tasklabel">

+<h4 class="sectiontitle tasklabel"><span style="line-height: 1.6;">You can move the OData model element by first selecting the shape.</span></h4>

+</div>

+

+<ol class="ol" id="task_tgx_xgg_xj__ol_nh2_bpf_bp">

+	<li class="li">Left click inside the OData model element. Ensure to click on the borders, dividers or the object icon.

+	<p class="p"><img src="WOE2.png" alt="" style="width:304px;height:228px" /></p>

+

+	<p class="p">The OData model element is selected and now you can move and position the shape inside the OData Model Editor as required.</p>

+	</li>

+</ol>

+</div>

+</div>

+</div>

+

+<div class="topic task nested2" id="task_ilk_rkq_mj">

+<h3 class="title topictitle3"><strong>Resizing the OData Model Element</strong></h3>

+

+<div class="body taskbody">

+<div class="section context" id="task_ilk_rkq_mj__context_N10091_N1008E_N10083_N10001">

+<div class="tasklabel">

+<h4 class="sectiontitle tasklabel"><span style="line-height: 1.6;">The OData model element re-sizes automatically to accommodate additional properties, You can also resize the OData model element manually by selecting it and dragging the corners.</span></h4>

+</div>

+

+<ul class="ul" id="task_ilk_rkq_mj__ul_tcs_ztf_bp">

+	<li class="li">Select the OData model element and drag the corners to re-size the OData model element manually.

+	<p class="p"><img src="WOE3.png" alt="" style="width:304px;height:228px" /></p>

+	</li>

+</ul>

+</div>

+</div>

+</div>

+

+<div class="topic nested2" id="topic_tlv_d5f_bp">

+<h3 class="title topictitle3"><strong>Expand and Collapse of Sections</strong></h3>

+

+<div class="body">

+<p class="p">The OData Model Editor provides an universal expand and collapse button on the tool bar to expand and collapse all the section headers of the objects in the OData model element. You can also expand and collapse the sections in the OData model element.</p>

+

+<div class="tablenoborder">

+<table border="1" class="table" frame="border" id="topic_tlv_d5f_bp__table_xkv_rlg_xj" rules="all" summary="">

+	<caption><span class="tablecap">Table 1: Properties</span></caption>

+	<thead align="left" class="thead">

+		<tr class="row">

+			<th class="entry" id="d75806e89" valign="top" width="33.33333333333333%"><strong>Description</strong></th>

+			<th class="entry" id="d75806e91" valign="top" width="33.33333333333333%"><strong>Button</strong></th>

+			<th class="entry" id="d75806e93" valign="top" width="33.33333333333333%"><strong>Shortcut Keys</strong></th>

+		</tr>

+	</thead>

+	<tbody class="tbody">

+		<tr class="row">

+			<td class="entry" headers="d75806e89 " valign="top" width="33.33333333333333%">Expand All</td>

+			<td class="entry" headers="d75806e91 " valign="top" width="33.33333333333333%"><img src="Expand.png" alt="" style="width:30px;height:28px" /></td>

+			<td class="entry" headers="d75806e93 " valign="top" width="33.33333333333333%">Ctrl + Alt + E</td>

+		</tr>

+		<tr class="row">

+			<td class="entry" headers="d75806e89 " valign="top" width="33.33333333333333%">Collapse All</td>

+			<td class="entry" headers="d75806e91 " valign="top" width="33.33333333333333%"><img src="Collapse.png" alt="" style="width:30px;height:28px"/></td>

+			<td class="entry" headers="d75806e93 " valign="top" width="33.33333333333333%">Ctrl + Alt + C</td>

+		</tr>

+	</tbody>

+</table>

+</div>

+

+<ul class="ul" id="topic_tlv_d5f_bp__ul_xn4_pwf_bp">

+	<li class="li">Click the <img src="Collapse.png" alt="" style="width:30px;height:28px" /> button on the tool bar to collapse all the objects in the OData Model Elements in the OData Model Editor.</li>

+	<li class="li">Click the arrow head button in the expanded section header to collapse the sections:

+	<p class="p"><img src="WOE4.png" alt="" style="width:304px;height:228px" /></p>

+	</li>

+	<li class="li">Click the <img src="Expand.png" alt="" style="width:30px;height:28px" /> button on the tool bar to expand all the objects in the OData model elements in the OData Model Editor.</li>

+	<li class="li">Click the arrow head button in the collapsed section header to expand it.

+	<p class="p"><img src="WOE5.png" alt="" style="width:304px;height:228px"/></p>

+	</li>

+</ul>

+</div>

+</div>

+

+<div class="topic nested2" id="topic_v2s_gxf_bp">

+<h3 class="title topictitle3">Context Pad</h3>

+

+<div class="body">

+<p class="p">A context pad is provided for every OData model element to assist the user to perform some basic functions in the OData Model Editor with just a click. Just hover the mouse cursor on the OData model element to view the context pad</p>

+

+<p class="p"><img src="WOE6.png" alt="" style="width:304px;height:228px" /></p>

+

+<p class="p">The context pad provides the following functions:</p>

+

+<ul class="ul" id="topic_v2s_gxf_bp__ul_yqd_nxf_bp">

+	<li class="li"><span class="ph emphasis emphasis"><strong>Delete</strong> </span>- Click to delete the OData model element along with the related entities and associations.

+

+	<p class="p"><img src="WOE7.png" alt="" style="width:304px;height:228px" /></p>

+	</li>

+	<li class="li"><strong><span class="ph emphasis emphasis">Add Property</span></strong>- Click to add a simple property to the OData model element. See <a class="xref" href="Adding Properties.html" title="This section provides instructions to add properties for an entity and complex type.">Adding Properties</a> for more information.

+	<p class="p"><img src="WOE8.png" alt="" style="width:304px;height:228px"/></p>

+	</li>

+	<li class="li"><strong><span class="ph emphasis emphasis">Add Complex Property</span></strong>- Click to add a complex property to the OData model element.

+	<p class="p"><img src="WOE9.png" alt="" style="width:304px;height:228px" /></p>

+	</li>

+	<li class="li"><span class="ph emphasis emphasis"><strong>Add Navigation Property</strong> </span>- Click to add a navigation property to the OData Model Element.

+	<p class="p"><img src="WOE10.png" alt="" style="width:304px;height:228px" /></p>

+	</li>

+	<li class="li"><strong><span class="ph emphasis emphasis">Add Association</span></strong>- Click and drag the arrow to another entity to create associations between entity types.

+	<p class="p"><img src="WOE11.png" alt="" style="width:304px;height:228px" /></p>

+	</li>

+</ul>

+</div>

+</div>

+

+<div class="topic nested2" id="topic_yfk_fyf_bp">

+<h3 class="title topictitle3">This section describes the common options available in the context menu of the OData Model Elements. Some options are specific to OData Model Elements and are not addressed in this section.</h3>

+

+<div class="body">

+<ol class="ol" id="topic_yfk_fyf_bp__ol_mwf_qyf_bp">

+	<li class="li">Right click on the header of the OData Model Element to open the Context menu.

+	<p class="p"><img src="WOE12.png" alt="" style="width:304px;height:228px" /></p>

+	</li>

+	<li class="li">Do the following using the context menu of the OData Model Element:

+	<div class="tablenoborder">

+	<table border="1" class="table" frame="border" id="topic_yfk_fyf_bp__table_q45_fzf_bp" rules="all" summary="">

+		<caption><strong><span class="tablecap">Table 2: Context Menu</span></strong></caption>

+		<thead align="left" class="thead">

+			<tr class="row">

+				<th class="entry" id="d75806e196" valign="top" width="61.53846153846154%"><strong>Context Menu</strong></th>

+				<th class="entry" id="d75806e198" valign="top" width="38.46153846153846%"><strong>Description</strong></th>

+			</tr>

+		</thead>

+		<tbody class="tbody">

+			<tr class="row">

+				<td class="entry" headers="d75806e196 " valign="top" width="61.53846153846154%">Undo Create a new Entity Type/ Function Import</td>

+				<td class="entry" headers="d75806e198 " valign="top" width="38.46153846153846%">Use this menu to undo the most recent action performed in the OData model editor.</td>

+			</tr>

+			<tr class="row">

+				<td class="entry" headers="d75806e196 " valign="top" width="61.53846153846154%">Add Property</td>

+				<td class="entry" headers="d75806e198 " valign="top" width="38.46153846153846%">Adds a property to the Properties. .</td>

+			</tr>

+			<tr class="row">

+				<td class="entry" headers="d75806e196 " valign="top" width="61.53846153846154%">Add Entity Sets</td>

+				<td class="entry" headers="d75806e198 " valign="top" width="38.46153846153846%">Click to add a new entity set.</td>

+			</tr>

+			<tr class="row">

+				<td class="entry" headers="d75806e196 " valign="top" width="61.53846153846154%">Show Usages</td>

+				<td class="entry" headers="d75806e198 " valign="top" width="38.46153846153846%">Use this menu to show and hide the all relationships of this function import with other artifacts on the canvas. The relationships are represented by arrows</td>

+			</tr>

+			<tr class="row">

+				<td class="entry" headers="d75806e196 " valign="top" width="61.53846153846154%">Delete</td>

+				<td class="entry" headers="d75806e198 " valign="top" width="38.46153846153846%">Deletes the OData model element</td>

+			</tr>

+			<tr class="row">

+				<td class="entry" headers="d75806e196 " valign="top" width="61.53846153846154%">Export Diagram</td>

+				<td class="entry" headers="d75806e198 " valign="top" width="38.46153846153846%">Use this menu to export and save the object as a diagram</td>

+			</tr>

+			<tr class="row">

+				<td class="entry" headers="d75806e196 " valign="top" width="61.53846153846154%"><span class="ph menucascade"><span class="ph uicontrol">Diagram&gt;&nbsp;</span><span class="ph uicontrol">Expand All&gt;</span>&nbsp;<span class="ph uicontrol">Collapse All</span>&nbsp;</span></td>

+				<td class="entry" headers="d75806e198 " valign="top" width="38.46153846153846%">Use this menu to either expand all or collapse all the objects in the OData model element</td>

+			</tr>

+			<tr class="row">

+				<td class="entry" headers="d75806e196 " valign="top" width="61.53846153846154%">Layout</td>

+				<td class="entry" headers="d75806e198 " valign="top" width="38.46153846153846%">Use this menu to choose the preferred layouts to layout the OData model elements in the OData model</td>

+			</tr>

+			<tr class="row">

+				<td class="entry" headers="d75806e196 " valign="top" width="61.53846153846154%">Print</td>

+				<td class="entry" headers="d75806e198 " valign="top" width="38.46153846153846%">Use this menu print the diagram</td>

+			</tr>

+		</tbody>

+	</table>

+	</div>

+	</li>

+</ol>

+</div>

+</div>

+

+<div class="topic nested2" id="topic_t3c_d1g_bp">

+<h3 class="title topictitle3"><strong>Show/Hide All Usages</strong></h3>

+

+<div class="body">

+<p class="p">The objective of the Show/Hide All Usages button is to provide the user with the facility to view all the relationships between the artifacts on the graphical editor. Clicking the button in the when relationships are displayed will hide all the relationship(s). The Show/Hide button is a toggle button and can be located on the tool bar of the eclipse application and in the context pad of the objects. This button switches between two states; Show Usage (showing the relationship between the artifacts) and Hide Usage (hiding relationship between the artifacts). The appearance of the button changes with its state to provide visual assistance for the user.</p>

+

+<div class="tablenoborder">

+<table border="1" class="table" frame="border" id="topic_t3c_d1g_bp__table_xqw_gls_bj" rules="all" summary="">

+	<caption><span class="tablecap">Table 3: Show /Hide All Usages </span></caption>

+	<thead align="left" class="thead">

+		<tr class="row">

+			<th class="entry" id="d75806e267" valign="top" width="24.426229508196723%">Button</th>

+			<th class="entry" id="d75806e269" valign="top" width="16.393442622950822%">State</th>

+			<th class="entry" id="d75806e271" valign="top" width="59.18032786885246%">Description</th>

+		</tr>

+	</thead>

+	<tbody class="tbody">

+		<tr class="row">

+			<td class="entry" headers="d75806e267 " valign="top" width="24.426229508196723%"><img src="WOE13.png" alt="" style="width:30px;height:28px" /></td>

+			<td class="entry" headers="d75806e269 " valign="top" width="16.393442622950822%">Active</td>

+			<td class="entry" headers="d75806e271 " valign="top" width="59.18032786885246%">When the Show/Hide Usage button has a box around it (pressed state) signifies that all the relationships between the artifacts in the graphical editor are being visible. You can press the button to hide the relationships.</td>

+		</tr>

+		<tr class="row">

+			<td class="entry" headers="d75806e267 " valign="top" width="24.426229508196723%"><img src="WOE14.png" alt="" style="width:30px;height:28px"/></td>

+			<td class="entry" headers="d75806e269 " valign="top" width="16.393442622950822%">Inactive</td>

+			<td class="entry" headers="d75806e271 " valign="top" width="59.18032786885246%">When the Show/Hide Usage button appears without a box around it, then you can press it to view all the relationships between the artifacts in the graphical editor.</td>

+		</tr>

+	</tbody>

+</table>

+</div>

+

+<div class="p">The following condition are adhered while using the &quot;Show/Hide&quot; button:

+<ul class="ul" id="topic_t3c_d1g_bp__ul_ygq_vsq_mj">

+	<li class="li">When an OData model is opened in the graphical editor and when the &ldquo;Show/Hide All Usages&rdquo; toggle button is pushed, the usage for all artifacts are shown in graphical editor canvas. The graphical editor switches to unsaved state &amp; the button is in active state.</li>

+	<li class="li">The relationship between the artifacts are shown by arrows.</li>

+	<li class="li">Show usage will be available for entity types, complex types.</li>

+	<li class="li">For complex types, if the same complex type is used in multiple properties in an entity, then link will be shown only to the parent entity. It is also applicable for entity types.</li>

+	<li class="li">Show/Hide usage function is available for property usage and base type if the entity type and complex type.</li>

+	<li class="li">Show usage is available for parameter usage and return type for function import.</li>

+	<li class="li">When show usage is enabled, and if any changes are made in the properties view, the OData Model Editor reflects the changes instantly.</li>

+</ul>

+</div>

+

+<div class="note note" id="topic_t3c_d1g_bp__note_N10298_N10203_N10200_N101F5_N10188_N100AF_N10001"><span class="notetitle">Note</span> Whenever the Show/Hide All Usages toggle button is used, the graphical editor returns to the unsaved mode to maintain the state of &ldquo;Show/Hide All Usages&rdquo; toggle button. On saving &amp; reopening the model file, the last state of the &ldquo;Show/Hide All Usages&rdquo; toggle button will be maintained.</div>

+</div>

+</div>

+

+<div class="topic nested2" id="topic_jxy_jd4_bp">

+<h3 class="title topictitle3"><strong>Copy and Paste</strong></h3>

+

+<div class="body">

+<p class="p">This page will guide you to copy and paste the OData Model Elements in the OData Model Editor. The Copy &amp; Paste function is available in the following scenarios:</p>

+

+<div class="p">

+<ul class="ul" id="topic_jxy_jd4_bp__ul_bgd_1k4_bp">

+	<li class="li">Copy and Paste the OData Model Element anywhere in the same editor</li>

+	<li class="li">Copy and Paste across OData Model Editors</li>

+	<li class="li">Cascading Paste function - When pasting the OData Model Element on top of another OData Model Element, the elements are layered above another as cascades and does not overlap each other.

+	<p class="p"><img src="WOE15.png" alt="" style="width:304px;height:328px" /></p>

+	</li>

+	<li class="li">Copy and Paste of multiple OData Model Elements:

+	<ul class="ul" id="topic_jxy_jd4_bp__ul_rn2_1k4_bp">

+		<li class="li">Select the OData Model Elements to be copied.

+		<div class="note note"><strong><span class="notetitle">Note:</span></strong> Ensure that only the OData Model Elements are selected and properties inside the element are not selected. If the properties are selected along with the elements then the paste will not work. Also, the entity sets cannot be copied.</div>

+		</li>

+		<li class="li">Paste the copied elements in the same canvas on top of the copied elements.

+		<p class="p"><img src="WOE16.png" alt="" style="width:334px;height:328px" /></p>

+

+		<p class="p">The elements are positioned as cascades on top of another element of the same type.</p>

+

+		<p class="p">If you paste the copied elements elements anywhere in the same canvas or in another canvas, then the elements are pasted as follows:</p>

+

+		<p class="p"><img src="WOE17.png" alt="" style="width:250px;height:228px"/></p>

+

+		<div class="note note"><span class="notetitle">Note</span> Drag and drop function to copy and paste the OData Model Element in the OData Model Editor is not supported.</div>

+		</li>

+	</ul>

+	</li>

+</ul>

+</div>

+

+<div class="section">To Copy and Paste OData Model Elements follow these steps:

+<ol class="ol" id="topic_jxy_jd4_bp__ol_nwh_zh4_bp">

+	<li class="li">Click on the empty region in OData Model Editor and select<span class="ph emphasis emphasis"> Paste</span> or press <span class="ph emphasis emphasis">Control+V</span> from the keyboard.

+

+	<p class="p">The copied OData Model Element will be pasted as positioned.</p>

+

+	<div class="note note"><strong><span class="notetitle">Note:</span> </strong>For copying properties, select the OData Model Element or anywhere in the element to paste the property and then paste the property.</div>

+	<p></p>

+	<img src="WOE18.png" alt="" style="width:654px;height:428px" /></li>

+	<li class="li">During a copy and paste process the following condition are met:

+	<ul class="ul" id="topic_jxy_jd4_bp__ul_rnh_mj4_bp">

+		<li class="li">The new OData Model Element that was copied will have a unique name.</li>

+		<li class="li">All the Properties and their attributes from the source entity will be copied to the destination entity with the same names and same attributes values.</li>

+		<li class="li">Associations, Navigation properties will not be be copied to the destination Entity type element.</li>

+		<li class="li">Only default Entity Set will be created in the copied Entity element.</li>

+		<li class="li">A copied property will be pasted at the end of properties list in the new property element.The name of the property will be prop&lt;N&gt;, where &quot;N&quot; will be incremented every time you paste the same property and the name of the property will be in edit mode.The attributes of the property should be same as source property.</li>

+		<li class="li">For copy of Property from EntityType to ComplexType , if, the source property is Key property then the destination property pasted in ComplexType should not be a key property.</li>

+	</ul>

+	</li>

+	<li class="li">Using the mouse, select the required OData Model Element and select <span class="ph emphasis emphasis">Copy </span>or press Control+C from the keyboard.<span style="line-height: 1.2;">Shortcut Keys</span></li>

+</ol>

+</div>

+</div>

+</div>

+

+<div class="topic nested2" id="topic_jd5_3dg_bp">

+<div class="body">

+<div class="p">The table below provides the list of shortcut keys that can be used in the OData Model Editor:

+<div class="tablenoborder">

+<table border="1" class="table" frame="border" id="topic_jd5_3dg_bp__table_xqw_gls_bj" rules="all" summary="">

+	<caption><span class="tablecap">Table 4: Show /Hide Usage </span></caption>

+	<thead align="left" class="thead">

+		<tr class="row">

+			<th class="entry" id="d75806e424" valign="top" width="39.370078740157474%">Action To</th>

+			<th class="entry" id="d75806e426" valign="top" width="60.629921259842526%">Shortcut Key</th>

+		</tr>

+	</thead>

+	<tbody class="tbody">

+		<tr class="row">

+			<td class="entry" headers="d75806e424 " valign="top" width="39.370078740157474%">Navigation Left between the OData Model Elements</td>

+			<td class="entry" headers="d75806e426 " valign="top" width="60.629921259842526%">Left arrow</td>

+		</tr>

+		<tr class="row">

+			<td class="entry" headers="d75806e424 " valign="top" width="39.370078740157474%">Navigate right between the OData Model Elements</td>

+			<td class="entry" headers="d75806e426 " valign="top" width="60.629921259842526%">Right arrow</td>

+		</tr>

+		<tr class="row">

+			<td class="entry" headers="d75806e424 " valign="top" width="39.370078740157474%">Navigate down within the OData Model Elements</td>

+			<td class="entry" headers="d75806e426 " valign="top" width="60.629921259842526%">Down arrow</td>

+		</tr>

+		<tr class="row">

+			<td class="entry" headers="d75806e424 " valign="top" width="39.370078740157474%">Navigate up within the OData Model Elements</td>

+			<td class="entry" headers="d75806e426 " valign="top" width="60.629921259842526%">Up arrow</td>

+		</tr>

+		<tr class="row">

+			<td class="entry" headers="d75806e424 " valign="top" width="39.370078740157474%">Navigate into a section in the OData Model Element</td>

+			<td class="entry" headers="d75806e426 " valign="top" width="60.629921259842526%">Alt+Down arrow with the OData model element selected</td>

+		</tr>

+		<tr class="row">

+			<td class="entry" headers="d75806e424 " valign="top" width="39.370078740157474%">Navigate out of a section in the OData Model Element</td>

+			<td class="entry" headers="d75806e426 " valign="top" width="60.629921259842526%">Alt+Up arrow</td>

+		</tr>

+		<tr class="row">

+			<td class="entry" headers="d75806e424 " valign="top" width="39.370078740157474%">Cycle through an OData Model Element</td>

+			<td class="entry" headers="d75806e426 " valign="top" width="60.629921259842526%">Select the OData model element and press the period key</td>

+		</tr>

+		<tr class="row">

+			<td class="entry" headers="d75806e424 " valign="top" width="39.370078740157474%">Move an OData Model Element</td>

+			<td class="entry" headers="d75806e426 " valign="top" width="60.629921259842526%">Cycle once to the Move handle using the period key. Use navigation keys to move. Press Enter to accept new location. Press Escape to cancel the move</td>

+		</tr>

+		<tr class="row">

+			<td class="entry" headers="d75806e424 " valign="top" width="39.370078740157474%">Resize an OData Model Element</td>

+			<td class="entry" headers="d75806e426 " valign="top" width="60.629921259842526%">Cycle to desired resize handle using the period key. Use navigation keys to resize. Press Enter to accept new size. Press Escape to cancel the resize</td>

+		</tr>

+		<tr class="row">

+			<td class="entry" headers="d75806e424 " valign="top" width="39.370078740157474%">Cycle through connections</td>

+			<td class="entry" headers="d75806e426 " valign="top" width="60.629921259842526%">Slash or backslash while on an element with connections</td>

+		</tr>

+		<tr class="row">

+			<td class="entry" headers="d75806e424 " valign="top" width="39.370078740157474%">Select multiple</td>

+			<td class="entry" headers="d75806e426 " valign="top" width="60.629921259842526%">Hold down Ctrl. Use navigation keys to navigate to additional OData model element. Press Space to select additional shapes or deselect already selected ones.</td>

+		</tr>

+		<tr class="row">

+			<td class="entry" headers="d75806e424 " valign="top" width="39.370078740157474%">Select in sequence</td>

+			<td class="entry" headers="d75806e426 " valign="top" width="60.629921259842526%">Hold down Shift, use navigation keys to select additional shapes or deselect already selected ones.</td>

+		</tr>

+		<tr class="row">

+			<td class="entry" headers="d75806e424 " valign="top" width="39.370078740157474%">Go from OData model editor to palette</td>

+			<td class="entry" headers="d75806e426 " valign="top" width="60.629921259842526%">Shift + Tab</td>

+		</tr>

+		<tr class="row">

+			<td class="entry" headers="d75806e424 " valign="top" width="39.370078740157474%">Go from palette to OData model editor</td>

+			<td class="entry" headers="d75806e426 " valign="top" width="60.629921259842526%">Tab (currently only works with active selection tool)</td>

+		</tr>

+		<tr class="row">

+			<td class="entry" headers="d75806e424 " valign="top" width="39.370078740157474%">Create selected palette element</td>

+			<td class="entry" headers="d75806e426 " valign="top" width="60.629921259842526%">RETURN</td>

+		</tr>

+		<tr class="row">

+			<td class="entry" headers="d75806e424 " valign="top" width="39.370078740157474%">Create relation between OData Model Element</td>

+			<td class="entry" headers="d75806e426 " valign="top" width="60.629921259842526%">Apply multi selection to the OData model element with SPACE. Navigate to palette with Shift + Tab and create the desired relation with RETURN</td>

+		</tr>

+	</tbody>

+</table>

+</div>

+</div>

+</div>

+</div>

+

+<div class="topic nested2" id="topic_wxk_wdg_bp">

+<h3 class="title topictitle3">Things to Remember</h3>

+

+<div class="body">

+<ul class="ul" id="topic_wxk_wdg_bp__ul_hmr_jgx_hp">

+	<li class="li">While working with version control system, OData model may be in Read-only mode. Following are the characteristics of a Read-only OData model:

+	<ul class="ul" id="topic_wxk_wdg_bp__ul_uwl_pgx_hp">

+		<li class="li">Read-only tag appears along with the title of the model.</li>

+		<li class="li">Editor palette does not appear.</li>

+		<li class="li">User can perform actions such as move the entities, show/hide relation, collapse etc.</li>

+	</ul>

+	To edit the model, ensure OData model is in Write mode and reopen the editor.</li>

+	<li class="li">Whenever a change is made on the canvas the OData Model Editor displays a <span class="ph emphasis emphasis">star icon</span> in the tab page of the OData Model Editor indicating that the model needs to be saved.

+	<p class="p"><img src="WOE19.png" alt="" style="width:304px;height:228px"/></p>

+

+	<ul class="ul" id="topic_wxk_wdg_bp__ul_tms_t2g_bp">

+		<li class="li">Select and press <em class="ph i">F2</em> to edit any objects in the entity shape.</li>

+		<li class="li">On saving the model, an error icon displays on the elements that are erroneous and also in the OData Model Editor.

+		<p class="p"><img src="WOE20.png" alt="" style="width:304px;height:228px"/></p>

+

+		<p class="p">Multiple elements and attributes can be deleted by either using CTRL key or SHIFT key and selecting the objects. A delete confirmation window appears during such operations.</p>

+		</li>

+	</ul>

+	</li>

+</ul>

+</div>

+</div>

+</div>

+</div>

+</div>

diff --git a/org.eclipse.ogee.help/html/a2a2ba8fd89c4e97957724f849b57437.image b/org.eclipse.ogee.help/html/a2a2ba8fd89c4e97957724f849b57437.image
deleted file mode 100644
index 115a4d2..0000000
--- a/org.eclipse.ogee.help/html/a2a2ba8fd89c4e97957724f849b57437.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/a3997075e60b4dd3b3e47a8126070414.html b/org.eclipse.ogee.help/html/a3997075e60b4dd3b3e47a8126070414.html
deleted file mode 100644
index 02c9e17..0000000
--- a/org.eclipse.ogee.help/html/a3997075e60b4dd3b3e47a8126070414.html
+++ /dev/null
@@ -1,445 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="Understanding the OData model element."/>
-<meta name="description" content="Understanding the OData model element."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Working with the OData Model Element</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loioa3997075e60b4dd3b3e47a8126070414">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Working with the OData Model Element</h1>
-<p class="shortdesc">Understanding the OData model element.</p>
-<div class="topic concept nested1" lang="en-US" id="loio0f8c4c075d7340428574cadbf6976a51"><h2 class="title topictitle2">Working with the OData Model Element</h2>
-<div class="body conbody"><p class="shortdesc">Understanding the OData model element.</p>
-<div class="p">Every OData model element will have sections and each section will have section
-				headers and properties under them. For example, the entity object element will
-					have:<ul class="ul" id="loio0f8c4c075d7340428574cadbf6976a51__ul_njl_qpm_zl"><li class="li">Entity Sets</li>
-<li class="li">Properties</li>
-<li class="li">Navigation Properties</li>
-</ul>
-</div>
-<div class="section" id="loio0f8c4c075d7340428574cadbf6976a51__section_N1002D_N10012_N10001">
-				<p class="p"> This section will guide you to understand the various functions available in the
-					OData model element.</p>
-
-			</div>
-</div>
-<div class="topic nested2" id="topic_cb3_4sf_bp"><h3 class="title topictitle3">OData Model Elements</h3>
-<div class="body"><div class="p">The OData model element is a graphical representation of the artifacts in the
-					OData Model Editor. For example, the entity type OData model element has three
-					sections with the following headers: <ul class="ul" id="topic_cb3_4sf_bp__ul_wrs_ftf_bp"><li class="li">Entity Sets </li>
-<li class="li">Properties</li>
-<li class="li">Navigation Properties </li>
-</ul>
-</div>
-<div class="note note"><span class="notetitle">Note</span> The section header names cannot be modified.</div>
-<img class="image" id="topic_cb3_4sf_bp__image_a5t_szk_tp" src="48e6e741025e4c62bc869dbbc609917d.image"/></div>
-</div>
-<div class="topic task nested2" id="task_tgx_xgg_xj"><h3 class="title topictitle3">Selecting an OData Element</h3>
-<div class="body taskbody"><div class="section context" id="task_tgx_xgg_xj__context_N10062_N1005F_N10054_N10001"><div class="tasklabel"><h4 class="sectiontitle tasklabel">Context</h4></div>You can move the OData model
-					element by first selecting the shape. <p class="p"><strong class="ph b">Step Result</strong></p>
-<ol class="ol" id="task_tgx_xgg_xj__ol_nh2_bpf_bp"><li class="li">Left click inside the OData model element. Ensure to click on the
-							borders, dividers or the object icon.<p class="p"><img class="image" id="task_tgx_xgg_xj__image_hwm_c1l_tp" src="e78a7bc89ce14966a798ca235a0b6a6d.image"/></p>
-<p class="p">The OData model element is
-								selected and now you can move and position the shape inside the
-								OData Model Editor as required. </p>
-</li>
-</ol>
-</div></div>
-</div>
-<div class="topic task nested2" id="task_ilk_rkq_mj"><h3 class="title topictitle3">Resizing the OData Model Element</h3>
-<div class="body taskbody"><div class="section context" id="task_ilk_rkq_mj__context_N10091_N1008E_N10083_N10001"><div class="tasklabel"><h4 class="sectiontitle tasklabel">Context</h4></div>The OData model element re-sizes
-					automatically to accommodate additional properties, You can also resize the
-					OData model element manually by selecting it and dragging the corners. <ul class="ul" id="task_ilk_rkq_mj__ul_tcs_ztf_bp"><li class="li">Select the OData model element and drag the corners to re-size the OData
-							model element manually. <p class="p"><img class="image" id="task_ilk_rkq_mj__image_udc_f1l_tp" src="f654fc8fb8ae4742a30e63067e82ef83.image"/></p>
-</li>
-</ul>
-</div></div>
-</div>
-<div class="topic nested2" id="topic_tlv_d5f_bp"><h3 class="title topictitle3">Expand and Collapse of Sections</h3>
-<div class="body"><p class="p">The OData Model Editor provides an universal expand and collapse button on the
-					tool bar to expand and collapse all the section headers of the objects in the
-					OData model element. You can also expand and collapse the sections in the OData
-					model element. </p>
-
-<div class="tablenoborder"><table summary="" id="topic_tlv_d5f_bp__table_xkv_rlg_xj" class="table" frame="border" border="1" rules="all"><caption><span class="tablecap">Table 1:
-					Properties</span></caption><thead class="thead" align="left"><tr class="row"><th class="entry" valign="top" width="33.33333333333333%" id="d75806e89">Description</th>
-<th class="entry" valign="top" width="33.33333333333333%" id="d75806e91">Button</th>
-<th class="entry" valign="top" width="33.33333333333333%" id="d75806e93">Shortcut Keys</th>
-</tr>
-</thead>
-<tbody class="tbody"><tr class="row"><td class="entry" valign="top" width="33.33333333333333%" headers="d75806e89 ">Expand All </td>
-<td class="entry" valign="top" width="33.33333333333333%" headers="d75806e91 "><img class="image" id="topic_tlv_d5f_bp__image_arz_g1l_tp" src="78ca878648554e95af56878d64a5dbe6.image"/></td>
-<td class="entry" valign="top" width="33.33333333333333%" headers="d75806e93 ">Ctrl + Alt + E</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="33.33333333333333%" headers="d75806e89 ">Collapse All </td>
-<td class="entry" valign="top" width="33.33333333333333%" headers="d75806e91 "><img class="image" id="topic_tlv_d5f_bp__image_y2t_h1l_tp" src="a2a2ba8fd89c4e97957724f849b57437.image"/></td>
-<td class="entry" valign="top" width="33.33333333333333%" headers="d75806e93 ">Ctrl + Alt + C </td>
-</tr>
-</tbody>
-</table>
-</div>
-<ul class="ul" id="topic_tlv_d5f_bp__ul_xn4_pwf_bp"><li class="li">Click the <img class="image" id="topic_tlv_d5f_bp__image_swb_m1l_tp" src="a2a2ba8fd89c4e97957724f849b57437.image"/>  button on the tool bar to collapse all the
-						objects in the OData Model Elements in the OData Model Editor.</li>
-<li class="li">Click the arrow head button in the expanded section header to collapse the
-								sections:<p class="p"><img class="image" id="topic_tlv_d5f_bp__image_u45_p1l_tp" src="0e2536af9f4742c39aa011ef06dc5b2d.image"/></p>
-</li>
-<li class="li">Click the <img class="image" id="topic_tlv_d5f_bp__image_cgj_r1l_tp" src="78ca878648554e95af56878d64a5dbe6.image"/>  button on the tool bar to expand all the
-						objects in the OData model elements in the OData Model Editor.</li>
-<li class="li">Click the arrow head button in the collapsed section header to expand
-								it.<p class="p"><img class="image" id="topic_tlv_d5f_bp__image_vzn_51l_tp" src="52336b71a55448bb943b425683f1bf43.image"/></p>
-</li>
-</ul>
-</div>
-</div>
-<div class="topic nested2" id="topic_v2s_gxf_bp"><h3 class="title topictitle3">Context Pad</h3>
-<div class="body"><p class="p">A context pad is provided for every OData model element to assist the user to
-					perform some basic functions in the OData Model Editor with just a click. Just
-					hover the mouse cursor on the OData model element to view the context pad</p>
-<p class="p"><img class="image" id="topic_v2s_gxf_bp__image_n55_cbl_tp" src="804f9805a814473098f0216d1d996cc7.image"/></p>
-<p class="p">The context pad provides the following functions:</p>
-<ul class="ul" id="topic_v2s_gxf_bp__ul_yqd_nxf_bp"><li class="li"><span class="ph emphasis emphasis">Delete </span>- Click to delete the OData model element along
-						with the related entities and associations.<p class="p"><img class="image" id="topic_v2s_gxf_bp__image_r1d_hbl_tp" src="ed2655b2e42949fd8cce9d8d15d3ac49.image"/></p>
-</li>
-<li class="li"><span class="ph emphasis emphasis">Add Property</span>- Click to add a simple property to the OData model
-						element. See <a class="xref" href="8777b42c12bc4796a5898dbba6feb3fb.html" title="This section provides instructions to add properties for an entity and complex type.">Adding Properties</a> for more
-						information. <p class="p"><img class="image" id="topic_v2s_gxf_bp__image_wmf_lbl_tp" src="af473a3df66243338b126aaadcf5d2ca.image"/></p>
-</li>
-<li class="li"><span class="ph emphasis emphasis">Add Complex Property</span>- Click to add a complex property
-						to the OData model element. <p class="p"><img class="image" id="topic_v2s_gxf_bp__image_omg_pbl_tp" src="e272000e2d7b4501bdd1e8685cc0e5d2.image"/></p>
-</li>
-<li class="li"><span class="ph emphasis emphasis">Add Navigation Property </span>- Click to add a navigation
-						property to the OData Model Element.<p class="p"><img class="image" id="topic_v2s_gxf_bp__image_z2k_sbl_tp" src="825cf65fc5d547619134d14c3f94ec92.image"/></p>
-</li>
-<li class="li"><span class="ph emphasis emphasis">Add Association</span>- Click and drag the arrow to another
-						entity to create associations between entity types.<p class="p"><img class="image" id="topic_v2s_gxf_bp__image_jqs_xbl_tp" src="1fccaf93801b454a9ff337af3a7ee953.image"/></p>
-</li>
-</ul>
-</div>
-</div>
-<div class="topic nested2" id="topic_yfk_fyf_bp"><h3 class="title topictitle3">Context Menu</h3>
-<div class="body"><p class="p">This section describes the common options available in the context menu of the
-					OData Model Elements. Some options are specific to OData Model Elements and are
-					not addressed in this section.</p>
-<ol class="ol" id="topic_yfk_fyf_bp__ol_mwf_qyf_bp"><li class="li">Right click on the header of the OData Model Element to open the Context
-						menu. <p class="p"><img class="image" id="topic_yfk_fyf_bp__image_gg5_gcl_tp" src="e36d183add2d4e71bc71e227c4c3529c.image"/></p>
-</li>
-<li class="li">Do the following using the context menu of the OData Model Element:
-<div class="tablenoborder"><table summary="" id="topic_yfk_fyf_bp__table_q45_fzf_bp" class="table" frame="border" border="1" rules="all"><caption><span class="tablecap">Table 2:
-					Context Menu</span></caption><thead class="thead" align="left"><tr class="row"><th class="entry" valign="top" width="61.53846153846154%" id="d75806e196">Context Menu</th>
-<th class="entry" valign="top" width="38.46153846153846%" id="d75806e198">Description</th>
-</tr>
-</thead>
-<tbody class="tbody"><tr class="row"><td class="entry" valign="top" width="61.53846153846154%" headers="d75806e196 ">Undo Create a new Entity Type/ Function
-											Import</td>
-<td class="entry" valign="top" width="38.46153846153846%" headers="d75806e198 ">Use this menu to undo the most recent action
-											performed in the OData model editor. </td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="61.53846153846154%" headers="d75806e196 ">Add Property</td>
-<td class="entry" valign="top" width="38.46153846153846%" headers="d75806e198 ">Adds a property to the Properties. .</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="61.53846153846154%" headers="d75806e196 ">Add Entity Sets</td>
-<td class="entry" valign="top" width="38.46153846153846%" headers="d75806e198 ">Click to add a new entity set.</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="61.53846153846154%" headers="d75806e196 ">Show Usages</td>
-<td class="entry" valign="top" width="38.46153846153846%" headers="d75806e198 ">Use this menu to show and hide the all relationships
-											of this function import with other artifacts on the
-											canvas. The relationships are represented by
-											arrows</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="61.53846153846154%" headers="d75806e196 ">Delete</td>
-<td class="entry" valign="top" width="38.46153846153846%" headers="d75806e198 ">Deletes the OData model element</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="61.53846153846154%" headers="d75806e196 ">Export Diagram</td>
-<td class="entry" valign="top" width="38.46153846153846%" headers="d75806e198 ">Use this menu to export and save the object as a
-											diagram</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="61.53846153846154%" headers="d75806e196 "><span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">Diagram</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Expand All </span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Collapse All</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span></td>
-<td class="entry" valign="top" width="38.46153846153846%" headers="d75806e198 ">Use this menu to either expand all or collapse all
-											the objects in the OData model element</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="61.53846153846154%" headers="d75806e196 ">Layout </td>
-<td class="entry" valign="top" width="38.46153846153846%" headers="d75806e198 ">Use this menu to choose the preferred layouts to
-											layout the OData model elements in the OData
-											model</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="61.53846153846154%" headers="d75806e196 ">Print</td>
-<td class="entry" valign="top" width="38.46153846153846%" headers="d75806e198 ">Use this menu print the diagram</td>
-</tr>
-</tbody>
-</table>
-</div>
-</li>
-</ol>
-</div>
-</div>
-<div class="topic nested2" id="topic_t3c_d1g_bp"><h3 class="title topictitle3">Show/Hide All Usages</h3>
-<div class="body"><p class="p">The objective of the Show/Hide All Usages button is to provide the user with the
-					facility to view all the relationships between the artifacts on the graphical
-					editor. Clicking the button in the when relationships are displayed will hide
-					all the relationship(s). The Show/Hide button is a toggle button and can be
-					located on the tool bar of the eclipse application and in the context pad of the
-					objects. This button switches between two states; Show Usage (showing the
-					relationship between the artifacts) and Hide Usage (hiding relationship between
-					the artifacts). The appearance of the button changes with its state to provide
-					visual assistance for the user.</p>
-
-<div class="tablenoborder"><table summary="" id="topic_t3c_d1g_bp__table_xqw_gls_bj" class="table" frame="border" border="1" rules="all"><caption><span class="tablecap">Table 3:
-					Show /Hide All Usages </span></caption><thead class="thead" align="left"><tr class="row"><th class="entry" valign="top" width="24.426229508196723%" id="d75806e267">Button </th>
-<th class="entry" valign="top" width="16.393442622950822%" id="d75806e269">State</th>
-<th class="entry" valign="top" width="59.18032786885246%" id="d75806e271">Description </th>
-</tr>
-</thead>
-<tbody class="tbody"><tr class="row"><td class="entry" valign="top" width="24.426229508196723%" headers="d75806e267 "><img class="image" id="topic_t3c_d1g_bp__image_hlt_kcl_tp" src="3dad04c8b7cc479e8ae3a27c90add919.image"/></td>
-<td class="entry" valign="top" width="16.393442622950822%" headers="d75806e269 ">Active </td>
-<td class="entry" valign="top" width="59.18032786885246%" headers="d75806e271 ">When the Show/Hide Usage button has a box around it (pressed
-									state) signifies that all the relationships between the
-									artifacts in the graphical editor are being visible. You can
-									press the button to hide the relationships. </td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="24.426229508196723%" headers="d75806e267 "><img class="image" id="topic_t3c_d1g_bp__image_wrg_lcl_tp" src="7190fdb120b14d21b3a222f2e5d41bcc.image"/></td>
-<td class="entry" valign="top" width="16.393442622950822%" headers="d75806e269 ">Inactive</td>
-<td class="entry" valign="top" width="59.18032786885246%" headers="d75806e271 ">When the Show/Hide Usage button appears without a box around
-									it, then you can press it to view all the relationships between
-									the artifacts in the graphical editor. </td>
-</tr>
-</tbody>
-</table>
-</div>
-<div class="p">The following condition are adhered while using the "Show/Hide" button:<ul class="ul" id="topic_t3c_d1g_bp__ul_ygq_vsq_mj"><li class="li">When an OData model is opened in the graphical editor and when the
-							“Show/Hide All Usages” toggle button is pushed, the usage for all
-							artifacts are shown in graphical editor canvas. The graphical editor
-							switches to unsaved state &amp; the button is in active state. </li>
-<li class="li">The relationship between the artifacts are shown by arrows. </li>
-<li class="li">Show usage will be available for entity types, complex types. </li>
-<li class="li">For complex types, if the same complex type is used in multiple properties in an entity,
-							then link will be shown only to the parent entity. It is also applicable
-							for entity types. </li>
-<li class="li">Show/Hide usage function is available for property usage and base type
-							if the entity type and complex type. </li>
-<li class="li">Show usage is available for parameter usage and return type for function
-							import. </li>
-<li class="li">When show usage is enabled, and if any changes are made in the
-							properties view, the OData Model Editor reflects the changes instantly.
-						</li>
-</ul>
-</div>
-<div class="note note" id="topic_t3c_d1g_bp__note_N10298_N10203_N10200_N101F5_N10188_N100AF_N10001"><span class="notetitle">Note</span> Whenever the
-					Show/Hide All Usages toggle button is used, the graphical editor returns to the
-					unsaved mode to maintain the state of “Show/Hide All Usages” toggle button. On
-					saving &amp; reopening the model file, the last state of the “Show/Hide All
-					Usages” toggle button will be maintained.</div>
-</div>
-</div>
-<div class="topic nested2" id="topic_jxy_jd4_bp"><h3 class="title topictitle3">Copy and Paste</h3>
-<div class="body"><p class="p">This page will guide you to copy and paste the OData Model Elements in the OData
-					Model Editor. The Copy &amp; Paste function is available in the following
-					scenarios:</p>
-<div class="section">Overview</div>
-<div class="p">This section will guide you to copy and paste the OData Model Elements in the
-					OData Model Editor. The Copy &amp; Paste function is available in the following
-						scenarios:<ul class="ul" id="topic_jxy_jd4_bp__ul_bgd_1k4_bp"><li class="li">Copy and Paste the OData Model Element anywhere in the same editor</li>
-<li class="li">Copy and Paste across OData Model Editors</li>
-<li class="li">Cascading Paste function - When pasting the OData Model Element on top
-							of another OData Model Element, the elements are layered above another
-							as cascades and does not overlap each other.<p class="p"><img class="image" id="topic_jxy_jd4_bp__image_hwh_vcl_tp" src="bf15fb9734b54a139c56b9f5b89a8f2e.image"/></p>
-</li>
-<li class="li">Copy and Paste of multiple OData Model Elements:<ul class="ul" id="topic_jxy_jd4_bp__ul_rn2_1k4_bp"><li class="li">Select the OData Model Elements to be copied.<div class="note note"><span class="notetitle">Note</span> Ensure that
-										only the OData Model Elements are selected and properties
-										inside the element are not selected. If the properties are
-										selected along with the elements then the paste will not
-										work. Also, the entity sets cannot be copied.</div>
-</li>
-<li class="li">Paste the copied elements in the same canvas on top of the
-									copied elements. <p class="p"><img class="image" id="topic_jxy_jd4_bp__image_fxj_bdl_tp" src="5950fd49b10f48f2849c637ffc9fc479.image"/></p>
-<p class="p">The elements are
-										positioned as cascades on top of another element of the same
-										type. </p>
-<p class="p">If you paste the copied elements elements
-										anywhere in the same canvas or in another canvas, then the
-										elements are pasted as follows: </p>
-<p class="p"><img class="image" id="topic_jxy_jd4_bp__image_px4_3dl_tp" src="4dc1228674484e01ab5a6619fdbd605a.image"/></p>
-<div class="note note"><span class="notetitle">Note</span> Drag and drop function
-										to copy and paste the OData Model Element in the OData Model
-										Editor is not supported.</div>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-<div class="section">To Copy and Paste OData Model Elements follow these steps:<ol class="ol" id="topic_jxy_jd4_bp__ol_nwh_zh4_bp"><li class="li">Click on the empty region in OData Model Editor and select<span class="ph emphasis emphasis">
-								Paste</span> or press <span class="ph emphasis emphasis">Control+V</span> from the
-								keyboard.<p class="p">The copied OData Model Element will be pasted as
-								positioned.</p>
-<div class="note note"><span class="notetitle">Note</span> For copying properties, select the OData Model
-								Element or anywhere in the element to paste the property and then
-								paste the property.</div>
-<img class="image" id="topic_jxy_jd4_bp__image_qw2_wdl_tp" src="1ac2fa8c5d124f15aeb00d970936fb86.image"/></li>
-<li class="li">During a copy and paste process the following condition are met:<ul class="ul" id="topic_jxy_jd4_bp__ul_rnh_mj4_bp"><li class="li">The new OData Model Element that was copied will have a unique
-									name. </li>
-<li class="li">All the Properties and their attributes from the source entity
-									will be copied to the destination entity with the same names and
-									same attributes values.</li>
-<li class="li">Associations, Navigation properties will not be be copied to the
-									destination Entity type element.</li>
-<li class="li">Only default Entity Set will be created in the copied Entity
-									element. </li>
-<li class="li">A copied property will be pasted at the end of properties list
-									in the new property element.The name of the property will be
-									prop&lt;N&gt;, where "N" will be incremented every time you
-									paste the same property and the name of the property will be in
-									edit mode.The attributes of the property should be same as
-									source property.</li>
-<li class="li">For copy of Property from EntityType to ComplexType , if, the
-									source property is Key property then the destination property
-									pasted in ComplexType should not be a key property.</li>
-</ul>
-</li>
-<li class="li">Using the mouse, select the required OData Model Element and select
-								<span class="ph emphasis emphasis">Copy </span>or press Control+C from the keyboard.</li>
-</ol>
-</div>
-<ul class="ul" id="topic_jxy_jd4_bp__ul_eyv_5d4_bp"><li class="li">Copy and Paste the OData Model Element anywhere in the same editor</li>
-<li class="li">Copy and Paste across OData Model Editors</li>
-<li class="li">Cascading Paste function - When pasting the OData Model Element on top of another OData
-						Model Element, the elements are layered above another as cascades and does
-						not overlap each other.<p class="p"><img class="image" id="topic_jxy_jd4_bp__image_r5j_tkl_tp" src="a8e1027dc1f74341a4fc1d2b94d00a24.image"/></p>
-</li>
-<li class="li">Copy and Paste of multiple OData Model Elements:<ul class="ul" id="topic_jxy_jd4_bp__ul_jjl_j24_bp"><li class="li">Select the OData Model Elements to be copied.<div class="note note"><span class="notetitle">Note</span> Ensure that only
-									the OData Model Elements are selected and properties inside the
-									element are not selected. If the properties are selected along
-									with the elements then the paste will not work. Also, the entity
-									sets cannot be copied.</div>
-</li>
-<li class="li">Paste the copied elements in the same canvas on top of the copied elements. <p class="p"><img class="image" id="topic_jxy_jd4_bp__image_ycm_pll_tp" src="8617a33461f645a38cbefe58b66154b1.image"/></p>
-<p class="p">The elements are positioned as
-									cascades on top of another element of the same type. </p>
-<p class="p">If
-									you paste the copied elements elements anywhere in the same
-									canvas or in another canvas, then the elements are pasted as
-									follows: </p>
-<p class="p"><img class="image" id="topic_jxy_jd4_bp__image_ndv_yll_tp" src="83c9556bdbf641d3892e1b8434521499.image"/></p>
-<div class="note note"><span class="notetitle">Note</span> Drag and drop function to
-									copy and paste the OData Model Element in the OData Model Editor
-									is not supported.</div>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-</div>
-<div class="topic nested2" id="topic_jd5_3dg_bp"><h3 class="title topictitle3">Shortcut Keys</h3>
-<div class="body"><div class="p">The table below provides the list of shortcut keys that can be used in the OData
-					Model Editor:
-<div class="tablenoborder"><table summary="" id="topic_jd5_3dg_bp__table_xqw_gls_bj" class="table" frame="border" border="1" rules="all"><caption><span class="tablecap">Table 4:
-					Show /Hide Usage </span></caption><thead class="thead" align="left"><tr class="row"><th class="entry" valign="top" width="39.370078740157474%" id="d75806e424">Action To</th>
-<th class="entry" valign="top" width="60.629921259842526%" id="d75806e426">Shortcut Key</th>
-</tr>
-</thead>
-<tbody class="tbody"><tr class="row"><td class="entry" valign="top" width="39.370078740157474%" headers="d75806e424 ">Navigation Left between the OData Model Elements </td>
-<td class="entry" valign="top" width="60.629921259842526%" headers="d75806e426 ">Left arrow </td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="39.370078740157474%" headers="d75806e424 ">Navigate right between the OData Model Elements</td>
-<td class="entry" valign="top" width="60.629921259842526%" headers="d75806e426 ">Right arrow</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="39.370078740157474%" headers="d75806e424 ">Navigate down within the OData Model Elements</td>
-<td class="entry" valign="top" width="60.629921259842526%" headers="d75806e426 ">Down arrow</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="39.370078740157474%" headers="d75806e424 ">Navigate up within the OData Model Elements</td>
-<td class="entry" valign="top" width="60.629921259842526%" headers="d75806e426 ">Up arrow</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="39.370078740157474%" headers="d75806e424 ">Navigate into a section in the OData Model
-										Element</td>
-<td class="entry" valign="top" width="60.629921259842526%" headers="d75806e426 ">Alt+Down arrow with the OData model element
-										selected</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="39.370078740157474%" headers="d75806e424 ">Navigate out of a section in the OData Model
-										Element</td>
-<td class="entry" valign="top" width="60.629921259842526%" headers="d75806e426 ">Alt+Up arrow</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="39.370078740157474%" headers="d75806e424 ">Cycle through an OData Model Element</td>
-<td class="entry" valign="top" width="60.629921259842526%" headers="d75806e426 ">Select the OData model element and press the period key
-									</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="39.370078740157474%" headers="d75806e424 ">Move an OData Model Element</td>
-<td class="entry" valign="top" width="60.629921259842526%" headers="d75806e426 ">Cycle once to the Move handle using the period key. Use
-										navigation keys to move. Press Enter to accept new location.
-										Press Escape to cancel the move</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="39.370078740157474%" headers="d75806e424 ">Resize an OData Model Element</td>
-<td class="entry" valign="top" width="60.629921259842526%" headers="d75806e426 ">Cycle to desired resize handle using the period key. Use
-										navigation keys to resize. Press Enter to accept new size.
-										Press Escape to cancel the resize</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="39.370078740157474%" headers="d75806e424 ">Cycle through connections</td>
-<td class="entry" valign="top" width="60.629921259842526%" headers="d75806e426 ">Slash or backslash while on an element with
-										connections</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="39.370078740157474%" headers="d75806e424 ">Select multiple</td>
-<td class="entry" valign="top" width="60.629921259842526%" headers="d75806e426 ">Hold down Ctrl. Use navigation keys to navigate to
-										additional OData model element. Press Space to select
-										additional shapes or deselect already selected ones.</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="39.370078740157474%" headers="d75806e424 ">Select in sequence</td>
-<td class="entry" valign="top" width="60.629921259842526%" headers="d75806e426 ">Hold down Shift, use navigation keys to select additional
-										shapes or deselect already selected ones.</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="39.370078740157474%" headers="d75806e424 ">Go from OData model editor to palette</td>
-<td class="entry" valign="top" width="60.629921259842526%" headers="d75806e426 ">Shift + Tab</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="39.370078740157474%" headers="d75806e424 ">Go from palette to OData model editor</td>
-<td class="entry" valign="top" width="60.629921259842526%" headers="d75806e426 ">Tab (currently only works with active selection
-										tool)</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="39.370078740157474%" headers="d75806e424 ">Create selected palette element</td>
-<td class="entry" valign="top" width="60.629921259842526%" headers="d75806e426 ">RETURN</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="39.370078740157474%" headers="d75806e424 ">Create relation between OData Model Element</td>
-<td class="entry" valign="top" width="60.629921259842526%" headers="d75806e426 ">Apply multi selection to the OData model element with
-										SPACE. Navigate to palette with Shift + Tab and create the
-										desired relation with RETURN</td>
-</tr>
-</tbody>
-</table>
-</div>
-</div>
-</div>
-</div>
-<div class="topic nested2" id="topic_wxk_wdg_bp"><h3 class="title topictitle3">Things to Remember</h3>
-<div class="body"><ul class="ul" id="topic_wxk_wdg_bp__ul_hmr_jgx_hp"><li class="li">While working with version control system, OData model may be in Read-only
-						mode. Following are the characteristics of a Read-only OData model: <ul class="ul" id="topic_wxk_wdg_bp__ul_uwl_pgx_hp"><li class="li">Read-only tag appears along with the title of the model. </li>
-<li class="li">Editor palette does not appear.</li>
-<li class="li">User can perform actions such as move the entities, show/hide
-								relation, collapse etc.</li>
-</ul>
-To edit the model, ensure OData model is in Write mode and reopen the
-						editor. </li>
-<li class="li">Whenever a change is made on the canvas the OData Model Editor displays a <span class="ph emphasis emphasis">star
-							icon</span> in the tab page of the OData Model Editor indicating
-						that the model needs to be saved. <p class="p"><img class="image" id="topic_wxk_wdg_bp__image_h4f_rml_tp" src="f2dcc5a3c6ae44af9f28d456a79901a7.image"/></p>
-<ul class="ul" id="topic_wxk_wdg_bp__ul_tms_t2g_bp"><li class="li">Select and press <em class="ph i">F2</em> to edit any objects in the entity shape. </li>
-<li class="li">On saving the model, an error icon displays on the elements that are
-								erroneous and also in the OData Model Editor. <p class="p"><img class="image" id="topic_wxk_wdg_bp__image_lr3_sml_tp" src="f6dd570997304d83b3d7fe14659b814a.image"/></p>
-<p class="p">Multiple elements and
-									attributes can be deleted by either using CTRL key or SHIFT key
-									and selecting the objects. A delete confirmation window appears
-									during such operations. </p>
-</li>
-</ul>
-</li>
-</ul>
-</div>
-</div>
-</div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/a53be72ad4fb4a3bb9b2ac83dc67ec2f.html b/org.eclipse.ogee.help/html/a53be72ad4fb4a3bb9b2ac83dc67ec2f.html
deleted file mode 100644
index efb0440..0000000
--- a/org.eclipse.ogee.help/html/a53be72ad4fb4a3bb9b2ac83dc67ec2f.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="This section will guide you to save a OData model."/>
-<meta name="description" content="This section will guide you to save a OData model."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Saving the OData Model</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loioa53be72ad4fb4a3bb9b2ac83dc67ec2f">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Saving the OData Model</h1>
-<div class="body conbody"><p class="shortdesc">This section will guide you to save a OData model.</p>
-<p class="p">Whenever a change is made in the OData Model Editor, the page title displays a star sign
-			indicating that the Odata model needs to be saved. </p>
-<p class="p"><img class="image" id="loioa53be72ad4fb4a3bb9b2ac83dc67ec2f__image_fyb_blj_tp" src="c4e2922d0ac34b2289f5bb53e953218f.image"/></p>
-<p class="p">On saving the OData model, if it contains any errors, an error icon is displayed next to
-			the affected artifacts. The title tab also displays the star sign. </p>
-<div class="p"><img class="image" id="loioa53be72ad4fb4a3bb9b2ac83dc67ec2f__image_nrs_2lj_tp" src="7a300bd3bf2e4ebd8e82499f5917bee2.image"/><div class="note note" id="loioa53be72ad4fb4a3bb9b2ac83dc67ec2f__note_N1002E_N10026_N10012_N10001"><span class="notetitle">Note</span> The details of the errors can be seem in the
-					<span class="ph pname">Problems</span> view.</div>
-</div>
-</div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/a8e1027dc1f74341a4fc1d2b94d00a24.image b/org.eclipse.ogee.help/html/a8e1027dc1f74341a4fc1d2b94d00a24.image
deleted file mode 100644
index c04df0f..0000000
--- a/org.eclipse.ogee.help/html/a8e1027dc1f74341a4fc1d2b94d00a24.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/aa.png b/org.eclipse.ogee.help/html/aa.png
new file mode 100644
index 0000000..22634e3
--- /dev/null
+++ b/org.eclipse.ogee.help/html/aa.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/af473a3df66243338b126aaadcf5d2ca.image b/org.eclipse.ogee.help/html/af473a3df66243338b126aaadcf5d2ca.image
deleted file mode 100644
index dbacb55..0000000
--- a/org.eclipse.ogee.help/html/af473a3df66243338b126aaadcf5d2ca.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/b648d21b8baa461c9d3e73eab44f8745.image b/org.eclipse.ogee.help/html/b648d21b8baa461c9d3e73eab44f8745.image
deleted file mode 100644
index 96c88f9..0000000
--- a/org.eclipse.ogee.help/html/b648d21b8baa461c9d3e73eab44f8745.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/b887226740e74fd2a7d600de0f53abb9.image b/org.eclipse.ogee.help/html/b887226740e74fd2a7d600de0f53abb9.image
deleted file mode 100644
index 758fdbe..0000000
--- a/org.eclipse.ogee.help/html/b887226740e74fd2a7d600de0f53abb9.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/bf15fb9734b54a139c56b9f5b89a8f2e.image b/org.eclipse.ogee.help/html/bf15fb9734b54a139c56b9f5b89a8f2e.image
deleted file mode 100644
index c04df0f..0000000
--- a/org.eclipse.ogee.help/html/bf15fb9734b54a139c56b9f5b89a8f2e.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/c01a543abe9a4203a6b8edece02e1af1.image b/org.eclipse.ogee.help/html/c01a543abe9a4203a6b8edece02e1af1.image
deleted file mode 100644
index 948e476..0000000
--- a/org.eclipse.ogee.help/html/c01a543abe9a4203a6b8edece02e1af1.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/c151d33892d64bd0b86444b8d100fa64.image b/org.eclipse.ogee.help/html/c151d33892d64bd0b86444b8d100fa64.image
deleted file mode 100644
index 2121270..0000000
--- a/org.eclipse.ogee.help/html/c151d33892d64bd0b86444b8d100fa64.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/c4e2922d0ac34b2289f5bb53e953218f.image b/org.eclipse.ogee.help/html/c4e2922d0ac34b2289f5bb53e953218f.image
deleted file mode 100644
index 4aec1e1..0000000
--- a/org.eclipse.ogee.help/html/c4e2922d0ac34b2289f5bb53e953218f.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/c6fb374beeba4a5fa7e8247f078de734.image b/org.eclipse.ogee.help/html/c6fb374beeba4a5fa7e8247f078de734.image
deleted file mode 100644
index f2fe6ad..0000000
--- a/org.eclipse.ogee.help/html/c6fb374beeba4a5fa7e8247f078de734.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/c8508c807aab4a39b18d485d2ff60d0a.image b/org.eclipse.ogee.help/html/c8508c807aab4a39b18d485d2ff60d0a.image
deleted file mode 100644
index dc5c343..0000000
--- a/org.eclipse.ogee.help/html/c8508c807aab4a39b18d485d2ff60d0a.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/d0f980d74537459885fd85c5cc9320b3.html b/org.eclipse.ogee.help/html/d0f980d74537459885fd85c5cc9320b3.html
deleted file mode 100644
index 7d91f8b..0000000
--- a/org.eclipse.ogee.help/html/d0f980d74537459885fd85c5cc9320b3.html
+++ /dev/null
@@ -1,59 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="Create an OData model using an existing file from the Service Catalog."/>
-<meta name="description" content="Create an OData model using an existing file from the Service Catalog."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css?x=09083980582232298"/>
-<title>Creating an OData Model Using the Service Catalog</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-<script type="text/javascript" src="js/jquery-1.10.1.min.js"> </script>
-</head>
-<body class="" id="loiod0f980d74537459885fd85c5cc9320b3">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Creating an OData Model Using the Service Catalog</h1>
-<div class="body taskbody"><p class="shortdesc">Create an OData model using an existing file from the Service Catalog.</p>
-<div class="section context" id="loiod0f980d74537459885fd85c5cc9320b3__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<p class="p">This section will guide you to create new OData model based on existing OData service.</p>
-
-		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loiod0f980d74537459885fd85c5cc9320b3__steps_k4f_f5p_mj"><li class="li step stepexpand" id="loiod0f980d74537459885fd85c5cc9320b3__step_N10045_N10042_N10012_N10001"><span class="ph cmd">Create a project as outlined in the Creating a Project section. </span></li>
-<li class="li step stepexpand" id="loiod0f980d74537459885fd85c5cc9320b3__step_N1004E_N10042_N10012_N10001"><span class="ph cmd">Right click on the project in the Project Tree region, and select <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">New</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Other</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span>.</span><div class="itemgroup stepresult">The <span class="ph emphasis emphasis">Select a Wizard</span> window displays. </div></li>
-<li class="li step stepexpand" id="loiod0f980d74537459885fd85c5cc9320b3__step_N10067_N10042_N10012_N10001"><span class="ph cmd">Locate <span class="ph emphasis emphasis">OData Development</span> folder, expand it and select
-						<span class="ph emphasis emphasis">OData Model</span>.</span></li>
-<li class="li step stepexpand" id="loiod0f980d74537459885fd85c5cc9320b3__step_N10078_N10042_N10012_N10001"><span class="ph cmd">Click <span class="ph emphasis emphasis">Next</span> to proceed.</span><div class="itemgroup stepresult">
-					<p class="p">The <span class="ph emphasis emphasis">Create New OData Model</span> window appears. </p>
-
-				</div></li>
-<li class="li step stepexpand" id="loiod0f980d74537459885fd85c5cc9320b3__step_N10091_N10042_N10012_N10001"><span class="ph cmd">Choose <span class="ph emphasis emphasis">Browse</span> or enter the folder name in the
-						<span class="ph emphasis emphasis">Folder</span> field to select a project folder for the new
-					OData model.</span></li>
-<li class="li step stepexpand" id="loiod0f980d74537459885fd85c5cc9320b3__step_N100A2_N10042_N10012_N10001"><span class="ph cmd">Enter a name for the model in the <span class="ph emphasis emphasis">Model Name</span> field.</span></li>
-<li class="li step stepexpand" id="loiod0f980d74537459885fd85c5cc9320b3__step_N100AF_N10042_N10012_N10001"><span class="ph cmd">Select <span class="ph emphasis emphasis">Service Catalog</span> from the list and click
-						<span class="ph emphasis emphasis">Next</span>. </span>
-					<div class="note note" id="loiod0f980d74537459885fd85c5cc9320b3__note_N100A7_N100A4_N10094_N1001E_N10012_N10001"><span class="notetitle">Note</span> Atleast one connection
-						should be added to the system to view the service
-						catalog available in the system. See  for more
-						information.</div>
-
-				<div class="itemgroup stepresult">The <span class="ph emphasis emphasis">Connections and Services</span> window appears. The
-						<span class="ph emphasis emphasis">Select OData service from Service Catalog</span> window
-					appears. <div class="p">The available connection and services are displayed in the
-						Connections and services region. <div class="note note" id="loiod0f980d74537459885fd85c5cc9320b3__note_N1009E_N1009B_N10094_N10085_N1001D_N10012_N10001"><span class="notetitle">Note</span> You can also
-							choose <span class="ph emphasis emphasis">Manage Connections</span> links to open the <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">Preferences</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Connections</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span> window. See  for more
-							information.</div>
-</div>
-</div></li>
-<li class="li step stepexpand" id="loiod0f980d74537459885fd85c5cc9320b3__step_N100BF_N1001D_N10012_N10001"><span class="ph cmd">Select a service from the service catalog and click
-					<span class="ph emphasis emphasis">Finish</span>.</span><div class="itemgroup stepresult">The selected service opens in the OData Model Editor for
-					editing.</div></li>
-</ol>
-</div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/d5b2d0a90b884f7a9cb96d5db1e489a2.image b/org.eclipse.ogee.help/html/d5b2d0a90b884f7a9cb96d5db1e489a2.image
deleted file mode 100644
index 0bcf570..0000000
--- a/org.eclipse.ogee.help/html/d5b2d0a90b884f7a9cb96d5db1e489a2.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/d963dae97f7d4764918f4ea798f727d2.html b/org.eclipse.ogee.help/html/d963dae97f7d4764918f4ea798f727d2.html
deleted file mode 100644
index 4bfd6c5..0000000
--- a/org.eclipse.ogee.help/html/d963dae97f7d4764918f4ea798f727d2.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="This section will guide you to verify if the Ogee is installed successfully.."/>
-<meta name="description" content="This section will guide you to verify if the Ogee is installed successfully.."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Verifying the Installed Features</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loiod963dae97f7d4764918f4ea798f727d2">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Verifying the Installed Features</h1>
-<div class="body taskbody"><p class="shortdesc">This section will guide you to verify if the Ogee is installed
-		successfully..</p>
-<div class="section context" id="loiod963dae97f7d4764918f4ea798f727d2__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<p class="p">To verify the installation of <span class="ph pname">Ogee </span> feature proceed as follows:</p>
-
-		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loiod963dae97f7d4764918f4ea798f727d2__steps_pjv_wcv_sp"><li class="li step" id="loiod963dae97f7d4764918f4ea798f727d2__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">In the Eclipse screen, click <strong class="ph b">Help</strong> on the menu bar and then choose
-						<strong class="ph b">About Eclipse</strong>.</span></li>
-<li class="li step" id="loiod963dae97f7d4764918f4ea798f727d2__step_N10032_N1001E_N10012_N10001"><span class="ph cmd">In the <strong class="ph b">About Eclipse</strong> window choose <strong class="ph b">Installation Details</strong>.</span></li>
-<li class="li step" id="loiod963dae97f7d4764918f4ea798f727d2__step_N10043_N1001E_N10012_N10001"><span class="ph cmd">In the <strong class="ph b">Eclipse Installation Details</strong> window, you can view the list of the
-					installed softwares under the <strong class="ph b">Installed Software</strong> tab.</span></li>
-<li class="li step" id="loiod963dae97f7d4764918f4ea798f727d2__step_N10058_N10022_N10012_N10001"><span class="ph cmd">Verify if <span class="ph emphasis emphasis">Ogee (incubation)</span> is in the list.</span></li>
-</ol>
-</div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/e272000e2d7b4501bdd1e8685cc0e5d2.image b/org.eclipse.ogee.help/html/e272000e2d7b4501bdd1e8685cc0e5d2.image
deleted file mode 100644
index 73c706c..0000000
--- a/org.eclipse.ogee.help/html/e272000e2d7b4501bdd1e8685cc0e5d2.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/e36d183add2d4e71bc71e227c4c3529c.image b/org.eclipse.ogee.help/html/e36d183add2d4e71bc71e227c4c3529c.image
deleted file mode 100644
index c705eb0..0000000
--- a/org.eclipse.ogee.help/html/e36d183add2d4e71bc71e227c4c3529c.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/e78a7bc89ce14966a798ca235a0b6a6d.image b/org.eclipse.ogee.help/html/e78a7bc89ce14966a798ca235a0b6a6d.image
deleted file mode 100644
index 101e556..0000000
--- a/org.eclipse.ogee.help/html/e78a7bc89ce14966a798ca235a0b6a6d.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/e80d784707f04c7b8b4a38f47f628775.image b/org.eclipse.ogee.help/html/e80d784707f04c7b8b4a38f47f628775.image
deleted file mode 100644
index 66e46e6..0000000
--- a/org.eclipse.ogee.help/html/e80d784707f04c7b8b4a38f47f628775.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/ebe44a243c304e18bacf9c5e7a8f5469.image b/org.eclipse.ogee.help/html/ebe44a243c304e18bacf9c5e7a8f5469.image
deleted file mode 100644
index 2c3397a..0000000
--- a/org.eclipse.ogee.help/html/ebe44a243c304e18bacf9c5e7a8f5469.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/ebfd42f61e7a4b3bb3ece79a169b6eb1.image b/org.eclipse.ogee.help/html/ebfd42f61e7a4b3bb3ece79a169b6eb1.image
deleted file mode 100644
index 49c12bc..0000000
--- a/org.eclipse.ogee.help/html/ebfd42f61e7a4b3bb3ece79a169b6eb1.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/ed2655b2e42949fd8cce9d8d15d3ac49.image b/org.eclipse.ogee.help/html/ed2655b2e42949fd8cce9d8d15d3ac49.image
deleted file mode 100644
index 5db948f..0000000
--- a/org.eclipse.ogee.help/html/ed2655b2e42949fd8cce9d8d15d3ac49.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/eeb1b5c1683f49b88fb19354d60021a3.image b/org.eclipse.ogee.help/html/eeb1b5c1683f49b88fb19354d60021a3.image
deleted file mode 100644
index a50014d..0000000
--- a/org.eclipse.ogee.help/html/eeb1b5c1683f49b88fb19354d60021a3.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/eef0a787772546da8bb64168fba51823.html b/org.eclipse.ogee.help/html/eef0a787772546da8bb64168fba51823.html
deleted file mode 100644
index 95d6dae..0000000
--- a/org.eclipse.ogee.help/html/eef0a787772546da8bb64168fba51823.html
+++ /dev/null
@@ -1,57 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="Instructions about how to create a bidirectional associations."/>
-<meta name="description" content="Instructions about how to create a bidirectional associations."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Creating a Bidirectional Association</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loioeef0a787772546da8bb64168fba51823">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Creating a Bidirectional Association</h1>
-<div class="body taskbody"><p class="shortdesc">Instructions about how to create a bidirectional associations.</p>
-<div class="section context" id="loioeef0a787772546da8bb64168fba51823__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<p class="p">To create a bidirectional association proceed as follows:</p>
-
-		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loioeef0a787772546da8bb64168fba51823__steps_arg_pgw_sp"><li class="li step stepexpand" id="loioeef0a787772546da8bb64168fba51823__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Create two entity types as mentioned in the <a class="xref" href="12526533ccd3464b87542a9527c1b780.html" title="This section guides you to create an Entity Type">Creating an Entity Type</a> section.</span></li>
-<li class="li step stepexpand" id="loioeef0a787772546da8bb64168fba51823__step_N1002E_N1001E_N10012_N10001"><span class="ph cmd">Select the <span class="ph pname">Bidirectional</span>
-					<img class="image" id="loioeef0a787772546da8bb64168fba51823__image_ggw_lmj_tp" src="c01a543abe9a4203a6b8edece02e1af1.image"/>
-					object under <strong class="ph b">Associations</strong></span><div class="itemgroup stepresult">Once Bidrectional is selected and on moving the mouse pointer into the
-					OData Model Editor, the mouse pointer changes its shape indicating that the
-					association creation mode in active. </div></li>
-<li class="li step stepexpand" id="loioeef0a787772546da8bb64168fba51823__step_N10049_N1001E_N10012_N10001"><span class="ph cmd">Click in the source entity type to create a bidrectional association and drag
-					the mouse to the destination entity type.</span>
-					<div class="note note" id="loioeef0a787772546da8bb64168fba51823__note_N10054_N10051_N10049_N1001E_N10012_N10001"><span class="notetitle">Note</span> The destination OData Model Element
-						cannot be a complex type, function import. The cursor icon changes for
-						invalid destination OData Model Element.</div>
-
-				<div class="itemgroup stepresult">The association is created and a line with an arrow at both the ends
-					connects the shapes. </div></li>
-<li class="li step stepexpand" id="loioeef0a787772546da8bb64168fba51823__step_N10056_N1001E_N10012_N10001"><span class="ph cmd">Create multiple birectional association as required. </span></li>
-<li class="li step stepexpand" id="loioeef0a787772546da8bb64168fba51823__step_N1005F_N1001E_N10012_N10001"><span class="ph cmd">Choose the <span class="ph pname">Select </span><img class="image" id="loioeef0a787772546da8bb64168fba51823__image_dwm_xmj_tp" src="22e701aa3ef94af9978f32fe0c837025.image"/> Icon in the Pallete to come
-					out of the association create mode.</span><ul class="ul choices" id="loioeef0a787772546da8bb64168fba51823__choices_jtm_52c_yj"><li class="li choice">Press escape from the keyboard to come out of the association create mode.<p class="p"><img class="image" id="loioeef0a787772546da8bb64168fba51823__image_zdb_c4j_tp" src="19d0a305f7a1484aa4829b84ce8f7fa1.image"/></p>
-</li>
-</ul>
-
-					<div class="note note" id="loioeef0a787772546da8bb64168fba51823__note_N10080_N1007D_N1005B_N1001E_N10012_N10001"><span class="notetitle">Note</span> A Navigation Property
-						is automatically created for the new association. You can rename the
-						navigation property by double clicking on it or by pressing <kbd class="key">F2</kbd>.
-						Every navigation propery should have a unique name. </div>
-
-					<p class="p">On saving the project, the tree region populates the Entity Types, new
-						Asscociation and the corresponding Navigation Properties. </p>
-
-				</li>
-</ol>
-</div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/f159edb90e754bd78496eec86c7e66ea.html b/org.eclipse.ogee.help/html/f159edb90e754bd78496eec86c7e66ea.html
deleted file mode 100644
index c4462c2..0000000
--- a/org.eclipse.ogee.help/html/f159edb90e754bd78496eec86c7e66ea.html
+++ /dev/null
@@ -1,54 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="This section provides information on setting up the basic layout for your OData model in the OData model editor."/>
-<meta name="description" content="This section provides information on setting up the basic layout for your OData model in the OData model editor."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Basic Layout</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loiof159edb90e754bd78496eec86c7e66ea">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Basic Layout</h1>
-<div class="body taskbody"><p class="shortdesc">This section provides information on setting up the basic layout for your OData model in
-		the OData model editor.</p>
-<div class="section context" id="loiof159edb90e754bd78496eec86c7e66ea__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<p class="p">The Basic layout provides the user with only one default option to layout the model in the
-				OData model editor. But, you can create your own layout by using the extension
-				points.</p>
-
-		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loiof159edb90e754bd78496eec86c7e66ea__steps_b5f_v3w_sp"><li class="li step stepexpand" id="loiof159edb90e754bd78496eec86c7e66ea__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">From the Eclipse main menu, select <span class="ph pname">Windows</span> and then
-						<span class="ph pname">Preferences</span></span><div class="itemgroup stepresult">The <span class="ph pname">Preferences</span> page appears.</div></li>
-<li class="li step stepexpand" id="loiof159edb90e754bd78496eec86c7e66ea__step_N10039_N1001E_N10012_N10001"><span class="ph cmd">Expand <span class="ph pname">OData Development </span>and choose <span class="ph pname">OData Model
-						Editor</span>.</span><div class="itemgroup stepresult">The OData Model Editor Layout options opens in the details region and the Basic
-					Layout is selected by default. Here is a sample of the basic layouting:
-							<p class="p"><img class="image" id="loiof159edb90e754bd78496eec86c7e66ea__image_knn_4jj_tp" src="b887226740e74fd2a7d600de0f53abb9.image"/></p>
-<div class="p">The basic layout avoids overlapping of the
-						models and layouts the model in the following order:<ol class="ol" type="a" id="loiof159edb90e754bd78496eec86c7e66ea__ol_f3y_mdw_fj"><li class="li">Self associated entities and non-associated entitites.</li>
-<li class="li">Associated entities</li>
-<li class="li">Function Imports</li>
-<li class="li">Complex Types</li>
-</ol>
-<div class="note note" id="loiof159edb90e754bd78496eec86c7e66ea__note_N1006D_N10052_N10047_N10038_N1001E_N10012_N10001"><span class="notetitle">Note</span> You
-							can also select a layout by right clicking on the OData Model Editor and
-							choosing <strong class="ph b">Layout</strong> and selecting a layout of your choice from the
-							context menu. If there are no extra layouts other than basic, then no
-							additional layout(s) will be displayed.<p class="p"><img class="image" id="loiof159edb90e754bd78496eec86c7e66ea__image_wth_1kj_tp" src="c8508c807aab4a39b18d485d2ff60d0a.image"/></p>
-</div>
-</div>
-</div></li>
-<li class="li step stepexpand" id="loiof159edb90e754bd78496eec86c7e66ea__step_N10081_N1001E_N10012_N10001"><span class="ph cmd">Choose <strong class="ph b">Apply</strong> to apply the layout for the OData Model Editor.</span></li>
-<li class="li step stepexpand" id="loiof159edb90e754bd78496eec86c7e66ea__step_N1008E_N1001E_N10012_N10001"><span class="ph cmd">Open the OData Model Editor to view the OData model in the selected
-					layout.</span></li>
-</ol>
-</div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/f2dcc5a3c6ae44af9f28d456a79901a7.image b/org.eclipse.ogee.help/html/f2dcc5a3c6ae44af9f28d456a79901a7.image
deleted file mode 100644
index 4aec1e1..0000000
--- a/org.eclipse.ogee.help/html/f2dcc5a3c6ae44af9f28d456a79901a7.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/f331294ccbe54bcf8d2b68ef5a57773b.html b/org.eclipse.ogee.help/html/f331294ccbe54bcf8d2b68ef5a57773b.html
deleted file mode 100644
index 76adcb7..0000000
--- a/org.eclipse.ogee.help/html/f331294ccbe54bcf8d2b68ef5a57773b.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="This section provides information to add entity sets to the entitites."/>
-<meta name="description" content="This section provides information to add entity sets to the entitites."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Adding an Entity Set</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loiof331294ccbe54bcf8d2b68ef5a57773b">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Adding an Entity Set</h1>
-<div class="body taskbody"><p class="shortdesc">This section provides information to add entity sets to the entitites.</p>
-<div class="section context" id="loiof331294ccbe54bcf8d2b68ef5a57773b__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<p class="p">An entity set is automatically created when an entity type is created. Further, you
-				can also add more entity sets to the entity type as required.</p>
-
-		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loiof331294ccbe54bcf8d2b68ef5a57773b__steps_qmx_bqv_sp"><li class="li step stepexpand" id="loiof331294ccbe54bcf8d2b68ef5a57773b__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Right click on the header of the <span class="ph pname">Entity Type</span> OData Model Element
-					and select <span class="ph pname">Add Entity Sets</span></span><ul class="ul choices" id="loiof331294ccbe54bcf8d2b68ef5a57773b__choices_ap4_kkf_xj"><li class="li choice">You can also create an entity set, by selecting the existing entity set
-						and pressing the <em class="ph i">Enter</em> key. </li>
-</ul>
-<img class="image" id="loiof331294ccbe54bcf8d2b68ef5a57773b__image_ob5_szj_tp" src="060607031e1b40028bab7cc9931ce307.image"/>
-				<div class="itemgroup stepresult">The new entity set is added under the Entity Sets section and is ready for
-						editing.<div class="note note" id="loiof331294ccbe54bcf8d2b68ef5a57773b__note_N10044_N10041_N10021_N1001E_N10012_N10001"><span class="notetitle">Note</span> An unique
-						name will be displayed for the new entity set.</div>
-
-					<img class="image" id="loiof331294ccbe54bcf8d2b68ef5a57773b__image_wwz_f1k_tp" src="7d9542f49462404a94ffb69a7995fcc6.image"/>
-				</div></li>
-<li class="li step stepexpand" id="loiof331294ccbe54bcf8d2b68ef5a57773b__step_N10057_N1001E_N10012_N10001"><span class="ph cmd">Select an Entity Set to view and edit its properties in the Properties
-					View.</span></li>
-</ol>
-</div>
-<div class="related-links"> 
-<div class="relinfo"><div class="relinfotitle ">Related Information</div>
-<div><a class="link" href="8777b42c12bc4796a5898dbba6feb3fb.html" title="This section provides instructions to add properties for an entity and complex type.">Adding Properties</a></div>
-</div>
-</div></div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/f4a962fc49d94c05b6e44ab9b5fd7a8c.html b/org.eclipse.ogee.help/html/f4a962fc49d94c05b6e44ab9b5fd7a8c.html
deleted file mode 100644
index 2e84067..0000000
--- a/org.eclipse.ogee.help/html/f4a962fc49d94c05b6e44ab9b5fd7a8c.html
+++ /dev/null
@@ -1,99 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content=""/>
-<meta name="description" content=""/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Opening OData Perspective</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loiof4a962fc49d94c05b6e44ab9b5fd7a8c">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Opening OData Perspective</h1>
-<div class="body conbody"><p class="shortdesc"/>
-<p class="p">The OData Perspective is a customized view, which is recommended to be used to create
-			OData models. This section will describe the default views available in the OData
-			Perspective.</p>
-<div class="p">
-			<ol class="ol" id="loiof4a962fc49d94c05b6e44ab9b5fd7a8c__ol_oxh_rqr_wj"><li class="li">Open Eclipse.</li>
-<li class="li">Navigate to <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">Window</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Open Perspective</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Other</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span>. 
-						<p class="p">The <span class="ph pname">Open Perspective</span> window appears.</p>
-
-					</li>
-<li class="li">Locate and choose <span class="ph emphasis emphasis">OData</span> from the list of
-							perspectives.<p class="p">The OData Perspective opens.</p>
-The table
-						below summarizes the views that are available in the OData
-						Perspective.</li>
-</ol>
-
-			
-<div class="tablenoborder"><table summary="" id="loiof4a962fc49d94c05b6e44ab9b5fd7a8c__table_gn5_jjm_z3" class="table" frame="border" border="1" rules="all"><caption><span class="tablecap">Table 1:
-					OData Perspective-Views</span></caption><thead class="thead" align="left"><tr class="row"><th class="entry" valign="top" width="20.40816326530612%" id="d126274e55">Views</th>
-<th class="entry" valign="top" width="35.306122448979586%" id="d126274e57">Description</th>
-<th class="entry" valign="top" width="44.285714285714285%" id="d126274e59">Actions</th>
-</tr>
-</thead>
-<tbody class="tbody"><tr class="row"><td class="entry" valign="top" width="20.40816326530612%" headers="d126274e55 ">Project Explorer</td>
-<td class="entry" valign="top" width="35.306122448979586%" headers="d126274e57 ">The project explorer displays all the project(s) created in the
-								current workspace. </td>
-<td class="entry" valign="top" width="44.285714285714285%" headers="d126274e59 ">The project folder holds folders, packages etc. The OData file
-								created using the OData Model Editor will be stored in the relevant
-								folder and when expanded, the underlying artifacts of the OData
-								model can be seen. Furthermore, you can select an OData artifact and
-								the properties view will show the properties of this artifact, which
-								can then be edited. </td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="20.40816326530612%" headers="d126274e55 ">Properties View</td>
-<td class="entry" valign="top" width="35.306122448979586%" headers="d126274e57 ">This region displays the properties of the artifacts selected in
-								the OData Model Editor/Project Explorer.</td>
-<td class="entry" valign="top" width="44.285714285714285%" headers="d126274e59 ">Select either the Properties or Problems views to view the
-								appropriate information .</td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="20.40816326530612%" headers="d126274e55 ">Problems</td>
-<td class="entry" valign="top" width="35.306122448979586%" headers="d126274e57 ">OData model validation errors are displayed in the Problem view.
-								On saving a OData model validation will be triggered for the
-								underlying model.</td>
-<td class="entry" valign="top" width="44.285714285714285%" headers="d126274e59 ">On selecting an error message, the corresponding erroneous
-								artifact will be highlighted. </td>
-</tr>
-<tr class="row"><td class="entry" valign="top" width="20.40816326530612%" headers="d126274e55 ">Miniature View</td>
-<td class="entry" valign="top" width="35.306122448979586%" headers="d126274e57 "> This view displays a copy of the OData Model Editor in a very
-								small scale.</td>
-<td class="entry" valign="top" width="44.285714285714285%" headers="d126274e59 ">You can also activate/deactivate the Miniature View from the <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">Windows</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Show View</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Others-</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">General </span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span> menu.</td>
-</tr>
-</tbody>
-</table>
-</div>
-
-		</div>
-</div>
-<div class="topic concept nested1" id="concept_ddg_syr_wj"><h2 class="title topictitle2">Properties and Problems Views</h2>
-<div class="body conbody"><p class="p">The Properties View is the region that is below the OData Model Editor. This region
-				has a customized view, and you can select the views to be displayed here from the <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">Windows</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Show View</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span>.</p>
-<div class="p">
-				<img class="image" id="concept_ddg_syr_wj__image_vtm_yqd_tp" src="90194a0df65145a68a7626801f1b6f7a.image"/><ul class="ul" id="concept_ddg_syr_wj__ul_or5_j1s_wj"><li class="li"><span class="ph emphasis emphasis">Properties</span>- Choose either the element or the OData
-						model element in the OData Model Editor to view its property. You can also
-						edit the values for the selected elements here, and the changes will be
-						reflected in the OData model element.<img class="image" id="concept_ddg_syr_wj__image_vrd_3rd_tp" src="339c222d34684a1089df2762df4fa95a.image"/></li>
-<li class="li"><span class="ph emphasis emphasis">Problems</span>- On saving a OData model, the underlying OData
-						errors are displayed in the OData Model Editor. The details of error can be
-						viewed by selecting the Problem tab. On selecting an error message and
-						corresponding erroneous elements are selected in the OData model element.
-						The Problems view displays all the existing errors and warnings and
-						information of all the existing projects in the eclipse workspace. Any java
-						or xml validation errors are also listed here. <img class="image" id="concept_ddg_syr_wj__image_bx2_3sd_tp" src="f772dd81768a4be4b91ac319e907c168.image"/></li>
-</ul>
-</div>
-</div>
-</div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/f654fc8fb8ae4742a30e63067e82ef83.image b/org.eclipse.ogee.help/html/f654fc8fb8ae4742a30e63067e82ef83.image
deleted file mode 100644
index be9f914..0000000
--- a/org.eclipse.ogee.help/html/f654fc8fb8ae4742a30e63067e82ef83.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/f6dd570997304d83b3d7fe14659b814a.image b/org.eclipse.ogee.help/html/f6dd570997304d83b3d7fe14659b814a.image
deleted file mode 100644
index c2e3df2..0000000
--- a/org.eclipse.ogee.help/html/f6dd570997304d83b3d7fe14659b814a.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/f772dd81768a4be4b91ac319e907c168.image b/org.eclipse.ogee.help/html/f772dd81768a4be4b91ac319e907c168.image
deleted file mode 100644
index d0c9b87..0000000
--- a/org.eclipse.ogee.help/html/f772dd81768a4be4b91ac319e907c168.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/fd28c017bdfe4c68aa5fc10d93294320.image b/org.eclipse.ogee.help/html/fd28c017bdfe4c68aa5fc10d93294320.image
deleted file mode 100644
index 8744ec1..0000000
--- a/org.eclipse.ogee.help/html/fd28c017bdfe4c68aa5fc10d93294320.image
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/html/ff3f01ab585d4c799c5360b46cf78bab.html b/org.eclipse.ogee.help/html/ff3f01ab585d4c799c5360b46cf78bab.html
deleted file mode 100644
index 8fb503c..0000000
--- a/org.eclipse.ogee.help/html/ff3f01ab585d4c799c5360b46cf78bab.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html
-  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html lang="en-us">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<meta name="abstract" content="Instructions for upgrading the Ogee."/>
-<meta name="description" content="Instructions for upgrading the Ogee."/>
-
-<link rel="stylesheet" type="text/css" href="../css/documentation.css"/>
-<title>Upgrading Ogee</title>
-<!--[if lte IE 7]><style>
-      .codeblock{
-          overflow:visible;
-      }</style><![endif]-->
-</head>
-<body class="" id="loioff3f01ab585d4c799c5360b46cf78bab">
-<div id="wrapper"><div id="container">
-<h1 class="title topictitle1">Upgrading Ogee</h1>
-<div class="body taskbody"><p class="shortdesc">Instructions for upgrading the Ogee.</p>
-<div class="section context" id="loioff3f01ab585d4c799c5360b46cf78bab__context_N10015_N10012_N10001"><div class="tasklabel"><h2 class="sectiontitle tasklabel">Context</h2></div>
-			<p class="p">To upgrade the OData Modeler installation, proceed as follows:</p>
-
-		</div><div class="tasklabel"><h2 class="sectiontitle tasklabel">Procedure</h2></div><ol class="ol steps" id="loioff3f01ab585d4c799c5360b46cf78bab__steps_cnl_bdv_sp"><li class="li step" id="loioff3f01ab585d4c799c5360b46cf78bab__step_N10021_N1001E_N10012_N10001"><span class="ph cmd">Start Eclipse.</span></li>
-<li class="li step" id="loioff3f01ab585d4c799c5360b46cf78bab__step_N1002A_N1001E_N10012_N10001"><span class="ph cmd">From the Eclipse menu, choose <span class="ph menucascade"><img src="../images/navstart.gif" alt="Start of the navigation path" title="Start of the navigation path"/> <span class="ph uicontrol">Help</span> <img src="../images/navstep.gif" alt="Next navigation step" title="Next navigation step"/> <span class="ph uicontrol">Check for updates</span> <img src="../images/navend.gif" alt="End of the navigation path" title="End of the navigation path"/></span>. The <span class="ph uicontrol">Available Updates</span> page is
-					displayed.</span></li>
-<li class="li step" id="loioff3f01ab585d4c799c5360b46cf78bab__step_N10043_N1001E_N10012_N10001"><span class="ph cmd">If there are any updates for Ogee, it will be displayed here. Select the Ogee update.</span></li>
-<li class="li step" id="loioff3f01ab585d4c799c5360b46cf78bab__step_N10061_N1001E_N10012_N10001"><span class="ph cmd">Choose <span class="ph uicontrol">Next</span>. The <span class="ph uicontrol">Update Details</span>
-					page is displayed.</span></li>
-<li class="li step" id="loioff3f01ab585d4c799c5360b46cf78bab__step_N10072_N1001E_N10012_N10001"><span class="ph cmd">Choose <span class="ph uicontrol">Next</span>. The <span class="ph uicontrol">Review License</span>
-					page is displayed.</span></li>
-<li class="li step" id="loioff3f01ab585d4c799c5360b46cf78bab__step_N10083_N1001E_N10012_N10001"><span class="ph cmd">Review the license agreement to continue with the upgrade.</span></li>
-<li class="li step" id="loioff3f01ab585d4c799c5360b46cf78bab__step_N1008C_N1001E_N10012_N10001"><span class="ph cmd">Choose <span class="ph uicontrol">Finish</span>. The upgrade procedure begins. Upon
-					completion you will be prompted to restart your Eclipse installation.</span></li>
-</ol>
-</div>
-</div></div>
-</body>
-</html>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/html/navigation.png b/org.eclipse.ogee.help/html/navigation.png
new file mode 100644
index 0000000..26fe3c2
--- /dev/null
+++ b/org.eclipse.ogee.help/html/navigation.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/1x1.gif b/org.eclipse.ogee.help/images/1x1.gif
deleted file mode 100644
index 9f385f7..0000000
--- a/org.eclipse.ogee.help/images/1x1.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/3rd_link.png b/org.eclipse.ogee.help/images/3rd_link.png
deleted file mode 100644
index 670cd6b..0000000
--- a/org.eclipse.ogee.help/images/3rd_link.png
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/3rd_link_rtl.png b/org.eclipse.ogee.help/images/3rd_link_rtl.png
deleted file mode 100644
index 2793d98..0000000
--- a/org.eclipse.ogee.help/images/3rd_link_rtl.png
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/Adding an Entity set 2.png b/org.eclipse.ogee.help/images/Adding an Entity set 2.png
new file mode 100644
index 0000000..b151e5f
--- /dev/null
+++ b/org.eclipse.ogee.help/images/Adding an Entity set 2.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/Adding an Entity set.png b/org.eclipse.ogee.help/images/Adding an Entity set.png
new file mode 100644
index 0000000..54f72d5
--- /dev/null
+++ b/org.eclipse.ogee.help/images/Adding an Entity set.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/BDA1.png b/org.eclipse.ogee.help/images/BDA1.png
new file mode 100644
index 0000000..5fae6f8
--- /dev/null
+++ b/org.eclipse.ogee.help/images/BDA1.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/BDA2.png b/org.eclipse.ogee.help/images/BDA2.png
new file mode 100644
index 0000000..67b9661
--- /dev/null
+++ b/org.eclipse.ogee.help/images/BDA2.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/BDA3.png b/org.eclipse.ogee.help/images/BDA3.png
new file mode 100644
index 0000000..7df5e2b
--- /dev/null
+++ b/org.eclipse.ogee.help/images/BDA3.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/BasicLayout1.png b/org.eclipse.ogee.help/images/BasicLayout1.png
new file mode 100644
index 0000000..b8c5956
--- /dev/null
+++ b/org.eclipse.ogee.help/images/BasicLayout1.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/BasicLayout2.png b/org.eclipse.ogee.help/images/BasicLayout2.png
new file mode 100644
index 0000000..08dedde
--- /dev/null
+++ b/org.eclipse.ogee.help/images/BasicLayout2.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/CET.png b/org.eclipse.ogee.help/images/CET.png
new file mode 100644
index 0000000..d09825a
--- /dev/null
+++ b/org.eclipse.ogee.help/images/CET.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/CF5.png b/org.eclipse.ogee.help/images/CF5.png
new file mode 100644
index 0000000..fdb9946
--- /dev/null
+++ b/org.eclipse.ogee.help/images/CF5.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/CFI1.png b/org.eclipse.ogee.help/images/CFI1.png
new file mode 100644
index 0000000..6a92a86
--- /dev/null
+++ b/org.eclipse.ogee.help/images/CFI1.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/CFI2.png b/org.eclipse.ogee.help/images/CFI2.png
new file mode 100644
index 0000000..c05bc38
--- /dev/null
+++ b/org.eclipse.ogee.help/images/CFI2.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/CFI3.png b/org.eclipse.ogee.help/images/CFI3.png
new file mode 100644
index 0000000..2912322
--- /dev/null
+++ b/org.eclipse.ogee.help/images/CFI3.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/CFI4.png b/org.eclipse.ogee.help/images/CFI4.png
new file mode 100644
index 0000000..976e044
--- /dev/null
+++ b/org.eclipse.ogee.help/images/CFI4.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/CSA1.png b/org.eclipse.ogee.help/images/CSA1.png
new file mode 100644
index 0000000..7e3876a
--- /dev/null
+++ b/org.eclipse.ogee.help/images/CSA1.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/CSA2.png b/org.eclipse.ogee.help/images/CSA2.png
new file mode 100644
index 0000000..8ae0340
--- /dev/null
+++ b/org.eclipse.ogee.help/images/CSA2.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/CSA3.png b/org.eclipse.ogee.help/images/CSA3.png
new file mode 100644
index 0000000..831ad56
--- /dev/null
+++ b/org.eclipse.ogee.help/images/CSA3.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/CT1.png b/org.eclipse.ogee.help/images/CT1.png
new file mode 100644
index 0000000..28497c1
--- /dev/null
+++ b/org.eclipse.ogee.help/images/CT1.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/CT2.png b/org.eclipse.ogee.help/images/CT2.png
new file mode 100644
index 0000000..7acfba9
--- /dev/null
+++ b/org.eclipse.ogee.help/images/CT2.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/Choose.png b/org.eclipse.ogee.help/images/Choose.png
new file mode 100644
index 0000000..386132a
--- /dev/null
+++ b/org.eclipse.ogee.help/images/Choose.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/Collapse.png b/org.eclipse.ogee.help/images/Collapse.png
new file mode 100644
index 0000000..336f304
--- /dev/null
+++ b/org.eclipse.ogee.help/images/Collapse.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/264a88124808438bb832623e5959df06.image b/org.eclipse.ogee.help/images/Complex.png
similarity index 77%
copy from org.eclipse.ogee.help/html/264a88124808438bb832623e5959df06.image
copy to org.eclipse.ogee.help/images/Complex.png
index 66e46e6..1b2fd0f 100644
--- a/org.eclipse.ogee.help/html/264a88124808438bb832623e5959df06.image
+++ b/org.eclipse.ogee.help/images/Complex.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/Expand.png b/org.eclipse.ogee.help/images/Expand.png
new file mode 100644
index 0000000..720dad1
--- /dev/null
+++ b/org.eclipse.ogee.help/images/Expand.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/Key.png b/org.eclipse.ogee.help/images/Key.png
new file mode 100644
index 0000000..861072d
--- /dev/null
+++ b/org.eclipse.ogee.help/images/Key.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/MaintainAssociation.png b/org.eclipse.ogee.help/images/MaintainAssociation.png
new file mode 100644
index 0000000..605f9d3
--- /dev/null
+++ b/org.eclipse.ogee.help/images/MaintainAssociation.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/OP1.png b/org.eclipse.ogee.help/images/OP1.png
new file mode 100644
index 0000000..6b63630
--- /dev/null
+++ b/org.eclipse.ogee.help/images/OP1.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/OP2.png b/org.eclipse.ogee.help/images/OP2.png
new file mode 100644
index 0000000..672e29b
--- /dev/null
+++ b/org.eclipse.ogee.help/images/OP2.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/OP3.png b/org.eclipse.ogee.help/images/OP3.png
new file mode 100644
index 0000000..e8ac8c7
--- /dev/null
+++ b/org.eclipse.ogee.help/images/OP3.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/Proiperities.png b/org.eclipse.ogee.help/images/Proiperities.png
new file mode 100644
index 0000000..c448f30
--- /dev/null
+++ b/org.eclipse.ogee.help/images/Proiperities.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/SA1.png b/org.eclipse.ogee.help/images/SA1.png
new file mode 100644
index 0000000..fa68bee
--- /dev/null
+++ b/org.eclipse.ogee.help/images/SA1.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/SA2.png b/org.eclipse.ogee.help/images/SA2.png
new file mode 100644
index 0000000..a4d23b0
--- /dev/null
+++ b/org.eclipse.ogee.help/images/SA2.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/SA3.png b/org.eclipse.ogee.help/images/SA3.png
new file mode 100644
index 0000000..1c0087b
--- /dev/null
+++ b/org.eclipse.ogee.help/images/SA3.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/SA4.png b/org.eclipse.ogee.help/images/SA4.png
new file mode 100644
index 0000000..9cffb53
--- /dev/null
+++ b/org.eclipse.ogee.help/images/SA4.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/SA6.png b/org.eclipse.ogee.help/images/SA6.png
new file mode 100644
index 0000000..20a61e5
--- /dev/null
+++ b/org.eclipse.ogee.help/images/SA6.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/SOM1.png b/org.eclipse.ogee.help/images/SOM1.png
new file mode 100644
index 0000000..6d55003
--- /dev/null
+++ b/org.eclipse.ogee.help/images/SOM1.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/SOM2.png b/org.eclipse.ogee.help/images/SOM2.png
new file mode 100644
index 0000000..3d10f26
--- /dev/null
+++ b/org.eclipse.ogee.help/images/SOM2.png
Binary files differ
diff --git a/org.eclipse.ogee.help/html/21ddbd2392ec4be0b10e7fe4e879a3d0.image b/org.eclipse.ogee.help/images/Simple.png
similarity index 75%
copy from org.eclipse.ogee.help/html/21ddbd2392ec4be0b10e7fe4e879a3d0.image
copy to org.eclipse.ogee.help/images/Simple.png
index 8744ec1..7ab9a1f 100644
--- a/org.eclipse.ogee.help/html/21ddbd2392ec4be0b10e7fe4e879a3d0.image
+++ b/org.eclipse.ogee.help/images/Simple.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/Single.png b/org.eclipse.ogee.help/images/Single.png
new file mode 100644
index 0000000..ba76c72
--- /dev/null
+++ b/org.eclipse.ogee.help/images/Single.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WOE.png b/org.eclipse.ogee.help/images/WOE.png
new file mode 100644
index 0000000..a5334aa
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WOE.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WOE1.png b/org.eclipse.ogee.help/images/WOE1.png
new file mode 100644
index 0000000..00f37f2
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WOE1.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WOE10.png b/org.eclipse.ogee.help/images/WOE10.png
new file mode 100644
index 0000000..e48f010
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WOE10.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WOE11.png b/org.eclipse.ogee.help/images/WOE11.png
new file mode 100644
index 0000000..8ec7646
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WOE11.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WOE12.png b/org.eclipse.ogee.help/images/WOE12.png
new file mode 100644
index 0000000..79d77b2
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WOE12.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WOE13.png b/org.eclipse.ogee.help/images/WOE13.png
new file mode 100644
index 0000000..de1cb73
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WOE13.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WOE14.png b/org.eclipse.ogee.help/images/WOE14.png
new file mode 100644
index 0000000..e536732
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WOE14.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WOE15.png b/org.eclipse.ogee.help/images/WOE15.png
new file mode 100644
index 0000000..27172c3
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WOE15.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WOE16.png b/org.eclipse.ogee.help/images/WOE16.png
new file mode 100644
index 0000000..5672e9a
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WOE16.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WOE17.png b/org.eclipse.ogee.help/images/WOE17.png
new file mode 100644
index 0000000..cce0e73
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WOE17.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WOE18.png b/org.eclipse.ogee.help/images/WOE18.png
new file mode 100644
index 0000000..a787fe7
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WOE18.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WOE19.png b/org.eclipse.ogee.help/images/WOE19.png
new file mode 100644
index 0000000..a8be01c
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WOE19.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WOE2.png b/org.eclipse.ogee.help/images/WOE2.png
new file mode 100644
index 0000000..d3c06c8
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WOE2.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WOE20.png b/org.eclipse.ogee.help/images/WOE20.png
new file mode 100644
index 0000000..7089944
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WOE20.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WOE3.png b/org.eclipse.ogee.help/images/WOE3.png
new file mode 100644
index 0000000..e457cf1
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WOE3.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WOE4.png b/org.eclipse.ogee.help/images/WOE4.png
new file mode 100644
index 0000000..c8325bb
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WOE4.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WOE5.png b/org.eclipse.ogee.help/images/WOE5.png
new file mode 100644
index 0000000..811aafb
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WOE5.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WOE6.png b/org.eclipse.ogee.help/images/WOE6.png
new file mode 100644
index 0000000..45ae9a8
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WOE6.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WOE7.png b/org.eclipse.ogee.help/images/WOE7.png
new file mode 100644
index 0000000..aee1901
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WOE7.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WOE8.png b/org.eclipse.ogee.help/images/WOE8.png
new file mode 100644
index 0000000..fdfaef6
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WOE8.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WOE9.png b/org.eclipse.ogee.help/images/WOE9.png
new file mode 100644
index 0000000..b83d581
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WOE9.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/WPV1.png b/org.eclipse.ogee.help/images/WPV1.png
new file mode 100644
index 0000000..a82a039
--- /dev/null
+++ b/org.eclipse.ogee.help/images/WPV1.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/aa.png b/org.eclipse.ogee.help/images/aa.png
new file mode 100644
index 0000000..22634e3
--- /dev/null
+++ b/org.eclipse.ogee.help/images/aa.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/arrow_closed.gif b/org.eclipse.ogee.help/images/arrow_closed.gif
deleted file mode 100644
index ae4190e..0000000
--- a/org.eclipse.ogee.help/images/arrow_closed.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/arrow_closed_acc.gif b/org.eclipse.ogee.help/images/arrow_closed_acc.gif
deleted file mode 100644
index ce41fa9..0000000
--- a/org.eclipse.ogee.help/images/arrow_closed_acc.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/arrow_open.gif b/org.eclipse.ogee.help/images/arrow_open.gif
deleted file mode 100644
index 7a7d715..0000000
--- a/org.eclipse.ogee.help/images/arrow_open.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/arrow_open_acc.gif b/org.eclipse.ogee.help/images/arrow_open_acc.gif
deleted file mode 100644
index d12f625..0000000
--- a/org.eclipse.ogee.help/images/arrow_open_acc.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/arrowdn.gif b/org.eclipse.ogee.help/images/arrowdn.gif
deleted file mode 100644
index 1e6178d..0000000
--- a/org.eclipse.ogee.help/images/arrowdn.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/arrowrt.gif b/org.eclipse.ogee.help/images/arrowrt.gif
deleted file mode 100644
index f411e64..0000000
--- a/org.eclipse.ogee.help/images/arrowrt.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/back_disabled.png b/org.eclipse.ogee.help/images/back_disabled.png
deleted file mode 100644
index 881de79..0000000
--- a/org.eclipse.ogee.help/images/back_disabled.png
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/back_enabled.png b/org.eclipse.ogee.help/images/back_enabled.png
deleted file mode 100644
index c608682..0000000
--- a/org.eclipse.ogee.help/images/back_enabled.png
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/back_enabled_hover.png b/org.eclipse.ogee.help/images/back_enabled_hover.png
deleted file mode 100644
index d300f10..0000000
--- a/org.eclipse.ogee.help/images/back_enabled_hover.png
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/caution-rtl.gif b/org.eclipse.ogee.help/images/caution-rtl.gif
deleted file mode 100644
index 7ef606d..0000000
--- a/org.eclipse.ogee.help/images/caution-rtl.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/caution.gif b/org.eclipse.ogee.help/images/caution.gif
deleted file mode 100644
index 7ef606d..0000000
--- a/org.eclipse.ogee.help/images/caution.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/change_book.gif b/org.eclipse.ogee.help/images/change_book.gif
deleted file mode 100644
index 9f385f7..0000000
--- a/org.eclipse.ogee.help/images/change_book.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/closed_book.gif b/org.eclipse.ogee.help/images/closed_book.gif
deleted file mode 100644
index 9f385f7..0000000
--- a/org.eclipse.ogee.help/images/closed_book.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/collapse.gif b/org.eclipse.ogee.help/images/collapse.gif
deleted file mode 100644
index 42a4b66..0000000
--- a/org.eclipse.ogee.help/images/collapse.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/collapse_acc.gif b/org.eclipse.ogee.help/images/collapse_acc.gif
deleted file mode 100644
index 2322b9e..0000000
--- a/org.eclipse.ogee.help/images/collapse_acc.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/collapse_bluecrystal.gif b/org.eclipse.ogee.help/images/collapse_bluecrystal.gif
deleted file mode 100644
index 66772ae..0000000
--- a/org.eclipse.ogee.help/images/collapse_bluecrystal.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/copytoclipboard.gif b/org.eclipse.ogee.help/images/copytoclipboard.gif
deleted file mode 100644
index 070296a..0000000
--- a/org.eclipse.ogee.help/images/copytoclipboard.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/decline_grey_24.png b/org.eclipse.ogee.help/images/decline_grey_24.png
deleted file mode 100644
index 923a678..0000000
--- a/org.eclipse.ogee.help/images/decline_grey_24.png
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/example-rtl.gif b/org.eclipse.ogee.help/images/example-rtl.gif
deleted file mode 100644
index a50d81c..0000000
--- a/org.eclipse.ogee.help/images/example-rtl.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/example.gif b/org.eclipse.ogee.help/images/example.gif
deleted file mode 100644
index a50d81c..0000000
--- a/org.eclipse.ogee.help/images/example.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/expand.gif b/org.eclipse.ogee.help/images/expand.gif
deleted file mode 100644
index 5c066f6..0000000
--- a/org.eclipse.ogee.help/images/expand.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/expand_acc.gif b/org.eclipse.ogee.help/images/expand_acc.gif
deleted file mode 100644
index 1ded192..0000000
--- a/org.eclipse.ogee.help/images/expand_acc.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/expand_bluecrystal.gif b/org.eclipse.ogee.help/images/expand_bluecrystal.gif
deleted file mode 100644
index 00d97c5..0000000
--- a/org.eclipse.ogee.help/images/expand_bluecrystal.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/favicon.ico b/org.eclipse.ogee.help/images/favicon.ico
deleted file mode 100644
index 5975b89..0000000
--- a/org.eclipse.ogee.help/images/favicon.ico
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/forward_disabled.png b/org.eclipse.ogee.help/images/forward_disabled.png
deleted file mode 100644
index 6a6ded7..0000000
--- a/org.eclipse.ogee.help/images/forward_disabled.png
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/forward_enabled.png b/org.eclipse.ogee.help/images/forward_enabled.png
deleted file mode 100644
index a4e6b53..0000000
--- a/org.eclipse.ogee.help/images/forward_enabled.png
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/forward_enabled_hover.png b/org.eclipse.ogee.help/images/forward_enabled_hover.png
deleted file mode 100644
index fc46c5e..0000000
--- a/org.eclipse.ogee.help/images/forward_enabled_hover.png
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/help_icon_grey.png b/org.eclipse.ogee.help/images/help_icon_grey.png
deleted file mode 100644
index e354e36..0000000
--- a/org.eclipse.ogee.help/images/help_icon_grey.png
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/icon_run.png b/org.eclipse.ogee.help/images/icon_run.png
deleted file mode 100644
index 5bd0e13..0000000
--- a/org.eclipse.ogee.help/images/icon_run.png
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/icon_run_rtl.png b/org.eclipse.ogee.help/images/icon_run_rtl.png
deleted file mode 100644
index 7f671bf..0000000
--- a/org.eclipse.ogee.help/images/icon_run_rtl.png
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/locate-rtl.gif b/org.eclipse.ogee.help/images/locate-rtl.gif
deleted file mode 100644
index 83aa4e4..0000000
--- a/org.eclipse.ogee.help/images/locate-rtl.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/locate.gif b/org.eclipse.ogee.help/images/locate.gif
deleted file mode 100644
index e21f414..0000000
--- a/org.eclipse.ogee.help/images/locate.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/navend-rtl.gif b/org.eclipse.ogee.help/images/navend-rtl.gif
deleted file mode 100644
index 69bb4fb..0000000
--- a/org.eclipse.ogee.help/images/navend-rtl.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/navend.gif b/org.eclipse.ogee.help/images/navend.gif
deleted file mode 100644
index 0e6f483..0000000
--- a/org.eclipse.ogee.help/images/navend.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/navigation.png b/org.eclipse.ogee.help/images/navigation.png
new file mode 100644
index 0000000..26fe3c2
--- /dev/null
+++ b/org.eclipse.ogee.help/images/navigation.png
Binary files differ
diff --git a/org.eclipse.ogee.help/images/navigation_right_arrow_grey_16.png b/org.eclipse.ogee.help/images/navigation_right_arrow_grey_16.png
deleted file mode 100644
index b3c4806..0000000
--- a/org.eclipse.ogee.help/images/navigation_right_arrow_grey_16.png
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/navstart-rtl.gif b/org.eclipse.ogee.help/images/navstart-rtl.gif
deleted file mode 100644
index 02626d5..0000000
--- a/org.eclipse.ogee.help/images/navstart-rtl.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/navstart.gif b/org.eclipse.ogee.help/images/navstart.gif
deleted file mode 100644
index bee2bfd..0000000
--- a/org.eclipse.ogee.help/images/navstart.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/navstep-rtl.gif b/org.eclipse.ogee.help/images/navstep-rtl.gif
deleted file mode 100644
index 6381ec9..0000000
--- a/org.eclipse.ogee.help/images/navstep-rtl.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/navstep.gif b/org.eclipse.ogee.help/images/navstep.gif
deleted file mode 100644
index 0e04dd2..0000000
--- a/org.eclipse.ogee.help/images/navstep.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/next.gif b/org.eclipse.ogee.help/images/next.gif
deleted file mode 100644
index 8cd7bf5..0000000
--- a/org.eclipse.ogee.help/images/next.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/next_acc.gif b/org.eclipse.ogee.help/images/next_acc.gif
deleted file mode 100644
index 6ac5011..0000000
--- a/org.eclipse.ogee.help/images/next_acc.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/next_bluecrystal.gif b/org.eclipse.ogee.help/images/next_bluecrystal.gif
deleted file mode 100644
index ec3ce26..0000000
--- a/org.eclipse.ogee.help/images/next_bluecrystal.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/note-rtl.gif b/org.eclipse.ogee.help/images/note-rtl.gif
deleted file mode 100644
index ebb3f79..0000000
--- a/org.eclipse.ogee.help/images/note-rtl.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/note.gif b/org.eclipse.ogee.help/images/note.gif
deleted file mode 100644
index ebb3f79..0000000
--- a/org.eclipse.ogee.help/images/note.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/nselect.gif b/org.eclipse.ogee.help/images/nselect.gif
deleted file mode 100644
index bbaf656..0000000
--- a/org.eclipse.ogee.help/images/nselect.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/open_book.gif b/org.eclipse.ogee.help/images/open_book.gif
deleted file mode 100644
index 9f385f7..0000000
--- a/org.eclipse.ogee.help/images/open_book.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/page.gif b/org.eclipse.ogee.help/images/page.gif
deleted file mode 100644
index 9f385f7..0000000
--- a/org.eclipse.ogee.help/images/page.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/previous.gif b/org.eclipse.ogee.help/images/previous.gif
deleted file mode 100644
index f167f85..0000000
--- a/org.eclipse.ogee.help/images/previous.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/previous_acc.gif b/org.eclipse.ogee.help/images/previous_acc.gif
deleted file mode 100644
index 77f58ca..0000000
--- a/org.eclipse.ogee.help/images/previous_acc.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/previous_bluecrystal.gif b/org.eclipse.ogee.help/images/previous_bluecrystal.gif
deleted file mode 100644
index 2ce494e..0000000
--- a/org.eclipse.ogee.help/images/previous_bluecrystal.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/recommendation-rtl.gif b/org.eclipse.ogee.help/images/recommendation-rtl.gif
deleted file mode 100644
index 1c9895a..0000000
--- a/org.eclipse.ogee.help/images/recommendation-rtl.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/recommendation.gif b/org.eclipse.ogee.help/images/recommendation.gif
deleted file mode 100644
index de40433..0000000
--- a/org.eclipse.ogee.help/images/recommendation.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/search_grey_16.png b/org.eclipse.ogee.help/images/search_grey_16.png
deleted file mode 100644
index ec22e06..0000000
--- a/org.eclipse.ogee.help/images/search_grey_16.png
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/search_grey_24.png b/org.eclipse.ogee.help/images/search_grey_24.png
deleted file mode 100644
index 21ce26b..0000000
--- a/org.eclipse.ogee.help/images/search_grey_24.png
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/select.gif b/org.eclipse.ogee.help/images/select.gif
deleted file mode 100644
index 3d343f0..0000000
--- a/org.eclipse.ogee.help/images/select.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/sort_asc.png b/org.eclipse.ogee.help/images/sort_asc.png
deleted file mode 100644
index a88d797..0000000
--- a/org.eclipse.ogee.help/images/sort_asc.png
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/sort_asc_disabled.png b/org.eclipse.ogee.help/images/sort_asc_disabled.png
deleted file mode 100644
index 4e144cf..0000000
--- a/org.eclipse.ogee.help/images/sort_asc_disabled.png
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/sort_both.png b/org.eclipse.ogee.help/images/sort_both.png
deleted file mode 100644
index 1867040..0000000
--- a/org.eclipse.ogee.help/images/sort_both.png
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/sort_desc.png b/org.eclipse.ogee.help/images/sort_desc.png
deleted file mode 100644
index def071e..0000000
--- a/org.eclipse.ogee.help/images/sort_desc.png
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/sort_desc_disabled.png b/org.eclipse.ogee.help/images/sort_desc_disabled.png
deleted file mode 100644
index 7824973..0000000
--- a/org.eclipse.ogee.help/images/sort_desc_disabled.png
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/startsearch.gif b/org.eclipse.ogee.help/images/startsearch.gif
deleted file mode 100644
index 9317365..0000000
--- a/org.eclipse.ogee.help/images/startsearch.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/syntax-rtl.gif b/org.eclipse.ogee.help/images/syntax-rtl.gif
deleted file mode 100644
index b110b16..0000000
--- a/org.eclipse.ogee.help/images/syntax-rtl.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/syntax.gif b/org.eclipse.ogee.help/images/syntax.gif
deleted file mode 100644
index b110b16..0000000
--- a/org.eclipse.ogee.help/images/syntax.gif
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/images/ui-bg_highlight-soft_75_cccccc_1x100.png b/org.eclipse.ogee.help/images/ui-bg_highlight-soft_75_cccccc_1x100.png
deleted file mode 100644
index aed56ab..0000000
--- a/org.eclipse.ogee.help/images/ui-bg_highlight-soft_75_cccccc_1x100.png
+++ /dev/null
Binary files differ
diff --git a/org.eclipse.ogee.help/index.xml b/org.eclipse.ogee.help/index.xml
deleted file mode 100644
index f408ba8..0000000
--- a/org.eclipse.ogee.help/index.xml
+++ /dev/null
@@ -1 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?><index/>
\ No newline at end of file
diff --git a/org.eclipse.ogee.help/sap-doc-idcardfile.xml b/org.eclipse.ogee.help/sap-doc-idcardfile.xml
deleted file mode 100644
index 3f304ff..0000000
--- a/org.eclipse.ogee.help/sap-doc-idcardfile.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<build>

-  <output>

-    <rootpage>ogee_documentation_en.jar</rootpage>

-  </output>

-</build>

diff --git a/org.eclipse.ogee.help/src/org/eclipse/ogee/help/IHelpConstants.java b/org.eclipse.ogee.help/src/org/eclipse/ogee/help/IHelpConstants.java
index 83c521e..46c54d5 100644
--- a/org.eclipse.ogee.help/src/org/eclipse/ogee/help/IHelpConstants.java
+++ b/org.eclipse.ogee.help/src/org/eclipse/ogee/help/IHelpConstants.java
@@ -9,7 +9,7 @@
 	 */
 	public static final String ORG_ECLIPSE_UI_HELP = "org.eclipse.ui.help"; //$NON-NLS-1$
 	/**
-	 * For Gateway Configuration Dialog
+	 * For Configuration Dialog
 	 */
 	public static final String CONFIG_HELP_CONTEXT_ID = "org.eclipse.ogee.context"; //$NON-NLS-1$
 	/**
diff --git a/org.eclipse.ogee.help/toc.xml b/org.eclipse.ogee.help/toc.xml
index 5f42c67..375503d 100644
--- a/org.eclipse.ogee.help/toc.xml
+++ b/org.eclipse.ogee.help/toc.xml
@@ -1,3 +1,38 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?NLS TYPE="org.eclipse.help.toc"?>
-<toc label="Ogee Documentation" icon="docid" topic="html/eef506110fb04dd9a0b93ba240ca529c.html"><topic label="Ogee: Master Guide" href="html/eef506110fb04dd9a0b93ba240ca529c.html"><topic label="Ogee: Software Prerequisites" href="html/5b0a3dc96c744886b4ec0bdf6d8038ed.html"/></topic><topic label="Ogee Installation and Configuration Guide" href="html/45eb75892a764571b63b8d3290df10b2.html"><topic label="Verifying the Installed Features" href="html/d963dae97f7d4764918f4ea798f727d2.html"/><topic label="Upgrading Ogee" href="html/ff3f01ab585d4c799c5360b46cf78bab.html"/><topic label="Supporting Languages Other than English" href="html/3c19aab92826496c830a9f6ab061ae91.html"/><topic label="Uninstalling Ogee" href="html/3a147172bf2046a28fc4e9573b1d9130.html"/></topic><topic label="Ogee: Developer Guide" href="html/9719d8b8382643869d6785542387d684.html"><topic label="Opening OData Perspective" href="html/f4a962fc49d94c05b6e44ab9b5fd7a8c.html"/><topic label="Creating a Project" href="html/028bcef958aa430e84a49cbc943b9709.html"/><topic label="Importing an OData Model" href="html/86e4b6eede0b408ba9d69f24b8148642.html"/><topic label="Exporting an OData Model from the OData Model Editor" href="html/45ffe494a3bc4a1bb355a94db1f5f72e.html"/><topic label="Working in the OData Model Editor" href="html/0b5776c556a04e34964b5bf481bb1ecc.html"><topic label="Creating OData Model Elements" href="html/4b867f2a7cd44a88a1067ef757864c9d.html"/><topic label="Working with the OData Model Element" href="html/a3997075e60b4dd3b3e47a8126070414.html"><topic label="Creating an Entity Type" href="html/12526533ccd3464b87542a9527c1b780.html"/><topic label="Adding an Entity Set" href="html/f331294ccbe54bcf8d2b68ef5a57773b.html"/><topic label="Adding Properties" href="html/8777b42c12bc4796a5898dbba6feb3fb.html"><topic label="Working in the Properties View" href="html/504f84d32071419eb2bb5489f0658c21.html"/></topic><topic label="Creating a Complex Type" href="html/c31d3ad78d7244fbb1071e7721d72ea7.html"/><topic label="Creating a Function Import" href="html/9ec05803b170491095b0469418f6a60f.html"/><topic label="Creating an Association" href="html/50dc336f79024ca2a560d049846eb5e8.html"><topic label="Creating a Single Association" href="html/22be92df80da42cf982b9506e31d8ae8.html"/><topic label="Creating a Bidirectional Association" href="html/eef0a787772546da8bb64168fba51823.html"/><topic label="Creating a Self Association" href="html/7720bd44f939467ab34694fab1d259d2.html"/></topic><topic label="Saving the OData Model" href="html/a53be72ad4fb4a3bb9b2ac83dc67ec2f.html"/><topic label="Deleting OData Model Elements" href="html/02fac08dac9c41d89e6341aee03a43eb.html"/><topic label="Layouting in OData Model Editor" href="html/09acf63fcff846ff9b774c95bfcbce3b.html"><topic label="Basic Layout" href="html/f159edb90e754bd78496eec86c7e66ea.html"/></topic></topic></topic><topic label="Creating an OData Model" href="html/df07ead44d8b420fa4c3712d4168bc12.html"><topic label="Creating a Blank OData Model" href="html/65b63a88329544efac81319f48e6fd23.html"/><topic label="Creating an OData Model Using Metadata File" href="html/499be3856baa45b1b2efacf2da6ea863.html"/><topic label="Creating an OData Model Using Service URL" href="html/60eb920cc2a240fc80c95c19d6c92bce.html"/></topic></topic></toc>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>

+<?NLS TYPE="org.eclipse.help.toc"?>

+<toc label="Ogee Documentation" icon="docid" topic="html/eef506110fb04dd9a0b93ba240ca529c.html">

+	<topic label="Ogee: Overview" href="html/Ogee - An Overview.html"/>

+	<topic label="Ogee: Getting Started" href="html/Ogee - Developer Guide.html">

+		<topic label="Opening OData Perspective" href="html/OData Perspective.html"/>

+		<topic label="Creating a Project" href="html/Creating a Project.html"/>

+		<topic label="Importing an OData Model" href="html/Importing an OData Model.html"/>

+		<topic label="Exporting an OData Model from the OData Model Editor" href="html/Exporting an OData Model from the OData Model Editor.html"/>

+		<topic label="Working in the OData Model Editor" href="html/Working in the OData Model Editor.html">

+			<topic label="Creating OData Model Elements" href="html/Creating OData Model Elements.html"/>

+			<topic label="Working with the OData Model Element" href="html/Working with the OData Model Element.html">

+				<topic label="Creating an Entity Type" href="html/Creating an Entity Type.html"/>

+				<topic label="Adding an Entity Set" href="html/Adding an Entity Set.html"/>

+				<topic label="Adding Properties" href="html/Adding Properties.html">

+					<topic label="Working in the Properties View" href="html/Working in the Properties View.html"/>

+				</topic>

+				<topic label="Creating a Complex Type" href="html/Creating a Complex Type.html"/>

+				<topic label="Creating a Function Import" href="html/Creating a Function Import.html"/>

+				<topic label="Creating an Association" href="html/Creating an Association.html">

+					<topic label="Creating a Single Association" href="html/Creating a Single Association.html"/>

+					<topic label="Creating a Bidirectional Association" href="html/Creating Bidirectional Association.html"/>

+					<topic label="Creating a Self Association" href="html/Creating a Self Association.html"/>

+				</topic>

+				<topic label="Saving the OData Model" href="html/Saving an OData Model.html"/>

+				<topic label="Deleting OData Model Elements" href="html/Deleting an OData Model Element.html"/>

+				<topic label="Layouting in OData Model Editor" href="html/Layouting in OData Model.html">

+					<topic label="Basic Layout" href="html/Basic Layout.html"/>

+				</topic>

+			</topic>

+</topic>

+		<topic label="Creating an OData Model" href="html/Creating a OData Model.html">

+			<topic label="Creating a Blank OData Model" href="html/Creating a Blank OData Model.html"/>

+			<topic label="Creating an OData Model Using Metadata File" href="html/Creating an OData Model Using Metadata File.html"/>

+			<topic label="Creating an OData Model Using Service URL" href="html/Creating an OData Model Using Service URL.html"/>

+		</topic>

+	</topic>

+</toc>