This is an automated email from the ASF dual-hosted git repository.

morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git


The following commit(s) were added to refs/heads/master by this push:
     new de2dd2c  [Thirdparty] Move DataTables download url to a fixed download 
address (#6189)
de2dd2c is described below

commit de2dd2c015f978ace632e8a5397ea37786363f15
Author: Mingyu Chen <[email protected]>
AuthorDate: Sat Jul 10 10:13:26 2021 +0800

    [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 a14aa83..d7bc7cc 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 fb15be6..3e07ad9 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/[email protected]/dist/bootstrap-table.min.js";

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to