You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by sh...@apache.org on 2021/08/03 05:04:45 UTC

[echarts-website] branch asf-site updated: add asf yml

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

shenyi pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/echarts-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 79ebd35  add asf yml
79ebd35 is described below

commit 79ebd3504e118493847dd377d38596d8a06ff95f
Author: pissang <bm...@gmail.com>
AuthorDate: Tue Aug 3 13:04:34 2021 +0800

    add asf yml
---
 .asf.yml                             |  2 +
 v4/components/analytics.html         | 13 ------
 v4/components/builder.html           | 91 ------------------------------------
 v4/components/download.html          | 42 -----------------
 v4/components/footer.html            |  1 -
 v4/components/inner-footer.html      |  1 -
 v4/components/nav-mixin.html         |  0
 v4/components/nav.html               |  1 -
 v4/components/svg/community.html     |  1 -
 v4/components/svg/echarts-logo.html  |  1 -
 v4/components/svg/external-link.html |  1 -
 v4/components/svg/function.html      |  1 -
 v4/components/svg/heart.html         |  1 -
 v4/components/svg/more.html          |  1 -
 v4/components/svg/pause.html         |  1 -
 v4/components/svg/play.html          |  1 -
 16 files changed, 2 insertions(+), 157 deletions(-)

diff --git a/.asf.yml b/.asf.yml
new file mode 100644
index 0000000..08e79d7
--- /dev/null
+++ b/.asf.yml
@@ -0,0 +1,2 @@
+publish:
+  whoami: asf-site
\ No newline at end of file
diff --git a/v4/components/analytics.html b/v4/components/analytics.html
deleted file mode 100644
index eff131c..0000000
--- a/v4/components/analytics.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<!-- Baidu Tongji--><script type="text/javascript">var _hmt = _hmt || [];
-(function() {
-var hm = document.createElement("script");
-
-hm.src = "https://hm.baidu.com/hm.js?54b918eee37cb8a7045f0fd0f0b24395";
-
-var s = document.getElementsByTagName("script")[0];
-s.parentNode.insertBefore(hm, s);
-})();
-</script><!-- Google Analytics--><script type="text/javascript" async="async" src="https://www.googletagmanager.com/gtag/js?id=UA-141228404-1"></script><script type="text/javascript">window.dataLayer = window.dataLayer || [];
-function gtag(){dataLayer.push(arguments);}
-gtag('js', new Date());
-gtag('config', 'UA-141228404-1');</script>
\ No newline at end of file
diff --git a/v4/components/builder.html b/v4/components/builder.html
deleted file mode 100644
index d5e9c4c..0000000
--- a/v4/components/builder.html
+++ /dev/null
@@ -1,91 +0,0 @@
-<!DOCTYPE html><html lang="zh-CN"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1" user-scalable="no"><meta name="description" content="ECharts, a powerful, interactive charting and visualization library for browser"><link rel="shortcut icon" href="https://echarts.apache.org/v4/zh/images/favicon.png?_v_=20200710_1"><link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/b [...]
-</script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/pace-progressbar@1.0.2/pace.min.js"></script><script id="font-hack" type="text/javascript">if (/windows/i.test(navigator.userAgent)) {
-    var el = document.createElement('style');
-    el.innerHTML = ''
-        + '@font-face {font-family:"noto-thin";src:local("Microsoft Yahei");}'
-        + '@font-face {font-family:"noto-light";src:local("Microsoft Yahei");}';
-    document.head.insertBefore(el, document.getElementById('font-hack'));
-}
-</script><title>ECharts 在线构建</title><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/jquery@2.2.4/dist/jquery.min.js"></script></head><!--[if lte IE 8]><body class="lower-ie"><div id="lowie-main"><img src="https://echarts.apache.org/v4/zh/images/forie.png?_v_=20200710_1" alt="ie tip"></div></body><![endif]-->
-<!--[if (gt IE 8)|!(IE)]><body class="undefined"></body><![endif]--><div id="apache-banner"><div class="txt"><p>请访问 Apache ECharts 的官网 &nbsp;</p><a id="a1" href="https://echarts.apache.org/zh/index.html">https://echarts.apache.org</a></div><a href="https://echarts.apache.org" target="_blank" onclick="logApache()" class="btn btn-main"><div>访问官网</div></a><a href="javascript:;" onclick="closeApacheBanner(true)" class="close-btn">x</a></div><div id="v5-link" class="alert alert-warning alert- [...]
-
-fetch('https://data.jsdelivr.com/v1/package/npm/echarts', {
-    mode: 'cors'
-}).then(res => res.json()).then(json => {
-    const versions = json.versions.filter(version => compareVersions(version, '3.8.0') >= 0);
-    versions.forEach(version => {
-        const $optionDom = document.createElement('option');
-        $optionDom.value = version;
-        $optionDom.innerHTML = version;
-        $versionsDom.appendChild($optionDom);
-    });
-    $versionsDom.value = json.tags.latest;
-});
-
-function updateCheckbox() {
-    $('#charts input, #components input, #coords input').each(function () {
-        $(this).attr('checked', $(this).parent().hasClass('checked'));
-    });
-}
-
-$('#charts li, #components li, #coords li').click(function () {
-    $(this).toggleClass('checked');
-
-    updateCheckbox();
-});
-
-updateCheckbox();
-
-// Build
-$("#build").click(function () {
-    var charts = [];
-    $('#charts .checked input').each(function () {
-        charts.push($(this).attr('name'));
-    });
-
-    var components = [];
-    $('#coords .checked input').each(function () {
-        components.push($(this).attr('name'));
-    });
-    $('#components .checked input').each(function () {
-        components.push($(this).attr('name'));
-    });
-
-    var parameters = 'charts=' + charts.join(',') + '&components=' + components.join(',');
-
-    if (!$('#compress').prop('checked')) {
-        parameters += '&source=true';
-    }
-    if ($('#vml').prop('checked')) {
-        parameters += '&vml=true';
-    }
-    if ($('#svg').prop('checked')) {
-        parameters += '&svg=true';
-    }
-    if ($('#api').prop('checked')) {
-        parameters += '&api=true';
-    }
-
-    parameters += `&version=${$versionsDom.value || ''}`;
-
-    //- var email = $('#email').val();
-    var log = parameters;
-    //- if (email) {
-    //-     log += '&email=' + email;
-    //- }
-    _hmt.push(['_trackEvent', 'builder', 'build', '5.0.0', log]);
-
-    window.open('https://echarts.apache.org/v4/zh/builder/echarts.html?' + parameters);
-});</script><!-- Baidu Tongji--><script type="text/javascript">var _hmt = _hmt || [];
-(function() {
-var hm = document.createElement("script");
-
-hm.src = "https://hm.baidu.com/hm.js?54b918eee37cb8a7045f0fd0f0b24395";
-
-var s = document.getElementsByTagName("script")[0];
-s.parentNode.insertBefore(hm, s);
-})();
-</script><!-- Google Analytics--><script type="text/javascript" async src="https://www.googletagmanager.com/gtag/js?id=UA-141228404-1"></script><script type="text/javascript">window.dataLayer = window.dataLayer || [];
-function gtag(){dataLayer.push(arguments);}
-gtag('js', new Date());
-gtag('config', 'UA-141228404-1');</script></html>
\ No newline at end of file
diff --git a/v4/components/download.html b/v4/components/download.html
deleted file mode 100644
index 7f65b01..0000000
--- a/v4/components/download.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!DOCTYPE html><html lang="zh-CN"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1" user-scalable="no"><meta name="description" content="ECharts, a powerful, interactive charting and visualization library for browser"><link rel="shortcut icon" href="https://echarts.apache.org/v4/zh/images/favicon.png?_v_=20200710_1"><link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/b [...]
-</script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/pace-progressbar@1.0.2/pace.min.js"></script><script id="font-hack" type="text/javascript">if (/windows/i.test(navigator.userAgent)) {
-    var el = document.createElement('style');
-    el.innerHTML = ''
-        + '@font-face {font-family:"noto-thin";src:local("Microsoft Yahei");}'
-        + '@font-face {font-family:"noto-light";src:local("Microsoft Yahei");}';
-    document.head.insertBefore(el, document.getElementById('font-hack'));
-}
-</script><title>下载 - Apache ECharts</title><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/jquery@2.2.4/dist/jquery.min.js"></script></head><!--[if lte IE 8]><body class="lower-ie"><div id="lowie-main"><img src="https://echarts.apache.org/v4/zh/images/forie.png?_v_=20200710_1" alt="ie tip"></div></body><![endif]-->
-<!--[if (gt IE 8)|!(IE)]><body class="undefined"></body><![endif]--><div id="apache-banner"><div class="txt"><p>请访问 Apache ECharts 的官网 &nbsp;</p><a id="a1" href="https://echarts.apache.org/zh/index.html">https://echarts.apache.org</a></div><a href="https://echarts.apache.org" target="_blank" onclick="logApache()" class="btn btn-main"><div>访问官网</div></a><a href="javascript:;" onclick="closeApacheBanner(true)" class="close-btn">x</a></div><div id="v5-link" class="alert alert-warning alert- [...]
-
-//- $('.download-echarts').click(function (e) {
-//-     var el = document.createElement('div');
-//-     el.innerHTML = '<div class="download-note"><i class="note-icon"><img src="./images/note.svg" /></i> Please cite the following paper whenever you use ECharts in your R&D projects, products, research papers, technical reports, news reports, books, presentations, teaching, patents, and other related intelligence activities. <br />  当您在研发项目,研究论文,技术报告,新闻报告,书籍,演示文稿,教学,专利等中使用 ECharts 时,请引用以下论文。</div>\
-//-     <div class="paper-desc">\
-//-         <div class="paper-title">\
-//-         ECharts: A Declarative Framework for Rapid Construction of Web-based Visualization\
-//-         </div>\
-//-         <div class="paper-author">Deqing Li, Honghui Mei, Yi Shen, Shuang Su, Wenli Zhang, Junting Wang, Ming Zu, Wei Chen.</div>\
-//-         <div class="paper-journal">Visual Informatics, 2018 <a href="http://www.cad.zju.edu.cn/home/vagblog/VAG_Work/echarts.pdf">[PDF]</a></div>\
-//-     </div>';
-//-     swal({
-//-         title: 'Notice',
-//-         content: el
-//-     });
-//-     _hmt.push(['_trackEvent', 'download', 'download', '5.0.0']);
-//- });
-//- $('.download-theme').click(function () {
-//-     _hmt.push(['_trackEvent', 'download', 'download-theme', '5.0.0']);
-//- });</script><!-- Baidu Tongji--><script type="text/javascript">var _hmt = _hmt || [];
-(function() {
-var hm = document.createElement("script");
-
-hm.src = "https://hm.baidu.com/hm.js?54b918eee37cb8a7045f0fd0f0b24395";
-
-var s = document.getElementsByTagName("script")[0];
-s.parentNode.insertBefore(hm, s);
-})();
-</script><!-- Google Analytics--><script type="text/javascript" async src="https://www.googletagmanager.com/gtag/js?id=UA-141228404-1"></script><script type="text/javascript">window.dataLayer = window.dataLayer || [];
-function gtag(){dataLayer.push(arguments);}
-gtag('js', new Date());
-gtag('config', 'UA-141228404-1');</script></html>
\ No newline at end of file
diff --git a/v4/components/footer.html b/v4/components/footer.html
deleted file mode 100644
index fe680cb..0000000
--- a/v4/components/footer.html
+++ /dev/null
@@ -1 +0,0 @@
-<footer><div class="container"><div class="row"><div class="col-md-9"><p>Copyright © 2017-2020, The Apache Software Foundation Apache ECharts, ECharts, Apache, the Apache feather, and the Apache ECharts project logo are either registered trademarks or trademarks of the Apache Software Foundation.</p><div class="icon-panel"><a href="mailto:dev@echarts.apache.org?body=%28Thanks%20for%20using%20ECharts.%20Email%20us%20if%20you%20have%20non-technical%20problems%20using%20ECharts.%20For%20tec [...]
\ No newline at end of file
diff --git a/v4/components/inner-footer.html b/v4/components/inner-footer.html
deleted file mode 100644
index 90b50c2..0000000
--- a/v4/components/inner-footer.html
+++ /dev/null
@@ -1 +0,0 @@
-<footer class="inner-footer"><div class="container"><div class="row"><div class="col-md-8"><p>Copyright © 2017-2020, The Apache Software Foundation Apache ECharts, ECharts, Apache, the Apache feather, and the Apache ECharts project logo are either registered trademarks or trademarks of the Apache Software Foundation.</p></div><div id="footer-icon-panel" class="col-md-4"><a href="https://www.apache.org"><img src="https://echarts.apache.org/v4/undefined/images/asf_logo.svg?_v_=20200710_1"  [...]
\ No newline at end of file
diff --git a/v4/components/nav-mixin.html b/v4/components/nav-mixin.html
deleted file mode 100644
index e69de29..0000000
diff --git a/v4/components/nav.html b/v4/components/nav.html
deleted file mode 100644
index 6a4f658..0000000
--- a/v4/components/nav.html
+++ /dev/null
@@ -1 +0,0 @@
-<div class="container-fluid"><div class="navbar-header"><button type="button" data-toggle="collapse" data-target="#navbar-collapse" aria-expanded="false" class="navbar-toggle collapsed"><span class="sr-only">Toggle navigation</span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></button><a href="https://echarts.apache.org/v4/zh/index.html" class="navbar-brand"><img src="https://echarts.apache.org/v4/zh/images/logo.png?_v_=20200710_1" alt="echart [...]
\ No newline at end of file
diff --git a/v4/components/svg/community.html b/v4/components/svg/community.html
deleted file mode 100644
index 53d4d78..0000000
--- a/v4/components/svg/community.html
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="36px" height="31px" viewbox="0 0 36 31" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="feature-icon"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="01-首页-标注" transform="translate(-1084.000000, -827.000000)" fill="#333743"><g id="Group-38" transform="translate(1057.000000, 797.000000)"><path id="Shape" d="M63,56.361686 C63,51.671658 60.3077922,47.6639411 56.5050056,46.0305295 C58.3479474, [...]
\ No newline at end of file
diff --git a/v4/components/svg/echarts-logo.html b/v4/components/svg/echarts-logo.html
deleted file mode 100644
index f9f842c..0000000
--- a/v4/components/svg/echarts-logo.html
+++ /dev/null
@@ -1 +0,0 @@
-<svg id="home-logo" width="660px" height="96px" viewbox="0 0 660 96" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><filter id="filter-1" x="-50%" y="-50%" width="200%" height="200%" filterunits="objectBoundingBox"><feoffset dx="0" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feoffset><fegaussianblur stddeviation="2" in="shadowOffsetOuter1" result="shadowBlurOuter1"></fegaussianblur><fecolormatrix values="0 0 0 0 0   0 0 0 0 0   [...]
\ No newline at end of file
diff --git a/v4/components/svg/external-link.html b/v4/components/svg/external-link.html
deleted file mode 100644
index c511d88..0000000
--- a/v4/components/svg/external-link.html
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="15px" height="15px" viewbox="0 0 100 100" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="icon-external-link"><path fill="currentColor" d="M18.8,85.1h56l0,0c2.2,0,4-1.8,4-4v-32h-8v28h-48v-48h28v-8h-32l0,0c-2.2,0-4,1.8-4,4v56C14.8,83.3,16.6,85.1,18.8,85.1z"></path><polygon fill="currentColor" points="45.7,48.7 51.3,54.3 77.2,28.5 77.2,37.2 85.2,37.2 85.2,14.9 62.8,14.9 62.8,22.9 71.5,22.9"></polygon></svg>
\ No newline at end of file
diff --git a/v4/components/svg/function.html b/v4/components/svg/function.html
deleted file mode 100644
index c151e54..0000000
--- a/v4/components/svg/function.html
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="37px" height="36px" viewbox="0 0 37 36" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="feature-icon"><defs><rect id="path-1" x="0.402989808" y="0.675409258" width="15.7021285" height="15.4476654" rx="3.4507722"></rect><mask id="mask-2" maskcontentunits="userSpaceOnUse" maskunits="objectBoundingBox" x="0" y="0" width="15.7021285" height="15.4476654" fill="white"><use xlink:href="#path-1"></use></mask><rect id="path-3" x="0.40 [...]
\ No newline at end of file
diff --git a/v4/components/svg/heart.html b/v4/components/svg/heart.html
deleted file mode 100644
index 703d595..0000000
--- a/v4/components/svg/heart.html
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="36px" height="33px" viewbox="0 0 36 33" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="feature-icon"><defs></defs><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="01-首页-标注" transform="translate(-320.000000, -826.000000)" stroke="#333743" stroke-width="2"><g id="Group-7" transform="translate(321.000000, 827.387847)"><path id="Oval-1-Copy-2" d="M17,29.5876845 C17,29.5876845 0.5,15.970603 0.5 [...]
\ No newline at end of file
diff --git a/v4/components/svg/more.html b/v4/components/svg/more.html
deleted file mode 100644
index 613524d..0000000
--- a/v4/components/svg/more.html
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="10px" height="13px" viewbox="0 0 10 13" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="more-icon"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="01-首页-设计稿" transform="translate(-1082.000000, -1417.000000)" fill="#3AADE3"><g id="Group-44" transform="translate(1006.000000, 1161.000000)"><g id="Group-16"><g id="Group-35" transform="translate(4.000000, 255.947089)"><polygon id="Shape" transf [...]
\ No newline at end of file
diff --git a/v4/components/svg/pause.html b/v4/components/svg/pause.html
deleted file mode 100644
index 24929de..0000000
--- a/v4/components/svg/pause.html
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="17px" height="22px" viewBox="0 0 17 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-22.000000, -19.000000)" fill="#AA344C"><g transform="translate(22.667242, 19.000000)"><path d="M2,0 C3.1045695,-2.02906125e-16 4,0.8954305 4,2 L4,20 C4,21.1045695 3.1045695,22 2,22 C0.8954305,22 1.3527075e-16,21.1045695 0,20 L0,2 C-1.3527075e-16,0.8954305 0 [...]
\ No newline at end of file
diff --git a/v4/components/svg/play.html b/v4/components/svg/play.html
deleted file mode 100644
index 8f3ff7e..0000000
--- a/v4/components/svg/play.html
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="19px" height="25px" viewBox="0 0 19 25" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-23.000000, -18.000000)" fill="#AA344C"><path d="M41.365908,29.4271388 L41.3664843,29.4265626 L26.3794329,19.1497136 L26.3747509,19.1541315 C26.0642269,18.8592621 25.6429678,18.677793 25.1786824,18.677793 C24.2236284,18.677793 23.4494433,19.4443188 23.449443 [...]
\ No newline at end of file

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org