Skip to content

Commit 926aab3

Browse files
committed
revert change fixes
1 parent 30ca46d commit 926aab3

4 files changed

+7
-7
lines changed

docs/sp-add-ins/add-in-permissions-in-sharepoint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ SharePoint Add-ins that are installed to SharePoint are granted permissions when
295295

296296
When you are developing an add-in or troubleshooting an add-in, there may be occasions when you want to change, or regrant, the permissions of an add-in that has already been installed. You can do so with these steps:
297297

298-
1. Go to `http://<SharePointWebSite>/_layouts/15/AppInv.aspx`, where _<SharePointWebSite>_ is the URL of the website where the add-in is installed. Be careful not to add any query parameters on the URL. The form you need only appears on this page if the URL is exactly as shown.
298+
1. Go to `http://<SharePointWebSite>/_layouts/15/AppInv.aspx`, where _<SharePointWebSite>_ is the URL of the website where the add-in is installed. Be careful not to add any query parameters on the URL. The form you need only appears on this page if the URL is exactly as shown.
299299

300300
2. Enter the add-in's ID, also called the client ID, in the **Add-in Id** box, and then select **Lookup**. The other boxes on the form are then populated with information about the add-in.
301301

docs/sp-add-ins/convert-an-autohosted-sharepoint-add-in-to-a-provider-hosted-add-in.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ The next step is to reconfigure the remote web application so that it can be dep
217217

218218
### To update the remote web application project
219219

220-
The big change that needs to occur in the ASP.NET MVC web application is within the web.config file. Within this file there are three settings found within the **<appSettings>** node. These are the **ClientId**, **ClientSecret**, and **SqlAzureConnectionString**. The first two are used by the Microsoft-provided class, in TokenHelper.cs or .vb, to facilitate authenticating and communicating with SharePoint from the remote web application. The latter, **SqlAzureConnectionString**, is used by the add-in to connect to the Azure SQL Database.
220+
The big change that needs to occur in the ASP.NET MVC web application is within the web.config file. Within this file there are three settings found within the **<appSettings>** node. These are the **ClientId**, **ClientSecret**, and **SqlAzureConnectionString**. The first two are used by the Microsoft-provided class, in TokenHelper.cs or .vb, to facilitate authenticating and communicating with SharePoint from the remote web application. The latter, **SqlAzureConnectionString**, is used by the add-in to connect to the Azure SQL Database.
221221

222222
In a SharePoint autohosted add-in, Office 365 fills in the values for these settings when the Azure website and Azure SQL Database are created when the add-in is installed. However, in a provider-hosted add-in, these must be manually set before the add-in is deployed.
223223

docs/sp-add-ins/create-a-provider-hosted-add-in-that-includes-a-custom-sharepoint-list-and-conte.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ For the continuing example, you develop an ASP.NET web application. Take the fol
423423

424424
9. Add the following code to parse the ATOM-formatted response XML. It uses the classes of the [System.Xml.Linq](https://msdn.microsoft.com/library/bb299195) namespace to parse the data that is returned and construct a [List<T>](https://msdn.microsoft.com/library/6sh2ey19) of the items from the SharePoint list. (You could also use the classes of the [System.Xml](https://msdn.microsoft.com/library/y3y47afh) namespace.)
425425

426-
Note that, in the XML that SharePoint returns, the child elements of the **entry** element hold metadata about the list item. The actual row data of a SharePoint list item is nested two layers down in the **properties** element. For that reason the [Elements<T>](https://msdn.microsoft.com/library/bb348465) extension method is used twice to filter out the higher levels.
426+
Note that, in the XML that SharePoint returns, the child elements of the **entry** element hold metadata about the list item. The actual row data of a SharePoint list item is nested two layers down in the **properties** element. For that reason the [Elements<T>](https://msdn.microsoft.com/library/bb348465) extension method is used twice to filter out the higher levels.
427427

428428
```csharp
429429
// Response markup parsing section

docs/sp-add-ins/sharepoint-net-server-csom-jsom-and-rest-api-index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ This table lists the most frequently used core APIs, which are in most cases bas
5555
| **FileCollection** **SPFileCollection** | [SP.FieldCollection object](https://msdn.microsoft.com/library/db532e07-a4e8-d2f8-4ac8-c14de4adc761%28Office.15%29.aspx) | […/_api/web/getfolderbyserverrelativeurl('/<folder name>')/files](https://msdn.microsoft.com/library/dn450841.aspx#FileCollection%20resource) |
5656
| **Folder** **SPFolder** | [SP.Folder object](https://msdn.microsoft.com/library/60117e9d-6e9c-8aa9-be9f-a287bc1f547f%28Office.15%29.aspx) | […/_api/web/getfolderbyserverrelativeurl('/<folder name>')](https://msdn.microsoft.com/library/dn450841.aspx#Folder%20resource) |
5757
| **Form** **SPForm** | [SP.Form object](https://msdn.microsoft.com/library/8d5429c4-c218-a17e-51ee-1d34914d5550%28Office.15%29.aspx) | `…/_api/web/lists(guid'<list id>')/forms('<form id>')` |
58-
| **Group** **SPGroup** | [SP.Group object](https://msdn.microsoft.com/library/763a2172-1d66-cf41-4121-d26902e6f42a%28Office.15%29.aspx) | […/_api/web/sitegroups(<group id>)](https://msdn.microsoft.com/library/dn531432.aspx#Group%20resource) |
58+
| **Group** **SPGroup** | [SP.Group object](https://msdn.microsoft.com/library/763a2172-1d66-cf41-4121-d26902e6f42a%28Office.15%29.aspx) | […/_api/web/sitegroups(<group id>)](https://msdn.microsoft.com/library/dn531432.aspx#Group%20resource) |
5959
| **GroupCollection** **SPGroupCollection** | [SP.GroupCollection object](https://msdn.microsoft.com/library/c20fa978-7e6c-e9f6-b169-852872b982e6%28Office.15%29.aspx) | […/_api/web/sitegroups](https://msdn.microsoft.com/library/dn531432.aspx#GroupCollection%20resource) |
6060
| **Language** **SPLanguage** | [SP.Language object](https://msdn.microsoft.com/library/072936e7-a23f-f4ea-9c6d-c484b3ba1d25%28Office.15%29.aspx) | N/A |
61-
| **List** **SPList** | [SP.List object](https://msdn.microsoft.com/library/6d4b1a5d-0600-87d3-757d-360679d937dc%28Office.15%29.aspx) | […/_api/web/lists(guid'<list id>')](https://msdn.microsoft.com/library/dn531433.aspx#List%20resource) |
61+
| **List** **SPList** | [SP.List object](https://msdn.microsoft.com/library/6d4b1a5d-0600-87d3-757d-360679d937dc%28Office.15%29.aspx) | […/_api/web/lists(guid'<list id>')](https://msdn.microsoft.com/library/dn531433.aspx#List%20resource) |
6262
| **ListCollection** **SPListCollection** | [SP.ListCollection object](https://msdn.microsoft.com/library/abc4fe81-3b0f-dffb-dba5-638c3f58268a%28Office.15%29.aspx) | […/_api/web/lists](https://msdn.microsoft.com/library/dn531433.aspx#ListCollection%20resource) |
6363
| **ListDataSource** **SPListDataSource** | [SP.ListDataSource object](https://msdn.microsoft.com/library/099059ae-2261-e3f5-d8f2-7dbcbadeff21%28Office.15%29.aspx) | N/A |
6464
| **ListItem** **SPListItem** | [SP.ListItem object](https://msdn.microsoft.com/library/3ea127c9-6cba-fe11-2193-ff2dc5c02fbf%28Office.15%29.aspx) | […/_api/web/lists(guid'<list id>')/items(<item id>)](https://msdn.microsoft.com/library/dn531433.aspx#ListItem%20resource) |
@@ -71,9 +71,9 @@ This table lists the most frequently used core APIs, which are in most cases bas
7171
| **RecycleBinItem** **SPRecycleBinItem** | [SP.RecycleBinItem object](https://msdn.microsoft.com/library/4109c8f7-2dbe-95db-a0b2-064da24f4ed9%28Office.15%29.aspx) | `…/_api/web/RecycleBin(recyclebinitemid)` |
7272
| **RecycleBinItemCollection** **SPRecycleBinItemCollection** | [SP.RecycleBinItemCollection object](https://msdn.microsoft.com/library/e182d87a-b0be-dc3e-ba9e-69f9148e9366%28Office.15%29.aspx) | `…/_api/web/RecycleBin` |
7373
| **RegionalSettings** **SPRegionalSettings** | [SP.RegionalSettings object](https://msdn.microsoft.com/library/fcf7b8c8-c595-8646-6d60-7ae27084848d%28Office.15%29.aspx) | `…/_api/web/RegionalSettings` |
74-
| **RoleAssignment** **SPRoleAssignment** | [SP.RoleAssignment object](https://msdn.microsoft.com/library/5dd76bb3-c0a0-a3b8-8263-723fe3d542f8%28Office.15%29.aspx) | […/_api/web/roleassignments(<principal id>)](https://msdn.microsoft.com/library/dn531432.aspx#RoleAssignment%20resource) |
74+
| **RoleAssignment** **SPRoleAssignment** | [SP.RoleAssignment object](https://msdn.microsoft.com/library/5dd76bb3-c0a0-a3b8-8263-723fe3d542f8%28Office.15%29.aspx) | […/_api/web/roleassignments(<principal id>)](https://msdn.microsoft.com/library/dn531432.aspx#RoleAssignment%20resource) |
7575
| **RoleAssignmentCollection** **SPRoleAssignmentCollection** | [SP.RoleAssignmentCollection object](https://msdn.microsoft.com/library/ec84c668-9eca-45e8-40ae-8d9ac283d3b1%28Office.15%29.aspx) | […/_api/web/roleassignments](https://msdn.microsoft.com/library/dn531432.aspx#RoleAssignmentCollection%20resource) |
76-
| **RoleDefinition** **SPRoleDefinition** | [SP.RoleDefinition object](https://msdn.microsoft.com/library/a7871c97-07d9-b63f-bdb8-6812adb82be8%28Office.15%29.aspx) | […/_api/web/roledefinitions(<role definition id>)](https://msdn.microsoft.com/library/dn531432.aspx#RoleDefinition%20resource) |
76+
| **RoleDefinition** **SPRoleDefinition** | [SP.RoleDefinition object](https://msdn.microsoft.com/library/a7871c97-07d9-b63f-bdb8-6812adb82be8%28Office.15%29.aspx) | […/_api/web/roledefinitions(<role definition id>)](https://msdn.microsoft.com/library/dn531432.aspx#RoleDefinition%20resource) |
7777
| **RoleType** **SPRoleType** | [SP.RoleType enumeration](https://msdn.microsoft.com/library/c2c0149f-6b90-9cd5-73d8-5ee3ab9c2ca9%28Office.15%29.aspx) | N/A |
7878
| **SecurableObject** **SPSecurableObject** | [SP.SecurableObject object](https://msdn.microsoft.com/library/6b9c310e-2a80-9bff-540b-28d54b37c841%28Office.15%29.aspx) | N/A |
7979
| **Site** **SPSite** | [SP.Site object](https://msdn.microsoft.com/library/d3169eb6-882f-180a-2159-34301f66746a%28Office.15%29.aspx) | `…/_api/site` |

0 commit comments

Comments
 (0)