Skip to content

Commit

Permalink
Push live (#259)
Browse files Browse the repository at this point in the history
* Update host-config.md (#248)

* Update host-config.md

* updated native styling information for ios

* Update host-config.md (#248) (#249)

* Update host-config.md

* updated native styling information for ios

Co-authored-by: shalinijoshi19 <[email protected]>

* Fix typo

Fixes #242

* Webex Team now supports 1.2. (#258)

Hi, I am the engineering manager who manages buttons & cards for webex teams. We are now support 1.2 with certain exceptions.

* Update partners.md

* Fix typo (#257)

* Update service.md (#252)

* Update service.md

* Update partners.md

* Update render-a-card.md (#239)

Fixed a typo

* Update partners.md

Co-authored-by: Joseph Woo <[email protected]>
Co-authored-by: shalinijoshi19 <[email protected]>
Co-authored-by: urangasa <[email protected]>
Co-authored-by: Chris Whitten <[email protected]>
Co-authored-by: Mark McGee <[email protected]>
Co-authored-by: Haldun Bayhantopcu <[email protected]>
  • Loading branch information
7 people authored Feb 18, 2020
1 parent 1e18c5d commit e6418d6
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions AdaptiveCards/resources/partners.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ If you are interested in joining the Adaptive Cards ecosystem, please [reach out

Platform | Description | Documentation | Version
---------|-------------|---------------|---------
[Bot Framework Web Chat](https://github.com/Microsoft/BotFramework-WebChat) | Embeddable web chat control for the Microsoft Bot Framework | [Get Started](https://docs.microsoft.com/adaptive-cards/get-started/bots) | 1.2 (Web Chat 4.6)
[Bot Framework Web Chat](https://github.com/Microsoft/BotFramework-WebChat) | Embeddable web chat control for the Microsoft Bot Framework | [Get Started](https://docs.microsoft.com/adaptive-cards/get-started/bots) | 1.2.3 (Web Chat 4.7.1)
[Outlook Actionable Messages](https://docs.microsoft.com/outlook/actionable-messages/) | Attach an actionable message to email | [Get Started](https://docs.microsoft.com/outlook/actionable-messages/) | 1.0
[Microsoft Teams](https://products.office.com/microsoft-teams/group-chat-software) | Platform that combines workplace chat, meetings, and notes | [Get Started](https://docs.microsoft.com/microsoftteams/platform/concepts/cards/cards-reference#adaptive-card) | 1.2
[Cortana Skills](https://docs.microsoft.com/cortana/skills/adaptive-cards) | A virtual assistant for Windows 10 | [Get Started](https://docs.microsoft.com/adaptive-cards/get-started/bots) | 1.0
[Windows Timeline](https://blogs.windows.com/windowsexperience/2017/12/19/announcing-windows-10-insider-preview-build-17063-pc/) | A new way to resume past activities you started on this PC, other Windows PCs, and iOS/Android devices. | [Get Started](https://docs.microsoft.com/adaptive-cards/get-started/windows) | 1.0
[Outlook Actionable Messages](https://docs.microsoft.com/outlook/actionable-messages/) | Attach an actionable message to email | [Get Started](https://docs.microsoft.com/outlook/actionable-messages/) | 1.0
[Microsoft Teams](https://products.office.com/microsoft-teams/group-chat-software) | Platform that combines workplace chat, meetings, and notes | [Get Started](https://docs.microsoft.com/microsoftteams/platform/concepts/cards/cards-reference#adaptive-card) | 1.0
[Cisco WebEx Teams](https://www.webex.com/team-collaboration.html) | Webex Teams helps speed up projects, build better relationships, and solve business challenges. | [Get Started](https://developer.webex.com/docs/api/guides/cards) | 1.1
[Cisco WebEx Teams](https://www.webex.com/team-collaboration.html) | Webex Teams helps speed up projects, build better relationships, and solve business challenges. | [Get Started](https://developer.webex.com/docs/api/guides/cards) | 1.2
2 changes: 1 addition & 1 deletion AdaptiveCards/sdk/rendering-cards/ios/render-a-card.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ ViewController.m
```swift
--------------------------------------------------------------------------------
ViewController.swft
ViewController.swift
--------------------------------------------------------------------------------
import UIKit
Expand Down
2 changes: 1 addition & 1 deletion AdaptiveCards/templating/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Templating enables the separation of **data** from the **layout** in an Adaptive

Today it's impossible to create a card using the [Adaptive Card Designer](https://adaptivecards.io/designer) and use that JSON to populate the payload with **dynamic content**. In order to achieve this you must write custom code to build a JSON string, or use the Object Model SDKs to build an OM representing your card and serialize it to JSON. In either case the Designer is a one-time one-way operation and doesn't make it easy to tweak the card design later once you've converted it to code.

### It makes tranmissions over the wire smaller
### It makes transmissions over the wire smaller

Imagine a world where a template and data can be combined **directly on the client**. This means if you use the same template multiple times, or want to update it with new data, you just need to send new data to the device and it can re-use the same template over and over.

Expand Down
2 changes: 1 addition & 1 deletion AdaptiveCards/templating/language.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Alternatively (and more likely), you will create a re-usable card "template" wit

```json
{
"type": "AdaptivCard",
"type": "AdaptiveCard",
"body": [
{
"type": "TextBlock",
Expand Down
8 changes: 4 additions & 4 deletions AdaptiveCards/templating/service.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ This endpoint tries to find a template by analyzing the structure of your data.

#### Example

Let's say I just hit a [Microsoft Graph](https://graph.microsoft.com) endpoint to get organizational data about me.
Let's say I access a [Microsoft Graph](https://graph.microsoft.com) endpoint to get organizational data about me.

> `HTTP GET https://graph.microsoft.com/v1.0/me/`

Expand Down Expand Up @@ -217,14 +217,14 @@ Notice how the response replaced the text of the first `TextBlock` with `"Megan

## Contributing templates

The template service is backed by a GitHub repo (which is currently **private**), but we will open source once we tie up some loose ends.
The templates are hosted on GitHub in the [adaptivecards-templates](https://github.com/microsoft/adaptivecards-templates) repo.

Our hope is that by using GitHub as a backing store for the templates, we can "democratize" the process of authoring, enhancing, and sharing templates. Anyone can submit a Pull Request that includes an entirely new template, or make enhancements to existing ones... all within the developer-friendly experience of GitHub.

## Self-hosting the service

Not all types of data are appropriate for the "central" Adaptive Cards template service hosted at `https://templates.adaptivecards.io`.

We want to make sure anyone can host the template service within your organization, so the source code will be made available and we'll make it very simple to deploy to Azure or your own back-end.
We want to make sure anyone can host the template service within your organization, so the source code is available on GitHub and can be easily deployed to your own Azure Function.

More on this at a later date.
Get started here ➡ [adaptivecards-templates](https://github.com/microsoft/adaptivecards-templates)

0 comments on commit e6418d6

Please sign in to comment.