Leomrlin commented on code in PR #1: URL: https://github.com/apache/geaflow-website/pull/1#discussion_r2352360627
########## versions/version-current/docs-en/source/1.guide.md: ########## @@ -0,0 +1,43 @@ +# Guide Review Comment: 中英文的GUID使用github上面最新的页面内容吧,这个是旧版的 https://github.com/apache/geaflow ########## src/pages/download/index.md: ########## @@ -0,0 +1,73 @@ +--- +title: "Downloads" +--- + +# <font style="color:rgba(0, 0, 0, 0.88);">Apache GeaFlow </font><font style="color:rgb(31, 35, 40);">(Incubating)</font><font style="color:rgba(0, 0, 0, 0.88);"> </font><font style="color:rgb(35, 47, 62);"> Downloads</font> + +## <font style="color:rgb(35, 47, 62);">Apache </font><font style="color:rgba(0, 0, 0, 0.88);">GeaFlow</font> + +[<font style="color:rgb(0, 115, 187);">Apache GeaFlow 0.6.7 Source Release</font>](https://github.com/apache/geaflow/releases/tag/v0.6.7) + +[<font style="color:rgb(0, 115, 187);">Apache GeaFlow 0.6.6 Source Release</font>](https://github.com/apache/geaflow/releases/tag/v0.6.6) + +[<font style="color:rgb(0, 115, 187);">Apache GeaFlow 0.6.5 Source Release</font>](https://github.com/apache/geaflow/releases/tag/v0.6.5) + +[<font style="color:rgb(0, 115, 187);">Apache GeaFlow 0.6 Source Release</font>](https://github.com/apache/geaflow/releases/tag/v0.6) + +[<font style="color:rgb(0, 115, 187);">Apache GeaFlow 0.5.2 Source Release</font>](https://github.com/apache/geaflow/releases/tag/v0.5.2) + +[<font style="color:rgb(0, 115, 187);">Apache GeaFlow 0.5.1 Source Release</font>](https://github.com/apache/geaflow/releases/tag/v0.5.1) + +## Installing with Docker<font style="color:#DF2A3F;"></font> + +<font style="color:rgba(0, 0, 0, 0.88);">GeaFlow</font><font style="color:rgb(102, 102, 102);"> docker images are available from Dockerhub </font>[<font style="color:rgb(47, 164, 231);">Official Images</font>](https://hub.docker.com/u/geaflow)<font style="color:rgb(102, 102, 102);">.</font> + +### <font style="color:rgb(102, 102, 102);">geaflow</font> + +[geaflow-0.6-java8-x86](https://hub.docker.com/r/geaflow/geaflow/tags) + +> <font style="color:rgb(102, 102, 102);">docker pull geaflow/geaflow:0.6</font> + +[geaflow-0.6-java8-arm](https://hub.docker.com/r/geaflow/geaflow-arm/tags) + +> <font style="color:rgb(102, 102, 102);">docker pull geaflow/geaflow-arm:0.6</font> + +### <font style="color:rgb(0, 0, 0);">geaflow-console</font> + +[geaflow-console-0.6-java8-x86](https://hub.docker.com/r/geaflow/geaflow-console/tags) + +> <font style="color:rgb(102, 102, 102);">docker pull geaflow/geaflow-console:0.6</font> + +[geaflow-console-0.6-java8-arm](https://hub.docker.com/r/geaflow/geaflow-console-arm/tags) + +> docker pull <font style="color:rgb(102, 102, 102);">geaflow</font>/geaflow-console-arm:0.6 + +## <font style="color:rgb(35, 47, 62);">Apache </font><font style="color:rgba(0, 0, 0, 0.88);">GeaFlow</font><font style="color:rgb(35, 47, 62);"> Kubernetes Operator</font> + +### <font style="color:rgb(0, 0, 0);">geaflow-kubernetes-operator</font> + +[geaflow-kubernetes-operator-0.6-java8-x86](https://hub.docker.com/r/geaflow/geaflow-kubernetes-operator/tags) + +> <font style="color:rgb(102, 102, 102);">docker pull geaflow/geaflow-kubernetes-operator:0.6</font> + +## <font style="color:rgb(35, 47, 62);">Maven Dependencies</font><font style="color:#DF2A3F;"></font> + +<font style="color:rgb(35, 47, 62);">You can add the following dependencies to your </font>`<font style="color:rgb(35, 47, 62);">pom.xml</font>`<font style="color:rgb(35, 47, 62);"> to include Apache GeaFlow in your project.</font> + +<font style="color:rgb(35, 47, 62);">GeaFlow artifacts are available from sonatype.com</font><font style="color:rgb(102, 102, 102);"> </font>[<font style="color:rgb(47, 164, 231);">Official Repository</font>](https://search.maven.org/search?q=GeaFlow)<font style="color:rgb(102, 102, 102);">.</font> Review Comment: <img width="862" height="168" alt="image" src="https://github.com/user-attachments/assets/e082ca1c-b080-4f80-b2eb-7893081d5b06" /> 中英文的download这里的pom.xml显示有点乱码 ########## docusaurus.config.ts: ########## @@ -0,0 +1,250 @@ +import type { Config } from '@docusaurus/types'; +import type * as Preset from '@docusaurus/preset-classic'; +import type { Options as DocsOptions } from "@docusaurus/plugin-content-docs"; + +const config: Config = { + title: 'GeaFlow', + tagline: 'Dinosaurs are cool', + favicon: 'img/favicon.png', + url: 'https://apache.github.io/', + baseUrl: 'geaflow-website/', + onBrokenLinks: "warn", + markdown: { + format: "md", + mermaid: true, + preprocessor: ({ filePath, fileContent }) => { + if (filePath.includes("application-development/1.api/1.overview")) { + const regex = /<([A-Z\s,]+)>/g; + const newContent = fileContent + ?.replace(regex, "") + ?.replace(/<IVertex>|<IEdge>/g, ""); + return newContent; + } + return fileContent; + }, + }, + i18n: { + defaultLocale: 'en-US', + locales: ['en-US', 'zh-CN'], + localeConfigs: { + 'en-US': { + path: "en-US", + label: 'English', + htmlLang: 'en-US', + }, + 'zh-CN': { + path: "zh-CN", + label: '简体中文', Review Comment: <img width="2262" height="810" alt="image" src="https://github.com/user-attachments/assets/7740779c-beff-4cfa-a968-cece1e2d7365" /> 点击简体中文的时候页面找不到 ########## community/en/community.md: ########## @@ -0,0 +1,23 @@ +### Support Review Comment: 英文界面下的community翻译一下 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
