Skip to content

Commit a4c19bc

Browse files
committed
converted alerts to devofficecom format
1 parent 7713b19 commit a4c19bc

File tree

213 files changed

+623
-623
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

213 files changed

+623
-623
lines changed

docs/general-development/access-sharepoint-from-mobile-and-native-device-apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ SharePoint Add-ins, farm solutions, and "no code" sandboxed solutions are all ru
1313

1414

1515

16-
> [!IMPORTANT]
16+
> **Important:**
1717
> To test and debug on any platform, you need a **developer account on Office 365**. More info: [Set up a development environment for SharePoint Add-ins on Office 365](http://msdn.microsoft.com/library/b22ce52a-ae9e-4831-9b68-c9210af6dc54%28Office.15%29.aspx) or [Create a developer site on an existing Office 365 subscription](http://msdn.microsoft.com/library/2ec857d5-dc6f-4cf6-ba45-adc845ef2a25%28Office.15%29.aspx).
1818
1919

docs/general-development/accessing-a-schema.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This topic shows one example of how you can access and look at a schema for the
1313

1414

1515

16-
> [!NOTE]
16+
> **Note:**
1717
> The Excel Services REST API applies to SharePoint 2013 and SharePoint 2016 on-premises. For Office 365 Education, Business, and Enterprise accounts, use the Excel REST APIs that are part of the [Microsoft Graph](http://graph.microsoft.io/en-us/docs/api-reference/v1.0/resources/excel
1818
) endpoint.
1919

docs/general-development/add-in-scoped-external-content-types-in-sharepoint.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ The following example shows how to set the **MetadataCatalogFileName** property
129129
```
130130

131131

132-
> [!NOTE]
132+
> **Note:**
133133
> Site administrators can install add-ins that use App-Scoped-ECTs, but only SiteCollection administrators can grant permissions for Apps to Use BCS Connections.
134134
135135

@@ -154,14 +154,14 @@ You can include a BDC model in a WSP file for deployment. The following example
154154
```
155155

156156

157-
> [!IMPORTANT]
157+
> **Important:**
158158
> Only one BDC model file can be included per add-in. While the file name in this example is BDCMetadata.bdcm, the model file can actually be any name you choose as long as the file name matches that is in the **Path** attribute of the BDC model file.
159159
160160

161161

162162

163163

164-
> [!NOTE]
164+
> **Note:**
165165
> Only Open Data protocol (OData) connections are allowed for add-in-scoped external content types.
166166
167167

docs/general-development/advanced-scenarios-and-additional-samples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This topic describes some advanced REST scenarios and additional samples. It pro
1313

1414

1515

16-
> [!NOTE]
16+
> **Note:**
1717
> The Excel Services REST API applies to SharePoint 2013 and SharePoint 2016 on-premises. For Office 365 Education, Business, and Enterprise accounts, use the Excel REST APIs that are part of the [Microsoft Graph](http://graph.microsoft.io/en-us/docs/api-reference/v1.0/resources/excel
1818
) endpoint.
1919

docs/general-development/architecture-of-the-windows-phone-sharepoint-list-application-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ Software designs based on the MVVM pattern often confine business logic and vali
137137

138138

139139

140-
> [!NOTE]
140+
> **Note:**
141141
> The **ListDataProvider** object only loads the data from server. Other operations, such as **Add**, **Update**, and **Delete**, are performed in the ViewModel itself, followed by a refresh call to update the ViewModel data from the server. This design reduces cluttering of the code.
142142
143143

docs/general-development/authentication-authorization-and-security-in-sharepoint.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ SharePoint 2013 supports security for user access at the website, list, list or
4949

5050

5151

52-
> [!NOTE]
52+
> **Note:**
5353
> For information about authorization related to SharePoint Add-ins, see [Authorization and authentication of SharePoint Add-ins](http://msdn.microsoft.com/library/bde5647a-fff1-4b51-b67b-2139de79ce4a%28Office.15%29.aspx).
5454
5555

@@ -68,15 +68,15 @@ SharePoint 2013 supports the following types of authentication:
6868

6969
For information about signing in to SharePoint by using Windows claims mode, see [Incoming claims: Signing into SharePoint 2013](incoming-claims-signing-into-sharepoint.md).
7070

71-
> [!IMPORTANT]
71+
> **Important:**
7272
> For information about suspending impersonation, see [Avoid suspending impersonation of the calling user](http://msdn.microsoft.com/en-us/library/ff407852.aspx).
7373
- **ASP.NET Forms:** A non-Windows identity management system that uses the pluggable ASP.NET forms-based authentication system is supported. This mode enables SharePoint 2013 to work with a variety of identity management systems, including externally defined groups or roles such as Lightweight Directory Access Protocol (LDAP) and light-weight database identity management systems. Forms authentication allows ASP.NET to perform the authentication for SharePoint 2013, often involving a redirect to a log-on page. In SharePoint 2013, ASP.NET forms are supported only under claims authentication. A forms provider must be registered within a web application that is configured for claims.
7474

7575
For information about signing in to SharePoint by using ASP.NET membership and role passive sign-in, see [Incoming claims: Signing into SharePoint 2013](incoming-claims-signing-into-sharepoint.md).
7676

7777

7878

79-
> [!NOTE]
79+
> **Note:**
8080
> SharePoint 2013 does not support working with a case-sensitive membership provider. It uses case-insensitive SQL storage for all users in the database, regardless of the membership provider.
8181
8282

@@ -108,7 +108,7 @@ When a user signs in to SharePoint 2013, the user's token is validated and then
108108

109109

110110

111-
> [!NOTE]
111+
> **Note:**
112112
> For more information about signing into SharePoint and the different sign-in modes, see [Incoming claims: Signing into SharePoint 2013](incoming-claims-signing-into-sharepoint.md).
113113
114114

@@ -140,7 +140,7 @@ Under this model, your application makes identity-related decisions based on cla
140140

141141

142142

143-
> [!NOTE]
143+
> **Note:**
144144
> For more information about claims-based identity and claims providers, see [Claims-based identity and concepts in SharePoint 2013](claims-based-identity-and-concepts-in-sharepoint.md) and [Claims provider in SharePoint 2013](claims-provider-in-sharepoint.md).
145145
146146

@@ -159,7 +159,7 @@ The membership provider is responsible for validating the credential information
159159

160160

161161

162-
> [!NOTE]
162+
> **Note:**
163163
> For more information about STS, see [Claims-based identity and concepts in SharePoint 2013](claims-based-identity-and-concepts-in-sharepoint.md).
164164
165165

@@ -170,7 +170,7 @@ The role manager is optional. If a custom authentication system does not support
170170

171171

172172

173-
> [!NOTE]
173+
> **Note:**
174174
> For more information about claims-based identity and claims providers, see [Claims-based identity and concepts in SharePoint 2013](claims-based-identity-and-concepts-in-sharepoint.md) and [Claims provider in SharePoint 2013](claims-provider-in-sharepoint.md).
175175
176176

@@ -181,7 +181,7 @@ In ASP.NET membership and role passive sign-in, the sign-in happens by redirecti
181181

182182

183183

184-
> [!NOTE]
184+
> **Note:**
185185
> For more information about signing into SharePoint, see [Incoming claims: Signing into SharePoint 2013](incoming-claims-signing-into-sharepoint.md).
186186
187187

@@ -196,7 +196,7 @@ For information about the pluggable authentication framework provided by ASP.NET
196196

197197

198198

199-
> [!NOTE]
199+
> **Note:**
200200
> For more information about forms-based authentication, see [Forms authentication in SharePoint products and technologies (Part 1): Introduction](http://msdn.microsoft.com/library/e5efd4d7-b369-49f0-a6f7-431d21daff20%28Office.15%29.aspx).
201201
202202

docs/general-development/authorization-users-groups-and-the-object-model-in-sharepoint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ In policy roles, the users and groups are identified by both their security iden
6767

6868

6969

70-
> [!NOTE]
70+
> **Note:**
7171
> Central administration policy roles differ from the role definitions for a site collection.
7272
7373

docs/general-development/basic-uri-structure-and-path.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This topic explains how to construct the URI structure and path for REST service
1313

1414

1515

16-
> [!NOTE]
16+
> **Note:**
1717
> The Excel Services REST API applies to SharePoint 2013 and SharePoint 2016 on-premises. For Office 365 Education, Business, and Enterprise accounts, use the Excel REST APIs that are part of the [Microsoft Graph](http://graph.microsoft.io/en-us/docs/api-reference/v1.0/resources/excel
1818
) endpoint.
1919

docs/general-development/bcs-rest-api-reference-for-sharepoint.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ You can access external data by constructing URLs just as you would to access st
3636

3737

3838

39-
> [!NOTE]
39+
> **Note:**
4040
> Access to entities through the BDC directly is not provided. To work with external data, you must create an external list and use the REST URLs to access the list items contained in the external list.
4141
4242

@@ -81,11 +81,11 @@ In order to limit the amount of data returned, or make it more relevant to the u
8181

8282
|**Operator**|**Description**|
8383
|:-----|:-----|
84-
|EQ <br/> |Equals <br/> > [!NOTE]> When you use **EQ** to filter, the filter criteria are passed to the external system where the filtering happens on the server. |
85-
|GT <br/> |Greater Than <br/> > [!NOTE]> When you use the **GT** operator, only client-side filtering is executed.> For example: `web/lists/getByTitle('ListName')/Items?$select=Title&amp;$filter=AverageRating gt 3` returns all titles with an average rating over 3. |
84+
|EQ <br/> |Equals <br/> > **Note:**> When you use **EQ** to filter, the filter criteria are passed to the external system where the filtering happens on the server. |
85+
|GT <br/> |Greater Than <br/> > **Note:**> When you use the **GT** operator, only client-side filtering is executed.> For example: `web/lists/getByTitle('ListName')/Items?$select=Title&amp;$filter=AverageRating gt 3` returns all titles with an average rating over 3. |
8686

8787

88-
> [!NOTE]
88+
> **Note:**
8989
> To retrieve columns that are part of an association, you must explicitly include the column in the URL using **$select** in the query string.
9090
9191

docs/general-development/bdc-model-schema-reference-for-sharepoint.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ The URL attribute of a URL-based action can receive parameters by using the **Ac
233233

234234

235235

236-
> [!IMPORTANT]
236+
> **Important:**
237237
> **ActionParameters** can either represent identifier values, or values that correspond to **TypeDescriptors** in a **SpecificFinder** of the **Entity**. The **ActionParameter** represents an identifier value when the **IdOrdinal** property is present. The value of the property specifies the index of the identifier whose value this **ActionParameter** represents. If the **IdOrdinal** property is not specified, the **ActionParameter** represents a **TypeDescriptor**, and the **Name** attribute specifies which type descriptor is being represented. The **Name** attribute is specified as a **Dotted Path**.
238238
239239

@@ -244,7 +244,7 @@ The **ActionParameter** element accepts the following property.
244244

245245

246246

247-
> [!IMPORTANT]
247+
> **Important:**
248248
> Properties are case-sensitive.
249249
250250

@@ -442,7 +442,7 @@ The Association element links related external content types within a system. Fo
442442

443443

444444

445-
> [!IMPORTANT]
445+
> **Important:**
446446
> Properties are case-sensitive.
447447
448448

@@ -720,7 +720,7 @@ The Convert element specifies the rule to convert the data type of a data value
720720

721721

722722

723-
> [!CAUTION]
723+
> **Caution:**
724724
> **ConvertType** does not support non-Gregorian calendars for conversions between **System.String** and **System.DateTime**.
725725
726726

@@ -1032,11 +1032,11 @@ The following sections describe attributes, child elements, and parent elements.
10321032

10331033
|**Attribute**|**Description**|
10341034
|:-----|:-----|
1035-
|**Namespace** <br/> |Required. <br/> The namespace that this external content type belongs to. <br/> Attribute type: **String** <br/> > [!NOTE]> The namespace should not contain the asterisk special character " *****". |
1036-
|**Version** <br/> |Required. <br/> The version number of this external content type. <br/> Attribute type: **String** <br/> > [!CAUTION]> When the BDC model changes, you must increase the version number of the external content type. If the structure of an external content type changes, you should increase the major number. Examples of structural changes include adding a field to a **SpecificFinder** or changing an identifier field. If the change does not affect the structure of the external content type, for example, when adding a creator method, changing connection information, or when changing names of **LobSystems** and type descriptors, you should change the build number and revision number. |
1035+
|**Namespace** <br/> |Required. <br/> The namespace that this external content type belongs to. <br/> Attribute type: **String** <br/> > **Note:**> The namespace should not contain the asterisk special character " *****". |
1036+
|**Version** <br/> |Required. <br/> The version number of this external content type. <br/> Attribute type: **String** <br/> > **Caution:**> When the BDC model changes, you must increase the version number of the external content type. If the structure of an external content type changes, you should increase the major number. Examples of structural changes include adding a field to a **SpecificFinder** or changing an identifier field. If the change does not affect the structure of the external content type, for example, when adding a creator method, changing connection information, or when changing names of **LobSystems** and type descriptors, you should change the build number and revision number. |
10371037
|**EstimatedInstanceCount** <br/> |Optional. <br/> The estimated number of external items contained by the external system. <br/> Default value: 10000 <br/> Attribute type: **Integer** <br/> |
10381038
|**DefaultOperationMode** <br/> |Optional. <br/> Specifies the default behavior when interacting with the external system while creating, deleting, updating, or reading external items. <br/> Default value: Default <br/> The following table lists the possible values for this attribute. <br/> <table width="50%" cellspacing="2" cellpadding="5" frame="lhs"><thead><tr><th><p>Value</p></th><th><p>Description</p></th></tr></thead><tbody><tr><td><p>Online</p></td><td><p>Bypass the cached external items for all operations and interact with the external system directly.</p></td></tr><tr><td><p>Cached</p></td><td><p>Perform <b>Create</b>, <b>Read</b>, <b>Update</b>, and <b>Delete</b> operations directly against the cached external items. For <b>Read</b> operations, if the requested external items are available in the cache, use the external items in the cache. Otherwise, bypass the cache to obtain the external items from the external system, and put it in the cache for later use.</p></td></tr><tr><td><p>Offline</p></td><td><p>Perform <b>Create</b>, <b>Read</b>, <b>Update</b>, and <b>Delete</b> operations against only the cached external items.</p></td></tr><tr><td><p>Default</p></td><td><p>Use the System default behavior. This uses Cached mode if the environment supports caching external items.</p></td></tr></tbody></table>|
1039-
|Name <br/> |Required. <br/> The name of the external content type. <br/> Attribute type: **String** <br/> > [!NOTE]> The name of an external content type should not contain the asterisk special character " *****". |
1039+
|Name <br/> |Required. <br/> The name of the external content type. <br/> Attribute type: **String** <br/> > **Note:**> The name of an external content type should not contain the asterisk special character " *****". |
10401040
|DefaultDisplayName <br/> |Optional. <br/> The default display name of the external content type. <br/> Attribute type: **String** <br/> |
10411041
|IsCached <br/> |Optional. <br/> Specifies whether this external content type will be frequently used. If set to true, Business Data Connectivity (BDC) service will cache this external content type in memory. <br/> Default value: **true** <br/> Attribute type: **Boolean** <br/> |
10421042

@@ -1208,7 +1208,7 @@ Specifies an identifier of an external content type.
12081208

12091209

12101210

1211-
> [!NOTE]
1211+
> **Note:**
12121212
> Business Data Connectivity (BDC) service enables the mapping of identifiers to fields with nullable data types. However, for primary identifiers, BDC will cause an error when the value of these identifiers are **null**.
12131213
12141214

@@ -2650,7 +2650,7 @@ The following sections describe attributes, child elements, and parent elements.
26502650
|**UpdaterField** <br/> |Optional. <br/> Specifies whether the **TypeDescriptor** represents a field for **MethodInstances** of type **Updater** that are contained by the **Method** that contains the **Parameter** containing the **TypeDescriptor**. When this attribute is specified, a **PreUpdaterField** attribute must not be specified. <br/> Default value: **false** <br/> Attribute type: **Boolean** <br/> |
26512651
|**PreUpdaterField** <br/> |Optional. <br/> Specifies whether data structure represented by the **TypeDescriptor** stores the latest data value received from the external system of a field for **MethodInstances** of type **Updater**. When this attribute is specified, a **UpdaterField** attribute must not be specified. <br/> Default value: **false** <br/> Attribute type: **Boolean** <br/> |
26522652
|**Significant** <br/> |Optional. <br/> Specifies whether values stored by the data structure represented by this **TypeDescriptor** are included in calculating a hash code or comparing values stored in the data structures. For example, a **TypeDescriptor** representing a customer's last name is taken into account when determining whether a record has been modified, and so it is significant, whereas the **TypeDescriptor** representing the date on which the customer record is last modified typically is not taken into account to determine whether a record has been modified, and so it is not significant. <br/> Default value: **true** <br/> Attribute type: **Boolean** <br/> |
2653-
|**Name** <br/> |Required. <br/> The name of the **TypeDescriptor**. <br/> Attribute type: **String** <br/> > [!NOTE]> The name of a **TypeDescriptor** should not contain the special characters for forward slash ("/"), period ("."), or opening bracket ("["). |
2653+
|**Name** <br/> |Required. <br/> The name of the **TypeDescriptor**. <br/> Attribute type: **String** <br/> > **Note:**> The name of a **TypeDescriptor** should not contain the special characters for forward slash ("/"), period ("."), or opening bracket ("["). |
26542654
|**DefaultDisplayName** <br/> |Optional. <br/> The display name of the **TypeDescriptor**. <br/> Attribute type: **String** <br/> |
26552655
|**IsCached** <br/> |Optional. <br/> Specifies whether the **TypeDescriptor** is used frequently. <br/> Default value: **true** <br/> Attribute type: **Boolean** <br/> |
26562656

0 commit comments

Comments
 (0)