From 05a54a0cb298c3e73cd07dbd2f38cd49e12597d5 Mon Sep 17 00:00:00 2001 From: Tom Bolds Date: Mon, 2 Dec 2019 15:06:50 -0800 Subject: [PATCH] Correcting samples and deprecated attributes in enterprise-mode_schema-version-2-guidance Correcting the sample xml so that the comments don't break parsing rules. Also, updating the "Default" and "None" captialization to be consistent with our other documentation and tools. Updating the "Deprecated attributes" section to be more accurate about elements and attributes. Also corrected samples. --- ...terprise-mode-schema-version-2-guidance.md | 38 ++++++++++--------- 1 file changed, 21 insertions(+), 17 deletions(-) diff --git a/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-2-guidance.md b/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-2-guidance.md index 4bcf595aeb..a321e5a744 100644 --- a/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-2-guidance.md +++ b/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-2-guidance.md @@ -46,19 +46,19 @@ The following is an example of the v.2 version of the Enterprise Mode schema. ```xml - + EnterpriseSitelistManager 10240 20150728.135021 - + IE8Enterprise MSEdge - default + Default IE11 @@ -66,14 +66,15 @@ The following is an example of the v.2 version of the Enterprise Mode schema. IE11 - default + Default IE11 - default - none + Default + None IE8Enterprise" + None IE7 @@ -232,26 +233,26 @@ These v.1 version schema attributes have been deprecated in the v.2 version of t - - + + - + - + - + - + - + - + @@ -259,25 +260,28 @@ These v.1 version schema attributes have been deprecated in the v.2 version of t
Deprecated attributeNew attributeDeprecated element/attributeNew element Replacement example
<forceCompatView>forceCompatView <compat-mode>Replace <forceCompatView="true"> with <compat-mode>IE7Enterprise</compat-mode>Replace forceCompatView="true" with <compat-mode>IE7Enterprise</compat-mode>
<docMode>docMode <compat-mode>Replace <docMode="IE5"> with <compat-mode>IE5</compat-mode>Replace docMode="IE5" with <compat-mode>IE5</compat-mode>
<doNotTransition>doNotTransition <open-in>Replace <doNotTransition="true"> with <open-in>none</open-in>Replace doNotTransition="true" with <open-in>none</open-in>
<domain> and <path>Replace:
 <emie>
-  <domain exclude="false">contoso.com</domain>
+  <domain>contoso.com</domain>
 </emie>
With:
 <site url="contoso.com"/>
   <compat-mode>IE8Enterprise</compat-mode>
+  <open-in>IE11</open-in>
 </site>
-AND-

Replace:

 <emie>
-  <domain exclude="true">contoso.com
-     <path exclude="false" forceCompatView="true">/about</path>
+  <domain exclude="true" doNotTransition="true">
+    contoso.com
+    <path forceCompatView="true">/about</path>
   </domain>
 </emie>
With:
 <site url="contoso.com/about">
   <compat-mode>IE7Enterprise</compat-mode>
+  <open-in>IE11</open-in>
 </site>