Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ Every new feature or fix should embed its unit test(s).

## More...

More about [sources and contrib](http://doc.tock.ai/tock/en/about/contribute/).
More about [sources and contrib](https://doc.tock.ai/tock/master/about/contribute.html).

Feel free to [contact us](https://doc.tock.ai/tock/en/about/contact/).
Feel free to [contact us](https://doc.tock.ai/tock/master/about/contact.html).
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

# Tock - The Open Conversation Kit

<img alt="Tock Logo" src="http://doc.tock.ai/tock/en/assets/images/logo.svg" style="width: 150px;"><br>
<img alt="Tock Logo" src="http://doc.tock.ai/tock/master/img/logo.svg" style="width: 150px;"><br>

_Curious about what Tock is or, who is using it? Check out our [website](https://doc.tock.ai)!_

Expand All @@ -27,7 +27,7 @@ Open Conversational AI platform to build Bots:

🏠 Home: [https://doc.tock.ai](https://doc.tock.ai)

🕮 Documentation: [https://doc.tock.ai/tock](https://doc.tock.ai/tock/index.html)
🕮 Documentation: [https://doc.tock.ai/tock/master/](https://doc.tock.ai/tock/master/)

🐋 Docker configurations: [https://github.com/theopenconversationkit/tock-docker](https://github.com/theopenconversationkit/tock-docker)

Expand Down
2 changes: 1 addition & 1 deletion bot/connector-messenger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Then go to the Configuration -> Bot Configurations menu in the Tock Bot administration interface,
and create a new configuration with these parameters.

For a more detailed guide, refer to https://doc.tock.ai/tock/en/guide/messenger/
For a more detailed guide, refer to https://doc.tock.ai/tock/master/guides/messenger.html

## Bot API

Expand Down
2 changes: 1 addition & 1 deletion bot/connector-web/Swagger_TOCKWebConnector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ paths:
title: 'The Open Conversation Kit'
subTitle: 'Open platform for Conversational AI.'
file:
url: 'https://doc.tock.ai/tock/fr/assets/images/logo.svg'
url: 'https://doc.tock.ai/tock/master/fr/assets/images/logo.svg'
name: 'logo.svg'
type: image
buttons:
Expand Down
8 changes: 4 additions & 4 deletions docs/docs/en/about/community.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ To find Tock news, new projects, conferences, releases and more please visit the

Specific news can be found on these topics:

* [Known users & projects](http://doc.tock.ai/tock/en/about/showcase/)
* [Presentations & conferences](http://doc.tock.ai/tock/en/about/resources/)
* [Awards](http://doc.tock.ai/tock/en/about/awards/)
* [Known users & projects](https://doc.tock.ai/tock/master/about/showcase.html)
* [Presentations & conferences](https://doc.tock.ai/tock/master/about/ressources.html)
* [Awards](https://doc.tock.ai/tock/master/about/awards.html)

For releases & features:

Expand Down Expand Up @@ -84,7 +84,7 @@ Thanks to [e.Voyageurs SNCF](https://www.sncf.com/fr/groupe/newsroom/e-voyageurs
public Live Demo platform.

* [Live Demo](https://demo.tock.ai/)
* [Guide _Create your 1st bot with Tock_](https://doc.tock.ai/tock/en/guides/studio.md/)
* [Guide _Create your 1st bot with Tock_](https://doc.tock.ai/tock/master/guides/studio.html)

## Help

Expand Down
10 changes: 5 additions & 5 deletions docs/docs/en/dev/bot-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ For example in a [Maven](https://maven.apache.org/) project:
<dependency>
<groupId>ai.tock</groupId>
<artifactId>tock-bot-api-websocket</artifactId>
<version>24.9.6</version>
<version>24.9.7</version>
</dependency>
```

Or in a [Gradle](https://gradle.org/) project:

```groovy
compile 'ai.tock:tock-bot-api-websocket:24.9.6'
compile 'ai.tock:tock-bot-api-websocket:24.9.7'
```

### Enable WebHook mode
Expand All @@ -69,14 +69,14 @@ For example in a [Maven](https://maven.apache.org/) project:
<dependency>
<groupId>ai.tock</groupId>
<artifactId>tock-bot-api-webhook</artifactId>
<version>24.9.6</version>
<version>24.9.7</version>
</dependency>
```

Or in a [Gradle](https://gradle.org/) project:

```groovy
compile 'ai.tock:tock-bot-api-webhook:24.9.6'
compile 'ai.tock:tock-bot-api-webhook:24.9.7'
```

In this case, unlike in _WebSocket_ mode, the application/bot started must be reachable by the
Expand Down Expand Up @@ -175,4 +175,4 @@ The guide [Deploying Tock with Docker](../guides/platform.md) or the chapter
[Installation](../admin/installation.md) show how to deploy this module if necessary.

The only modification required compared to the example code for the demonstration platform is to replace
the `startWithDemo` method with `start`, specifying if necessary the address of the `bot-api` server.
the `startWithDemo` method with `start`, specifying if necessary the address of the `bot-api` server.
6 changes: 3 additions & 3 deletions docs/docs/en/dev/bot-integre.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ For example in a [Maven](https://maven.apache.org/) project:
<dependency>
<groupId>ai.tock</groupId>
<artifactId>bot-toolkit</artifactId>
<version>24.9.6</version>
<version>24.9.7</version>
</dependency>
```

Or in a [Gradle](https://gradle.org/) project:

```groovy
compile 'ai.tock:bot-toolkit:24.9.6'
compile 'ai.tock:bot-toolkit:24.9.7'
```

### A bot is a set of stories
Expand Down Expand Up @@ -505,4 +505,4 @@ To retrieve the parameters of the button that was clicked:
```
### Unit Tests

The [Unit Tests](test.md) page presents the framework provided to perform TUs with Tock.
The [Unit Tests](test.md) page presents the framework provided to perform TUs with Tock.
4 changes: 2 additions & 2 deletions docs/docs/en/dev/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ With Maven:
<dependency>
<groupId>ai.tock</groupId>
<artifactId>bot-test</artifactId>
<version>24.9.6</version>
<version>24.9.7</version>
<scope>test</scope>
</dependency>
```

Or gradle :

```groovy
testCompile 'ai.tock:bot-test:24.9.6'
testCompile 'ai.tock:bot-test:24.9.7'
```

This entire framework is documented in KDoc format [here](https://doc.tock.ai/tock/dokka/tock/ai.tock.bot.test).
Expand Down
8 changes: 4 additions & 4 deletions docs/docs/fr/about/community.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ Pour suivre l'actualité des projets Tock mais aussi les meetups, conférences,

Vous pouvez également retrouver les nouveautés dans ces pages plus spécfiques :

* [Projets & utilisateurs connus](https://doc.tock.ai/tock/fr/about/showcase/)
* [Présentations & conférences](https://doc.tock.ai/tock/fr/about/ressources/)
* [Prix & récompenses](https://doc.tock.ai/tock/fr/about/recompenses/)
* [Projets & utilisateurs connus](https://doc.tock.ai/tock/master/fr/about/showcase.html)
* [Présentations & conférences](https://doc.tock.ai/tock/master/fr/about/ressources.html)
* [Prix & récompenses](https://doc.tock.ai/tock/master/fr/about/awards.html)

Enfin, pour suivre les versions et fonctionnalités de Tock :

Expand Down Expand Up @@ -87,7 +87,7 @@ la solution. Elle est accompagnée d'un guide pour faire ses premiers pas. Merci
plateforme de démo en ligne.

* [Plateforme Démo en ligne](https://demo.tock.ai/)
* [Guide _Créer son 1er bot avec Tock_](http://doc.tock.ai/tock/fr/guides/studio.md/)
* [Guide _Créer son 1er bot avec Tock_](https://doc.tock.ai/tock/master/fr/guides/studio.html)

## Aide

Expand Down
8 changes: 4 additions & 4 deletions docs/docs/fr/dev/bot-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ Par exemple dans un projet [Maven](https://maven.apache.org/) :
<dependency>
<groupId>ai.tock</groupId>
<artifactId>tock-bot-api-websocket</artifactId>
<version>24.9.6</version>
<version>24.9.7</version>
</dependency>
```

Ou dans un projet [Gradle](https://gradle.org/) :

```groovy
compile 'ai.tock:tock-bot-api-websocket:24.9.6'
compile 'ai.tock:tock-bot-api-websocket:24.9.7'
```

### Activer le mode WebHook
Expand All @@ -74,14 +74,14 @@ Par exemple dans un projet [Maven](https://maven.apache.org/) :
<dependency>
<groupId>ai.tock</groupId>
<artifactId>tock-bot-api-webhook</artifactId>
<version>24.9.6</version>
<version>24.9.7</version>
</dependency>
```

Ou dans un projet [Gradle](https://gradle.org/) :

```groovy
compile 'ai.tock:tock-bot-api-webhook:24.9.6'
compile 'ai.tock:tock-bot-api-webhook:24.9.7'
```

Dans ce cas, contrairement au mode _WebSocket_, il faut que l'application/bot démarrée soit joignable par la
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/fr/dev/bot-integre.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ Par exemple dans un projet [Maven](https://maven.apache.org/) :
<dependency>
<groupId>ai.tock</groupId>
<artifactId>bot-toolkit</artifactId>
<version>24.9.6</version>
<version>24.9.7</version>
</dependency>
```

Ou dans un projet [Gradle](https://gradle.org/) :

```groovy
compile 'ai.tock:bot-toolkit:24.9.6'
compile 'ai.tock:bot-toolkit:24.9.7'
```

### Un bot est un ensemble de parcours (stories)
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/fr/dev/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ Avec Maven :
<dependency>
<groupId>ai.tock</groupId>
<artifactId>bot-test</artifactId>
<version>24.9.6</version>
<version>24.9.7</version>
<scope>test</scope>
</dependency>
```

ou Gradle :

```groovy
testCompile 'ai.tock:bot-test:24.9.6'
testCompile 'ai.tock:bot-test:24.9.7'
```

L'ensemble de ce framework est documenté au format KDoc [ici](https://doc.tock.ai/tock/dokka/tock/ai.tock.bot.test).
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/fr/guides/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ la dépendance `tock-bot-api-websocket` incluse :
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<plugin.kotlin.version>1.3.41</plugin.kotlin.version>
<plugin.source.version>3.1.0</plugin.source.version>
<lib.tock.version>24.9.6</lib.tock.version>
<lib.tock.version>24.9.7</lib.tock.version>
</properties>

<dependencies>
Expand Down
Loading