From de2dd2c015f978ace632e8a5397ea37786363f15 Mon Sep 17 00:00:00 2001 From: Mingyu Chen Date: Sat, 10 Jul 2021 10:13:26 +0800 Subject: [PATCH] [Thirdparty] Move DataTables download url to a fixed download address (#6189) The origin download url is always changing: https://datatables.net/download/builder?bs-3.3.7/jq-3.3.1/dt-1.10.25 So we put it in our own http server. If someone can offer an official url for DataTables, please update this. --- .github/PULL_REQUEST_TEMPLATE.md | 3 +++ thirdparty/vars.sh | 7 +++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index a14aa836e9..d7bc7cc8d6 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -12,6 +12,9 @@ _Put an `x` in the boxes that apply_ - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] Documentation Update (if none of the other choices apply) - [ ] Code refactor (Modify the code structure, format the code, etc...) +- [ ] Optimization. Including functional usability improvements and performance improvements. +- [ ] Dependency. Such as changes related to third-party components. +- [ ] Other. ## Checklist diff --git a/thirdparty/vars.sh b/thirdparty/vars.sh index fb15be6d2f..3e07ad96d9 100644 --- a/thirdparty/vars.sh +++ b/thirdparty/vars.sh @@ -287,10 +287,13 @@ CCTZ_SOURCE="cctz-2.3" CCTZ_MD5SUM="209348e50b24dbbdec6d961059c2fc92" # datatables, bootstrap 3 and jQuery 3 -DATATABLES_DOWNLOAD="https://datatables.net/download/builder?bs-3.3.7/jq-3.3.1/dt-1.10.25" +# The origin download url is always changing: https://datatables.net/download/builder?bs-3.3.7/jq-3.3.1/dt-1.10.25 +# So we put it in our own http server. +# If someone can offer an official url for DataTables, please update this. +DATATABLES_DOWNLOAD="https://doris-thirdparty-repo.bj.bcebos.com/thirdparty/DataTables.zip" DATATABLES_NAME="DataTables.zip" DATATABLES_SOURCE="DataTables-1.10.25" -DATATABLES_MD5SUM="109ce4359b370565f968932607460624" +DATATABLES_MD5SUM="c8fd73997c9871e213ee4211847deed5" # bootstrap table js BOOTSTRAP_TABLE_JS_DOWNLOAD="https://unpkg.com/bootstrap-table@1.17.1/dist/bootstrap-table.min.js"