Skip to content

Commit 983226e

Browse files
committed
Fixed ms.date property.
1 parent d6fabb8 commit 983226e

File tree

30 files changed

+36
-36
lines changed

30 files changed

+36
-36
lines changed

docs/general-development/how-to-make-custom-css-files-themable-in-sharepoint.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Make custom CSS files themable in SharePoint
33
description: Learn how to add comment-style markup to a CSS file so that it can be used in the SharePoint theming engine.
4-
ms.date: 06/21/2021
4+
ms.date: 06/13/2022
55
ms.prod: sharepoint
66
ms.assetid: b8c82c77-c836-47f9-a11e-6c9c656d436b
77
ms.localizationpriority: high
@@ -104,15 +104,15 @@ CSS files must be checked in and published. If CSS files are changed, you must r
104104

105105
## Register the CSS file
106106

107-
You must register the CSS file with a master page before the CSS file can be used by the theming engine. This directs the master page to the CSS file when you apply a theme to a site. To register a CSS file, you add a **&lt;SharePoint:CssRegistration&gt;** element to the **<head>** element of the master page. The following shows the format of the **&lt;SharePoint:CssRegistration&gt;** element.
107+
You must register the CSS file with a master page before the CSS file can be used by the theming engine. This directs the master page to the CSS file when you apply a theme to a site. To register a CSS file, you add a **\<SharePoint:CssRegistration\>** element to the **<head>** element of the master page. The following shows the format of the **\<SharePoint:CssRegistration\>** element.
108108

109109
```HTML
110110
<SharePoint:CssRegistration Name="CSSFileLocation" runat="server" />
111111
```
112112

113113
Replace _CSSFileLocation_ with the ___location of the CSS file.
114114

115-
The following is an example of an **&lt;SharePoint:CssRegistration&gt;** element.
115+
The following is an example of an **\<SharePoint:CssRegistration\>** element.
116116

117117
```HTML
118118
<head>

docs/general-development/how-to-resolve-errors-and-warnings-when-previewing-a-page-in-sharepoint.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Resolve errors and warnings when previewing a page in SharePoint
33
description: After you convert an HTML file into a SharePoint master page, or after you create a page layout, you can preview that page in the browser. But before you can preview a master page or page layout, you may have to resolve any issues that prevent the server-side preview from rendering your page.
4-
ms.date: 06/22/2021
4+
ms.date: 06/13/2022
55
ms.prod: sharepoint
66
ms.assetid: 03f72f65-b22b-4304-be92-f44ce0619372
77
ms.localizationpriority: high
@@ -28,7 +28,7 @@ Here are the preview errors and warnings that you might encounter, and help for
2828

2929
### Resolution
3030

31-
SharePoint pages are already wrapped in a **\<form\>** tag so that ASP.NET can do post-backs (specifically, a SharePoint.master page contains the **&lt;SharePoint:SharePointForm&gt;** tag that creates an actual **\<form\>** tag when an associated content page is rendered). So, including a **\<form\>** tag on your master page or page layout means that there would be nested **\<form\>** tags on the final rendering of the page, which is not valid in HTML. In your HTML editor, delete any **\<form\>** tags, save the page, and then refresh the preview.
31+
SharePoint pages are already wrapped in a **\<form\>** tag so that ASP.NET can do post-backs (specifically, a SharePoint.master page contains the **\<SharePoint:SharePointForm\>** tag that creates an actual **\<form\>** tag when an associated content page is rendered). So, including a **\<form\>** tag on your master page or page layout means that there would be nested **\<form\>** tags on the final rendering of the page, which is not valid in HTML. In your HTML editor, delete any **\<form\>** tags, save the page, and then refresh the preview.
3232

3333
If you want an HTML **\<form\>** tag in the page layout, you should put the form within a content placeholder with the ID **PlaceHolderUtilityContent** by adding this code to your HTML page layout:
3434

docs/general-development/how-to-store-and-retrieve-sharepoint-list-items-on-a-windows-phone.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Store and retrieve SharePoint list items on a Windows Phone
33
description: Learn about the Windows Phone application life cycle and storing network data locally.
4-
ms.date: 06/22/2021
4+
ms.date: 06/13/2022
55
ms.prod: sharepoint
66
ms.assetid: 14ca37a2-5b45-430d-9004-ff3016f89834
77
ms.localizationpriority: medium
@@ -189,7 +189,7 @@ For the procedures in this section, we assume you're working in the context of a
189189

190190
1. Save the file.
191191

192-
A specific instance of the **EditItemViewModel** class represents a SharePoint list item that is being edited on the phone. You can consider a list item that was edited as a "draft item" before changes to the item are saved to the server. In the code in this class, the **AddDraftItem** method adds a specific instance of the **EditItemViewModel** class (that is, a draft item) as a value to a **Dictionary** object, associating the **EditItemViewModel** in the **Dictionary** with a key based on the identifier for the given list item. (An identifier is assigned by SharePoint Server to each item in a list. In a project based on the Windows Phone SharePoint List Application template, that identifier is stored in the **ID** property of the given **ViewModel** class, such as **EditItemViewModel** or **DisplayItemViewModel**, which represents the list item.) The **RemoveDraftItem** method removes an **EditItemViewModel** from the **Dictionary** object based on a specified identifier. Both of these methods use the **GetDraftItemCollection** method to retrieve the **Dictionary** object containing the **EditItemViewModel** objects from isolated storage and both methods use the **SaveDrafts** method to save the modified **Dictionary** object (with a draft item either added to it or removed from it) back to isolated storage. The **GetDraftItemCollection** method first determines whether a "Drafts" **Dictionary** object has been saved to isolated storage. If so, the method returns that **Dictionary** object; otherwise, the method initializes and returns a new **Dictionary** object. The **Drafts** property of the class provides access to the **Dictionary** of draft items by returning a list (that is, an object based on the **List&lt;T&gt;** generic) of draft items as **EditItemViewModel** objects. The **GetDraftItemById** method returns a given draft item from the **Dictionary** object based on a specified identifier value.
192+
A specific instance of the **EditItemViewModel** class represents a SharePoint list item that is being edited on the phone. You can consider a list item that was edited as a "draft item" before changes to the item are saved to the server. In the code in this class, the **AddDraftItem** method adds a specific instance of the **EditItemViewModel** class (that is, a draft item) as a value to a **Dictionary** object, associating the **EditItemViewModel** in the **Dictionary** with a key based on the identifier for the given list item. (An identifier is assigned by SharePoint Server to each item in a list. In a project based on the Windows Phone SharePoint List Application template, that identifier is stored in the **ID** property of the given **ViewModel** class, such as **EditItemViewModel** or **DisplayItemViewModel**, which represents the list item.) The **RemoveDraftItem** method removes an **EditItemViewModel** from the **Dictionary** object based on a specified identifier. Both of these methods use the **GetDraftItemCollection** method to retrieve the **Dictionary** object containing the **EditItemViewModel** objects from isolated storage and both methods use the **SaveDrafts** method to save the modified **Dictionary** object (with a draft item either added to it or removed from it) back to isolated storage. The **GetDraftItemCollection** method first determines whether a "Drafts" **Dictionary** object has been saved to isolated storage. If so, the method returns that **Dictionary** object; otherwise, the method initializes and returns a new **Dictionary** object. The **Drafts** property of the class provides access to the **Dictionary** of draft items by returning a list (that is, an object based on the **List\<T\>** generic) of draft items as **EditItemViewModel** objects. The **GetDraftItemById** method returns a given draft item from the **Dictionary** object based on a specified identifier value.
193193

194194
Now you can add elements to the user interface of the phone app and configure them to use the **DraftItemStore** class for editing list items offline. In the following procedures, you will:
195195

@@ -662,7 +662,7 @@ Now you can add elements to the user interface of the phone app and configure th
662662

663663
The file is opened for editing in the designer.
664664

665-
1. In the XAML pane of the designer, add another button to the **&lt;shell:ApplicationBar&gt;** tag (in addition to the existing **New** and **Refresh** buttons), as shown in the following XAML markup.
665+
1. In the XAML pane of the designer, add another button to the **\<shell:ApplicationBar\>** tag (in addition to the existing **New** and **Refresh** buttons), as shown in the following XAML markup.
666666

667667
```xml
668668
<phone:PhoneApplicationPage.ApplicationBar>

docs/general-development/reference-threads-and-digest-threads-in-sharepoint-server-social-feeds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Reference threads and digest threads in SharePoint social feeds
33
description: Describes reference threads and digest threads, which may be included in the collection of threads that make up a social feed in SharePoint.
4-
ms.date: 09/25/2017
4+
ms.date: 06/13/2022
55
ms.prod: sharepoint
66
ms.assetid: 58e68fb2-ba40-4861-912f-355e119a1c41
77
ms.localizationpriority: medium

docs/general-development/resources-uri-for-excel-services-rest-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Resources URI for Excel Services REST API
33
description: Describes how to link directly to entities by using the REST API in Excel Services and provides a table of accessible resources in the REST API.
4-
ms.date: 09/25/2017
4+
ms.date: 06/13/2022
55
ms.prod: sharepoint
66
ms.assetid: 79f95305-ec9e-4842-b937-85f66ced98e4
77
ms.localizationpriority: medium

docs/general-development/retrieving-query-suggestions-using-the-search-rest-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Retrieving query suggestions using the Search REST service
33
description: Describes how to use the Search REST service to retrieve query suggestions from Search in SharePoint.
4-
ms.date: 09/25/2017
4+
ms.date: 06/13/2022
55
ms.prod: sharepoint
66
ms.assetid: a64c5bec-64a8-4752-9c72-433d1c864aed
77
ms.localizationpriority: high

docs/general-development/role-inheritance-elevation-of-privilege-and-password-changes-in-sharepoint.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Role, inheritance, elevation of privilege, and password changes in SharePoint
33
description: "A role consists of two parts: a role definition and a role assignment."
4-
ms.date: 09/25/2017
4+
ms.date: 06/13/2022
55
ms.prod: sharepoint
66
ms.localizationpriority: medium
77
---
@@ -77,7 +77,7 @@ If the user account is a membership user, SharePoint queries the ASP.NET **RoleM
7777

7878

7979

80-
If SharePoint can't obtain the user's group memberships from Active Directory or **&lt;roleManager&gt;**, the newly generated token contains only the user's unique security ID (SID). No exception is thrown, but an entry is written into the ULS server log. The new token is also written into the SharePoint database so that it will not be regenerated within 24 hours.
80+
If SharePoint can't obtain the user's group memberships from Active Directory or **\<roleManager\>**, the newly generated token contains only the user's unique security ID (SID). No exception is thrown, but an entry is written into the ULS server log. The new token is also written into the SharePoint database so that it will not be regenerated within 24 hours.
8181

8282

8383

docs/general-development/sample-delegation-federation-and-authentication-scenario-in-sharepoint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Sample delegation, federation, and authentication scenario in SharePoint
33
description: Provides sample scenarios for identity delegation, identity federation, and authentication in SharePoint.
4-
ms.date: 09/25/2017
4+
ms.date: 06/13/2022
55
ms.prod: sharepoint
66
ms.localizationpriority: medium
77
---

docs/general-development/sample-uri-for-excel-services-rest-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Sample URI For Excel Services REST API
33
description: Provides lists of sample URIs for the representational state transfer (REST) service commands in Excel Services.
4-
ms.date: 09/25/2017
4+
ms.date: 06/13/2022
55
ms.prod: sharepoint
66
ms.assetid: 4ebe1da2-9861-416f-bef1-4a62599efe2e
77
ms.localizationpriority: high

docs/general-development/search-connector-framework-in-sharepoint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Search connector framework in SharePoint
33
description: Describes the SharePoint indexing connectors and the connector framework, and how to create custom BCS indexing connectors to search external systems.
4-
ms.date: 09/25/2017
4+
ms.date: 06/13/2022
55
ms.prod: sharepoint
66
ms.assetid: 38560a3b-69c6-4a56-97ca-3625bbd5755e
77
ms.localizationpriority: high

0 commit comments

Comments
 (0)