Skip to content

Commit 83664e8

Browse files
authored
Merge pull request #2 from Linda-Editor/Linda-Editor-patch-1
Linda editor patch 1
2 parents 28462a3 + 43f6288 commit 83664e8

File tree

37 files changed

+1091
-691
lines changed

37 files changed

+1091
-691
lines changed

docs/apis/communication-site-creation-rest.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
Learn how to create and get the status of a new modern SharePoint Communication site with the REST interface.
44

5-
> [!NOTE]
6-
> There is a known bug with this API which is blocking completely this behavior. Fix will be rolling gradually to SharePoint Online by end of October 2017.
7-
85
## Prerequisites
96

107
This topic assumes that you are already familiar with the topics Get to know the SharePoint REST service and Complete basic operations using SharePoint REST endpoints. It does not provide code snippets.

docs/declarative-customization/column-formatting.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,7 @@ The following image shows an example of conditional formatting applied to a numb
7474

7575
![Severity warning of 70 with orange background](../images/sp-columnformatting-conditionalbasic.png)
7676

77-
This example customizes a number field to color that field red when its value less than 70. This example adds a style attribute to the parent `<div />` element, specifies a CSS class (`sp-field-severity--warning`) to apply to that item if the value inside the field is less than 70, and specifies no color if the value is outside that range (in which case it will use the default color for values in that list view).
78-
Note: this example uses a binary operation with the less than operator, "<", nested inside the conditional operation indicated by the operator, "?". Another description of the section in the following example is: If @currentField < 70 Then class = sp-field-severity--warning.
77+
This example uses the conditional operator `?` to apply a class (`sp-field-severity--warning`) to the parent `<div />` element when the value in the current field is less than or equal to 70. This causes the field to be highlighted when the value is less than or equal to 70, and appear normally if it's greater than 70.
7978

8079
```JSON
8180
{
@@ -86,7 +85,7 @@ Note: this example uses a binary operation with the less than operator, "<", nes
8685
"operator": "?",
8786
"operands": [
8887
{
89-
"operator": "<",
88+
"operator": "<=",
9089
"operands": [
9190
"@currentField",
9291
70
@@ -433,7 +432,7 @@ You can use column formatting to render quick action links next to fields. The f
433432
"@currentField.email",
434433
"?subject=Task status&body=Hey, how is your task coming along?.\r\n---\r\n",
435434
"@currentField.title",
436-
"\r\nClick this link for more info. https://msft.spoppe.com/sites/LincolnsFunHouse2/Lists/Conference%20Prep/DispForm.aspx?ID=",
435+
"\r\nClick this link for more info. http://contoso.sharepoint.com/sites/ConferencePrep/Tasks/Prep/DispForm.aspx?ID=",
437436
"[$ID]"
438437
]
439438
}
@@ -901,7 +900,7 @@ Operators specify the type of operation to perform. The following operators are
901900
- Date()
902901
- cos
903902
- sin
904-
- :
903+
- ?
905904

906905
**Binary operators** - The following are the standard arithmetic binary operators that expect two operands:
907906

@@ -924,7 +923,7 @@ Operators specify the type of operation to perform. The following operators are
924923

925924
**Conditional operator** - The conditional operator is:
926925

927-
- :
926+
- ?
928927

929928
This is to achieve an expression equivalent to a ? b : c, where if the expression a evaluates to true, then the result is b, else the result is c.
930929

docs/design/themes-colors.md

Lines changed: 255 additions & 9 deletions
Large diffs are not rendered by default.

docs/general-development/incoming-claims-signing-into-sharepoint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ In ASP.NET membership and role passive sign-in, the sign-in happens by redirecti
6565

6666

6767

68-
SharePoint Serverthen does claims augmentation. Win32 clients must support the forms-based authentication that is implemented in Office clients.
68+
SharePoint Server then does claims augmentation. Win32 clients must support the forms-based authentication that is implemented in Office clients.
6969

7070

7171

docs/general-development/sharepoint-search-rest-api-overview.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ http:// _server_/_api/search/query?querytext='sharepoint'&amp;hiddenconstraints=
533533
{
534534
'__metadata':{'type':'Microsoft.Office.Server.Search.REST.SearchRequest'},
535535
'Querytext':'sharepoint',
536-
'HiddenConstraints'='developer'
536+
'HiddenConstraints':'developer'
537537
}
538538
```
539539

@@ -649,7 +649,7 @@ http:// _server_/_api/search/query?querytext='sharepoint'&amp;trimduplicates=fal
649649
{
650650
'__metadata':{'type':'Microsoft.Office.Server.Search.REST.SearchRequest'},
651651
'Querytext':'sharepoint',
652-
'TrimDuplicates'='False'
652+
'TrimDuplicates':'False'
653653
}
654654
```
655655

@@ -681,7 +681,7 @@ http:// _server_/_api/search/query?querytext='sharepoint'&amp;timeout=60000
681681
{
682682
'__metadata':{'type':'Microsoft.Office.Server.Search.REST.SearchRequest'},
683683
'Querytext':'sharepoint',
684-
'Timeout'='60000'
684+
'Timeout':'60000'
685685
}
686686
```
687687

@@ -717,7 +717,7 @@ http:// _server_/_api/search/query?querytext='sharepoint'&amp;enablenicknames=tr
717717
{
718718
'__metadata':{'type':'Microsoft.Office.Server.Search.REST.SearchRequest'},
719719
'Querytext':'sharepoint',
720-
'EnableNicknames'='True'
720+
'EnableNicknames':'True'
721721
}
722722
```
723723

@@ -753,7 +753,7 @@ http:// _server_/_api/search/query?querytext='sharepoint'&amp;enablephonetic=tru
753753
{
754754
'__metadata':{'type':'Microsoft.Office.Server.Search.REST.SearchRequest'},
755755
'Querytext':'sharepoint',
756-
'EnablePhonetic'='True'
756+
'EnablePhonetic':'True'
757757
}
758758
```
759759

0 commit comments

Comments
 (0)