Skip to content

Commit 1b2cbbd

Browse files
committed
Removed Absolute Links
1 parent 58a581c commit 1b2cbbd

13 files changed

+28
-21
lines changed

docs/solution-guidance/Add-a-custom-ribbon-to-your-SharePoint-site.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Add a custom ribbon to your SharePoint site
3-
ms.date: 11/03/2017
3+
description: Describes how to add a custom ribbon to your SharePoint site and outlines how to use the Core.RibbonCommands application.
4+
ms.date: 06/13/2022
45
ms.localizationpriority: high
56
---
67
# Add a custom ribbon to your SharePoint site

docs/solution-guidance/Connect-SharePoint-app-parts-by-using-SignalR.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Connect SharePoint app parts by using SignalR
3-
ms.date: 11/03/2017
3+
description: Describes how to Connect SharePoint app parts by using SignalR and outlines how to use the Core.ConnectedAppParts application.
4+
ms.date: 06/13/2022
45
ms.localizationpriority: medium
56
---
67
# Connect SharePoint app parts by using SignalR

docs/solution-guidance/Customize-your-SharePoint-site-UI-by-using-JavaScript.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Customize your SharePoint site UI by using JavaScript
3-
ms.date: 04/29/2019
3+
description: Describes how to customize your SharePoint site UI by using JavaScript and outlines how to use the Core.EmbedJavaScript application.
4+
ms.date: 06/13/2022
45
ms.localizationpriority: high
56
---
67
# Customize your SharePoint site UI by using JavaScript

docs/solution-guidance/Embedding-JavaScript-into-SharePoint.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Embedding JavaScript into SharePoint
3-
ms.date: 11/03/2017
3+
description: Describes how to embed JavaScript into SharePoint, outlines why using namespaces is important, how to use namespaces, and provides additional references.
4+
ms.date: 06/13/2022
45
ms.localizationpriority: medium
56
---
67
# Embedding JavaScript into SharePoint

docs/solution-guidance/Information-management-sample-app-for-SharePoint.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Information management sample SharePoint Add-in
33
description: As part of your Enterprise Content Management (ECM) strategy, you can get or set site policies to manage the lifecycle of your SharePoint site.
4-
ms.date: 5/2/2018
4+
ms.date: 06/13/2022
55
ms.localizationpriority: medium
66
---
77

@@ -22,7 +22,7 @@ To get started, download the [Core.InformationManagement](https://github.com/Sha
2222
> [!NOTE]
2323
> The code in this article is provided as-is, without warranty of any kind, either express or implied, including any implied warranties of fitness for a particular purpose, merchantability, or non-infringement.
2424
25-
We recommend that you create at least one site policy and assign it to your site before you run this add-in. Otherwise, the add-in will start without displaying sample data. For more information, see [Overview of site policies in SharePoint Server](https://docs.microsoft.com/SharePoint/sites/site-policy-overview).
25+
We recommend that you create at least one site policy and assign it to your site before you run this add-in. Otherwise, the add-in will start without displaying sample data. For more information, see [Overview of site policies in SharePoint Server](/SharePoint/sites/site-policy-overview).
2626

2727
## Using the Core.InformationManagement sample add-in
2828

docs/solution-guidance/authorize-provider-hosted-add-in-users-at-run-time-by-using-oauth.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Authorize provider-hosted add-in users at run time by using OAuth
3-
ms.date: 07/31/2020
3+
description: Describes how to authorize provider-hosted-add-in users at run time by using OAuth, outlines how to use the Core.DynamicPermissions add-in.
4+
ms.date: 06/13/2022
45
ms.localizationpriority: medium
56
---
67
# Authorize provider-hosted add-in users at run time by using OAuth
@@ -78,7 +79,7 @@ When choosing **Connect** on **Connect to Office 365**, **Connect** in Control
7879
**TokenRepository.Connect** calls **TokenHelper.GetAuthorizationUrl** . **TokenHelper.GetAuthorizationUrl** returns the redirect URL to OAuthAuthorize.aspx using the **hostUrl** and the desired permissions on the SharePoint resource. OAuthAuthorize.aspx is used to authorize users using OAuth. When redirected to OAuthAuthorize.aspx, the user must sign in to Office 365, and then consent to the permissions the add-in is requesting, or trust the add-in. The desired permission on the SharePoint resource is **Web.Manage** . After user authorization, the code sample creates lists on the SharePoint site. To create lists on a SharePoint site, users must have **Web.Manage** permissions.
7980

8081
> [!NOTE]
81-
> **TokenHelper.GetAuthorizationUrl** returns a URL of the form **https://contoso.sharepoint.com/_layouts/15/OAuthAuthorize.aspx?IsDlg=1&amp;client_id=<Client ID>&amp;scope=Web.Manage&amp;response_type=code** , where **&lt;Client ID&gt;** is the add-in's Client ID. If your add-in is registered through the Seller Dashboard, any Office 365 site can install the add-in. If your add-in is not registered through the Seller Dashboard, you must register your add-in by using appregnew.aspx, and then update Core.DynamicPermissionsWeb\web.config. To learn more, see[Register SharePoint Add-ins 2013](https://msdn.microsoft.com/library/be41a5dc-2af9-4fd9-bf4e-ad6dfa849524%28Office.15%29.aspx).
82+
> **TokenHelper.GetAuthorizationUrl** returns a URL of the form **https://contoso.sharepoint.com/_layouts/15/OAuthAuthorize.aspx?IsDlg=1&amp;client_id=\<Client ID\>&amp;scope=Web.Manage&amp;response_type=code**, where **\<Client ID\>** is the add-in's Client ID. If your add-in is registered through the Seller Dashboard, any Office 365 site can install the add-in. If your add-in is not registered through the Seller Dashboard, you must register your add-in by using appregnew.aspx, and then update Core.DynamicPermissionsWeb\web.config. To learn more, see[Register SharePoint Add-ins 2013](https://msdn.microsoft.com/library/be41a5dc-2af9-4fd9-bf4e-ad6dfa849524%28Office.15%29.aspx).
8283
8384
```csharp
8485
public void Connect(string hostUrl)

docs/solution-guidance/cross-___domain-images-in-sharepoint-provider-hosted-add-ins.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Cross-___domain images in SharePoint provider-hosted add-ins
3-
ms.date: 11/03/2017
3+
description: Describes how to use images across domains in provider-hosted add-ins as it applies to SharePoint 2013, SharePoint Add-ins, and SharePoint Online.
4+
ms.date: 06/13/2022
45
ms.localizationpriority: medium
56
---
67
# Cross-___domain images in SharePoint provider-hosted add-ins

docs/solution-guidance/custom-actions-sharepoint-add-in.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Custom actions in the SharePoint Add-in model
3-
ms.date: 05/20/2020
3+
description: Describes custom actions in the SharePoint Add-in model and provides high-level guidelines, related links, and PnP samples.
4+
ms.date: 06/13/2022
45
ms.localizationpriority: medium
56
---
67
# Custom actions in the SharePoint Add-in model

docs/solution-guidance/implement-a-sharepoint-site-classification-solution.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Implement a SharePoint site classification solution
33
description: Use the Core.SiteClassification sample to implement a site classification solution and use SharePoint site policies to enforce deletion.
4-
ms.date: 4/26/2018
4+
ms.date: 06/13/2022
55
ms.localizationpriority: high
66
---
77

@@ -25,7 +25,7 @@ To get started, download the [Core.SiteClassification](https://github.com/ShareP
2525

2626
Initially, you need to define and set the site policies that will be available in all your site collections. The Core.SiteClassification sample applies to SharePoint Online MT, but can be used as well in SharePoint Online Dedicated or SharePoint on-premises. Site polices are set in the Content Type Hub, which in SharePoint Online MT is located at `https://[tenantname]/sites/contentTypeHub`.
2727

28-
To set site policies, go to **Settings** > **Site Collection Administration** > **Site Policies** > **Create**. The **New Site Policy** page appears. For more information about site policy options, see [Overview of site policies in SharePoint Server](https://docs.microsoft.com/SharePoint/sites/site-policy-overview).
28+
To set site policies, go to **Settings** > **Site Collection Administration** > **Site Policies** > **Create**. The **New Site Policy** page appears. For more information about site policy options, see [Overview of site policies in SharePoint Server](/SharePoint/sites/site-policy-overview).
2929

3030
On the **New Site Policy** page, enter the following information in the fields:
3131

docs/solution-guidance/modern-experience-customizations-customize-sites.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Customizing "modern" team sites
33
description: Apply a custom theme to a "modern" team site in SharePoint Online.
4-
ms.date: 02/21/2021
4+
ms.date: 06/13/2022
55
ms.localizationpriority: high
66
---
77

@@ -52,7 +52,7 @@ In numerous areas on the "modern" team sites, the typical customizations are not
5252
- Changing "modern" site to use "classic" seattle.master or oslo.master.
5353
- Custom page layouts; we are looking to have support for multiple canvases in the future.
5454
- Enabling site or site collection scoped publishing features; technically, features can be currently activated, but this is not a supported configuration.
55-
- User custom actions / custom JavaScript; there will be a more controlled way to embed JavaScript on the pages through [SharePoint Framework Extensions](https://docs.microsoft.com/sharepoint/dev/spfx/extensions/overview-extensions).
55+
- User custom actions / custom JavaScript; there will be a more controlled way to embed JavaScript on the pages through [SharePoint Framework Extensions](/sharepoint/dev/spfx/extensions/overview-extensions).
5656
- "Modern" subsites; subsites created on "modern" team sites use the "classic" experience, but you can change the user experience to be similar to "modern" sites.
5757
- Ability to control available subsite template options.
5858
- Activation of community feature or creation of community subsites under "modern" team site.
@@ -96,7 +96,7 @@ The following elements are ignored when a remote template is applied to a "moder
9696
## Apply a custom theme to a "modern" team site
9797

9898
> [!NOTE]
99-
> The following method was written before **Tenant Themes** came out, to read about the new way of theming "modern" read [SharePoint site theming](https://docs.microsoft.com/sharepoint/dev/declarative-customization/site-theming/sharepoint-site-theming-overview)
99+
> The following method was written before **Tenant Themes** came out, to read about the new way of theming "modern" read [SharePoint site theming](/sharepoint/dev/declarative-customization/site-theming/sharepoint-site-theming-overview)
100100
101101
"Modern" team sites support custom themes even though you cannot upload a new gallery entry for end users. This can be achieved by uploading the needed assets to the site and then executing the **ApplyTheme** method. The following PowerShell script shows how to perform this for a "modern" team site.
102102

0 commit comments

Comments
 (0)