From cde04d9a2e0a43a34688261ad830e35d30d09ae4 Mon Sep 17 00:00:00 2001 From: basteks Date: Wed, 10 Sep 2025 10:05:14 +0200 Subject: [PATCH] Changed SeaTable help URLs --- docs/index.md | 6 +++--- docs/introduction/basic_concepts.md | 2 +- docs/scripts/index.md | 6 +++--- docs/scripts/javascript/objects/tables.md | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/index.md b/docs/index.md index 141e6d2e..6ea2b9f3 100644 --- a/docs/index.md +++ b/docs/index.md @@ -5,8 +5,8 @@ Welcome to the SeaTable Developer Manual, your comprehensive resource for levera This guide illustrates **three fundamental approaches** to development within SeaTable: 1. [Scripting within SeaTable](/scripts/): Create custom logic or perform individual data processing using JavaScript or Python, both supported within SeaTable. -1. [SeaTable Plugins](/plugins/): Develop plugins capable of interacting with, visualizing, and operating on data within a SeaTable Base. -1. [Utilizing Any Programming Language with SeaTable's API](/clients/): Seamlessly interact with the SeaTable API to construct your own web pages or programs. +1. [SeaTable plugins](/plugins/): Develop plugins capable of interacting with, visualizing, and operating on data within a SeaTable Base. +1. [Utilizing any programming language with SeaTable's API](/clients/): Seamlessly interact with the SeaTable API to construct your own web pages or programs. ## Developer decision tree @@ -14,7 +14,7 @@ This guide illustrates **three fundamental approaches** to development within Se For guidance on choosing the right section within this manual, refer to the decision tree diagram above. -If you aim to integrate a software product with SeaTable, note that SeaTable supports multiple workflow automation tools such as [n8n](https://n8n.io/integrations/seatable/), [Zapier](https://zapier.com/apps/seatable/integrations), and [Make](https://www.make.com/en/integrations/seatable). Please refer to the [SeaTable User Manual](https://seatable.io/docs-category/skripte-api-integrationen/) for detailed information on these integrations, as they are not covered here. +If you aim to integrate a software product with SeaTable, note that SeaTable supports multiple workflow automation tools such as [n8n](https://n8n.io/integrations/seatable/), [Zapier](https://zapier.com/apps/seatable/integrations), and [Make](https://www.make.com/en/integrations/seatable). Please refer to the [SeaTable User Manual](https://seatable.com/help/integrations/) for detailed information on these integrations, as they are not covered here. ## Target audience diff --git a/docs/introduction/basic_concepts.md b/docs/introduction/basic_concepts.md index fdc32973..9c528a5a 100644 --- a/docs/introduction/basic_concepts.md +++ b/docs/introduction/basic_concepts.md @@ -65,7 +65,7 @@ You can take the following python code and copy&paste it to SeaTable. It will re ### Gallery-Plugin -SeaTable provides some Plugins to visualize your data. Examples for such a plugin are the [Gallery](https://seatable.io/docs/plugins/anleitung-zum-galerie-plugin/?lang=auto), [Timeline](https://seatable.io/docs/plugins/anleitung-zum-timeline-plugin/?lang=auto), [Kanban](https://seatable.io/docs/plugins/anleitung-zum-kanban-plugin/?lang=auto) and so on. But SeaTable has everything that you build your own plugin. There are no limits to the imagination, it just requires some time and React skills. +SeaTable provides some Plugins to visualize your data. Examples for such a plugin are the [Gallery](https://seatable.com/help/anleitung-zum-galerie-plugin/), [Timeline](https://seatable.com/help/anleitung-zum-timeline-plugin/), [Kanban](https://seatable.com/help/anleitung-zum-kanban-plugin/) and so on. But SeaTable has everything that you build your own plugin. There are no limits to the imagination, it just requires some time and React skills. ![Screenshot of the Galery Plugin](/media/gallery.png) diff --git a/docs/scripts/index.md b/docs/scripts/index.md index 7a861e6a..8095f8f0 100644 --- a/docs/scripts/index.md +++ b/docs/scripts/index.md @@ -21,6 +21,6 @@ Each chapter provides you with explanations about the available objects and meth Here are some additional help articles from the [user manual](https://help.seatable.com) explaining how to create, execute and monitor a script in SeaTable: -- [Creating and deleting a script](https://seatable.io/docs/javascript-python/anlegen-und-loeschen-eines-skriptes/?lang=auto) -- [Run script manually, by button or by automation](https://seatable.io/en/docs/javascript-python/skript-manuell-per-schaltflaeche-oder-automation-ausfuehren/?lang=auto) -- [The execution log of scripts](https://seatable.io/en/docs/javascript-python/das-ausfuehrungslog-von-skripten/?lang=auto) +- [Creating and deleting a script](https://seatable.com/help/anlegen-und-loeschen-eines-skriptes/) +- [Run script manually, by button or by automation](https://seatable.com/help/skript-manuell-per-schaltflaeche-oder-automation-ausfuehren/) +- [The execution log of scripts](https://seatable.com/help/das-ausfuehrungslog-von-skripten/) diff --git a/docs/scripts/javascript/objects/tables.md b/docs/scripts/javascript/objects/tables.md index 03fe08b7..19049a93 100644 --- a/docs/scripts/javascript/objects/tables.md +++ b/docs/scripts/javascript/objects/tables.md @@ -83,7 +83,7 @@ All available functions to interact with the tables of a SeaTable base. !!! question "deleteTable" - Delete a table from the base. By the way, the table can be [restored from the logs](https://seatable.io/docs/arbeiten-in-tabellen/eine-geloeschte-tabelle-wiederherstellen/?lang=auto). + Delete a table from the base. By the way, the table can be [restored from the logs](https://seatable.com/help/eine-geloeschte-tabelle-wiederherstellen/). ``` js base.deleteTable(tableName: String);