From 2989407e542d2d800d4dddf56d9008e25b5753e4 Mon Sep 17 00:00:00 2001 From: Manu Date: Thu, 16 Dec 2021 14:10:53 -0800 Subject: [PATCH 1/9] add custom jenkinsfile --- ci/jenkins/Jenkinsfile_website_full_sethman | 63 +++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 ci/jenkins/Jenkinsfile_website_full_sethman diff --git a/ci/jenkins/Jenkinsfile_website_full_sethman b/ci/jenkins/Jenkinsfile_website_full_sethman new file mode 100644 index 000000000000..cddb57d5794d --- /dev/null +++ b/ci/jenkins/Jenkinsfile_website_full_sethman @@ -0,0 +1,63 @@ +// -*- mode: groovy -*- + +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. +// +// Jenkins pipeline +// See documents at https://jenkins.io/doc/book/pipeline/jenkinsfile/ + +// timeout in minutes +max_time = 240 + +node('restricted-utility') { + // Loading the utilities requires a node context unfortunately + checkout scm + utils = load('ci/Jenkinsfile_utils.groovy') + custom_steps = load('ci/jenkins/Jenkins_steps.groovy') +} + +utils.assign_node_labels(utility: 'restricted-utility', linux_cpu: 'restricted-mxnetlinux-cpu', linux_gpu: 'restricted-mxnetlinux-gpu-g4', linux_gpu_p3: 'restricted-mxnetlinux-gpu-p3', windows_cpu: 'restricted-mxnetwindows-cpu', windows_gpu: 'restricted-mxnetwindows-gpu') + +utils.main_wrapper( +core_logic: { + utils.parallel_stage('Build', [ + custom_steps.compile_unix_cpu_openblas('libmxnet'), + custom_steps.compile_unix_full_gpu('libmxnet_gpu') + ]) + + utils.parallel_stage('Build Docs', [ + custom_steps.docs_jekyll(), + custom_steps.docs_c('libmxnet'), + custom_steps.docs_python('libmxnet_gpu'), + ]) + + utils.parallel_stage('Prepare', [ + custom_steps.docs_prepare() + ]) + + // utils.parallel_stage('Publish', [ + // custom_steps.docs_publish() + // ]) +} +, +failure_handler: { + // Only send email if master or release branches failed + if (currentBuild.result == "FAILURE" && (env.BRANCH_NAME == "master" || env.BRANCH_NAME.startsWith("v"))) { + emailext body: 'Build for MXNet branch ${BRANCH_NAME} has broken. Please view the build at ${BUILD_URL}', replyTo: '${EMAIL}', subject: '[BUILD FAILED] Branch ${BRANCH_NAME} build ${BUILD_NUMBER}', to: '${EMAIL}' + } +} +) From db6ed3e7e40c068c4d2448f5ac351dbf4b7c1d40 Mon Sep 17 00:00:00 2001 From: Manu Date: Thu, 16 Dec 2021 14:40:27 -0800 Subject: [PATCH 2/9] move users from home page --- .../themes/mx-theme/mxtheme/header_top.html | 1 + docs/static_site/src/_includes/header.html | 1 + docs/static_site/src/_layouts/home.html | 8 ----- docs/static_site/src/pages/powered_by.html | 32 +++++++++++++++++++ 4 files changed, 34 insertions(+), 8 deletions(-) create mode 100644 docs/static_site/src/pages/powered_by.html diff --git a/docs/python_docs/themes/mx-theme/mxtheme/header_top.html b/docs/python_docs/themes/mx-theme/mxtheme/header_top.html index 69cdf64fcefa..4726db2f703c 100644 --- a/docs/python_docs/themes/mx-theme/mxtheme/header_top.html +++ b/docs/python_docs/themes/mx-theme/mxtheme/header_top.html @@ -18,6 +18,7 @@ Features Ecosystem Docs & Tutorials + Powered By GitHub -
-
-
-

Already trusted by

- -
-
-
{%- include footer.html -%} diff --git a/docs/static_site/src/pages/powered_by.html b/docs/static_site/src/pages/powered_by.html new file mode 100644 index 000000000000..78cd04e262ac --- /dev/null +++ b/docs/static_site/src/pages/powered_by.html @@ -0,0 +1,32 @@ +--- +layout: page +title: Powered By +subtitle: Already trusted by +action: Get Started +action_url: /get_started +permalink: /powered_by/ +--- + + + +
+ +

+
From a16c0ad5f31ef45c327bf6c203f61d154d465511 Mon Sep 17 00:00:00 2001 From: Manu Date: Mon, 20 Dec 2021 17:48:37 -0800 Subject: [PATCH 3/9] test users page --- docs/static_site/src/.htaccess | 2 +- docs/static_site/src/_sass/minima.scss | 1 + docs/static_site/src/_sass/minima/_home.scss | 14 --------- .../src/_sass/minima/_powered_by.scss | 26 +++++++++++++++++ docs/static_site/src/pages/powered_by.html | 29 +++++++++++++++++-- 5 files changed, 55 insertions(+), 17 deletions(-) create mode 100644 docs/static_site/src/_sass/minima/_powered_by.scss diff --git a/docs/static_site/src/.htaccess b/docs/static_site/src/.htaccess index 7e914349b3a5..d62c1f72b8e7 100644 --- a/docs/static_site/src/.htaccess +++ b/docs/static_site/src/.htaccess @@ -124,4 +124,4 @@ Redirect 301 /faq/index.html /api Redirect 301 /tutorials/index.html /api Redirect 301 /architecture/index.html /api/architecture/overview Redirect 301 /community/ecosystem.html /ecosystem -Redirect 301 /community/powered_by.html /ecosystem +Redirect 301 /community/powered_by.html /powered_by diff --git a/docs/static_site/src/_sass/minima.scss b/docs/static_site/src/_sass/minima.scss index f5f880ccc711..4457cfc6482f 100644 --- a/docs/static_site/src/_sass/minima.scss +++ b/docs/static_site/src/_sass/minima.scss @@ -75,6 +75,7 @@ $on-laptop: 1024px !default; "minima/blog", "minima/features", "minima/ecosystem", + "minima/powered_by", "minima/docs", "minima/getting_started", "minima/colorful" diff --git a/docs/static_site/src/_sass/minima/_home.scss b/docs/static_site/src/_sass/minima/_home.scss index bdb4f93047ed..5acc7f3664c3 100644 --- a/docs/static_site/src/_sass/minima/_home.scss +++ b/docs/static_site/src/_sass/minima/_home.scss @@ -170,20 +170,6 @@ a.btn { background-color: white; } -// === -// trusted-by -// === - -.trusted-by-section { - background-color: white; - color: $grey-color-dark; -} - -.trusted-by { - margin-top: 30px; - -} - // === // news // === diff --git a/docs/static_site/src/_sass/minima/_powered_by.scss b/docs/static_site/src/_sass/minima/_powered_by.scss new file mode 100644 index 000000000000..34b20809f811 --- /dev/null +++ b/docs/static_site/src/_sass/minima/_powered_by.scss @@ -0,0 +1,26 @@ +/* Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. */ + +.powered-by-page { + .card { + background-color: $grey-color-light; + } + + h4 { + float: left; + } +} diff --git a/docs/static_site/src/pages/powered_by.html b/docs/static_site/src/pages/powered_by.html index 78cd04e262ac..9744627d690d 100644 --- a/docs/static_site/src/pages/powered_by.html +++ b/docs/static_site/src/pages/powered_by.html @@ -1,10 +1,11 @@ --- layout: page title: Powered By -subtitle: Already trusted by +subtitle: Explore a rich ecosystem of libraries, tools, and more to support research and development of Deep Learning application across many fields and domains of application. action: Get Started action_url: /get_started permalink: /powered_by/ + ---
- +
+

D2L.ai

+
+
+ +
+
+

A deep learning book with interactive jupyter notebooks, math formula, + and a dedicated forum for discussions.

+

It offers an interactive learning experience with mathematics, figures, code, text, and discussions, + where concepts and techniques are illustrated and implemented with experiments on real data + sets.

+

Each section is an executable Jupyter notebook. You can modify the code and tune hyperparameters to + get instant feedback to accumulate practical experiences in deep learning.

+

The book is authored by Aston Zhang, Amazon Applied + Scientist UIUC Ph.D., Zack C. Lipton, CMU Assistant Professor + UCSD Ph.D., + Mu Li Amazon Principal + Scientist CMU Ph.D. and Alex J. Smola Amazon VP/Distinguished + Scientist TU Berlin Ph.D. +

D2L is used as a textbook or a reference book at Carnegie Mellon University, Georgia Institute of + Technology, the University of California Berkeley and many more university

+
+
+


From 4ae2b6822ed2197b5bbb0bb88d205a0c2de68893 Mon Sep 17 00:00:00 2001 From: Manu Date: Tue, 21 Dec 2021 15:47:46 -0800 Subject: [PATCH 4/9] revert htaccess change --- docs/static_site/src/.htaccess | 2 +- docs/static_site/src/pages/powered_by.html | 108 +++++++++++++++++++++ 2 files changed, 109 insertions(+), 1 deletion(-) diff --git a/docs/static_site/src/.htaccess b/docs/static_site/src/.htaccess index d62c1f72b8e7..7e914349b3a5 100644 --- a/docs/static_site/src/.htaccess +++ b/docs/static_site/src/.htaccess @@ -124,4 +124,4 @@ Redirect 301 /faq/index.html /api Redirect 301 /tutorials/index.html /api Redirect 301 /architecture/index.html /api/architecture/overview Redirect 301 /community/ecosystem.html /ecosystem -Redirect 301 /community/powered_by.html /powered_by +Redirect 301 /community/powered_by.html /ecosystem diff --git a/docs/static_site/src/pages/powered_by.html b/docs/static_site/src/pages/powered_by.html index 9744627d690d..ffb2d3856780 100644 --- a/docs/static_site/src/pages/powered_by.html +++ b/docs/static_site/src/pages/powered_by.html @@ -6,6 +6,76 @@ action_url: /get_started permalink: /powered_by/ +ecosystem_toolkits: +- title: GluonCV + text: GluonCV is a computer vision toolkit with rich model zoo. From object detection to pose estimation. + icon: /assets/img/visual.svg + link: https://gluon-cv.mxnet.io +- title: GluonNLP + text: GluonNLP provides state-of-the-art deep learning models in NLP. For engineers and researchers to fast prototype research ideas and products. + icon: /assets/img/artificial-intelligence.svg + link: https://gluon-nlp.mxnet.io/ +- title: GluonTS + text: Gluon Time Series (GluonTS) is the Gluon toolkit for probabilistic time series modeling, focusing on deep learning-based models. + icon: /assets/img/line-graph.svg + link: https://gluon-ts.mxnet.io/ +- title: AutoGluon + text: AutoGluon enables easy-to-use and easy-to-extend AutoML with a focus on deep learning and real-world applications spanning image, text, or tabular data. + icon: /assets/img/autogluon.png + link: https://autogluon.mxnet.io + +ecosystem_other: +- title: Flower + text: Flower is an agnostic federated learning framework. Federate any workload, any machine learning framework, and any programming language. + icon: /assets/img/flower_icon.png + link: https://flower.dev/ +- title: InsightFace + text: State-of-the-art face detection and face recognition repository, including ArcFace loss and RetinaFace implementation + link: https://github.com/deepinsight/insightface +- title: Sockeye + text: Sockeye is a sequence-to-sequence framework for Neural Machine Translation based on Apache MXNet Incubating. It implements state-of-the-art encoder-decoder architectures. + link: https://awslabs.github.io/sockeye/ +- title: Deep Graph Library + text: DGL is a Python package dedicated to deep learning on graphs supporting MXNet as a backend. + link: https://www.dgl.ai/ +- title: TensorLy + text: TensorLy is a high level API for tensor methods and deep tensorized neural networks in Python that aims to make tensor learning simple. + icon: /assets/img/tensorly_logo.png + link: http://tensorly.org/stable/home.html +- title: TVM + text: TVM is an open deep learning compiler stack for CPUs, GPUs, and specialized accelerators. It supports a number of framework including MXNet. + link: https://tvm.ai/about + icon: /assets/img/tvm.png +- title: GluonFR + text: Community-driven toolkit for Face Recognition and Face Detection + link: https://gluon-face.readthedocs.io/en/latest/ +- title: Optuna + text: Optuna is a hyperparameter optimization framework that automates the search for good hyperparameters using Python conditionals, loops, and syntax. + link: https://optuna.org/ + icon: /assets/img/optuna.png +- title: Ray Tune + text: Tune is a Python library for experiment execution and hyperparameter tuning at any scale. + link: https://docs.ray.io/en/latest/tune.html + icon: /assets/img/tune.png +- title: Coach RL + text: Coach is a python reinforcement learning framework containing implementation of many state-of-the-art algorithms, it supports MXNet as a back-end + icon: /assets/img/coach_logo.png + link: https://github.com/NervanaSystems/coach +- title: XFer + text: Xfer is a library that allows quick and easy transfer of knowledge stored in deep neural networks implemented in MXNet. + link: https://xfer.readthedocs.io/en/master/ + icon: /assets/img/xfer.png +- title: DJL + text: Deep Java Library is an open source library to build and deploy deep learning in Java + icon: /assets/img/djl.png + link: https://djl.ai/ +- title: Multi Model Server + text: Model Server for Apache MXNet (MMS) is a flexible and easy to use tool for serving deep learning models exported from MXNet or the Open Neural Network Exchange (ONNX). + link: https://github.com/awslabs/multi-model-server +- title: MxNet Sharp + text: MxNet Sharp package brings efficient and flexible GPU computing and state-of-art deep learning to .NET. It covers all the Imperative, Symbolic and Gluon interface with API's written closer to Python syntax which makes is easier to port python code easily. + link: https://github.com/deepakkumar1984/MxNet.Sharp + icon: /assets/img/mxnet_sharp.png --- - -
-
-

D2L.ai

-
-
- -
-
-

A deep learning book with interactive jupyter notebooks, math formula, - and a dedicated forum for discussions.

-

It offers an interactive learning experience with mathematics, figures, code, text, and discussions, - where concepts and techniques are illustrated and implemented with experiments on real data - sets.

-

Each section is an executable Jupyter notebook. You can modify the code and tune hyperparameters to - get instant feedback to accumulate practical experiences in deep learning.

-

The book is authored by Aston Zhang, Amazon Applied - Scientist UIUC Ph.D., Zack C. Lipton, CMU Assistant Professor - UCSD Ph.D., - Mu Li Amazon Principal - Scientist CMU Ph.D. and Alex J. Smola Amazon VP/Distinguished - Scientist TU Berlin Ph.D. -

D2L is used as a textbook or a reference book at Carnegie Mellon University, Georgia Institute of - Technology, the University of California Berkeley and many more university

-
-
-
-

-

Toolkits

-
- {%- for feature in page.ecosystem_toolkits -%} - - {%- endfor -%} -
-

-

Ecosystem

-
- {%- for feature in page.ecosystem_other -%} - - {%- endfor -%} -
-

-
From a70c28fadc3461f6362079c28092723ccbe58779 Mon Sep 17 00:00:00 2001 From: Manu Date: Wed, 22 Dec 2021 01:34:27 -0800 Subject: [PATCH 6/9] Revert "move trusted-by section from homepage to ecosystem/" This reverts commit e214069a98a431c8fa1bc6d2a1a874907f1a664e. --- .../themes/mx-theme/mxtheme/header_top.html | 1 + docs/static_site/src/_includes/header.html | 1 + docs/static_site/src/_sass/minima.scss | 1 + .../src/_sass/minima/_ecosystem.scss | 9 - .../src/_sass/minima/_powered_by.scss | 26 +++ docs/static_site/src/pages/ecosystem.html | 9 - docs/static_site/src/pages/powered_by.html | 165 ++++++++++++++++++ 7 files changed, 194 insertions(+), 18 deletions(-) create mode 100644 docs/static_site/src/_sass/minima/_powered_by.scss create mode 100644 docs/static_site/src/pages/powered_by.html diff --git a/docs/python_docs/themes/mx-theme/mxtheme/header_top.html b/docs/python_docs/themes/mx-theme/mxtheme/header_top.html index 69cdf64fcefa..4726db2f703c 100644 --- a/docs/python_docs/themes/mx-theme/mxtheme/header_top.html +++ b/docs/python_docs/themes/mx-theme/mxtheme/header_top.html @@ -18,6 +18,7 @@ Features Ecosystem Docs & Tutorials + Powered By GitHub diff --git a/docs/static_site/src/pages/powered_by.html b/docs/static_site/src/pages/powered_by.html new file mode 100644 index 000000000000..ffb2d3856780 --- /dev/null +++ b/docs/static_site/src/pages/powered_by.html @@ -0,0 +1,165 @@ +--- +layout: page +title: Powered By +subtitle: Explore a rich ecosystem of libraries, tools, and more to support research and development of Deep Learning application across many fields and domains of application. +action: Get Started +action_url: /get_started +permalink: /powered_by/ + +ecosystem_toolkits: +- title: GluonCV + text: GluonCV is a computer vision toolkit with rich model zoo. From object detection to pose estimation. + icon: /assets/img/visual.svg + link: https://gluon-cv.mxnet.io +- title: GluonNLP + text: GluonNLP provides state-of-the-art deep learning models in NLP. For engineers and researchers to fast prototype research ideas and products. + icon: /assets/img/artificial-intelligence.svg + link: https://gluon-nlp.mxnet.io/ +- title: GluonTS + text: Gluon Time Series (GluonTS) is the Gluon toolkit for probabilistic time series modeling, focusing on deep learning-based models. + icon: /assets/img/line-graph.svg + link: https://gluon-ts.mxnet.io/ +- title: AutoGluon + text: AutoGluon enables easy-to-use and easy-to-extend AutoML with a focus on deep learning and real-world applications spanning image, text, or tabular data. + icon: /assets/img/autogluon.png + link: https://autogluon.mxnet.io + +ecosystem_other: +- title: Flower + text: Flower is an agnostic federated learning framework. Federate any workload, any machine learning framework, and any programming language. + icon: /assets/img/flower_icon.png + link: https://flower.dev/ +- title: InsightFace + text: State-of-the-art face detection and face recognition repository, including ArcFace loss and RetinaFace implementation + link: https://github.com/deepinsight/insightface +- title: Sockeye + text: Sockeye is a sequence-to-sequence framework for Neural Machine Translation based on Apache MXNet Incubating. It implements state-of-the-art encoder-decoder architectures. + link: https://awslabs.github.io/sockeye/ +- title: Deep Graph Library + text: DGL is a Python package dedicated to deep learning on graphs supporting MXNet as a backend. + link: https://www.dgl.ai/ +- title: TensorLy + text: TensorLy is a high level API for tensor methods and deep tensorized neural networks in Python that aims to make tensor learning simple. + icon: /assets/img/tensorly_logo.png + link: http://tensorly.org/stable/home.html +- title: TVM + text: TVM is an open deep learning compiler stack for CPUs, GPUs, and specialized accelerators. It supports a number of framework including MXNet. + link: https://tvm.ai/about + icon: /assets/img/tvm.png +- title: GluonFR + text: Community-driven toolkit for Face Recognition and Face Detection + link: https://gluon-face.readthedocs.io/en/latest/ +- title: Optuna + text: Optuna is a hyperparameter optimization framework that automates the search for good hyperparameters using Python conditionals, loops, and syntax. + link: https://optuna.org/ + icon: /assets/img/optuna.png +- title: Ray Tune + text: Tune is a Python library for experiment execution and hyperparameter tuning at any scale. + link: https://docs.ray.io/en/latest/tune.html + icon: /assets/img/tune.png +- title: Coach RL + text: Coach is a python reinforcement learning framework containing implementation of many state-of-the-art algorithms, it supports MXNet as a back-end + icon: /assets/img/coach_logo.png + link: https://github.com/NervanaSystems/coach +- title: XFer + text: Xfer is a library that allows quick and easy transfer of knowledge stored in deep neural networks implemented in MXNet. + link: https://xfer.readthedocs.io/en/master/ + icon: /assets/img/xfer.png +- title: DJL + text: Deep Java Library is an open source library to build and deploy deep learning in Java + icon: /assets/img/djl.png + link: https://djl.ai/ +- title: Multi Model Server + text: Model Server for Apache MXNet (MMS) is a flexible and easy to use tool for serving deep learning models exported from MXNet or the Open Neural Network Exchange (ONNX). + link: https://github.com/awslabs/multi-model-server +- title: MxNet Sharp + text: MxNet Sharp package brings efficient and flexible GPU computing and state-of-art deep learning to .NET. It covers all the Imperative, Symbolic and Gluon interface with API's written closer to Python syntax which makes is easier to port python code easily. + link: https://github.com/deepakkumar1984/MxNet.Sharp + icon: /assets/img/mxnet_sharp.png +--- + + + +
+
+

D2L.ai

+
+
+ +
+
+

A deep learning book with interactive jupyter notebooks, math formula, + and a dedicated forum for discussions.

+

It offers an interactive learning experience with mathematics, figures, code, text, and discussions, + where concepts and techniques are illustrated and implemented with experiments on real data + sets.

+

Each section is an executable Jupyter notebook. You can modify the code and tune hyperparameters to + get instant feedback to accumulate practical experiences in deep learning.

+

The book is authored by Aston Zhang, Amazon Applied + Scientist UIUC Ph.D., Zack C. Lipton, CMU Assistant Professor + UCSD Ph.D., + Mu Li Amazon Principal + Scientist CMU Ph.D. and Alex J. Smola Amazon VP/Distinguished + Scientist TU Berlin Ph.D. +

D2L is used as a textbook or a reference book at Carnegie Mellon University, Georgia Institute of + Technology, the University of California Berkeley and many more university

+
+
+
+

+

Toolkits

+
+ {%- for feature in page.ecosystem_toolkits -%} + + {%- endfor -%} +
+

+

Ecosystem

+
+ {%- for feature in page.ecosystem_other -%} + + {%- endfor -%} +
+

+
From b1d4aacf836ee9b453701fff9f5a044e5b70be80 Mon Sep 17 00:00:00 2001 From: Manu Date: Wed, 22 Dec 2021 01:36:23 -0800 Subject: [PATCH 7/9] copy powered_by to master/ --- ci/docker/runtime_functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/docker/runtime_functions.sh b/ci/docker/runtime_functions.sh index 61d993611bd3..fdc183af6037 100755 --- a/ci/docker/runtime_functions.sh +++ b/ci/docker/runtime_functions.sh @@ -1329,7 +1329,7 @@ build_docs() { # copy the full site for this version to versions folder mkdir -p html/versions/master - for f in 404.html api assets blog community ecosystem features feed.xml get_started index.html; do + for f in 404.html api assets blog community ecosystem features powered_by feed.xml get_started index.html; do cp -r html/$f html/versions/master/ done From 66d89e00eb519bf1fd5c08f4b14566692831407f Mon Sep 17 00:00:00 2001 From: Manu Date: Wed, 22 Dec 2021 18:00:42 -0800 Subject: [PATCH 8/9] update trusted-by page --- ci/docker/runtime_functions.sh | 2 +- .../themes/mx-theme/mxtheme/header_top.html | 2 +- docs/static_site/src/_includes/header.html | 2 +- docs/static_site/src/_sass/minima.scss | 1 - .../src/_sass/minima/_powered_by.scss | 26 --- docs/static_site/src/pages/powered_by.html | 165 ------------------ docs/static_site/src/pages/trusted_by.html | 34 ++++ 7 files changed, 37 insertions(+), 195 deletions(-) delete mode 100644 docs/static_site/src/_sass/minima/_powered_by.scss delete mode 100644 docs/static_site/src/pages/powered_by.html create mode 100644 docs/static_site/src/pages/trusted_by.html diff --git a/ci/docker/runtime_functions.sh b/ci/docker/runtime_functions.sh index fdc183af6037..05f80032cd15 100755 --- a/ci/docker/runtime_functions.sh +++ b/ci/docker/runtime_functions.sh @@ -1329,7 +1329,7 @@ build_docs() { # copy the full site for this version to versions folder mkdir -p html/versions/master - for f in 404.html api assets blog community ecosystem features powered_by feed.xml get_started index.html; do + for f in 404.html api assets blog community ecosystem features trusted_by feed.xml get_started index.html; do cp -r html/$f html/versions/master/ done diff --git a/docs/python_docs/themes/mx-theme/mxtheme/header_top.html b/docs/python_docs/themes/mx-theme/mxtheme/header_top.html index 4726db2f703c..2234046f5f11 100644 --- a/docs/python_docs/themes/mx-theme/mxtheme/header_top.html +++ b/docs/python_docs/themes/mx-theme/mxtheme/header_top.html @@ -18,7 +18,7 @@ Features Ecosystem Docs & Tutorials - Powered By + Trusted By GitHub