Skip to content

Commit 6daa6ce

Browse files
docs: remove java and python SDK docs (#305)
* add note for deprecate java and remove python sdk Signed-off-by: Manar Elhabbal <manarelhabbal619@gmail.com> * delete java docs Signed-off-by: Manar Elhabbal <manarelhabbal619@gmail.com> * remove java and python from the files mentioned them Signed-off-by: Manar Elhabbal <manarelhabbal619@gmail.com> --------- Signed-off-by: Manar Elhabbal <manarelhabbal619@gmail.com>
1 parent 6ee99e2 commit 6daa6ce

10 files changed

Lines changed: 6 additions & 46 deletions

File tree

docs/develop/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ displayed_sidebar: developSidebar
55

66
# Develop WASM Apps
77

8-
A fundamental value proposition of WebAssembly is that it supports multiple programming languages. WebAssembly is a "managed runtime" for many programming languages including [C/C++](/category/develop-wasm-apps-in-cc), [Rust](/category/develop-wasm-apps-in-rust), [Go](/category/develop-wasm-apps-in-go), and even [JavaScript](/category/develop-wasm-apps-in-javascript) and [Python](/category/develop-wasm-apps-in-python).
8+
A fundamental value proposition of WebAssembly is that it supports multiple programming languages. WebAssembly is a "managed runtime" for many programming languages including [C/C++](/category/develop-wasm-apps-in-cc), [Rust](/category/develop-wasm-apps-in-rust), [Go](/category/develop-wasm-apps-in-go), and even [JavaScript](/category/develop-wasm-apps-in-javascript).
99

1010
- For compiled languages (e.g., C and Rust), WasmEdge WebAssembly provides a safe, secure, isolated, and containerized runtime as opposed to Native Client (NaCl).
11-
- For interpreted or managed languages (e.g., JavaScript and Python), WasmEdge WebAssembly provides a secure, fast, lightweight, and containerized runtime instead of Docker + guest OS + native interpreter.
11+
- For interpreted or managed languages (e.g., JavaScript), WasmEdge WebAssembly provides a secure, fast, lightweight, and containerized runtime instead of Docker + guest OS + native interpreter.
1212

1313
This chapter will discuss how to compile sources into WebAssembly in different languages and run them in WasmEdge.
1414

docs/embed/java/_category_.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

docs/embed/java/intro.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

docs/embed/overview.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ In this section, we will walk you through how to embed WasmEdge in different lan
2121
- [Embed WasmEdge in C/C++](/category/c-sdk-for-embedding-wasmedge)
2222
- [Embed WasmEdge in Rust](/category/rust-sdk-for-embedding-wasmedge)
2323
- [Embed WasmEdge in Go](/category/go-sdk-for-embedding-wasmedge)
24-
- [Embed WasmEdge in Java](/category/java-sdk-for-embedding-wasmedge)
25-
- [Embed WasmEdge in Python](/category/python-sdk-for-embedding-wasmedge)
2624
- [Use cases](/category/use-cases)
2725

2826
Besides this, we also have two more guides for [developing WASM apps](../develop/overview.md) and [contributing to WasmEdge](../contribute/overview.md).

docs/embed/python/_category_.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

docs/embed/python/intro.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

docs/start/wasmedge/features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ Or you could build your own plug-ins for WasmEdge in
7878

7979
## Easy to Embed into a Host Application
8080

81-
[Embedded runtime](https://wasmedge.org/docs/embed/overview) is the classical use case for WasmEdge. You could embed WasmEdge functions in C, Go, Rust, Node.js, Java (WIP), and Python (WIP) host applications.
81+
[Embedded runtime](https://wasmedge.org/docs/embed/overview) is the classical use case for WasmEdge. You could embed WasmEdge functions in C, Go, Rust, and Node.js host applications.

i18n/zh/docusaurus-plugin-content-docs/current/develop/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ displayed_sidebar: developSidebar
55

66
# Develop WASM Apps
77

8-
A fundamental value proposition of WebAssembly is that it supports multiple programming languages. WebAssembly is a "managed runtime" for many programming languages including [C/C++](/category/develop-wasm-apps-in-cc), [Rust](/category/develop-wasm-apps-in-rust), [Go](/category/develop-wasm-apps-in-go), and even [JavaScript](/category/develop-wasm-apps-in-javascript) and [Python](/category/develop-wasm-apps-in-python).
8+
A fundamental value proposition of WebAssembly is that it supports multiple programming languages. WebAssembly is a "managed runtime" for many programming languages including [C/C++](/category/develop-wasm-apps-in-cc), [Rust](/category/develop-wasm-apps-in-rust), [Go](/category/develop-wasm-apps-in-go), and even [JavaScript](/category/develop-wasm-apps-in-javascript).
99

1010
- For compiled languages (e.g., C and Rust), WasmEdge WebAssembly provides a safe, secure, isolated, and containerized runtime as opposed to Native Client (NaCl).
11-
- For interpreted or managed languages (e.g., JavaScript and Python), WasmEdge WebAssembly provides a secure, fast, lightweight, and containerized runtime instead of Docker + guest OS + native interpreter.
11+
- For interpreted or managed languages (e.g., JavaScript), WasmEdge WebAssembly provides a secure, fast, lightweight, and containerized runtime instead of Docker + guest OS + native interpreter.
1212

1313
This chapter will discuss how to compile sources into WebAssembly in different languages and run them in WasmEdge.
1414

i18n/zh/docusaurus-plugin-content-docs/current/embed/overview.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ In this section, we will walk you through how to embed WasmEdge in different lan
2121
- [Embed WasmEdge in C/C++](/category/c-sdk-for-embedding-wasmedge)
2222
- [Embed WasmEdge in Rust](/category/rust-sdk-for-embedding-wasmedge)
2323
- [Embed WasmEdge in Go](/category/go-sdk-for-embedding-wasmedge)
24-
- [Embed WasmEdge in Java](/category/java-sdk-for-embedding-wasmedge)
25-
- [Embed WasmEdge in Python](/category/python-sdk-for-embedding-wasmedge)
2624
- [Use cases](/category/use-cases)
2725

2826
Besides this, we also have two more guides for [developing WASM apps](../develop/overview.md) and [contributing to WasmEdge](../contribute/overview.md).

i18n/zh/docusaurus-plugin-content-docs/current/start/wasmedge/features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ WasmEdge 目前支持:
7878

7979
## 易于嵌入到主机应用程序中
8080

81-
嵌入式运行时是 WasmEdge 的经典用例。你可以将 WasmEdge 函数嵌入到 C、Go、Rust、Node.js、Java(WIP) 和 Python(WIP) 主机应用程序中。
81+
嵌入式运行时是 WasmEdge 的经典用例。你可以将 WasmEdge 函数嵌入到 C、Go、Rust、Node.js 主机应用程序中。

0 commit comments

Comments
 (0)