Skip to content

Linda editor patch 1 #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 27 commits into from
Oct 20, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
e4f121a
Simple text correction on line 68 (#940)
byrongits Oct 18, 2017
25f596a
Adding notes on the SPFx extension support
VesaJuvonen Oct 18, 2017
932de73
making examples consistent in search rest api overview (#942)
mozillalives Oct 18, 2017
88d80b4
Edit complete (#947)
Linda-Editor Oct 18, 2017
90620b4
Edit complete. (#948)
Linda-Editor Oct 18, 2017
cf3822e
Edit complete (#949)
Linda-Editor Oct 18, 2017
e97f4c0
Edit complete (#952)
Linda-Editor Oct 18, 2017
7e519cd
Update tenant-properties.md (#950)
ypcode Oct 18, 2017
1a90930
Updated team-based development guidance (#954)
waldekmastykarz Oct 18, 2017
e18cc51
Updated guidance on SPFx development for SP2016 FP2 (#955)
waldekmastykarz Oct 18, 2017
d68d6cf
Updated the GraphHttpClient guidance (#956)
waldekmastykarz Oct 18, 2017
21af958
Update column-formatting.md
jmaznerMSFT Oct 18, 2017
d67650e
Merge pull request #963 from jmaznerMSFT/patch-1
Lauragra Oct 18, 2017
f851bab
Doc updates for tenant properties
chakkaradeep Oct 19, 2017
ee45f8c
Updated enterprise guidance (#957)
waldekmastykarz Oct 20, 2017
caa35d7
Updated the development environment setup guide (#958)
waldekmastykarz Oct 20, 2017
0a39da6
Added npm shrinkwrap to all tutorials (#960)
waldekmastykarz Oct 20, 2017
c2c712f
moved Query Para details to its own section (#966)
Linda-Editor Oct 20, 2017
6f84578
Moved Query Para details to own section (#967)
Linda-Editor Oct 20, 2017
b78c5c3
Update column-formatting.md (#973)
ldemaris Oct 20, 2017
bae0710
Updated the guidance on updating SharePoint Framework packages (#970)
waldekmastykarz Oct 20, 2017
9c45812
Update building-simple-field-customizer.md (#971)
aaronmi Oct 20, 2017
76e3fc8
Fixed red table?
Linda-Editor Oct 20, 2017
2cf5580
Orange and green
Linda-Editor Oct 20, 2017
d7396b9
Attempt to fix tables
Linda-Editor Oct 20, 2017
279acb3
Tweaked spacing
Linda-Editor Oct 20, 2017
43f6288
Updating to create pull request
Linda-Editor Oct 20, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions docs/apis/communication-site-creation-rest.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

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

> [!NOTE]
> 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.

## Prerequisites

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.
Expand Down
11 changes: 5 additions & 6 deletions docs/declarative-customization/column-formatting.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,7 @@ The following image shows an example of conditional formatting applied to a numb

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

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).
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.
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.

```JSON
{
Expand All @@ -86,7 +85,7 @@ Note: this example uses a binary operation with the less than operator, "<", nes
"operator": "?",
"operands": [
{
"operator": "<",
"operator": "<=",
"operands": [
"@currentField",
70
Expand Down Expand Up @@ -433,7 +432,7 @@ You can use column formatting to render quick action links next to fields. The f
"@currentField.email",
"?subject=Task status&body=Hey, how is your task coming along?.\r\n---\r\n",
"@currentField.title",
"\r\nClick this link for more info. https://msft.spoppe.com/sites/LincolnsFunHouse2/Lists/Conference%20Prep/DispForm.aspx?ID=",
"\r\nClick this link for more info. http://contoso.sharepoint.com/sites/ConferencePrep/Tasks/Prep/DispForm.aspx?ID=",
"[$ID]"
]
}
Expand Down Expand Up @@ -901,7 +900,7 @@ Operators specify the type of operation to perform. The following operators are
- Date()
- cos
- sin
- :
- ?

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

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

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

- :
- ?

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.

Expand Down
264 changes: 255 additions & 9 deletions docs/design/themes-colors.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ In ASP.NET membership and role passive sign-in, the sign-in happens by redirecti



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



Expand Down
10 changes: 5 additions & 5 deletions docs/general-development/sharepoint-search-rest-api-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ http:// _server_/_api/search/query?querytext='sharepoint'&amp;hiddenconstraints=
{
'__metadata':{'type':'Microsoft.Office.Server.Search.REST.SearchRequest'},
'Querytext':'sharepoint',
'HiddenConstraints'='developer'
'HiddenConstraints':'developer'
}
```

Expand Down Expand Up @@ -649,7 +649,7 @@ http:// _server_/_api/search/query?querytext='sharepoint'&amp;trimduplicates=fal
{
'__metadata':{'type':'Microsoft.Office.Server.Search.REST.SearchRequest'},
'Querytext':'sharepoint',
'TrimDuplicates'='False'
'TrimDuplicates':'False'
}
```

Expand Down Expand Up @@ -681,7 +681,7 @@ http:// _server_/_api/search/query?querytext='sharepoint'&amp;timeout=60000
{
'__metadata':{'type':'Microsoft.Office.Server.Search.REST.SearchRequest'},
'Querytext':'sharepoint',
'Timeout'='60000'
'Timeout':'60000'
}
```

Expand Down Expand Up @@ -717,7 +717,7 @@ http:// _server_/_api/search/query?querytext='sharepoint'&amp;enablenicknames=tr
{
'__metadata':{'type':'Microsoft.Office.Server.Search.REST.SearchRequest'},
'Querytext':'sharepoint',
'EnableNicknames'='True'
'EnableNicknames':'True'
}
```

Expand Down Expand Up @@ -753,7 +753,7 @@ http:// _server_/_api/search/query?querytext='sharepoint'&amp;enablephonetic=tru
{
'__metadata':{'type':'Microsoft.Office.Server.Search.REST.SearchRequest'},
'Querytext':'sharepoint',
'EnablePhonetic'='True'
'EnablePhonetic':'True'
}
```

Expand Down
Loading