Skip to content

Commit

Permalink
README links updated
Browse files Browse the repository at this point in the history
  • Loading branch information
pcostantini committed Sep 22, 2016
1 parent 9e64bd5 commit 1479a4e
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion Node/cards-CarouselCards/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ To get more information about how to get started in Bot Builder for Node and Att
* [Message.attachments](https://docs.botframework.com/en-us/node/builder/chat-reference/classes/_botbuilder_d_.message.html#attachments)
* [Message.attachmentLayout](https://docs.botframework.com/en-us/node/builder/chat-reference/classes/_botbuilder_d_.message.html#attachmentlayout)
* [AttachmentLayout](https://docs.botframework.com/en-us/node/builder/chat-reference/modules/_botbuilder_d_.html#attachmentlayout)
* [RichCards sample](../RichCards)
* [RichCards sample](../cards-RichCards)
10 changes: 5 additions & 5 deletions Node/demo-ContosoFlowers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ orderService.retrieveOrder(orderId).then((order) => {
|----------|-------|----------|
|![Rich Cards - Receipt Card](images/richcards-receiptcard-emulator.png)|![Rich Cards - Receipt Card](images/richcards-receiptcard-facebook.png)|![Rich Cards - Receipt Card](images/richcards-receiptcard-skype.png)|

> You can also see a full sample explaining the different types of rich cards in the [Rich Cards Bot Sample](../RichCards).
> You can also see a full sample explaining the different types of rich cards in the [Rich Cards Bot Sample](../cards-RichCards).
#### Carousel of Cards

Expand Down Expand Up @@ -302,7 +302,7 @@ bot.dialog('/', [
|----------|-------|----------|
|![Carousel of Cards](images/carousel-cards-emulator.png)|![Carousel of Cards](images/carousel-cards-facebook.png)|![Carousel of Cards](images/carousel-cards-skype.png)|

> You can also see a full sample bot sending multiple rich card attachments in a single message using the Carousel layout in the [Carousel of Cards Bot Sample](../CarouselCards).
> You can also see a full sample bot sending multiple rich card attachments in a single message using the Carousel layout in the [Carousel of Cards Bot Sample](../cards-CarouselCards).
#### Complex Forms

Expand Down Expand Up @@ -391,7 +391,7 @@ switch (option) {
|----------|-------|----------|
|![State SettingsDialog](images/state-settingsdialog-emulator.png)|![State SettingsDialog](images/state-settingsdialog-facebook.png)|![State SettingsDialog](images/state-settingsdialog-skype.png)|

> You can also see a full sample bot tracking context of a conversation in the [State API Bot Sample](../State).
> You can also see a full sample bot tracking context of a conversation in the [State API Bot Sample](../core-State).
The [shop dialog](bot/dialogs/shop.js) on the other hand, shows how to use `dialogData` to store information about the order and details, within the dialog instance, and then use it in the last step to trigger the checkout process.

Expand Down Expand Up @@ -527,11 +527,11 @@ While not covered in this sample, it is important to highlight two features that

If you want to be able to take advantage of special features or concepts for a channel we provide a way for you to send native metadata to that channel giving you much deeper control over how your bot interacts on a channel. The way you do this is to pass extra properties via the [sourceEvent method](https://docs.botframework.com/en-us/node/builder/chat-reference/classes/_botbuilder_d_.message.html#sourceevent).

> You can also see a full sample bot sending native metadata to Facebook using ChannelData in the [ChannelData Bot Sample](../ChannelData).
> You can also see a full sample bot sending native metadata to Facebook using ChannelData in the [ChannelData Bot Sample](../core-ChannelData).
One of the key problems in human-computer interactions is the ability of the computer to understand what a person wants, and to find the pieces of information that are relevant to their intent. In the LUIS application, you will bundle together the intents and entities that are important to your task.

> You can also see a full sample bot using LuisDialog to integrate with a LUIS.ai application in the [LUIS Bot Sample](../LUIS).
> You can also see a full sample bot using LuisDialog to integrate with a LUIS.ai application in the [LUIS Bot Sample](../intelligence-LUIS).
#### Localization

Expand Down
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ Welcome to the BotBuilder samples repository. Here you will find task-focused sa

Name | Description | C# | Node
------------ | ------------- | :-----------: | :-----------:
Send Attachment | A sample bot that passes simple media attachments (images) to a user activity. | [View Sample](/CSharp/SendAttachment)[![Deploy to Azure][Deploy Button]][Deploy CSharp/SendAttachment] | [View Sample](/Node/SendAttachment)[![Deploy to Azure][Deploy Button]][Deploy Node/SendAttachment]
Receive Attachment | A sample bot that receives attachments sent by the user and downloads them. | [View Sample](/CSharp/ReceiveAttachment)[![Deploy to Azure][Deploy Button]][Deploy CSharp/ReceiveAttachment] | [View Sample](/Node/ReceiveAttachment)[![Deploy to Azure][Deploy Button]][Deploy Node/ReceiveAttachment]
Rich Cards | A sample bot to renders several types of cards as attachments. | [View Sample](/CSharp/RichCards)[![Deploy to Azure][Deploy Button]][Deploy CSharp/RichCards] | [View Sample](/Node/RichCards)[![Deploy to Azure][Deploy Button]][Deploy Node/RichCards]
Carousel of Cards | A sample bot that sends multiple rich card attachments in a single message using the Carousel layout. | [View Sample](/CSharp/CarouselCards)[![Deploy to Azure][Deploy Button]][Deploy CSharp/CarouselCards] | [View Sample](/Node/CarouselCards)[![Deploy to Azure][Deploy Button]][Deploy Node/CarouselCards]
Create New Conversation | A sample bot that starts a new conversation using a previously stored user address. | [View Sample](/CSharp/CreateNewConversation)[![Deploy to Azure][Deploy Button]][Deploy CSharp/CreateNewConversation] | [View Sample](/Node/CreateNewConversation)[![Deploy to Azure][Deploy Button]][Deploy Node/CreateNewConversation]
Get Members of a Conversation | A sample bot that retrieves the conversation's members list and detects when it changes. | [View Sample](/CSharp/GetConversationMembers)[![Deploy to Azure][Deploy Button]][Deploy CSharp/GetConversationMembers] | [View Sample](/Node/GetConversationMembers)[![Deploy to Azure][Deploy Button]][Deploy Node/GetConversationMembers]
Direct Line | A sample bot and a custom client communicating to each other using the Direct Line API. | [View Sample](/CSharp/DirectLine)[![Deploy to Azure][Deploy Button]][Deploy CSharp/DirectLine] | [View Sample](/Node/DirectLine)[![Deploy to Azure][Deploy Button]][Deploy Node/DirectLine]
Multi Dialogs | A sample bot showing different kind of dialogs. | [View Sample](/CSharp/MultiDialogs)[![Deploy to Azure][Deploy Button]][Deploy CSharp/MultiDialogs] | [View Sample](/Node/MultiDialogs)[![Deploy to Azure][Deploy Button]][Deploy Node/MultiDialogs]
State API | A stateless sample bot tracking context of a conversation. | [View Sample](/CSharp/State)[![Deploy to Azure][Deploy Button]][Deploy CSharp/State] | [View Sample](/Node/State)[![Deploy to Azure][Deploy Button]][Deploy Node/State]
LUIS | A sample bot using LuisDialog to integrate with a LUIS.ai application. | [View Sample](/CSharp/LUIS)[![Deploy to Azure][Deploy Button]][Deploy CSharp/LUIS] | [View Sample](/Node/LUIS)[![Deploy to Azure][Deploy Button]][Deploy Node/LUIS]
ChannelData | A sample bot sending native metadata to Facebook using ChannelData. | [View Sample](/CSharp/ChannelData)[![Deploy to Azure][Deploy Button]][Deploy CSharp/ChannelData] | [View Sample](/Node/ChannelData)[![Deploy to Azure][Deploy Button]][Deploy Node/ChannelData]
Contoso Flowers | A reference implementation using many features from BotFramework. | [View Sample](/CSharp/ContosoFlowers)[![Deploy to Azure][Deploy Button]][Deploy CSharp/ContosoFlowers] | [View Sample](/Node/ContosoFlowers)[![Deploy to Azure][Deploy Button]][Deploy Node/ContosoFlowers]
Azure Search | Two sample bots that help the user navigate large amounts of content. | [View Samples](/CSharp/Search) | [View Samples](/Node/Search)
Send Attachment | A sample bot that passes simple media attachments (images) to a user activity. | [View Sample](/CSharp/SendAttachment)[![Deploy to Azure][Deploy Button]][Deploy CSharp/SendAttachment] | [View Sample](/Node/core-SendAttachment)[![Deploy to Azure][Deploy Button]][Deploy Node/SendAttachment]
Receive Attachment | A sample bot that receives attachments sent by the user and downloads them. | [View Sample](/CSharp/ReceiveAttachment)[![Deploy to Azure][Deploy Button]][Deploy CSharp/ReceiveAttachment] | [View Sample](/Node/core-ReceiveAttachment)[![Deploy to Azure][Deploy Button]][Deploy Node/ReceiveAttachment]
Rich Cards | A sample bot to renders several types of cards as attachments. | [View Sample](/CSharp/RichCards)[![Deploy to Azure][Deploy Button]][Deploy CSharp/RichCards] | [View Sample](/Node/cards-RichCards)[![Deploy to Azure][Deploy Button]][Deploy Node/RichCards]
Carousel of Cards | A sample bot that sends multiple rich card attachments in a single message using the Carousel layout. | [View Sample](/CSharp/CarouselCards)[![Deploy to Azure][Deploy Button]][Deploy CSharp/CarouselCards] | [View Sample](/Node/cards-CarouselCards)[![Deploy to Azure][Deploy Button]][Deploy Node/CarouselCards]
Create New Conversation | A sample bot that starts a new conversation using a previously stored user address. | [View Sample](/CSharp/CreateNewConversation)[![Deploy to Azure][Deploy Button]][Deploy CSharp/CreateNewConversation] | [View Sample](/Node/core-CreateNewConversation)[![Deploy to Azure][Deploy Button]][Deploy Node/CreateNewConversation]
Get Members of a Conversation | A sample bot that retrieves the conversation's members list and detects when it changes. | [View Sample](/CSharp/GetConversationMembers)[![Deploy to Azure][Deploy Button]][Deploy CSharp/GetConversationMembers] | [View Sample](/Node/core-GetConversationMembers)[![Deploy to Azure][Deploy Button]][Deploy Node/GetConversationMembers]
Direct Line | A sample bot and a custom client communicating to each other using the Direct Line API. | [View Sample](/CSharp/DirectLine)[![Deploy to Azure][Deploy Button]][Deploy CSharp/DirectLine] | [View Sample](/Node/core-DirectLine)[![Deploy to Azure][Deploy Button]][Deploy Node/DirectLine]
Multi Dialogs | A sample bot showing different kind of dialogs. | [View Sample](/CSharp/MultiDialogs)[![Deploy to Azure][Deploy Button]][Deploy CSharp/MultiDialogs] | [View Sample](/Node/core-MultiDialogs)[![Deploy to Azure][Deploy Button]][Deploy Node/MultiDialogs]
State API | A stateless sample bot tracking context of a conversation. | [View Sample](/CSharp/State)[![Deploy to Azure][Deploy Button]][Deploy CSharp/State] | [View Sample](/Node/core-State)[![Deploy to Azure][Deploy Button]][Deploy Node/State]
LUIS | A sample bot using LuisDialog to integrate with a LUIS.ai application. | [View Sample](/CSharp/LUIS)[![Deploy to Azure][Deploy Button]][Deploy CSharp/LUIS] | [View Sample](/Node/intelligence-LUIS)[![Deploy to Azure][Deploy Button]][Deploy Node/LUIS]
ChannelData | A sample bot sending native metadata to Facebook using ChannelData. | [View Sample](/CSharp/ChannelData)[![Deploy to Azure][Deploy Button]][Deploy CSharp/ChannelData] | [View Sample](/Node/core-ChannelData)[![Deploy to Azure][Deploy Button]][Deploy Node/ChannelData]
Contoso Flowers | A reference implementation using many features from BotFramework. | [View Sample](/CSharp/ContosoFlowers)[![Deploy to Azure][Deploy Button]][Deploy CSharp/ContosoFlowers] | [View Sample](/Node/demo-ContosoFlowers)[![Deploy to Azure][Deploy Button]][Deploy Node/ContosoFlowers]
Azure Search | Two sample bots that help the user navigate large amounts of content. | [View Samples](/CSharp/Search) | [View Samples](/Node/demo-Search)

[Deploy Button]: https://azuredeploy.net/deploybutton.png
[Deploy CSharp/SendAttachment]: https://azuredeploy.net?ptmpl=CSharp/SendAttachment/azuredeploy.json
Expand Down

0 comments on commit 1479a4e

Please sign in to comment.