Add the redfish static files to the build

...And delete the old webserver static files from the repo.
Move $metadata to a static file, as that's really where it belongs.

Change-Id: I2caeee7cd779b7c07cfc10cd693459105656671f
diff --git a/static/redfish/v1/schema/Message_v1.xml b/static/redfish/v1/schema/Message_v1.xml
new file mode 100755
index 0000000..889332e
--- /dev/null
+++ b/static/redfish/v1/schema/Message_v1.xml
@@ -0,0 +1,94 @@
+<?xml version="1.0" encoding="UTF-8"?>

+<!---->

+<!--################################################################################       -->

+<!--# Redfish Schema:  Message  v1.0.4-->

+<!--#                                                                                      -->

+<!--# For a detailed change log, see the README file contained in the DSP8010 bundle,      -->

+<!--# available at http://www.dmtf.org/standards/redfish                                   -->

+<!--# Copyright 2014-2016 Distributed Management Task Force, Inc. (DMTF).                  -->

+<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->

+<!--################################################################################       -->

+<!---->

+<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">

+

+  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">

+    <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>

+  </edmx:Reference>

+  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">

+    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>

+  </edmx:Reference>

+  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">

+    <edmx:Include Namespace="Resource"/>

+    <edmx:Include Namespace="Resource.v1_0_0"/>

+  </edmx:Reference>

+

+  <edmx:DataServices>

+

+    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Message">

+

+      <Term Name="ExtendedInfo" Type="Collection(Message.Message)" Nullable="false">

+        <Annotation Term="OData.Description" String="The ExtendedInfo annotation can be applied to any object or property to provide additional information about the item."/>

+      </Term>

+

+      <ComplexType Name="Message">

+        <Annotation Term="OData.AdditionalProperties" Bool="false"/>

+      </ComplexType>

+

+    </Schema>

+

+    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Message.v1_0_0">

+

+      <ComplexType Name="Message" BaseType="Message.Message">

+        <Property Name="MessageId" Type="Edm.String" Nullable="false">

+          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>

+          <Annotation Term="OData.Description" String="This is the key for this message which can be used to look up the message in a message registry."/>

+          <Annotation Term="OData.LongDescription" String="This property shall be a key into message registry as described in the Redfish specification."/>

+          <Annotation Term="Redfish.Required"/>

+        </Property>

+        <Property Name="Message" Type="Edm.String">

+          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>

+          <Annotation Term="OData.Description" String="This is the human readable message, if provided."/>

+          <Annotation Term="OData.LongDescription" String="This property shall contain an optional human readable message."/>

+        </Property>

+        <Property Name="RelatedProperties" Type="Collection(Edm.String)" Nullable="false">

+          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>

+          <Annotation Term="OData.Description" String="This is an array of properties described by the message."/>

+          <Annotation Term="OData.LongDescription" String="This property shall contain an array of JSON Pointers indicating the properties described by the message, if appropriate for the message."/>

+        </Property>

+        <Property Name="MessageArgs" Type="Collection(Edm.String)" Nullable="false">

+          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>

+          <Annotation Term="OData.Description" String="This array of message arguments are substituted for the arguments in the message when looked up in the message registry."/>

+          <Annotation Term="OData.LongDescription" String="This property shall contain the message substitution arguments for the specific message referenced by the MessageId and shall only be included if the MessageId is present."/>

+        </Property>

+        <Property Name="Severity" Type="Edm.String">

+          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>

+          <Annotation Term="OData.Description" String="This is the severity of the errors."/>

+          <Annotation Term="OData.LongDescription" String="The value of this property shall be the severity of the error, as defined in the Status section of the Redfish specificaiton."/>

+        </Property>

+        <Property Name="Resolution" Type="Edm.String">

+          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>

+          <Annotation Term="OData.Description" String="Used to provide suggestions on how to resolve the situation that caused the error."/>

+          <Annotation Term="OData.LongDescription" String="This property shall contain an override of the Resolution of the message in message registry, if present."/>

+        </Property>

+        <Property Name="Oem" Type="Resource.Oem" Nullable="false">

+          <Annotation Term="OData.Description" String="Oem extension object."/>

+          <Annotation Term="OData.LongDescription" String="This object represents the Oem property.  All values for resources described by this schema shall comply to the requirements as described in the Redfish specification."/>

+        </Property>

+      </ComplexType>

+

+    </Schema>

+

+    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Message.v1_0_2">

+      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>

+    </Schema>

+

+    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Message.v1_0_3">

+      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>

+    </Schema>

+

+    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Message.v1_0_4">

+      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>

+    </Schema>

+

+  </edmx:DataServices>

+</edmx:Edmx>