Skip to content
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

[fix] broken links (special task) #40

Merged
merged 1 commit into from
Dec 19, 2024
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
40 changes: 20 additions & 20 deletions docs/api/overview/rest_routes_overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,23 +31,23 @@ For quick navigation you can use either the tabs below or the side menu:
</thead>
<tbody>
<tr>
<td>GET</td>
<td><a href="../../../api/provider/rest_routes/get_routes/js_eventcalendar_getevents_route"> /events</a></td>
<td>`GET`</td>
<td><a href="../../../api/provider/rest_routes/get_routes/js_eventcalendar_getevents_route/"> /events</a></td>
<td>Gets data on all events and returns a json object with an array of events objects</td>
</tr>
<tr>
<td>POST</td>
<td><a href=" ../../../api/provider/rest_routes/post_routes/js_eventcalendar_postevent_route"> /events</a></td>
<td>`POST`</td>
<td><a href="../../../api/provider/rest_routes/post_routes/js_eventcalendar_postevent_route/"> /events</a></td>
<td>Creates a new event and returns a json object with the event ID in it</td>
</tr>
<tr>
<td>PUT</td>
<td><a href=" ../../../api/provider/rest_routes/put_routes/js_eventcalendar_putevent_route"> /events</a></td>
<td>`PUT`</td>
<td><a href="../../../api/provider/rest_routes/put_routes/js_eventcalendar_putevent_route/"> /events</a></td>
<td>Updates data on an event</td>
</tr>
<tr>
<td>DELETE</td>
<td><a href=" ../../../api/provider/rest_routes/delete_routes/js_eventcalendar_deleteevent_route"> /events</a></td>
<td>`DELETE`</td>
<td><a href="../../../api/provider/rest_routes/delete_routes/js_eventcalendar_deleteevent_route/"> /events</a></td>
<td>Deletes data on an event</td>
</tr>
</tbody>
Expand All @@ -67,22 +67,22 @@ For quick navigation you can use either the tabs below or the side menu:
</thead>
<tbody>
<tr>
<td>GET</td>
<td><a href=" ../../../api/provider/rest_routes/get_routes/js_eventcalendar_getcalendars_route"> /calendars</a></td>
<td>`GET`</td>
<td><a href="../../../api/provider/rest_routes/get_routes/js_eventcalendar_getcalendars_route/"> /calendars</a></td>
<td>Gets data on all calendars and returns a json object with an array of calendars objects</td>
</tr>
<tr>
<td>POST</td>
<td ><a href=" ../../../api/provider/rest_routes/post_routes/js_eventcalendar_postcalendar_route"> /calendars</a></td>
<td>`POST`</td>
<td ><a href="../../../api/provider/rest_routes/post_routes/js_eventcalendar_postcalendar_route/"> /calendars</a></td>
<td>Creates a new calendar (event type) and returns a json object with the calendar ID in it</td>
</tr>
<tr>
<td>PUT</td>
<td><a href=" ../../../api/provider/rest_routes/put_routes/js_eventcalendar_putcalendar_route"> /calendars</a></td><td>Updates data on a calendar (event type)</td>
<td>`PUT`</td>
<td><a href="../../../api/provider/rest_routes/put_routes/js_eventcalendar_putcalendar_route/"> /calendars</a></td><td>Updates data on a calendar (event type)</td>
</tr>
<tr>
<td>DELETE</td>
<td><a href=" ../../../api/provider/rest_routes/delete_routes/js_eventcalendar_deletecalendar_route"> /calendars</a></td>
<td>`DELETE`</td>
<td><a href="../../../api/provider/rest_routes/delete_routes/js_eventcalendar_deletecalendar_route/"> /calendars</a></td>
<td>Deletes data on a calendar (event type)</td>
</tr>
</tbody>
Expand All @@ -101,13 +101,13 @@ For quick navigation you can use either the tabs below or the side menu:
</thead>
<tbody>
<tr>
<td>GET</td>
<td><a href=" ../../../api/provider/rest_routes/get_routes/js_eventcalendar_getuploads_route"> /uploads</a></td>
<td>`GET`</td>
<td><a href="../../../api/provider/rest_routes/get_routes/js_eventcalendar_getuploads_route/"> /uploads</a></td>
<td>Gets the requested binary file from the server</td>
</tr>
<tr>
<td>POST</td>
<td><a href=" ../../../api/provider/rest_routes/post_routes/js_eventcalendar_postupload_route"> /uploads</a></td>
<td>`POST`</td>
<td><a href="../../../api/provider/rest_routes/post_routes/js_eventcalendar_postupload_route/"> /uploads</a></td>
<td>Uploads a binary file to the server and returns a json object with its id, name, and url</td>
</tr>
</tbody>
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/integration_with_react.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ DHTMLX Event Calendar is compatible with **React**. We have prepared code exampl
## Creating a project

:::info
Before you start to create a new project, install [**Vite**](https://vitejs.dev/) (optional) and [**Node.js**](https://nodejs.org/en/).
Before you start to create a new project, install [**Vite**](https://vite.dev/) (optional) and [**Node.js**](https://nodejs.org/en/).
:::

You can create a basic **React** project or use **React with Vite**. Let's name the project as **my-react-event-calendar-app**:
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/integration_with_svelte.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ DHTMLX Event Calendar is compatible with **Svelte**. We have prepared code examp
## Creating a project

:::info
Before you start to create a new project, install [**Vite**](https://vitejs.dev/) (optional) and [**Node.js**](https://nodejs.org/en/).
Before you start to create a new project, install [**Vite**](https://vite.dev/) (optional) and [**Node.js**](https://nodejs.org/en/).
:::

To create a **Svelte** JS project, run the following command:
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/integration_with_vue.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: You can learn about the integration with Vue in the documentation o
# Integration with Vue

:::tip
You should be familiar with the basic concepts and patterns of [**Vue**](https://vuejs.org/) before reading this documentation. To refresh your knowledge, please refer to the [**Vue 3 documentation**](https://v3.vuejs.org/guide/introduction.html#getting-started).
You should be familiar with the basic concepts and patterns of [**Vue**](https://vuejs.org/) before reading this documentation. To refresh your knowledge, please refer to the [**Vue 3 documentation**](https://vuejs.org/guide/introduction.html#getting-started).
:::

DHTMLX Event Calendar is compatible with **Vue**. We have prepared code examples on how to use DHTMLX Event Calendar with **Vue 3**. For more information, refer to the corresponding [**Example on GitHub**](https://github.com/DHTMLX/vue-event-calendar-demo).
Expand Down
Loading